diff options
Diffstat (limited to 'flame_graphs/flame_graph_output_simple.svg')
-rw-r--r-- | flame_graphs/flame_graph_output_simple.svg | 32050 |
1 files changed, 32050 insertions, 0 deletions
diff --git a/flame_graphs/flame_graph_output_simple.svg b/flame_graphs/flame_graph_output_simple.svg new file mode 100644 index 0000000..40ab68c --- /dev/null +++ b/flame_graphs/flame_graph_output_simple.svg @@ -0,0 +1,32050 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg version="1.1" width="1400" height="1126" onload="init(evt)" viewBox="0 0 1400 1126" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> +<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> +<!-- NOTES: --> +<defs> + <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > + <stop stop-color="#eef2ee" offset="5%" /> + <stop stop-color="#e0ffe0" offset="95%" /> + </linearGradient> +</defs> +<style type="text/css"> + text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); } + #search, #ignorecase { opacity:0.1; cursor:pointer; } + #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; } + #subtitle { text-anchor:middle; font-color:rgb(160,160,160); } + #title { text-anchor:middle; font-size:17px} + #unzoom { cursor:pointer; } + #frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; } + .hide { display:none; } + .parent { opacity:0.5; } +</style> +<script type="text/ecmascript"> +<![CDATA[ + "use strict"; + var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn; + function init(evt) { + details = document.getElementById("details").firstChild; + searchbtn = document.getElementById("search"); + ignorecaseBtn = document.getElementById("ignorecase"); + unzoombtn = document.getElementById("unzoom"); + matchedtxt = document.getElementById("matched"); + svg = document.getElementsByTagName("svg")[0]; + searching = 0; + currentSearchTerm = null; + + // use GET parameters to restore a flamegraphs state. + var params = get_params(); + if (params.x && params.y) + zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]'))); + if (params.s) search(params.s); + } + + // event listeners + window.addEventListener("click", function(e) { + var target = find_group(e.target); + if (target) { + if (target.nodeName == "a") { + if (e.ctrlKey === false) return; + e.preventDefault(); + } + if (target.classList.contains("parent")) unzoom(true); + zoom(target); + if (!document.querySelector('.parent')) { + // we have basically done a clearzoom so clear the url + var params = get_params(); + if (params.x) delete params.x; + if (params.y) delete params.y; + history.replaceState(null, null, parse_params(params)); + unzoombtn.classList.add("hide"); + return; + } + + // set parameters for zoom state + var el = target.querySelector("rect"); + if (el && el.attributes && el.attributes.y && el.attributes._orig_x) { + var params = get_params() + params.x = el.attributes._orig_x.value; + params.y = el.attributes.y.value; + history.replaceState(null, null, parse_params(params)); + } + } + else if (e.target.id == "unzoom") clearzoom(); + else if (e.target.id == "search") search_prompt(); + else if (e.target.id == "ignorecase") toggle_ignorecase(); + }, false) + + // mouse-over for info + // show + window.addEventListener("mouseover", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = "Function: " + g_to_text(target); + }, false) + + // clear + window.addEventListener("mouseout", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = ' '; + }, false) + + // ctrl-F for search + // ctrl-I to toggle case-sensitive search + window.addEventListener("keydown",function (e) { + if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { + e.preventDefault(); + search_prompt(); + } + else if (e.ctrlKey && e.keyCode === 73) { + e.preventDefault(); + toggle_ignorecase(); + } + }, false) + + // functions + function get_params() { + var params = {}; + var paramsarr = window.location.search.substr(1).split('&'); + for (var i = 0; i < paramsarr.length; ++i) { + var tmp = paramsarr[i].split("="); + if (!tmp[0] || !tmp[1]) continue; + params[tmp[0]] = decodeURIComponent(tmp[1]); + } + return params; + } + function parse_params(params) { + var uri = "?"; + for (var key in params) { + uri += key + '=' + encodeURIComponent(params[key]) + '&'; + } + if (uri.slice(-1) == "&") + uri = uri.substring(0, uri.length - 1); + if (uri == '?') + uri = window.location.href.split('?')[0]; + return uri; + } + function find_child(node, selector) { + var children = node.querySelectorAll(selector); + if (children.length) return children[0]; + } + function find_group(node) { + var parent = node.parentElement; + if (!parent) return; + if (parent.id == "frames") return node; + return find_group(parent); + } + function orig_save(e, attr, val) { + if (e.attributes["_orig_" + attr] != undefined) return; + if (e.attributes[attr] == undefined) return; + if (val == undefined) val = e.attributes[attr].value; + e.setAttribute("_orig_" + attr, val); + } + function orig_load(e, attr) { + if (e.attributes["_orig_"+attr] == undefined) return; + e.attributes[attr].value = e.attributes["_orig_" + attr].value; + e.removeAttribute("_orig_"+attr); + } + function g_to_text(e) { + var text = find_child(e, "title").firstChild.nodeValue; + return (text) + } + function g_to_func(e) { + var func = g_to_text(e); + // if there's any manipulation we want to do to the function + // name before it's searched, do it here before returning. + return (func); + } + function update_text(e) { + var r = find_child(e, "rect"); + var t = find_child(e, "text"); + var w = parseFloat(r.attributes.width.value) -3; + var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); + t.attributes.x.value = parseFloat(r.attributes.x.value) + 3; + + // Smaller than this size won't fit anything + if (w < 2 * 12 * 0.59) { + t.textContent = ""; + return; + } + + t.textContent = txt; + var sl = t.getSubStringLength(0, txt.length); + // check if only whitespace or if we can fit the entire string into width w + if (/^ *$/.test(txt) || sl < w) + return; + + // this isn't perfect, but gives a good starting point + // and avoids calling getSubStringLength too often + var start = Math.floor((w/sl) * txt.length); + for (var x = start; x > 0; x = x-2) { + if (t.getSubStringLength(0, x + 2) <= w) { + t.textContent = txt.substring(0, x) + ".."; + return; + } + } + t.textContent = ""; + } + + // zoom + function zoom_reset(e) { + if (e.attributes != undefined) { + orig_load(e, "x"); + orig_load(e, "width"); + } + if (e.childNodes == undefined) return; + for (var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_reset(c[i]); + } + } + function zoom_child(e, x, ratio) { + if (e.attributes != undefined) { + if (e.attributes.x != undefined) { + orig_save(e, "x"); + e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10; + if (e.tagName == "text") + e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3; + } + if (e.attributes.width != undefined) { + orig_save(e, "width"); + e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio; + } + } + + if (e.childNodes == undefined) return; + for (var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_child(c[i], x - 10, ratio); + } + } + function zoom_parent(e) { + if (e.attributes) { + if (e.attributes.x != undefined) { + orig_save(e, "x"); + e.attributes.x.value = 10; + } + if (e.attributes.width != undefined) { + orig_save(e, "width"); + e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2); + } + } + if (e.childNodes == undefined) return; + for (var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_parent(c[i]); + } + } + function zoom(node) { + var attr = find_child(node, "rect").attributes; + var width = parseFloat(attr.width.value); + var xmin = parseFloat(attr.x.value); + var xmax = parseFloat(xmin + width); + var ymin = parseFloat(attr.y.value); + var ratio = (svg.width.baseVal.value - 2 * 10) / width; + + // XXX: Workaround for JavaScript float issues (fix me) + var fudge = 0.0001; + + unzoombtn.classList.remove("hide"); + + var el = document.getElementById("frames").children; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var a = find_child(e, "rect").attributes; + var ex = parseFloat(a.x.value); + var ew = parseFloat(a.width.value); + var upstack; + // Is it an ancestor + if (0 == 0) { + upstack = parseFloat(a.y.value) > ymin; + } else { + upstack = parseFloat(a.y.value) < ymin; + } + if (upstack) { + // Direct ancestor + if (ex <= xmin && (ex+ew+fudge) >= xmax) { + e.classList.add("parent"); + zoom_parent(e); + update_text(e); + } + // not in current path + else + e.classList.add("hide"); + } + // Children maybe + else { + // no common path + if (ex < xmin || ex + fudge >= xmax) { + e.classList.add("hide"); + } + else { + zoom_child(e, xmin, ratio); + update_text(e); + } + } + } + search(); + } + function unzoom(dont_update_text) { + unzoombtn.classList.add("hide"); + var el = document.getElementById("frames").children; + for(var i = 0; i < el.length; i++) { + el[i].classList.remove("parent"); + el[i].classList.remove("hide"); + zoom_reset(el[i]); + if(!dont_update_text) update_text(el[i]); + } + search(); + } + function clearzoom() { + unzoom(); + + // remove zoom state + var params = get_params(); + if (params.x) delete params.x; + if (params.y) delete params.y; + history.replaceState(null, null, parse_params(params)); + } + + // search + function toggle_ignorecase() { + ignorecase = !ignorecase; + if (ignorecase) { + ignorecaseBtn.classList.add("show"); + } else { + ignorecaseBtn.classList.remove("show"); + } + reset_search(); + search(); + } + function reset_search() { + var el = document.querySelectorAll("#frames rect"); + for (var i = 0; i < el.length; i++) { + orig_load(el[i], "fill") + } + var params = get_params(); + delete params.s; + history.replaceState(null, null, parse_params(params)); + } + function search_prompt() { + if (!searching) { + var term = prompt("Enter a search term (regexp " + + "allowed, eg: ^ext4_)" + + (ignorecase ? ", ignoring case" : "") + + "\nPress Ctrl-i to toggle case sensitivity", ""); + if (term != null) search(term); + } else { + reset_search(); + searching = 0; + currentSearchTerm = null; + searchbtn.classList.remove("show"); + searchbtn.firstChild.nodeValue = "Search" + matchedtxt.classList.add("hide"); + matchedtxt.firstChild.nodeValue = "" + } + } + function search(term) { + if (term) currentSearchTerm = term; + if (currentSearchTerm === null) return; + + var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : ''); + var el = document.getElementById("frames").children; + var matches = new Object(); + var maxwidth = 0; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var func = g_to_func(e); + var rect = find_child(e, "rect"); + if (func == null || rect == null) + continue; + + // Save max width. Only works as we have a root frame + var w = parseFloat(rect.attributes.width.value); + if (w > maxwidth) + maxwidth = w; + + if (func.match(re)) { + // highlight + var x = parseFloat(rect.attributes.x.value); + orig_save(rect, "fill"); + rect.attributes.fill.value = "rgb(230,0,230)"; + + // remember matches + if (matches[x] == undefined) { + matches[x] = w; + } else { + if (w > matches[x]) { + // overwrite with parent + matches[x] = w; + } + } + searching = 1; + } + } + if (!searching) + return; + var params = get_params(); + params.s = currentSearchTerm; + history.replaceState(null, null, parse_params(params)); + + searchbtn.classList.add("show"); + searchbtn.firstChild.nodeValue = "Reset Search"; + + // calculate percent matched, excluding vertical overlap + var count = 0; + var lastx = -1; + var lastw = 0; + var keys = Array(); + for (k in matches) { + if (matches.hasOwnProperty(k)) + keys.push(k); + } + // sort the matched frames by their x location + // ascending, then width descending + keys.sort(function(a, b){ + return a - b; + }); + // Step through frames saving only the biggest bottom-up frames + // thanks to the sort order. This relies on the tree property + // where children are always smaller than their parents. + var fudge = 0.0001; // JavaScript floating point + for (var k in keys) { + var x = parseFloat(keys[k]); + var w = matches[keys[k]]; + if (x >= lastx + lastw - fudge) { + count += w; + lastx = x; + lastw = w; + } + } + // display matched percent + matchedtxt.classList.remove("hide"); + var pct = 100 * count / maxwidth; + if (pct != 100) pct = pct.toFixed(1) + matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; + } +]]> +</script> +<rect x="0.0" y="0" width="1400.0" height="1126.0" fill="url(#background)" /> +<text id="title" x="700.00" y="24" >Flame Graph</text> +<text id="details" x="10.00" y="1109" > </text> +<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text> +<text id="search" x="1290.00" y="24" >Search</text> +<text id="ignorecase" x="1374.00" y="24" >ic</text> +<text id="matched" x="1290.00" y="1109" > </text> +<g id="frames"> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1095.28" y="719.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="911.0" y="725" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="914.03" y="735.5" ></text> +</g> +<g > +<title>schedule_hrtimeout_range_clock (30,303,030 samples, 0.19%)</title><rect x="25.8" y="805" width="2.6" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="28.76" y="815.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="31.0" y="853" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="34.02" y="863.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="998.6" y="581" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="1001.59" y="591.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="117" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" /> +<text x="1375.49" y="127.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="763.0" y="613" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="766.05" y="623.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="1270.0" y="661" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="1273.04" y="671.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="906.6" y="645" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="909.65" y="655.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="794.6" y="421" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="797.57" y="431.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="918.0" y="501" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="921.03" y="511.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="725" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="1231.01" y="735.5" ></text> +</g> +<g > +<title>ext4_es_delayed_clu (10,101,010 samples, 0.06%)</title><rect x="1044.1" y="581" width="0.9" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" /> +<text x="1047.12" y="591.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="597" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1253.77" y="607.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.06%)</title><rect x="658.0" y="517" width="0.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="660.97" y="527.5" ></text> +</g> +<g > +<title>ip_local_deliver (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="357" width="2.6" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" /> +<text x="1367.61" y="367.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (40,404,040 samples, 0.25%)</title><rect x="36.3" y="325" width="3.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="39.27" y="335.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="654.5" y="453" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="657.47" y="463.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.06%)</title><rect x="524.0" y="645" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="527.00" y="655.5" ></text> +</g> +<g > +<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="491.6" y="709" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="494.60" y="719.5" ></text> +</g> +<g > +<title>ext4_io_submit (10,101,010 samples, 0.06%)</title><rect x="1099.3" y="485" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" /> +<text x="1102.29" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="629" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1221.38" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="740.3" y="597" width="1.7" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="743.28" y="607.5" ></text> +</g> +<g > +<title>ext4_writepages (60,606,060 samples, 0.38%)</title><rect x="791.9" y="517" width="5.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="794.94" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="16.1" y="933" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="19.13" y="943.5" ></text> +</g> +<g > +<title>x64_sys_call (242,424,240 samples, 1.52%)</title><rect x="1121.2" y="709" width="21.0" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1124.18" y="719.5" ></text> +</g> +<g > +<title>__mem_cgroup_uncharge_list (10,101,010 samples, 0.06%)</title><rect x="429.4" y="629" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="432.43" y="639.5" ></text> +</g> +<g > +<title>ext4_da_write_end (30,303,030 samples, 0.19%)</title><rect x="1089.7" y="549" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1092.66" y="559.5" ></text> +</g> +<g > +<title>do_softirq (10,101,010 samples, 0.06%)</title><rect x="35.4" y="453" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="38.39" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="515.2" y="805" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="518.24" y="815.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="378.6" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="381.64" y="559.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="707.0" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="710.01" y="575.5" ></text> +</g> +<g > +<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="883.9" y="533" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="886.88" y="543.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="817.3" y="517" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" /> +<text x="820.34" y="527.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="936.4" y="549" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="939.42" y="559.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="355.9" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="358.88" y="591.5" ></text> +</g> +<g > +<title>lockref_get (10,101,010 samples, 0.06%)</title><rect x="1224.5" y="533" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" /> +<text x="1227.51" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="661" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1222.25" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="688.6" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="691.62" y="687.5" ></text> +</g> +<g > +<title>client_destroy (151,515,150 samples, 0.95%)</title><rect x="29.3" y="917" width="13.1" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="32.26" y="927.5" ></text> +</g> +<g > +<title>p4d_offset (10,101,010 samples, 0.06%)</title><rect x="1315.6" y="805" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="1318.57" y="815.5" ></text> +</g> +<g > +<title>call_rcu (10,101,010 samples, 0.06%)</title><rect x="811.2" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="814.21" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="428.6" y="773" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="431.55" y="783.5" ></text> +</g> +<g > +<title>unmap_region (10,101,010 samples, 0.06%)</title><rect x="328.7" y="613" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="331.73" y="623.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="469" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1348.34" y="479.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="17.0" y="917" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="20.01" y="927.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="706.1" y="597" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="709.13" y="607.5" ></text> +</g> +<g > +<title>__memset (20,202,020 samples, 0.13%)</title><rect x="54.7" y="693" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="57.66" y="703.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="673.7" y="597" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="676.73" y="607.5" ></text> +</g> +<g > +<title>__d_add (10,101,010 samples, 0.06%)</title><rect x="782.3" y="501" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="785.31" y="511.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="1230.6" y="597" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="1233.63" y="607.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="613" width="1.7" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="1389.50" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_access (30,303,030 samples, 0.19%)</title><rect x="1260.4" y="677" width="2.6" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="1263.41" y="687.5" ></text> +</g> +<g > +<title>save_fpregs_to_fpstate (10,101,010 samples, 0.06%)</title><rect x="118.6" y="741" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" /> +<text x="121.58" y="751.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="366.4" y="677" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="369.38" y="687.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="709" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1248.52" y="719.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="882.1" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="885.13" y="591.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="835.7" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="838.72" y="671.5" ></text> +</g> +<g > +<title>os_xsave (10,101,010 samples, 0.06%)</title><rect x="118.6" y="725" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="121.58" y="735.5" ></text> +</g> +<g > +<title>git_repository_free (10,101,010 samples, 0.06%)</title><rect x="755.2" y="789" width="0.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="758.16" y="799.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="148.4" y="805" width="0.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" /> +<text x="151.35" y="815.5" ></text> +</g> +<g > +<title>filemap_release_folio (10,101,010 samples, 0.06%)</title><rect x="818.2" y="501" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" /> +<text x="821.21" y="511.5" ></text> +</g> +<g > +<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.06%)</title><rect x="389.1" y="533" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="392.15" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (898,989,890 samples, 5.65%)</title><rect x="912.8" y="837" width="77.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="915.78" y="847.5" >[libgit2...</text> +</g> +<g > +<title>__slab_free (10,101,010 samples, 0.06%)</title><rect x="263.1" y="437" width="0.8" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="266.06" y="447.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="689.5" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="692.49" y="623.5" ></text> +</g> +<g > +<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="197" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1374.61" y="207.5" ></text> +</g> +<g > +<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="156.2" y="741" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="159.23" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="167.6" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="170.61" y="783.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (90,909,090 samples, 0.57%)</title><rect x="1122.9" y="629" width="7.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="1125.93" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="1165.0" y="565" width="2.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1167.96" y="575.5" ></text> +</g> +<g > +<title>__napi_poll (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="517" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1389.50" y="527.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="1009.1" y="581" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1012.10" y="591.5" ></text> +</g> +<g > +<title>destroy_inode (10,101,010 samples, 0.06%)</title><rect x="351.5" y="629" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="354.50" y="639.5" ></text> +</g> +<g > +<title>net_send_buf (40,404,040 samples, 0.25%)</title><rect x="11.8" y="949" width="3.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="14.75" y="959.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (151,515,150 samples, 0.95%)</title><rect x="950.4" y="629" width="13.2" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="953.43" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="545.0" y="805" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="548.01" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (202,020,200 samples, 1.27%)</title><rect x="1087.0" y="789" width="17.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1090.03" y="799.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="603.7" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="606.68" y="607.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="200.0" y="533" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="203.01" y="543.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1188.6" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1191.60" y="751.5" ></text> +</g> +<g > +<title>git_error_set (10,101,010 samples, 0.06%)</title><rect x="486.3" y="757" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="489.35" y="767.5" ></text> +</g> +<g > +<title>inode_update_timestamps (10,101,010 samples, 0.06%)</title><rect x="435.6" y="629" width="0.8" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" /> +<text x="438.56" y="639.5" ></text> +</g> +<g > +<title>do_sys_openat2 (30,303,030 samples, 0.19%)</title><rect x="311.2" y="725" width="2.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="314.22" y="735.5" ></text> +</g> +<g > +<title>path_openat (50,505,050 samples, 0.32%)</title><rect x="770.9" y="581" width="4.4" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="773.93" y="591.5" ></text> +</g> +<g > +<title>evict (40,404,040 samples, 0.25%)</title><rect x="424.2" y="709" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="427.18" y="719.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="96.7" y="853" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="99.69" y="863.5" ></text> +</g> +<g > +<title>tcp_conn_request (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="309" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="1348.34" y="319.5" ></text> +</g> +<g > +<title>vfs_statx (40,404,040 samples, 0.25%)</title><rect x="368.1" y="709" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="371.13" y="719.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="450.4" y="613" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="453.44" y="623.5" ></text> +</g> +<g > +<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="343.6" y="613" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="346.62" y="623.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="417.2" y="645" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="420.17" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="741" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1022.61" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="453.9" y="693" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="456.95" y="703.5" ></text> +</g> +<g > +<title>do_unlinkat (60,606,060 samples, 0.38%)</title><rect x="306.0" y="661" width="5.2" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="308.96" y="671.5" ></text> +</g> +<g > +<title>user_path_at_empty (40,404,040 samples, 0.25%)</title><rect x="897.9" y="645" width="3.5" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="900.89" y="655.5" ></text> +</g> +<g > +<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="234.2" y="581" width="1.7" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="237.16" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="805" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1319.45" y="815.5" ></text> +</g> +<g > +<title>vfs_symlink (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="709" width="2.6" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="1063.76" y="719.5" ></text> +</g> +<g > +<title>mpage_submit_folio (10,101,010 samples, 0.06%)</title><rect x="848.0" y="485" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="850.98" y="495.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="712.3" y="533" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="715.26" y="543.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="752.5" y="549" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="755.54" y="559.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="328.7" y="789" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="331.73" y="799.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="732.4" y="469" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="735.40" y="479.5" ></text> +</g> +<g > +<title>json_object_to_json_string_length (10,101,010 samples, 0.06%)</title><rect x="10.9" y="917" width="0.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" /> +<text x="13.88" y="927.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="677" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1210.87" y="687.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1146.6" y="677" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1149.57" y="687.5" ></text> +</g> +<g > +<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="422.4" y="741" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="425.42" y="751.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (20,202,020 samples, 0.13%)</title><rect x="880.4" y="549" width="1.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="883.38" y="559.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="469" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1129.43" y="479.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="908.4" y="693" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="911.40" y="703.5" ></text> +</g> +<g > +<title>neigh_hh_output (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="629" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="1348.34" y="639.5" ></text> +</g> +<g > +<title>unlink (90,909,090 samples, 0.57%)</title><rect x="184.3" y="693" width="7.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="187.25" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="192.1" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="195.13" y="735.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="900.5" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="903.52" y="639.5" ></text> +</g> +<g > +<title>mod_objcg_state (10,101,010 samples, 0.06%)</title><rect x="742.9" y="501" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="745.91" y="511.5" ></text> +</g> +<g > +<title>do_user_addr_fault (20,202,020 samples, 0.13%)</title><rect x="162.4" y="741" width="1.7" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="165.36" y="751.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="263.1" y="501" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="266.06" y="511.5" ></text> +</g> +<g > +<title>tzset (10,101,010 samples, 0.06%)</title><rect x="984.6" y="741" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="987.58" y="751.5" ></text> +</g> +<g > +<title>set_root (10,101,010 samples, 0.06%)</title><rect x="1076.5" y="629" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="1079.52" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="789" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="551.52" y="799.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (20,202,020 samples, 0.13%)</title><rect x="12.6" y="373" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="15.63" y="383.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (70,707,070 samples, 0.44%)</title><rect x="380.4" y="613" width="6.1" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="383.39" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="750.8" y="757" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="753.79" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="213.1" y="757" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="216.15" y="767.5" ></text> +</g> +<g > +<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="230.7" y="533" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="233.66" y="543.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="1153.6" y="629" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="1156.58" y="639.5" ></text> +</g> +<g > +<title>alloc_pages_mpol (20,202,020 samples, 0.13%)</title><rect x="1007.3" y="549" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1010.35" y="559.5" ></text> +</g> +<g > +<title>ext4_do_writepages (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="501" width="5.2" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="1102.29" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1190.73" y="687.5" ></text> +</g> +<g > +<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="884.8" y="597" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="887.76" y="607.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (20,202,020 samples, 0.13%)</title><rect x="1030.1" y="533" width="1.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="1033.11" y="543.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.06%)</title><rect x="932.0" y="469" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="935.04" y="479.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (40,404,040 samples, 0.25%)</title><rect x="380.4" y="581" width="3.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="383.39" y="591.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="1153.6" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1156.58" y="671.5" ></text> +</g> +<g > +<title>apparmor_path_rename (10,101,010 samples, 0.06%)</title><rect x="820.0" y="661" width="0.8" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" /> +<text x="822.96" y="671.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (20,202,020 samples, 0.13%)</title><rect x="1045.9" y="565" width="1.7" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="1048.88" y="575.5" ></text> +</g> +<g > +<title>dentry_free (10,101,010 samples, 0.06%)</title><rect x="363.8" y="629" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="366.76" y="639.5" ></text> +</g> +<g > +<title>ext4_clear_inode (10,101,010 samples, 0.06%)</title><rect x="414.5" y="661" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="417.54" y="671.5" ></text> +</g> +<g > +<title>_atomic_dec_and_lock (10,101,010 samples, 0.06%)</title><rect x="410.2" y="709" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="413.16" y="719.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1217.00" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_write (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="709" width="5.2" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="1009.47" y="719.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1154.5" y="645" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1157.45" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="730.6" y="789" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="733.65" y="799.5" ></text> +</g> +<g > +<title>git_config_snapshot (30,303,030 samples, 0.19%)</title><rect x="798.9" y="757" width="2.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="801.95" y="767.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="663.2" y="565" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="666.22" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="725" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1232.76" y="735.5" ></text> +</g> +<g > +<title>rmdir (545,454,540 samples, 3.43%)</title><rect x="257.8" y="741" width="47.3" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="260.80" y="751.5" >rmdir</text> +</g> +<g > +<title>access (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="789" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1258.15" y="799.5" ></text> +</g> +<g > +<title>alloc_inode (10,101,010 samples, 0.06%)</title><rect x="773.6" y="485" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="776.55" y="495.5" ></text> +</g> +<g > +<title>mkdir (111,111,110 samples, 0.70%)</title><rect x="1263.9" y="869" width="9.6" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" /> +<text x="1266.91" y="879.5" ></text> +</g> +<g > +<title>_atomic_dec_and_lock (10,101,010 samples, 0.06%)</title><rect x="236.8" y="597" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="239.79" y="607.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1206.1" y="693" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1209.12" y="703.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="972.3" y="485" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="975.32" y="495.5" ></text> +</g> +<g > +<title>__tcp_close (50,505,050 samples, 0.32%)</title><rect x="35.4" y="677" width="4.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="38.39" y="687.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="834.0" y="485" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="836.97" y="495.5" ></text> +</g> +<g > +<title>path_lookupat (70,707,070 samples, 0.44%)</title><rect x="145.7" y="885" width="6.2" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="148.72" y="895.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="613" width="1.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="1095.28" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="474.1" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="477.09" y="703.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="706.1" y="613" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="709.13" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_readlink (10,101,010 samples, 0.06%)</title><rect x="757.8" y="661" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" /> +<text x="760.79" y="671.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (20,202,020 samples, 0.13%)</title><rect x="140.5" y="821" width="1.7" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="143.47" y="831.5" ></text> +</g> +<g > +<title>ext4_readdir (20,202,020 samples, 0.13%)</title><rect x="418.9" y="757" width="1.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="421.92" y="767.5" ></text> +</g> +<g > +<title>ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="737.7" y="645" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="740.65" y="655.5" ></text> +</g> +<g > +<title>bdev_getblk (30,303,030 samples, 0.19%)</title><rect x="332.2" y="581" width="2.7" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="335.23" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="995.1" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="998.09" y="719.5" ></text> +</g> +<g > +<title>rename (171,717,170 samples, 1.08%)</title><rect x="811.2" y="773" width="14.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="814.21" y="783.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="613" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1026.11" y="623.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.06%)</title><rect x="894.4" y="645" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="897.39" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="182.5" y="661" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="185.50" y="671.5" ></text> +</g> +<g > +<title>chdir_wrapper (50,505,050 samples, 0.32%)</title><rect x="154.5" y="933" width="4.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="157.48" y="943.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1246.4" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1249.40" y="783.5" ></text> +</g> +<g > +<title>ext4_clear_inode (10,101,010 samples, 0.06%)</title><rect x="323.5" y="597" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="326.48" y="607.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="953.1" y="501" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="956.06" y="511.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="389" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="1390.37" y="399.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (60,606,060 samples, 0.38%)</title><rect x="507.4" y="677" width="5.2" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" /> +<text x="510.36" y="687.5" ></text> +</g> +<g > +<title>do_filp_open (40,404,040 samples, 0.25%)</title><rect x="742.9" y="581" width="3.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="745.91" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (70,707,070 samples, 0.44%)</title><rect x="171.1" y="597" width="6.1" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="174.12" y="607.5" ></text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="165" width="0.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1369.36" y="175.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="862.0" y="741" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="864.99" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1262.53" y="703.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="886.5" y="565" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" /> +<text x="889.51" y="575.5" ></text> +</g> +<g > +<title>__ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="326.1" y="629" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="329.10" y="639.5" ></text> +</g> +<g > +<title>vfs_read (20,202,020 samples, 0.13%)</title><rect x="740.3" y="565" width="1.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="743.28" y="575.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (20,202,020 samples, 0.13%)</title><rect x="234.2" y="533" width="1.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="237.16" y="543.5" ></text> +</g> +<g > +<title>write (30,303,030 samples, 0.19%)</title><rect x="539.8" y="789" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="542.76" y="799.5" ></text> +</g> +<g > +<title>submit_bio (10,101,010 samples, 0.06%)</title><rect x="792.8" y="469" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="795.82" y="479.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="368.1" y="645" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" /> +<text x="371.13" y="655.5" ></text> +</g> +<g > +<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="591.4" y="437" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" /> +<text x="594.42" y="447.5" ></text> +</g> +<g > +<title>security_file_free (10,101,010 samples, 0.06%)</title><rect x="869.0" y="597" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="872.00" y="607.5" ></text> +</g> +<g > +<title>ext4_do_writepages (10,101,010 samples, 0.06%)</title><rect x="848.0" y="533" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="850.98" y="543.5" ></text> +</g> +<g > +<title>nft_do_chain_ipv4 (10,101,010 samples, 0.06%)</title><rect x="35.4" y="517" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="38.39" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="849.7" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="852.73" y="783.5" ></text> +</g> +<g > +<title>do_dentry_open (20,202,020 samples, 0.13%)</title><rect x="744.7" y="517" width="1.7" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" /> +<text x="747.66" y="527.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="531.9" y="661" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="534.88" y="671.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="846.2" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="849.23" y="559.5" ></text> +</g> +<g > +<title>ksys_write (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="693" width="5.2" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="1009.47" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="937.3" y="645" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="940.30" y="655.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="343.6" y="645" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="346.62" y="655.5" ></text> +</g> +<g > +<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="485.5" y="517" width="0.8" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="488.47" y="527.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="655.3" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="658.34" y="543.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1158.0" y="629" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1160.96" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_brk (10,101,010 samples, 0.06%)</title><rect x="429.4" y="757" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="432.43" y="767.5" ></text> +</g> +<g > +<title>ext4_getblk (30,303,030 samples, 0.19%)</title><rect x="341.0" y="613" width="2.6" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="343.99" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="735.9" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="738.90" y="735.5" ></text> +</g> +<g > +<title>touch_atime (30,303,030 samples, 0.19%)</title><rect x="420.7" y="757" width="2.6" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="423.67" y="767.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="507.4" y="629" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="510.36" y="639.5" ></text> +</g> +<g > +<title>__ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="1065.1" y="677" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1068.14" y="687.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="877.8" y="565" width="0.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="880.75" y="575.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_node (10,101,010 samples, 0.06%)</title><rect x="1388.2" y="725" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="1391.25" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1231.01" y="719.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="248.2" y="565" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="251.17" y="575.5" ></text> +</g> +<g > +<title>do_filp_open (545,454,540 samples, 3.43%)</title><rect x="95.8" y="901" width="47.3" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="98.81" y="911.5" >do_f..</text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="523.1" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="526.12" y="687.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (20,202,020 samples, 0.13%)</title><rect x="708.8" y="533" width="1.7" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="711.76" y="543.5" ></text> +</g> +<g > +<title>ext4_xattr_security_get (10,101,010 samples, 0.06%)</title><rect x="515.2" y="565" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="518.24" y="575.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="499.5" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="502.48" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="643.1" y="677" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="646.08" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_brk (20,202,020 samples, 0.13%)</title><rect x="241.2" y="613" width="1.7" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="244.17" y="623.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="613" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1108.42" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="682.5" y="789" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="685.49" y="799.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="595.8" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="598.80" y="623.5" ></text> +</g> +<g > +<title>ext4_fname_free_filename (10,101,010 samples, 0.06%)</title><rect x="674.6" y="597" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" /> +<text x="677.61" y="607.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="948.7" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="951.68" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1188.98" y="783.5" ></text> +</g> +<g > +<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1322.6" y="709" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="1325.58" y="719.5" ></text> +</g> +<g > +<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="645" width="1.7" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="1019.98" y="655.5" ></text> +</g> +<g > +<title>malloc (20,202,020 samples, 0.13%)</title><rect x="1318.2" y="869" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1321.20" y="879.5" ></text> +</g> +<g > +<title>__ext4_new_inode (40,404,040 samples, 0.25%)</title><rect x="1052.0" y="629" width="3.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1055.01" y="639.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1213.1" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1216.12" y="639.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="916.3" y="565" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="919.28" y="575.5" ></text> +</g> +<g > +<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="405" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" /> +<text x="1129.43" y="415.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="661" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1210.87" y="671.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (20,202,020 samples, 0.13%)</title><rect x="38.0" y="229" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="41.02" y="239.5" ></text> +</g> +<g > +<title>ext4_truncate (70,707,070 samples, 0.44%)</title><rect x="380.4" y="645" width="6.1" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="383.39" y="655.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="355.9" y="613" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="358.88" y="623.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="671.1" y="389" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="674.10" y="399.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="564.3" y="629" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="567.28" y="639.5" ></text> +</g> +<g > +<title>json_tokener_reset (10,101,010 samples, 0.06%)</title><rect x="1354.1" y="821" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="1357.10" y="831.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="144.0" y="997" width="9.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="146.97" y="1007.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="442.6" y="645" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="445.56" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="808.6" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="811.58" y="751.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="693" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1258.15" y="703.5" ></text> +</g> +<g > +<title>__inet_stream_connect (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="805" width="12.2" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="1379.87" y="815.5" ></text> +</g> +<g > +<title>__d_alloc (40,404,040 samples, 0.25%)</title><rect x="1077.4" y="597" width="3.5" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" /> +<text x="1080.40" y="607.5" ></text> +</g> +<g > +<title>do_faccessat (30,303,030 samples, 0.19%)</title><rect x="1260.4" y="661" width="2.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="1263.41" y="671.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="452.2" y="677" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="455.20" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="904.9" y="597" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="907.90" y="607.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="645" width="5.2" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1372.86" y="655.5" ></text> +</g> +<g > +<title>__do_softirq (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="485" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1336.08" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="784.9" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="787.94" y="687.5" ></text> +</g> +<g > +<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="629" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1116.30" y="639.5" ></text> +</g> +<g > +<title>tcp_fin (20,202,020 samples, 0.13%)</title><rect x="1372.5" y="245" width="1.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="1375.49" y="255.5" ></text> +</g> +<g > +<title>[libc.so.6] (131,313,130 samples, 0.82%)</title><rect x="170.2" y="725" width="11.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="173.24" y="735.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="741.2" y="517" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="744.15" y="527.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="1146.6" y="629" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="1149.57" y="639.5" ></text> +</g> +<g > +<title>ext4_io_submit (10,101,010 samples, 0.06%)</title><rect x="1035.4" y="485" width="0.8" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" /> +<text x="1038.37" y="495.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="451.3" y="789" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="454.32" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (313,131,310 samples, 1.97%)</title><rect x="480.2" y="821" width="27.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="483.22" y="831.5" >[..</text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="884.8" y="645" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="887.76" y="655.5" ></text> +</g> +<g > +<title>dd_bio_merge (10,101,010 samples, 0.06%)</title><rect x="466.2" y="421" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="469.21" y="431.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="73.9" y="917" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="76.92" y="927.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="1257.8" y="709" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1260.78" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="553.8" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="556.77" y="719.5" ></text> +</g> +<g > +<title>crypto_shash_update (40,404,040 samples, 0.25%)</title><rect x="136.1" y="757" width="3.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="139.09" y="767.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.06%)</title><rect x="325.2" y="613" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="328.23" y="623.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="185.1" y="485" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="188.13" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="885" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1328.20" y="895.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="505.6" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="508.61" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="1063.4" y="773" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1066.39" y="783.5" ></text> +</g> +<g > +<title>realpath (10,101,010 samples, 0.06%)</title><rect x="1246.4" y="821" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" /> +<text x="1249.40" y="831.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="73.0" y="1029" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="76.05" y="1039.5" ></text> +</g> +<g > +<title>ext4_append (10,101,010 samples, 0.06%)</title><rect x="1272.7" y="725" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1275.66" y="735.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1256.0" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1259.03" y="655.5" ></text> +</g> +<g > +<title>ext4_ext_insert_extent (30,303,030 samples, 0.19%)</title><rect x="1165.0" y="597" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1167.96" y="607.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="841.9" y="501" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="844.85" y="511.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="578.3" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="581.29" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (383,838,380 samples, 2.41%)</title><rect x="438.2" y="821" width="33.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="441.19" y="831.5" >[l..</text> +</g> +<g > +<title>ext4_writepages (40,404,040 samples, 0.25%)</title><rect x="466.2" y="581" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="469.21" y="591.5" ></text> +</g> +<g > +<title>ip_local_out (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="629" width="5.2" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1372.86" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="539.8" y="757" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="542.76" y="767.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1184.2" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1187.23" y="687.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="656.2" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="659.22" y="559.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="958.3" y="341" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="961.31" y="351.5" ></text> +</g> +<g > +<title>do_syscall_64 (525,252,520 samples, 3.30%)</title><rect x="259.6" y="709" width="45.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="262.56" y="719.5" >do_s..</text> +</g> +<g > +<title>generic_perform_write (40,404,040 samples, 0.25%)</title><rect x="805.1" y="597" width="3.5" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="808.08" y="607.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="181.6" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="184.62" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="457.4" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="460.45" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1188.98" y="751.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="1226.3" y="629" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1229.26" y="639.5" ></text> +</g> +<g > +<title>do_unlinkat (50,505,050 samples, 0.32%)</title><rect x="322.6" y="677" width="4.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="325.60" y="687.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1193.0" y="613" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1195.98" y="623.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="185.1" y="517" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="188.13" y="527.5" ></text> +</g> +<g > +<title>do_fcntl (10,101,010 samples, 0.06%)</title><rect x="330.5" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="333.48" y="735.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="156.2" y="773" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="159.23" y="783.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="449.6" y="677" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="452.57" y="687.5" ></text> +</g> +<g > +<title>ext4_fc_track_inode (10,101,010 samples, 0.06%)</title><rect x="794.6" y="389" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="797.57" y="399.5" ></text> +</g> +<g > +<title>json_object_put (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="869" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="1353.60" y="879.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="1374.2" y="341" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" /> +<text x="1377.24" y="351.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="423.3" y="805" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="426.30" y="815.5" ></text> +</g> +<g > +<title>readlink (10,101,010 samples, 0.06%)</title><rect x="1246.4" y="805" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="1249.40" y="815.5" ></text> +</g> +<g > +<title>inet_csk_destroy_sock (10,101,010 samples, 0.06%)</title><rect x="1373.4" y="197" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1376.36" y="207.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1217.00" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="1025.7" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1028.74" y="687.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="797.2" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="800.20" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="824.3" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="827.34" y="559.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1014.73" y="639.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="191.3" y="453" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="194.26" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="758.7" y="741" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="761.67" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (90,909,090 samples, 0.57%)</title><rect x="410.2" y="789" width="7.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="413.16" y="799.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="809.5" y="741" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="812.45" y="751.5" ></text> +</g> +<g > +<title>ext4_superblock_csum_set (10,101,010 samples, 0.06%)</title><rect x="379.5" y="629" width="0.9" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" /> +<text x="382.52" y="639.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.06%)</title><rect x="848.0" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="850.98" y="511.5" ></text> +</g> +<g > +<title>git_config_snapshot (50,505,050 samples, 0.32%)</title><rect x="500.4" y="789" width="4.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="503.36" y="799.5" ></text> +</g> +<g > +<title>security_path_mknod (10,101,010 samples, 0.06%)</title><rect x="142.2" y="853" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" /> +<text x="145.22" y="863.5" ></text> +</g> +<g > +<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="655.3" y="549" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="658.34" y="559.5" ></text> +</g> +<g > +<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.06%)</title><rect x="1362.9" y="533" width="0.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1365.86" y="543.5" ></text> +</g> +<g > +<title>__sys_connect_file (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="837" width="4.4" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" /> +<text x="1344.84" y="847.5" ></text> +</g> +<g > +<title>blk_attempt_plug_merge (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="405" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1140.82" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="888.3" y="645" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="891.26" y="655.5" ></text> +</g> +<g > +<title>__es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="179.0" y="469" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" /> +<text x="182.00" y="479.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="487.2" y="581" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="490.22" y="591.5" ></text> +</g> +<g > +<title>do_writepages (101,010,100 samples, 0.63%)</title><rect x="665.0" y="549" width="8.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="667.97" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_sendto (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="805" width="6.1" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="1335.21" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1027.86" y="719.5" ></text> +</g> +<g > +<title>vfs_fstatat (70,707,070 samples, 0.44%)</title><rect x="714.0" y="645" width="6.1" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="717.01" y="655.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_plug_list (20,202,020 samples, 0.13%)</title><rect x="665.9" y="437" width="1.7" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="668.85" y="447.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="901.4" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="904.40" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1262.53" y="671.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="658.0" y="501" width="0.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" /> +<text x="660.97" y="511.5" ></text> +</g> +<g > +<title>jsonrpc_set_version (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="901" width="0.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="1350.97" y="911.5" ></text> +</g> +<g > +<title>vfs_read (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="741" width="1.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="1361.48" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (30,303,030 samples, 0.19%)</title><rect x="240.3" y="757" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="243.29" y="767.5" ></text> +</g> +<g > +<title>refill_obj_stock (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="677" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="1319.45" y="687.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="188.6" y="549" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="191.63" y="559.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1247.64" y="799.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="528.4" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="531.38" y="687.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1175.5" y="581" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1178.47" y="591.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (40,404,040 samples, 0.25%)</title><rect x="1377.7" y="325" width="3.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1380.74" y="335.5" ></text> +</g> +<g > +<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="418.9" y="805" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="421.92" y="815.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="426.8" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="429.80" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1197.73" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (252,525,250 samples, 1.59%)</title><rect x="912.8" y="821" width="21.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="915.78" y="831.5" >[..</text> +</g> +<g > +<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="222.8" y="597" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="225.78" y="607.5" ></text> +</g> +<g > +<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.06%)</title><rect x="1172.0" y="533" width="0.8" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" /> +<text x="1174.97" y="543.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (30,303,030 samples, 0.19%)</title><rect x="1108.9" y="613" width="2.6" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="1111.92" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="937.3" y="629" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="940.30" y="639.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="905.8" y="517" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="908.77" y="527.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="958.3" y="453" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="961.31" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (14,252,525,110 samples, 89.53%)</title><rect x="154.5" y="1013" width="1235.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="157.48" y="1023.5" >[libc.so.6]</text> +</g> +<g > +<title>new_inode (30,303,030 samples, 0.19%)</title><rect x="121.2" y="805" width="2.6" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="124.21" y="815.5" ></text> +</g> +<g > +<title>block_write_end (30,303,030 samples, 0.19%)</title><rect x="1089.7" y="533" width="2.6" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" /> +<text x="1092.66" y="543.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="645" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="1231.01" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="365.5" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="368.51" y="751.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="581" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1220.50" y="591.5" ></text> +</g> +<g > +<title>open64 (50,505,050 samples, 0.32%)</title><rect x="770.9" y="693" width="4.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="773.93" y="703.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="109.8" y="789" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="112.82" y="799.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="637.8" y="597" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="640.83" y="607.5" ></text> +</g> +<g > +<title>__file_remove_privs (10,101,010 samples, 0.06%)</title><rect x="779.7" y="549" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="782.68" y="559.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="405.8" y="597" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="408.79" y="607.5" ></text> +</g> +<g > +<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="960.9" y="405" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="963.94" y="415.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (30,303,030 samples, 0.19%)</title><rect x="879.5" y="613" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="882.51" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="74.8" y="933" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="77.80" y="943.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="725" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1241.52" y="735.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="484.6" y="533" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="487.59" y="543.5" ></text> +</g> +<g > +<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="920.7" y="565" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="923.66" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (40,404,040 samples, 0.25%)</title><rect x="556.4" y="837" width="3.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="559.40" y="847.5" ></text> +</g> +<g > +<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="118.6" y="805" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="121.58" y="815.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="437" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1129.43" y="447.5" ></text> +</g> +<g > +<title>ext4_rmdir (20,202,020 samples, 0.13%)</title><rect x="404.0" y="693" width="1.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="407.04" y="703.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="865.5" y="549" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="868.49" y="559.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1061.6" y="645" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1064.64" y="655.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="443.4" y="613" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="446.44" y="623.5" ></text> +</g> +<g > +<title>tcp_child_process (30,303,030 samples, 0.19%)</title><rect x="1378.6" y="277" width="2.6" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="1381.62" y="287.5" ></text> +</g> +<g > +<title>__open64_nocancel (20,202,020 samples, 0.13%)</title><rect x="1235.0" y="757" width="1.8" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="1238.01" y="767.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="613" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="1348.34" y="623.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (40,404,040 samples, 0.25%)</title><rect x="625.6" y="677" width="3.5" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="628.57" y="687.5" ></text> +</g> +<g > +<title>storvsc_do_io (10,101,010 samples, 0.06%)</title><rect x="822.6" y="309" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="825.59" y="319.5" ></text> +</g> +<g > +<title>ext4_free_blocks (20,202,020 samples, 0.13%)</title><rect x="842.7" y="501" width="1.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="845.73" y="511.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="553.8" y="613" width="1.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="556.77" y="623.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.06%)</title><rect x="965.3" y="693" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="968.32" y="703.5" ></text> +</g> +<g > +<title>__close_nocancel (20,202,020 samples, 0.13%)</title><rect x="237.7" y="773" width="1.7" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="240.66" y="783.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1223.6" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1226.63" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="329.6" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="332.61" y="767.5" ></text> +</g> +<g > +<title>rb_first (10,101,010 samples, 0.06%)</title><rect x="251.7" y="645" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" /> +<text x="254.68" y="655.5" ></text> +</g> +<g > +<title>alloc_empty_file (20,202,020 samples, 0.13%)</title><rect x="453.9" y="533" width="1.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="456.95" y="543.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="647.5" y="741" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="650.46" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="523.1" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="526.12" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="809.5" y="709" width="0.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="812.45" y="719.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="645.7" y="565" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="648.71" y="575.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1198.2" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1201.24" y="671.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (20,202,020 samples, 0.13%)</title><rect x="172.9" y="517" width="1.7" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="175.87" y="527.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="785.8" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="788.81" y="703.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="189.5" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="192.51" y="511.5" ></text> +</g> +<g > +<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="661" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="1190.73" y="671.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="651.8" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="654.84" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1117.7" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1120.68" y="735.5" ></text> +</g> +<g > +<title>vfs_rmdir (272,727,270 samples, 1.71%)</title><rect x="341.0" y="677" width="23.6" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="343.99" y="687.5" >v..</text> +</g> +<g > +<title>[libgit2.so.1.7.2] (171,717,170 samples, 1.08%)</title><rect x="480.2" y="789" width="14.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="483.22" y="799.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="74.8" y="869" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="77.80" y="879.5" ></text> +</g> +<g > +<title>vfs_unlink (40,404,040 samples, 0.25%)</title><rect x="188.6" y="597" width="3.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="191.63" y="607.5" ></text> +</g> +<g > +<title>tcp_time_wait (10,101,010 samples, 0.06%)</title><rect x="1373.4" y="229" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1376.36" y="239.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="535.4" y="661" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="538.38" y="671.5" ></text> +</g> +<g > +<title>__netif_receive_skb (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="389" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1345.72" y="399.5" ></text> +</g> +<g > +<title>__libc_start_main (14,252,525,110 samples, 89.53%)</title><rect x="154.5" y="1029" width="1235.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="157.48" y="1039.5" >__libc_start_main</text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1022.61" y="799.5" ></text> +</g> +<g > +<title>refill_obj_stock (10,101,010 samples, 0.06%)</title><rect x="784.9" y="581" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="787.94" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (303,030,300 samples, 1.90%)</title><rect x="372.5" y="757" width="26.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="375.51" y="767.5" >d..</text> +</g> +<g > +<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="281.4" y="533" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="284.45" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="834.0" y="677" width="0.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="836.97" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="650.1" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="653.09" y="751.5" ></text> +</g> +<g > +<title>ip_finish_output2 (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="549" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1345.72" y="559.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="125.6" y="709" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="128.58" y="719.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (40,404,040 samples, 0.25%)</title><rect x="1377.7" y="309" width="3.5" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="1380.74" y="319.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="74.8" y="965" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="77.80" y="975.5" ></text> +</g> +<g > +<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.06%)</title><rect x="592.3" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="595.30" y="575.5" ></text> +</g> +<g > +<title>__mt_dup (10,101,010 samples, 0.06%)</title><rect x="1277.0" y="709" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="1280.04" y="719.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="191.3" y="469" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="194.26" y="479.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="777.1" y="629" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="780.06" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="918.0" y="405" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="921.03" y="415.5" ></text> +</g> +<g > +<title>remove (80,808,080 samples, 0.51%)</title><rect x="170.2" y="677" width="7.0" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="173.24" y="687.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (50,505,050 samples, 0.32%)</title><rect x="1369.9" y="341" width="4.3" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1372.86" y="351.5" ></text> +</g> +<g > +<title>mntput (10,101,010 samples, 0.06%)</title><rect x="452.2" y="661" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="455.20" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_brk (10,101,010 samples, 0.06%)</title><rect x="328.7" y="661" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="331.73" y="671.5" ></text> +</g> +<g > +<title>wake_up_bit (10,101,010 samples, 0.06%)</title><rect x="661.5" y="469" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="664.47" y="479.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="571.3" y="597" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="574.28" y="607.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (20,202,020 samples, 0.13%)</title><rect x="818.2" y="581" width="1.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="821.21" y="591.5" ></text> +</g> +<g > +<title>path_lookupat (40,404,040 samples, 0.25%)</title><rect x="937.3" y="517" width="3.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="940.30" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="1214.9" y="725" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1217.87" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="726.3" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="729.27" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="987.2" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="990.21" y="815.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="543.3" y="757" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="546.26" y="767.5" ></text> +</g> +<g > +<title>user_path_at_empty (101,010,100 samples, 0.63%)</title><rect x="144.8" y="917" width="8.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="147.85" y="927.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="650.1" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="653.09" y="735.5" ></text> +</g> +<g > +<title>ip_output (50,505,050 samples, 0.32%)</title><rect x="1363.7" y="613" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1366.73" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="24.0" y="901" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="27.01" y="911.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="1270.0" y="709" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="1273.04" y="719.5" ></text> +</g> +<g > +<title>tcp_rcv_established (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="277" width="2.6" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1336.08" y="287.5" ></text> +</g> +<g > +<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="90.6" y="709" width="0.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="93.56" y="719.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (20,202,020 samples, 0.13%)</title><rect x="932.0" y="533" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="935.04" y="543.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="543.3" y="677" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="546.26" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="482.0" y="645" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="484.97" y="655.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (40,404,040 samples, 0.25%)</title><rect x="466.2" y="661" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="469.21" y="671.5" ></text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.06%)</title><rect x="545.9" y="741" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="548.89" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="649.2" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="652.21" y="735.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="182.5" y="645" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="185.50" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="514.4" y="773" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="517.37" y="783.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="373.4" y="677" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="376.39" y="687.5" ></text> +</g> +<g > +<title>inflate (20,202,020 samples, 0.13%)</title><rect x="530.1" y="709" width="1.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="533.13" y="719.5" ></text> +</g> +<g > +<title>worker_get_fd (10,101,010 samples, 0.06%)</title><rect x="21.4" y="981" width="0.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" /> +<text x="24.38" y="991.5" ></text> +</g> +<g > +<title>scsi_queue_rq (10,101,010 samples, 0.06%)</title><rect x="930.3" y="373" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="933.29" y="383.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="645" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1221.38" y="655.5" ></text> +</g> +<g > +<title>handle_pte_fault (20,202,020 samples, 0.13%)</title><rect x="1313.8" y="789" width="1.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="1316.82" y="799.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="84.4" y="741" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="87.43" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="862.0" y="773" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="864.99" y="783.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="417.2" y="629" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="420.17" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="515.2" y="757" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="518.24" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1027.86" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (8,121,212,040 samples, 51.02%)</title><rect x="559.9" y="885" width="704.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="562.90" y="895.5" >[libgit2.so.1.7.2]</text> +</g> +<g > +<title>may_delete (10,101,010 samples, 0.06%)</title><rect x="1066.9" y="693" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1069.89" y="703.5" ></text> +</g> +<g > +<title>libjson_get_string (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="853" width="0.8" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" /> +<text x="1354.47" y="863.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="841.9" y="469" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="844.85" y="479.5" ></text> +</g> +<g > +<title>readdir64 (50,505,050 samples, 0.32%)</title><rect x="418.9" y="869" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="421.92" y="879.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="757" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1063.76" y="767.5" ></text> +</g> +<g > +<title>init_file (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="773" width="0.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="1343.96" y="783.5" ></text> +</g> +<g > +<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="255.2" y="565" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="258.18" y="575.5" ></text> +</g> +<g > +<title>__filemap_fdatawrite_range (20,202,020 samples, 0.13%)</title><rect x="848.0" y="597" width="1.7" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="850.98" y="607.5" ></text> +</g> +<g > +<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="599.3" y="645" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" /> +<text x="602.30" y="655.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="175.5" y="501" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="178.49" y="511.5" ></text> +</g> +<g > +<title>ext4_get_group_desc (10,101,010 samples, 0.06%)</title><rect x="1037.1" y="405" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" /> +<text x="1040.12" y="415.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.06%)</title><rect x="767.4" y="661" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="770.42" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="903.1" y="709" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="906.15" y="719.5" ></text> +</g> +<g > +<title>git_reference_name_to_id (30,303,030 samples, 0.19%)</title><rect x="972.3" y="725" width="2.6" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="975.32" y="735.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="880.4" y="469" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="883.38" y="479.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="215.8" y="613" width="0.8" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" /> +<text x="218.77" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="418.9" y="837" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="421.92" y="847.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (30,303,030 samples, 0.19%)</title><rect x="254.3" y="613" width="2.6" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="257.30" y="623.5" ></text> +</g> +<g > +<title>__blk_flush_plug (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="485" width="2.7" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="1136.44" y="495.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="322.6" y="581" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="325.60" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (121,212,120 samples, 0.76%)</title><rect x="1049.4" y="757" width="10.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1052.38" y="767.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="362.0" y="501" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="365.01" y="511.5" ></text> +</g> +<g > +<title>vfs_mkdir (10,101,010 samples, 0.06%)</title><rect x="594.0" y="677" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="597.05" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="773" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1202.11" y="783.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="610.7" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="613.69" y="735.5" ></text> +</g> +<g > +<title>read (20,202,020 samples, 0.13%)</title><rect x="1106.3" y="725" width="1.7" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="1109.29" y="735.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="475.8" y="565" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="478.84" y="575.5" ></text> +</g> +<g > +<title>_raw_read_lock (10,101,010 samples, 0.06%)</title><rect x="415.4" y="613" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="418.42" y="623.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="908.4" y="661" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="911.40" y="671.5" ></text> +</g> +<g > +<title>mpage_prepare_extent_to_map (10,101,010 samples, 0.06%)</title><rect x="796.3" y="485" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="799.32" y="495.5" ></text> +</g> +<g > +<title>__filemap_get_folio (30,303,030 samples, 0.19%)</title><rect x="1006.5" y="597" width="2.6" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="1009.47" y="607.5" ></text> +</g> +<g > +<title>do_faccessat (30,303,030 samples, 0.19%)</title><rect x="1211.4" y="677" width="2.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="1214.37" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="834.8" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="837.85" y="719.5" ></text> +</g> +<g > +<title>filemap_release_folio (10,101,010 samples, 0.06%)</title><rect x="187.8" y="469" width="0.8" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" /> +<text x="190.75" y="479.5" ></text> +</g> +<g > +<title>git_repository_set_head (747,474,740 samples, 4.70%)</title><rect x="738.5" y="837" width="64.8" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" /> +<text x="741.53" y="847.5" >git_rep..</text> +</g> +<g > +<title>ext4_do_writepages (40,404,040 samples, 0.25%)</title><rect x="466.2" y="565" width="3.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="469.21" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="789" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1063.76" y="799.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.06%)</title><rect x="546.8" y="741" width="0.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="549.76" y="751.5" ></text> +</g> +<g > +<title>block_write_end (10,101,010 samples, 0.06%)</title><rect x="807.7" y="565" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" /> +<text x="810.70" y="575.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="543.3" y="741" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="546.26" y="751.5" ></text> +</g> +<g > +<title>gmtime_r@plt (10,101,010 samples, 0.06%)</title><rect x="801.6" y="757" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="804.57" y="767.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="528.4" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="531.38" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="763.9" y="581" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="766.92" y="591.5" ></text> +</g> +<g > +<title>ext4_find_extent (10,101,010 samples, 0.06%)</title><rect x="670.2" y="453" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="673.23" y="463.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1169.3" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1172.34" y="543.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="721.9" y="597" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="724.89" y="607.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="27.5" y="693" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="30.51" y="703.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (30,303,030 samples, 0.19%)</title><rect x="1126.4" y="549" width="2.7" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="1129.43" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="445.2" y="709" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="448.19" y="719.5" ></text> +</g> +<g > +<title>do_renameat2 (90,909,090 samples, 0.57%)</title><rect x="1096.7" y="661" width="7.8" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="1099.66" y="671.5" ></text> +</g> +<g > +<title>io_schedule (10,101,010 samples, 0.06%)</title><rect x="108.1" y="709" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="111.07" y="719.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="772.7" y="453" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="775.68" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="730.6" y="757" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="733.65" y="767.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="565" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="1261.65" y="575.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="834.8" y="757" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="837.85" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="706.1" y="645" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="709.13" y="655.5" ></text> +</g> +<g > +<title>git_config_snapshot (20,202,020 samples, 0.13%)</title><rect x="850.6" y="837" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="853.61" y="847.5" ></text> +</g> +<g > +<title>wake_up_bit (20,202,020 samples, 0.13%)</title><rect x="130.0" y="709" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="132.96" y="719.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="710.5" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="713.51" y="607.5" ></text> +</g> +<g > +<title>fprintf (60,606,060 samples, 0.38%)</title><rect x="431.2" y="869" width="5.2" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="434.18" y="879.5" ></text> +</g> +<g > +<title>json_object_object_add_ex (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="837" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="1392.12" y="847.5" ></text> +</g> +<g > +<title>iput (40,404,040 samples, 0.25%)</title><rect x="1028.4" y="597" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1031.36" y="607.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="179.0" y="453" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="182.00" y="463.5" ></text> +</g> +<g > +<title>getcwd (10,101,010 samples, 0.06%)</title><rect x="158.0" y="901" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="160.98" y="911.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="503.0" y="533" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="505.98" y="543.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="940.8" y="549" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="943.80" y="559.5" ></text> +</g> +<g > +<title>jsonrpc_request_destroy (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="901" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" /> +<text x="1353.60" y="911.5" ></text> +</g> +<g > +<title>simple_copy_to_iter (10,101,010 samples, 0.06%)</title><rect x="1358.5" y="613" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1361.48" y="623.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (40,404,040 samples, 0.25%)</title><rect x="36.3" y="469" width="3.5" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="39.27" y="479.5" ></text> +</g> +<g > +<title>submit_bio_noacct_nocheck (40,404,040 samples, 0.25%)</title><rect x="1136.9" y="453" width="3.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1139.94" y="463.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (131,313,130 samples, 0.82%)</title><rect x="581.8" y="629" width="11.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="584.79" y="639.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="597" width="6.1" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1037.49" y="607.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="773" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1241.52" y="783.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="523.1" y="581" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="526.12" y="591.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="453" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="1037.49" y="463.5" ></text> +</g> +<g > +<title>ext4_symlink (20,202,020 samples, 0.13%)</title><rect x="1061.6" y="693" width="1.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="1064.64" y="703.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="215.8" y="677" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="218.77" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="482.0" y="661" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="484.97" y="671.5" ></text> +</g> +<g > +<title>__do_sys_clone3 (202,020,200 samples, 1.27%)</title><rect x="45.9" y="757" width="17.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="48.90" y="767.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="741.2" y="549" width="0.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="744.15" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="757" width="5.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1009.47" y="767.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1262.53" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="428.6" y="821" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="431.55" y="831.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.06%)</title><rect x="834.0" y="741" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="836.97" y="751.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (30,303,030 samples, 0.19%)</title><rect x="1313.8" y="869" width="2.6" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1316.82" y="879.5" ></text> +</g> +<g > +<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="482.8" y="629" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="485.84" y="639.5" ></text> +</g> +<g > +<title>nf_nat_ipv4_local_in (10,101,010 samples, 0.06%)</title><rect x="1381.2" y="309" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="1384.24" y="319.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="11.8" y="869" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="14.75" y="879.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="376.0" y="629" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="379.02" y="639.5" ></text> +</g> +<g > +<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="485" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="1130.31" y="495.5" ></text> +</g> +<g > +<title>main (565,656,560 samples, 3.55%)</title><rect x="24.0" y="997" width="49.0" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="27.01" y="1007.5" >main</text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="792.8" y="389" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="795.82" y="399.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.06%)</title><rect x="193.9" y="645" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="196.88" y="655.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (80,808,080 samples, 0.51%)</title><rect x="84.4" y="773" width="7.0" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="87.43" y="783.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="921.5" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="924.54" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1188.6" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1191.60" y="719.5" ></text> +</g> +<g > +<title>alloc_pages_mpol (10,101,010 samples, 0.06%)</title><rect x="707.9" y="485" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="710.88" y="495.5" ></text> +</g> +<g > +<title>libjson_from_string (50,505,050 samples, 0.32%)</title><rect x="1353.2" y="869" width="4.4" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" /> +<text x="1356.22" y="879.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="741" width="8.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1077.77" y="751.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="132.6" y="693" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="135.59" y="703.5" ></text> +</g> +<g > +<title>__lookup_slow (50,505,050 samples, 0.32%)</title><rect x="146.6" y="853" width="4.4" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="149.60" y="863.5" ></text> +</g> +<g > +<title>log_prefix_thread_id (10,101,010 samples, 0.06%)</title><rect x="430.3" y="885" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="433.30" y="895.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="979.3" y="613" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="982.33" y="623.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="645" width="6.1" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1364.98" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="241.2" y="725" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="244.17" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="834.8" y="693" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="837.85" y="703.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1131.7" y="565" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1134.69" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="546.8" y="773" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="549.76" y="783.5" ></text> +</g> +<g > +<title>free@plt (10,101,010 samples, 0.06%)</title><rect x="526.6" y="741" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="529.62" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="558.1" y="725" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="561.15" y="735.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="389" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1336.08" y="399.5" ></text> +</g> +<g > +<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.06%)</title><rect x="703.5" y="453" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="706.50" y="463.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="164.1" y="821" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="167.11" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="677" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="1098.79" y="687.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.06%)</title><rect x="1181.6" y="661" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="1184.60" y="671.5" ></text> +</g> +<g > +<title>ext4_es_delayed_clu (10,101,010 samples, 0.06%)</title><rect x="584.4" y="533" width="0.9" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" /> +<text x="587.42" y="543.5" ></text> +</g> +<g > +<title>git_signature_default (40,404,040 samples, 0.25%)</title><rect x="798.1" y="773" width="3.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="801.07" y="783.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="837" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1350.97" y="847.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1119.4" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1122.43" y="655.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (10,101,010 samples, 0.06%)</title><rect x="402.3" y="693" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="405.28" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1097.04" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="546.8" y="805" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="549.76" y="815.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="601.1" y="661" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="604.05" y="671.5" ></text> +</g> +<g > +<title>handle_softirqs (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="469" width="2.6" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1336.08" y="479.5" ></text> +</g> +<g > +<title>tcp_sendmsg (40,404,040 samples, 0.25%)</title><rect x="11.8" y="789" width="3.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="14.75" y="799.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="216.6" y="741" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="219.65" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1185.1" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1188.10" y="815.5" ></text> +</g> +<g > +<title>libgit_repository_free (121,212,120 samples, 0.76%)</title><rect x="158.9" y="917" width="10.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" /> +<text x="161.86" y="927.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="956.6" y="469" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="959.56" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (222,222,220 samples, 1.40%)</title><rect x="1220.1" y="821" width="19.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1223.13" y="831.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.13%)</title><rect x="558.1" y="789" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="561.15" y="799.5" ></text> +</g> +<g > +<title>__netif_receive_skb (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="405" width="5.2" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1372.86" y="415.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="978.5" y="645" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="981.45" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="645.7" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="648.71" y="719.5" ></text> +</g> +<g > +<title>submit_bio_noacct (10,101,010 samples, 0.06%)</title><rect x="466.2" y="517" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" /> +<text x="469.21" y="527.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="296.3" y="469" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="299.33" y="479.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="199.1" y="565" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" /> +<text x="202.14" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="158.0" y="869" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="160.98" y="879.5" ></text> +</g> +<g > +<title>d_walk (10,101,010 samples, 0.06%)</title><rect x="210.5" y="581" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="213.52" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="707.9" y="693" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="710.88" y="703.5" ></text> +</g> +<g > +<title>half_md4_transform.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1230.6" y="549" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="1233.63" y="559.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="453" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="1040.99" y="463.5" ></text> +</g> +<g > +<title>__sock_create (10,101,010 samples, 0.06%)</title><rect x="1340.1" y="837" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" /> +<text x="1343.09" y="847.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="741" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="1332.58" y="751.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="461.0" y="677" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="463.95" y="687.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="487.2" y="629" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="490.22" y="639.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.06%)</title><rect x="713.1" y="725" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="716.13" y="735.5" ></text> +</g> +<g > +<title>skb_copy_datagram_iter (10,101,010 samples, 0.06%)</title><rect x="1358.5" y="645" width="0.9" height="15.0" fill="rgb(0,230,172)" rx="2" ry="2" /> +<text x="1361.48" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="870.7" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="873.75" y="687.5" ></text> +</g> +<g > +<title>generic_update_time (30,303,030 samples, 0.19%)</title><rect x="254.3" y="645" width="2.6" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="257.30" y="655.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="523.1" y="565" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" /> +<text x="526.12" y="575.5" ></text> +</g> +<g > +<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="1118.6" y="661" width="0.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="1121.55" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="862.9" y="693" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="865.87" y="703.5" ></text> +</g> +<g > +<title>hv_ringbuffer_write (10,101,010 samples, 0.06%)</title><rect x="665.9" y="261" width="0.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="668.85" y="271.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (20,202,020 samples, 0.13%)</title><rect x="880.4" y="565" width="1.7" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="883.38" y="575.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="423.3" y="645" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="426.30" y="655.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="816.5" y="501" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="819.46" y="511.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="397.0" y="629" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" /> +<text x="400.03" y="639.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="108.1" y="805" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="111.07" y="815.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="15.3" y="949" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="18.25" y="959.5" ></text> +</g> +<g > +<title>__x64_sys_rename (131,313,130 samples, 0.82%)</title><rect x="460.1" y="741" width="11.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="463.08" y="751.5" ></text> +</g> +<g > +<title>__netif_receive_skb_core.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="36.3" y="309" width="0.8" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" /> +<text x="39.27" y="319.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="710.5" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="713.51" y="591.5" ></text> +</g> +<g > +<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="730.6" y="549" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="733.65" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (171,717,170 samples, 1.08%)</title><rect x="77.4" y="949" width="14.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="80.42" y="959.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.06%)</title><rect x="1311.2" y="677" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="1314.19" y="687.5" ></text> +</g> +<g > +<title>git_reference_symbolic_create_matching (101,010,100 samples, 0.63%)</title><rect x="729.8" y="821" width="8.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="732.77" y="831.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="918.0" y="533" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="921.03" y="543.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="864.6" y="565" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="867.62" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="693" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="755.54" y="703.5" ></text> +</g> +<g > +<title>ext4_fname_free_filename (10,101,010 samples, 0.06%)</title><rect x="150.1" y="821" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" /> +<text x="153.10" y="831.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="637.0" y="629" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="639.95" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_eventfd2 (20,202,020 samples, 0.13%)</title><rect x="64.3" y="821" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="67.29" y="831.5" ></text> +</g> +<g > +<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="440.8" y="533" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="443.81" y="543.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (30,303,030 samples, 0.19%)</title><rect x="425.1" y="661" width="2.6" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="428.05" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="859.4" y="725" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="862.37" y="735.5" ></text> +</g> +<g > +<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="633.5" y="581" width="0.8" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" /> +<text x="636.45" y="591.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="373" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1140.82" y="383.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="453" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="1129.43" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="862.0" y="805" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="864.99" y="815.5" ></text> +</g> +<g > +<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="807.7" y="533" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="810.70" y="543.5" ></text> +</g> +<g > +<title>blk_mq_attempt_bio_merge (10,101,010 samples, 0.06%)</title><rect x="1138.7" y="405" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="1141.69" y="415.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="741" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1241.52" y="751.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (20,202,020 samples, 0.13%)</title><rect x="270.9" y="597" width="1.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="273.94" y="607.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="475.8" y="709" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="478.84" y="719.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1331.3" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1334.33" y="879.5" ></text> +</g> +<g > +<title>alloc_inode (20,202,020 samples, 0.13%)</title><rect x="1151.8" y="661" width="1.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="1154.83" y="671.5" ></text> +</g> +<g > +<title>close@plt (10,101,010 samples, 0.06%)</title><rect x="1018.7" y="805" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="1021.73" y="815.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1094.9" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="1097.91" y="575.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1069.5" y="565" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1072.52" y="575.5" ></text> +</g> +<g > +<title>__ext4_unlink (111,111,110 samples, 0.70%)</title><rect x="226.3" y="597" width="9.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="229.28" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="742.0" y="629" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="745.03" y="639.5" ></text> +</g> +<g > +<title>ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="673.7" y="613" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="676.73" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_link (30,303,030 samples, 0.19%)</title><rect x="974.9" y="677" width="2.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="977.95" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="20.5" y="917" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="23.51" y="927.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="985.5" y="613" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="988.46" y="623.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="603.7" y="613" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="606.68" y="623.5" ></text> +</g> +<g > +<title>write (40,404,040 samples, 0.25%)</title><rect x="805.1" y="741" width="3.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="808.08" y="751.5" ></text> +</g> +<g > +<title>log_entry_start (40,404,040 samples, 0.25%)</title><rect x="69.5" y="949" width="3.5" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" /> +<text x="72.54" y="959.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="315.6" y="645" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="318.60" y="655.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.06%)</title><rect x="547.6" y="805" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="550.64" y="815.5" ></text> +</g> +<g > +<title>net_connect (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="949" width="12.2" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" /> +<text x="1379.87" y="959.5" ></text> +</g> +<g > +<title>post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="805.1" y="469" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="808.08" y="479.5" ></text> +</g> +<g > +<title>link (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="741" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="1030.49" y="751.5" ></text> +</g> +<g > +<title>__dentry_kill (10,101,010 samples, 0.06%)</title><rect x="33.6" y="741" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="36.64" y="751.5" ></text> +</g> +<g > +<title>chmod_common (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="709" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1014.73" y="719.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="607.2" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="610.18" y="591.5" ></text> +</g> +<g > +<title>scsi_dispatch_cmd (10,101,010 samples, 0.06%)</title><rect x="665.9" y="325" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="668.85" y="335.5" ></text> +</g> +<g > +<title>git_config_add_backend (40,404,040 samples, 0.25%)</title><rect x="852.4" y="805" width="3.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="855.36" y="815.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="734.1" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="737.15" y="719.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="597" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="1026.98" y="607.5" ></text> +</g> +<g > +<title>ext4_link (20,202,020 samples, 0.13%)</title><rect x="974.9" y="629" width="1.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="977.95" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="709" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1195.11" y="719.5" ></text> +</g> +<g > +<title>__folio_put (10,101,010 samples, 0.06%)</title><rect x="35.4" y="325" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" /> +<text x="38.39" y="335.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="408.4" y="757" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="411.41" y="767.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="338.4" y="533" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="341.36" y="543.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="537.1" y="629" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="540.13" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="866.4" y="741" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="869.37" y="751.5" ></text> +</g> +<g > +<title>sock_recvmsg (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="709" width="1.7" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="1361.48" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.82%)</title><rect x="786.7" y="725" width="11.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="789.69" y="735.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="116.8" y="789" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="119.83" y="799.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (30,303,030 samples, 0.19%)</title><rect x="539.8" y="677" width="2.6" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="542.76" y="687.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1275.3" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1278.29" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="501.2" y="645" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="504.23" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.44%)</title><rect x="714.0" y="725" width="6.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="717.01" y="735.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="516.1" y="597" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="519.12" y="607.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (20,202,020 samples, 0.13%)</title><rect x="806.0" y="565" width="1.7" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="808.95" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="485.5" y="725" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="488.47" y="735.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="156.2" y="805" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="159.23" y="815.5" ></text> +</g> +<g > +<title>ext4_getblk (20,202,020 samples, 0.13%)</title><rect x="270.9" y="565" width="1.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="273.94" y="575.5" ></text> +</g> +<g > +<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="864.6" y="533" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="867.62" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="735.0" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="738.03" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1243.27" y="767.5" ></text> +</g> +<g > +<title>ext4_truncate (10,101,010 samples, 0.06%)</title><rect x="463.6" y="613" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="466.58" y="623.5" ></text> +</g> +<g > +<title>do_dentry_open (20,202,020 samples, 0.13%)</title><rect x="100.2" y="837" width="1.7" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" /> +<text x="103.19" y="847.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="501.2" y="581" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="504.23" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="773" width="8.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1077.77" y="783.5" ></text> +</g> +<g > +<title>mas_store (40,404,040 samples, 0.25%)</title><rect x="1302.4" y="709" width="3.5" height="15.0" fill="rgb(0,213,96)" rx="2" ry="2" /> +<text x="1305.44" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1321.7" y="869" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1324.70" y="879.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="353.2" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="356.25" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="897.9" y="693" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="900.89" y="703.5" ></text> +</g> +<g > +<title>__filemap_fdatawrite_range (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="565" width="6.1" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="1037.49" y="575.5" ></text> +</g> +<g > +<title>rmdir (292,929,290 samples, 1.84%)</title><rect x="340.1" y="773" width="25.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="343.11" y="783.5" >r..</text> +</g> +<g > +<title>copy_process (444,444,440 samples, 2.79%)</title><rect x="1275.3" y="757" width="38.5" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" /> +<text x="1278.29" y="767.5" >cop..</text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="229.8" y="565" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="232.78" y="575.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="426.8" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="429.80" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_access (40,404,040 samples, 0.25%)</title><rect x="536.3" y="677" width="3.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="539.26" y="687.5" ></text> +</g> +<g > +<title>do_vmi_align_munmap (10,101,010 samples, 0.06%)</title><rect x="328.7" y="629" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" /> +<text x="331.73" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="896.1" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="899.14" y="671.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="550.3" y="549" width="0.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="553.27" y="559.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1211.4" y="709" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1214.37" y="719.5" ></text> +</g> +<g > +<title>__ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="565" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1345.72" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="401.4" y="773" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="404.41" y="783.5" ></text> +</g> +<g > +<title>ext4_bread (70,707,070 samples, 0.44%)</title><rect x="957.4" y="533" width="6.2" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="960.44" y="543.5" ></text> +</g> +<g > +<title>inet_csk_clear_xmit_timers (10,101,010 samples, 0.06%)</title><rect x="1373.4" y="165" width="0.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" /> +<text x="1376.36" y="175.5" ></text> +</g> +<g > +<title>malloc (20,202,020 samples, 0.13%)</title><rect x="241.2" y="741" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="244.17" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="555.5" y="837" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="558.52" y="847.5" ></text> +</g> +<g > +<title>__x64_sys_accept4 (40,404,040 samples, 0.25%)</title><rect x="66.0" y="821" width="3.5" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" /> +<text x="69.04" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="365.5" y="709" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="368.51" y="719.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="1009.1" y="597" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="1012.10" y="607.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="484.6" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="487.59" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (2,272,727,250 samples, 14.28%)</title><rect x="169.4" y="821" width="197.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="172.37" y="831.5" >[libc.so.6]</text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="929.4" y="581" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="932.42" y="591.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="218.4" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="221.40" y="655.5" ></text> +</g> +<g > +<title>net_send_part (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="885" width="6.1" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" /> +<text x="1335.21" y="895.5" ></text> +</g> +<g > +<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="661.5" y="501" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="664.47" y="511.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="172.0" y="437" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="174.99" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="828.7" y="805" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="831.72" y="815.5" ></text> +</g> +<g > +<title>libjson_send (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="933" width="7.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1363.23" y="943.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="424.2" y="677" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="427.18" y="687.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="755.2" y="725" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="758.16" y="735.5" ></text> +</g> +<g > +<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="546.8" y="565" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="549.76" y="575.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (70,707,070 samples, 0.44%)</title><rect x="380.4" y="597" width="6.1" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="383.39" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="693.0" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="695.99" y="687.5" ></text> +</g> +<g > +<title>ext4_rename2 (121,212,120 samples, 0.76%)</title><rect x="1131.7" y="645" width="10.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="1134.69" y="655.5" ></text> +</g> +<g > +<title>tcp_rcv_synsent_state_process (60,606,060 samples, 0.38%)</title><rect x="1376.9" y="709" width="5.2" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1379.87" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="922.4" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="925.41" y="751.5" ></text> +</g> +<g > +<title>neigh_hh_output (40,404,040 samples, 0.25%)</title><rect x="36.3" y="485" width="3.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="39.27" y="495.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="967.9" y="597" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="970.94" y="607.5" ></text> +</g> +<g > +<title>ip_rcv (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="453" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1390.37" y="463.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.06%)</title><rect x="1015.2" y="709" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="1018.23" y="719.5" ></text> +</g> +<g > +<title>alloc_pages_mpol (10,101,010 samples, 0.06%)</title><rect x="926.8" y="469" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="929.79" y="479.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="877.8" y="549" width="0.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="880.75" y="559.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="505.6" y="629" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="508.61" y="639.5" ></text> +</g> +<g > +<title>git_config_add_backend (30,303,030 samples, 0.19%)</title><rect x="798.9" y="741" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="801.95" y="751.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="899.6" y="565" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="902.64" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_rename (90,909,090 samples, 0.57%)</title><rect x="1096.7" y="677" width="7.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="1099.66" y="687.5" ></text> +</g> +<g > +<title>__dentry_kill (90,909,090 samples, 0.57%)</title><rect x="654.5" y="645" width="7.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="657.47" y="655.5" ></text> +</g> +<g > +<title>do_filp_open (111,111,110 samples, 0.70%)</title><rect x="1049.4" y="709" width="9.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="1052.38" y="719.5" ></text> +</g> +<g > +<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="282.3" y="501" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="285.32" y="511.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="458.3" y="757" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="461.32" y="767.5" ></text> +</g> +<g > +<title>ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="645" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1345.72" y="655.5" ></text> +</g> +<g > +<title>dd_request_merge (10,101,010 samples, 0.06%)</title><rect x="466.2" y="373" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" /> +<text x="469.21" y="383.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="924.2" y="773" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="927.16" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="981.1" y="693" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="984.08" y="703.5" ></text> +</g> +<g > +<title>unlock_buffer (10,101,010 samples, 0.06%)</title><rect x="825.2" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="828.22" y="623.5" ></text> +</g> +<g > +<title>from_kgid (10,101,010 samples, 0.06%)</title><rect x="381.3" y="501" width="0.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="384.27" y="511.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="629" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1345.72" y="639.5" ></text> +</g> +<g > +<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="31.9" y="805" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="34.89" y="815.5" ></text> +</g> +<g > +<title>cmd_dispatcher_handle_event (111,111,110 samples, 0.70%)</title><rect x="1350.6" y="933" width="9.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1353.60" y="943.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="775.3" y="613" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="778.30" y="623.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="748.2" y="565" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="751.16" y="575.5" ></text> +</g> +<g > +<title>__wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="108.1" y="741" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="111.07" y="751.5" ></text> +</g> +<g > +<title>pipe2 (20,202,020 samples, 0.13%)</title><rect x="1321.7" y="885" width="1.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1324.70" y="895.5" ></text> +</g> +<g > +<title>iterate_dir (121,212,120 samples, 0.76%)</title><rect x="246.4" y="677" width="10.5" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="249.42" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="530.50" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (30,303,030 samples, 0.19%)</title><rect x="401.4" y="757" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="404.41" y="767.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="395.3" y="581" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="398.28" y="591.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="389" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="1348.34" y="399.5" ></text> +</g> +<g > +<title>fsnotify_grab_connector (10,101,010 samples, 0.06%)</title><rect x="418.0" y="741" width="0.9" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" /> +<text x="421.05" y="751.5" ></text> +</g> +<g > +<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="752.5" y="485" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="755.54" y="495.5" ></text> +</g> +<g > +<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="411.9" y="645" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="414.92" y="655.5" ></text> +</g> +<g > +<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="998.6" y="549" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="1001.59" y="559.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="35.4" y="389" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="38.39" y="399.5" ></text> +</g> +<g > +<title>__x64_sys_openat (30,303,030 samples, 0.19%)</title><rect x="214.0" y="709" width="2.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="217.02" y="719.5" ></text> +</g> +<g > +<title>cmd_dispatcher_handle_conn_internal (111,111,110 samples, 0.70%)</title><rect x="1350.6" y="917" width="9.6" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" /> +<text x="1353.60" y="927.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="263.1" y="613" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="266.06" y="623.5" ></text> +</g> +<g > +<title>git_config_set_string (232,323,230 samples, 1.46%)</title><rect x="1021.4" y="805" width="20.1" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="1024.36" y="815.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1231.88" y="703.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="800.7" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="803.70" y="687.5" ></text> +</g> +<g > +<title>__pud_alloc (10,101,010 samples, 0.06%)</title><rect x="1284.0" y="677" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="1287.05" y="687.5" ></text> +</g> +<g > +<title>ext4_readdir (20,202,020 samples, 0.13%)</title><rect x="1229.8" y="645" width="1.7" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="1232.76" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="882.1" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="885.13" y="687.5" ></text> +</g> +<g > +<title>open64 (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="725" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="1095.28" y="735.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,636,363,620 samples, 10.28%)</title><rect x="169.4" y="789" width="141.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="172.37" y="799.5" >[libc.so.6]</text> +</g> +<g > +<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="645.7" y="597" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="648.71" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="789" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="530.50" y="799.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="700.9" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="703.88" y="511.5" ></text> +</g> +<g > +<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="884.8" y="693" width="1.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="887.76" y="703.5" ></text> +</g> +<g > +<title>prepare_creds (10,101,010 samples, 0.06%)</title><rect x="1275.3" y="725" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="1278.29" y="735.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="571.3" y="581" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="574.28" y="591.5" ></text> +</g> +<g > +<title>ext4_orphan_add (60,606,060 samples, 0.38%)</title><rect x="272.7" y="613" width="5.2" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="275.69" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.44%)</title><rect x="507.4" y="805" width="6.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="510.36" y="815.5" ></text> +</g> +<g > +<title>ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="197" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1336.96" y="207.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="188.6" y="501" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="191.63" y="511.5" ></text> +</g> +<g > +<title>vfs_fstatat (40,404,040 samples, 0.25%)</title><rect x="937.3" y="565" width="3.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="940.30" y="575.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="546.8" y="645" width="0.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="549.76" y="655.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="99.3" y="837" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="102.31" y="847.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="969.7" y="709" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="972.70" y="719.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="613" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1235.39" y="623.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="689.5" y="677" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="692.49" y="687.5" ></text> +</g> +<g > +<title>git_remote_create (595,959,590 samples, 3.74%)</title><rect x="804.2" y="869" width="51.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="807.20" y="879.5" >git_r..</text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="645" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1258.15" y="655.5" ></text> +</g> +<g > +<title>mpage_submit_folio (10,101,010 samples, 0.06%)</title><rect x="1038.9" y="453" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1041.87" y="463.5" ></text> +</g> +<g > +<title>do_renameat2 (111,111,110 samples, 0.70%)</title><rect x="925.0" y="709" width="9.7" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="928.04" y="719.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="1065.1" y="645" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" /> +<text x="1068.14" y="655.5" ></text> +</g> +<g > +<title>ext4_evict_inode (40,404,040 samples, 0.25%)</title><rect x="424.2" y="693" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="427.18" y="703.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="228.9" y="485" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="231.91" y="495.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="658.0" y="421" width="0.8" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="660.97" y="431.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (40,404,040 samples, 0.25%)</title><rect x="36.3" y="453" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="39.27" y="463.5" ></text> +</g> +<g > +<title>libgit_checkout (1,404,040,390 samples, 8.82%)</title><rect x="438.2" y="917" width="121.7" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="441.19" y="927.5" >libgit_checkout</text> +</g> +<g > +<title>do_mkdirat (151,515,150 samples, 0.95%)</title><rect x="950.4" y="613" width="13.2" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="953.43" y="623.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="919.8" y="581" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="922.78" y="591.5" ></text> +</g> +<g > +<title>get_unused_fd_flags (10,101,010 samples, 0.06%)</title><rect x="1004.7" y="693" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" /> +<text x="1007.72" y="703.5" ></text> +</g> +<g > +<title>unlink_cb (80,808,080 samples, 0.51%)</title><rect x="170.2" y="693" width="7.0" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="173.24" y="703.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (40,404,040 samples, 0.25%)</title><rect x="279.7" y="565" width="3.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="282.70" y="575.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="709" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1026.98" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (171,717,170 samples, 1.08%)</title><rect x="222.8" y="677" width="14.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="225.78" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (222,222,220 samples, 1.40%)</title><rect x="1220.1" y="805" width="19.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1223.13" y="815.5" ></text> +</g> +<g > +<title>__napi_poll (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="421" width="4.4" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1380.74" y="431.5" ></text> +</g> +<g > +<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.06%)</title><rect x="792.8" y="437" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="795.82" y="447.5" ></text> +</g> +<g > +<title>dd_dispatch_request (10,101,010 samples, 0.06%)</title><rect x="666.7" y="357" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="669.73" y="367.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="613.3" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="616.31" y="671.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="759.5" y="645" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="762.54" y="655.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (10,101,010 samples, 0.06%)</title><rect x="848.0" y="517" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="850.98" y="527.5" ></text> +</g> +<g > +<title>do_softirq (20,202,020 samples, 0.13%)</title><rect x="12.6" y="533" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="15.63" y="543.5" ></text> +</g> +<g > +<title>blk_mq_free_request (10,101,010 samples, 0.06%)</title><rect x="663.2" y="437" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="666.22" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (565,656,560 samples, 3.55%)</title><rect x="94.9" y="965" width="49.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="97.94" y="975.5" >do_s..</text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1036.2" y="469" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1039.24" y="479.5" ></text> +</g> +<g > +<title>uncharge_batch (10,101,010 samples, 0.06%)</title><rect x="429.4" y="613" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="432.43" y="623.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="645" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="1190.73" y="655.5" ></text> +</g> +<g > +<title>nd_jump_root (10,101,010 samples, 0.06%)</title><rect x="1144.8" y="661" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="1147.82" y="671.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="904.9" y="645" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="907.90" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="500.4" y="693" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="503.36" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (131,313,130 samples, 0.82%)</title><rect x="460.1" y="757" width="11.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="463.08" y="767.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (80,808,080 samples, 0.51%)</title><rect x="1256.0" y="789" width="7.0" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="1259.03" y="799.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="446.1" y="613" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="449.07" y="623.5" ></text> +</g> +<g > +<title>__send (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="869" width="6.1" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="1335.21" y="879.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="840.1" y="533" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="843.10" y="543.5" ></text> +</g> +<g > +<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="205.3" y="533" width="0.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="208.27" y="543.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1197.4" y="661" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1200.36" y="671.5" ></text> +</g> +<g > +<title>mpage_prepare_extent_to_map (10,101,010 samples, 0.06%)</title><rect x="672.9" y="501" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="675.86" y="511.5" ></text> +</g> +<g > +<title>x64_sys_call (131,313,130 samples, 0.82%)</title><rect x="786.7" y="693" width="11.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="789.69" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="535.4" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="538.38" y="687.5" ></text> +</g> +<g > +<title>write (50,505,050 samples, 0.32%)</title><rect x="1067.8" y="805" width="4.3" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1070.77" y="815.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="373.4" y="645" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="376.39" y="655.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="1168.5" y="549" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="1171.46" y="559.5" ></text> +</g> +<g > +<title>ext4_fname_setup_filename (10,101,010 samples, 0.06%)</title><rect x="139.6" y="789" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="142.59" y="799.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="886.5" y="613" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="889.51" y="623.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1098.79" y="623.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="984.6" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="987.58" y="607.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="585.3" y="453" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="588.29" y="463.5" ></text> +</g> +<g > +<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="1200.0" y="629" width="1.7" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="1202.99" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="401.4" y="789" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="404.41" y="799.5" ></text> +</g> +<g > +<title>ext4_superblock_csum_set (10,101,010 samples, 0.06%)</title><rect x="677.2" y="597" width="0.9" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" /> +<text x="680.23" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="500.4" y="725" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="503.36" y="735.5" ></text> +</g> +<g > +<title>ext4_mb_clear_bb (30,303,030 samples, 0.19%)</title><rect x="383.9" y="549" width="2.6" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="386.90" y="559.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="171.1" y="485" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="174.12" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1190.73" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.76%)</title><rect x="876.0" y="725" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="879.00" y="735.5" ></text> +</g> +<g > +<title>file_read (50,505,050 samples, 0.32%)</title><rect x="1317.3" y="885" width="4.4" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" /> +<text x="1320.32" y="895.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="440.8" y="453" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="443.81" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="886.5" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="889.51" y="719.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="807.7" y="517" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="810.70" y="527.5" ></text> +</g> +<g > +<title>tcp_send_fin (50,505,050 samples, 0.32%)</title><rect x="35.4" y="661" width="4.4" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="38.39" y="671.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="290.2" y="469" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="293.20" y="479.5" ></text> +</g> +<g > +<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="533.6" y="629" width="1.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="536.63" y="639.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (70,707,070 samples, 0.44%)</title><rect x="293.7" y="533" width="6.1" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="296.71" y="543.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="741.2" y="453" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="744.15" y="463.5" ></text> +</g> +<g > +<title>evict (30,303,030 samples, 0.19%)</title><rect x="405.8" y="677" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="408.79" y="687.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="551.1" y="549" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="554.14" y="559.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.25%)</title><rect x="289.3" y="565" width="3.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="292.33" y="575.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="783.2" y="501" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="786.19" y="511.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="197.4" y="565" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" /> +<text x="200.39" y="575.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1122.9" y="469" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1125.93" y="479.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="613" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1258.15" y="623.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="1002.1" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1005.09" y="575.5" ></text> +</g> +<g > +<title>git_reference_create_matching (464,646,460 samples, 2.92%)</title><rect x="438.2" y="869" width="40.3" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="441.19" y="879.5" >git..</text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1053.8" y="597" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1056.76" y="607.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="715.8" y="533" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="718.76" y="543.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="487.2" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="490.22" y="687.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="680.7" y="693" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="683.74" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="1202.6" y="709" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1205.61" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="757.8" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="760.79" y="703.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="693" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="1241.52" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="72.2" y="821" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="75.17" y="831.5" ></text> +</g> +<g > +<title>ext4_file_getattr (10,101,010 samples, 0.06%)</title><rect x="1256.9" y="629" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="1259.90" y="639.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="725" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1248.52" y="735.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="756.0" y="709" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="759.04" y="719.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="475.8" y="613" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="478.84" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="1147.4" y="645" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1150.45" y="655.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.06%)</title><rect x="680.7" y="725" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="683.74" y="735.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="782.3" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="785.31" y="575.5" ></text> +</g> +<g > +<title>__poll (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="933" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1352.72" y="943.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="553.8" y="677" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="556.77" y="687.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (40,404,040 samples, 0.25%)</title><rect x="136.1" y="773" width="3.5" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" /> +<text x="139.09" y="783.5" ></text> +</g> +<g > +<title>tcp_skb_entail (10,101,010 samples, 0.06%)</title><rect x="1335.7" y="725" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1338.71" y="735.5" ></text> +</g> +<g > +<title>git_repository_free (121,212,120 samples, 0.76%)</title><rect x="158.9" y="901" width="10.5" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="161.86" y="911.5" ></text> +</g> +<g > +<title>__lruvec_stat_mod_folio (20,202,020 samples, 0.13%)</title><rect x="399.7" y="533" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="402.66" y="543.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="661" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1022.61" y="671.5" ></text> +</g> +<g > +<title>ci_prepare_git_repo (9,636,363,540 samples, 60.53%)</title><rect x="438.2" y="933" width="835.3" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="441.19" y="943.5" >ci_prepare_git_repo</text> +</g> +<g > +<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="1157.1" y="645" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1160.08" y="655.5" ></text> +</g> +<g > +<title>open_last_lookups (20,202,020 samples, 0.13%)</title><rect x="988.1" y="693" width="1.7" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="991.08" y="703.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="661" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1258.15" y="671.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="722.8" y="661" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="725.77" y="671.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="421" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="1129.43" y="431.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="84.4" y="709" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="87.43" y="719.5" ></text> +</g> +<g > +<title>ext4_es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="179.0" y="485" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" /> +<text x="182.00" y="495.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="200.0" y="549" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="203.01" y="559.5" ></text> +</g> +<g > +<title>ext4_release_folio (10,101,010 samples, 0.06%)</title><rect x="819.1" y="469" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="822.09" y="479.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="965.3" y="597" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="968.32" y="607.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="611.6" y="661" width="1.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="614.56" y="671.5" ></text> +</g> +<g > +<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="80.1" y="725" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="83.05" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1188.98" y="799.5" ></text> +</g> +<g > +<title>__block_commit_write (20,202,020 samples, 0.13%)</title><rect x="922.4" y="565" width="1.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="925.41" y="575.5" ></text> +</g> +<g > +<title>__set_cpus_allowed_ptr (10,101,010 samples, 0.06%)</title><rect x="51.2" y="661" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="54.15" y="671.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="930.3" y="405" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="933.29" y="415.5" ></text> +</g> +<g > +<title>vfs_write (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="677" width="5.2" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1009.47" y="687.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="516.1" y="629" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="519.12" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1045.0" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1048.00" y="527.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1032.24" y="479.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1251.6" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1254.65" y="735.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="974.9" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="977.95" y="559.5" ></text> +</g> +<g > +<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="180.7" y="421" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="183.75" y="431.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="667.6" y="453" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="670.60" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="897.0" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="900.02" y="671.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="581" width="0.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="1261.65" y="591.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="840.1" y="517" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="843.10" y="527.5" ></text> +</g> +<g > +<title>inflate (10,101,010 samples, 0.06%)</title><rect x="724.5" y="693" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="727.52" y="703.5" ></text> +</g> +<g > +<title>block_write_end (10,101,010 samples, 0.06%)</title><rect x="541.5" y="613" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" /> +<text x="544.51" y="623.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="888.3" y="629" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="891.26" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="449.6" y="741" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="452.57" y="751.5" ></text> +</g> +<g > +<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="341.9" y="549" width="0.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="344.87" y="559.5" ></text> +</g> +<g > +<title>ext4_mkdir (10,101,010 samples, 0.06%)</title><rect x="77.4" y="885" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="80.42" y="895.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="383.9" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="386.90" y="543.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="787.6" y="549" width="0.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="790.56" y="559.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="458.3" y="693" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="461.32" y="703.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (40,404,040 samples, 0.25%)</title><rect x="360.3" y="581" width="3.5" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="363.25" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="475.0" y="789" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="477.96" y="799.5" ></text> +</g> +<g > +<title>ext4_file_getattr (10,101,010 samples, 0.06%)</title><rect x="1014.4" y="645" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="1017.35" y="655.5" ></text> +</g> +<g > +<title>__pollwait (10,101,010 samples, 0.06%)</title><rect x="28.4" y="805" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="31.39" y="815.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1084.4" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1087.40" y="591.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="905.8" y="565" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="908.77" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1118.6" y="709" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1121.55" y="719.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="181" width="1.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1336.96" y="191.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.06%)</title><rect x="702.6" y="469" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="705.63" y="479.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="1141.3" y="533" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="1144.32" y="543.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="926.8" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="929.79" y="607.5" ></text> +</g> +<g > +<title>__mutex_init (10,101,010 samples, 0.06%)</title><rect x="1151.8" y="645" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="1154.83" y="655.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="770.1" y="565" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="773.05" y="575.5" ></text> +</g> +<g > +<title>__fput_sync (20,202,020 samples, 0.13%)</title><rect x="868.1" y="629" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="871.12" y="639.5" ></text> +</g> +<g > +<title>blk_mq_submit_bio (10,101,010 samples, 0.06%)</title><rect x="466.2" y="469" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="469.21" y="479.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="870.7" y="613" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="873.75" y="623.5" ></text> +</g> +<g > +<title>ip_finish_output (40,404,040 samples, 0.25%)</title><rect x="36.3" y="533" width="3.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="39.27" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="558.1" y="773" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="561.15" y="783.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="229" width="2.6" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="1367.61" y="239.5" ></text> +</g> +<g > +<title>filename_create (20,202,020 samples, 0.13%)</title><rect x="1264.8" y="773" width="1.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="1267.78" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="562.5" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="565.53" y="735.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="263.1" y="517" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="266.06" y="527.5" ></text> +</g> +<g > +<title>clear_inode (10,101,010 samples, 0.06%)</title><rect x="1124.7" y="549" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1127.68" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="835.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="838.72" y="751.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="517" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="1113.67" y="527.5" ></text> +</g> +<g > +<title>git_odb_read (20,202,020 samples, 0.13%)</title><rect x="684.2" y="821" width="1.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="687.24" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (363,636,360 samples, 2.28%)</title><rect x="934.7" y="709" width="31.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="937.67" y="719.5" >[l..</text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="328.7" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="331.73" y="719.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="706.1" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="709.13" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="430.3" y="837" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="433.30" y="847.5" ></text> +</g> +<g > +<title>sock_def_readable (30,303,030 samples, 0.19%)</title><rect x="1378.6" y="261" width="2.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="1381.62" y="271.5" ></text> +</g> +<g > +<title>__do_softirq (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="565" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1389.50" y="575.5" ></text> +</g> +<g > +<title>libjson_send (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="933" width="6.1" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1335.21" y="943.5" ></text> +</g> +<g > +<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="922.4" y="613" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="925.41" y="623.5" ></text> +</g> +<g > +<title>git_odb_read_header (111,111,110 samples, 0.70%)</title><rect x="530.1" y="805" width="9.7" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="533.13" y="815.5" ></text> +</g> +<g > +<title>vfs_rmdir (151,515,150 samples, 0.95%)</title><rect x="198.3" y="613" width="13.1" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="201.26" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1254.3" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1257.28" y="799.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="721.0" y="709" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="724.02" y="719.5" ></text> +</g> +<g > +<title>__sk_destruct (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="229" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1374.61" y="239.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1188.6" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1191.60" y="735.5" ></text> +</g> +<g > +<title>__handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="533" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="1220.50" y="543.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="492.5" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="495.47" y="655.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="777.1" y="661" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="780.06" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="892.6" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="895.64" y="719.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="754.3" y="421" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="757.29" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="1248.1" y="773" width="6.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1251.15" y="783.5" ></text> +</g> +<g > +<title>read (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="869" width="1.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="1322.95" y="879.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="118.6" y="789" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="121.58" y="799.5" ></text> +</g> +<g > +<title>__sk_mem_reduce_allocated (10,101,010 samples, 0.06%)</title><rect x="1359.4" y="629" width="0.8" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" /> +<text x="1362.35" y="639.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="733.3" y="533" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="736.27" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (121,212,120 samples, 0.76%)</title><rect x="695.6" y="677" width="10.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="698.62" y="687.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="463.6" y="565" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="466.58" y="575.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="976.7" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="979.70" y="671.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="889.1" y="549" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="892.14" y="559.5" ></text> +</g> +<g > +<title>vfs_link (10,101,010 samples, 0.06%)</title><rect x="544.1" y="725" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="547.14" y="735.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="939.9" y="469" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="942.92" y="479.5" ></text> +</g> +<g > +<title>nd_jump_root (10,101,010 samples, 0.06%)</title><rect x="101.9" y="869" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="104.94" y="879.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (20,202,020 samples, 0.13%)</title><rect x="211.4" y="645" width="1.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="214.40" y="655.5" ></text> +</g> +<g > +<title>json_tokener_new_ex (20,202,020 samples, 0.13%)</title><rect x="1353.2" y="837" width="1.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1356.22" y="847.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="706.1" y="581" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="709.13" y="591.5" ></text> +</g> +<g > +<title>security_path_unlink (10,101,010 samples, 0.06%)</title><rect x="225.4" y="629" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="228.41" y="639.5" ></text> +</g> +<g > +<title>__ip_finish_output (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="565" width="4.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1380.74" y="575.5" ></text> +</g> +<g > +<title>filename_lookup (30,303,030 samples, 0.19%)</title><rect x="969.7" y="597" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="972.70" y="607.5" ></text> +</g> +<g > +<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="817.3" y="421" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="820.34" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="773" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="741.53" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (60,606,060 samples, 0.38%)</title><rect x="431.2" y="853" width="5.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="434.18" y="863.5" ></text> +</g> +<g > +<title>do_unlinkat (292,929,290 samples, 1.84%)</title><rect x="373.4" y="709" width="25.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="376.39" y="719.5" >d..</text> +</g> +<g > +<title>mkdir (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="805" width="7.9" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" /> +<text x="1044.50" y="815.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="964.4" y="437" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="967.44" y="447.5" ></text> +</g> +<g > +<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="618.6" y="533" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="621.57" y="543.5" ></text> +</g> +<g > +<title>__close (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="869" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="1319.45" y="879.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1029.61" y="751.5" ></text> +</g> +<g > +<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="1256.9" y="645" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="1259.90" y="655.5" ></text> +</g> +<g > +<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="780.6" y="613" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="783.56" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="375.1" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="378.14" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (252,525,250 samples, 1.59%)</title><rect x="170.2" y="741" width="21.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="173.24" y="751.5" >[..</text> +</g> +<g > +<title>ip_protocol_deliver_rcu (50,505,050 samples, 0.32%)</title><rect x="1369.9" y="325" width="4.3" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="1372.86" y="335.5" ></text> +</g> +<g > +<title>tasklet_action (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="597" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1371.98" y="607.5" ></text> +</g> +<g > +<title>net_rx_action (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="453" width="5.2" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1372.86" y="463.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="255.2" y="581" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="258.18" y="591.5" ></text> +</g> +<g > +<title>__default_morecore (30,303,030 samples, 0.19%)</title><rect x="398.8" y="789" width="2.6" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="401.78" y="799.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="693" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1210.87" y="703.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="757" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1329.95" y="767.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (60,606,060 samples, 0.38%)</title><rect x="366.4" y="741" width="5.2" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="369.38" y="751.5" ></text> +</g> +<g > +<title>dup_userfaultfd (10,101,010 samples, 0.06%)</title><rect x="1299.8" y="709" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="1302.81" y="719.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="419.8" y="709" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="422.80" y="719.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="476.7" y="533" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="479.71" y="543.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="594.9" y="773" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="597.92" y="783.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="870.7" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="873.75" y="671.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="1013.5" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1016.48" y="703.5" ></text> +</g> +<g > +<title>generic_perform_write (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="565" width="3.5" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="1091.78" y="575.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="524.9" y="597" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="527.87" y="607.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="570.4" y="565" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="573.41" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (292,929,290 samples, 1.84%)</title><rect x="373.4" y="725" width="25.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="376.39" y="735.5" >_..</text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="523.1" y="661" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="526.12" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="530.1" y="725" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="533.13" y="735.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="775.3" y="581" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="778.30" y="591.5" ></text> +</g> +<g > +<title>nft_nat_do_chain (10,101,010 samples, 0.06%)</title><rect x="1385.6" y="629" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="1388.62" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (40,404,040 samples, 0.25%)</title><rect x="937.3" y="549" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="940.30" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="990.7" y="837" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="993.71" y="847.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="530.50" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1185.1" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1188.10" y="799.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="942.6" y="485" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="945.55" y="495.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="362.0" y="549" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="365.01" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="982.0" y="629" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="984.95" y="639.5" ></text> +</g> +<g > +<title>crypto_shash_update (20,202,020 samples, 0.13%)</title><rect x="1165.8" y="469" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1168.84" y="479.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="558.1" y="693" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="561.15" y="703.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="554.6" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="557.64" y="607.5" ></text> +</g> +<g > +<title>ext4_truncate (30,303,030 samples, 0.19%)</title><rect x="179.0" y="517" width="2.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="182.00" y="527.5" ></text> +</g> +<g > +<title>kernel_fpu_end (10,101,010 samples, 0.06%)</title><rect x="671.1" y="373" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="674.10" y="383.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="725" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1349.22" y="735.5" ></text> +</g> +<g > +<title>ext4_do_writepages (90,909,090 samples, 0.57%)</title><rect x="665.9" y="517" width="7.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="668.85" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="767.4" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="770.42" y="767.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="553.8" y="581" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="556.77" y="591.5" ></text> +</g> +<g > +<title>access (40,404,040 samples, 0.25%)</title><rect x="536.3" y="741" width="3.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="539.26" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="875.1" y="757" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="878.13" y="767.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="926.8" y="549" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="929.79" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="808.6" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="811.58" y="767.5" ></text> +</g> +<g > +<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="151.9" y="901" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="154.85" y="911.5" ></text> +</g> +<g > +<title>ext4_truncate (141,414,140 samples, 0.89%)</title><rect x="289.3" y="581" width="12.3" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="292.33" y="591.5" ></text> +</g> +<g > +<title>truncate_cleanup_folio (10,101,010 samples, 0.06%)</title><rect x="819.1" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="822.09" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_futex (10,101,010 samples, 0.06%)</title><rect x="23.1" y="869" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="26.13" y="879.5" ></text> +</g> +<g > +<title>path_put (10,101,010 samples, 0.06%)</title><rect x="894.4" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="897.39" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="759.5" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="762.54" y="719.5" ></text> +</g> +<g > +<title>storvsc_queuecommand (10,101,010 samples, 0.06%)</title><rect x="822.6" y="325" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="825.59" y="335.5" ></text> +</g> +<g > +<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="784.9" y="613" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="787.94" y="623.5" ></text> +</g> +<g > +<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="721.0" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="724.02" y="655.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1241.1" y="597" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1244.14" y="607.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="740.3" y="469" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="743.28" y="479.5" ></text> +</g> +<g > +<title>dup_mmap (434,343,430 samples, 2.73%)</title><rect x="1276.2" y="725" width="37.6" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" /> +<text x="1279.17" y="735.5" >dup..</text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="373.4" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="376.39" y="671.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="712.3" y="581" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="715.26" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="783.2" y="709" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="786.19" y="719.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="108.1" y="629" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="111.07" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="499.5" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="502.48" y="719.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="968.8" y="549" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="971.82" y="559.5" ></text> +</g> +<g > +<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="813.0" y="549" width="0.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="815.96" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="853" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1322.95" y="863.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="613" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="1202.99" y="623.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="784.1" y="533" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="787.06" y="543.5" ></text> +</g> +<g > +<title>__find_get_block_slow (30,303,030 samples, 0.19%)</title><rect x="332.2" y="549" width="2.7" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="335.23" y="559.5" ></text> +</g> +<g > +<title>__handle_mm_fault (20,202,020 samples, 0.13%)</title><rect x="1313.8" y="805" width="1.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="1316.82" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="995.1" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="998.09" y="735.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="842.7" y="405" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="845.73" y="415.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="976.7" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="979.70" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="457.4" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="460.45" y="799.5" ></text> +</g> +<g > +<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="1063.4" y="757" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1066.39" y="767.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.13%)</title><rect x="922.4" y="757" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="925.41" y="767.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="610.7" y="661" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="613.69" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="917" width="12.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1379.87" y="927.5" ></text> +</g> +<g > +<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1312.1" y="677" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="1315.07" y="687.5" ></text> +</g> +<g > +<title>vfs_unlink (101,010,100 samples, 0.63%)</title><rect x="390.0" y="693" width="8.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="393.03" y="703.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="1262.2" y="645" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1265.16" y="655.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="337.5" y="661" width="1.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="340.49" y="671.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="843.6" y="341" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="846.60" y="351.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1222.8" y="677" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1225.75" y="687.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="457.4" y="709" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="460.45" y="719.5" ></text> +</g> +<g > +<title>add_disk_randomness (10,101,010 samples, 0.06%)</title><rect x="749.9" y="405" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="752.91" y="415.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="487.2" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="490.22" y="751.5" ></text> +</g> +<g > +<title>common_perm_cond (10,101,010 samples, 0.06%)</title><rect x="409.3" y="693" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" /> +<text x="412.29" y="703.5" ></text> +</g> +<g > +<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="721.9" y="533" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="724.89" y="543.5" ></text> +</g> +<g > +<title>copy_creds (10,101,010 samples, 0.06%)</title><rect x="1275.3" y="741" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="1278.29" y="751.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="707.0" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="710.01" y="591.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="816.5" y="485" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="819.46" y="495.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="631.7" y="613" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="634.70" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,818,181,800 samples, 11.42%)</title><rect x="169.4" y="805" width="157.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="172.37" y="815.5" >[libc.so.6]</text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1037.1" y="437" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="1040.12" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (121,212,120 samples, 0.76%)</title><rect x="1049.4" y="773" width="10.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1052.38" y="783.5" ></text> +</g> +<g > +<title>path_put (10,101,010 samples, 0.06%)</title><rect x="638.7" y="677" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="641.71" y="687.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="773" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1363.23" y="783.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="315.6" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="318.60" y="687.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="369.0" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="372.01" y="671.5" ></text> +</g> +<g > +<title>strlen@plt (10,101,010 samples, 0.06%)</title><rect x="1210.5" y="725" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="1213.49" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="872.5" y="773" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="875.50" y="783.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="841.9" y="485" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="844.85" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="449.6" y="709" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="452.57" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="439.9" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="442.94" y="671.5" ></text> +</g> +<g > +<title>_copy_to_iter (10,101,010 samples, 0.06%)</title><rect x="1358.5" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1361.48" y="607.5" ></text> +</g> +<g > +<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="315.6" y="597" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="318.60" y="607.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="450.4" y="565" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="453.44" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="643.1" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="646.08" y="719.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="27.5" y="709" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="30.51" y="719.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="484.6" y="485" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="487.59" y="495.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="633.5" y="565" width="0.8" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" /> +<text x="636.45" y="575.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="263.1" y="565" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="266.06" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1115.9" y="693" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1118.93" y="703.5" ></text> +</g> +<g > +<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="786.7" y="549" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="789.69" y="559.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="646.6" y="565" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="649.59" y="575.5" ></text> +</g> +<g > +<title>folio_end_writeback (10,101,010 samples, 0.06%)</title><rect x="986.3" y="517" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="989.33" y="527.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="206.1" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="209.14" y="527.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="504.7" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="507.73" y="735.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1057.3" y="565" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1060.26" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.70%)</title><rect x="1201.7" y="757" width="9.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1204.74" y="767.5" ></text> +</g> +<g > +<title>iput (40,404,040 samples, 0.25%)</title><rect x="925.0" y="645" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="928.04" y="655.5" ></text> +</g> +<g > +<title>git_config_free (10,101,010 samples, 0.06%)</title><rect x="990.7" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="993.71" y="831.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1248.52" y="799.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="514.4" y="837" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="517.37" y="847.5" ></text> +</g> +<g > +<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="598.4" y="741" width="9.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="601.43" y="751.5" ></text> +</g> +<g > +<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.06%)</title><rect x="1035.4" y="437" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1038.37" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (232,323,230 samples, 1.46%)</title><rect x="1021.4" y="789" width="20.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1024.36" y="799.5" ></text> +</g> +<g > +<title>ext4_append (252,525,250 samples, 1.59%)</title><rect x="1156.2" y="677" width="21.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1159.21" y="687.5" >e..</text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="824.3" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="827.34" y="623.5" ></text> +</g> +<g > +<title>ext4_da_write_end (20,202,020 samples, 0.13%)</title><rect x="922.4" y="597" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="925.41" y="607.5" ></text> +</g> +<g > +<title>server_main_thread (151,515,150 samples, 0.95%)</title><rect x="10.9" y="1013" width="13.1" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" /> +<text x="13.88" y="1023.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="713.1" y="645" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="716.13" y="655.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="661" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1205.61" y="671.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="544.1" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="547.14" y="783.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="634.3" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="637.33" y="559.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="931.2" y="533" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="934.17" y="543.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="783.2" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="786.19" y="575.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (434,343,430 samples, 2.73%)</title><rect x="104.6" y="853" width="37.6" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" /> +<text x="107.57" y="863.5" >loo..</text> +</g> +<g > +<title>pipe_write (20,202,020 samples, 0.13%)</title><rect x="558.1" y="677" width="1.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="561.15" y="687.5" ></text> +</g> +<g > +<title>fstatat64 (70,707,070 samples, 0.44%)</title><rect x="714.0" y="741" width="6.1" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="717.01" y="751.5" ></text> +</g> +<g > +<title>__napi_poll (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="437" width="2.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1336.08" y="447.5" ></text> +</g> +<g > +<title>filemap_get_folios_tag (10,101,010 samples, 0.06%)</title><rect x="672.9" y="485" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="675.86" y="495.5" ></text> +</g> +<g > +<title>sbitmap_find_bit (10,101,010 samples, 0.06%)</title><rect x="1136.9" y="325" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="1139.94" y="335.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="805" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1266.03" y="815.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="916.3" y="613" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="919.28" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (70,707,070 samples, 0.44%)</title><rect x="171.1" y="613" width="6.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="174.12" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1188.6" y="693" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1191.60" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="153.6" y="949" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="156.60" y="959.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="773" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1019.98" y="783.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="164.1" y="789" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="167.11" y="799.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (20,202,020 samples, 0.13%)</title><rect x="1133.4" y="357" width="1.8" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="1136.44" y="367.5" ></text> +</g> +<g > +<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="451.3" y="693" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="454.32" y="703.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="155.4" y="757" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="158.36" y="767.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="563.4" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="566.40" y="623.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="525.7" y="565" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="528.75" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="866.4" y="789" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="869.37" y="799.5" ></text> +</g> +<g > +<title>__release_sock (60,606,060 samples, 0.38%)</title><rect x="1376.9" y="757" width="5.2" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="1379.87" y="767.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="645" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1371.98" y="655.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1154.5" y="613" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="1157.45" y="623.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="165.0" y="821" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="167.99" y="831.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="777.9" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="780.93" y="607.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="179.9" y="453" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="182.87" y="463.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="714.9" y="485" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="717.89" y="495.5" ></text> +</g> +<g > +<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="14.4" y="725" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="17.38" y="735.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="485.5" y="757" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="488.47" y="767.5" ></text> +</g> +<g > +<title>mkdtemp (111,111,110 samples, 0.70%)</title><rect x="1263.9" y="901" width="9.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1266.91" y="911.5" ></text> +</g> +<g > +<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="770.9" y="645" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="773.93" y="655.5" ></text> +</g> +<g > +<title>git_remote_lookup (40,404,040 samples, 0.25%)</title><rect x="852.4" y="837" width="3.5" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" /> +<text x="855.36" y="847.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="789" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1332.58" y="799.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="919.8" y="549" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" /> +<text x="922.78" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="770.1" y="661" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="773.05" y="671.5" ></text> +</g> +<g > +<title>__ext4_new_inode (10,101,010 samples, 0.06%)</title><rect x="963.6" y="517" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="966.57" y="527.5" ></text> +</g> +<g > +<title>__submit_bio (40,404,040 samples, 0.25%)</title><rect x="1136.9" y="437" width="3.5" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="1139.94" y="447.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="92.3" y="869" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="95.31" y="879.5" ></text> +</g> +<g > +<title>end_bio_bh_io_sync (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="325" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1366.73" y="335.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="808.6" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="811.58" y="623.5" ></text> +</g> +<g > +<title>fprintf (20,202,020 samples, 0.13%)</title><rect x="71.3" y="917" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="74.29" y="927.5" ></text> +</g> +<g > +<title>ip_output (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="693" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1389.50" y="703.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="748.2" y="533" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="751.16" y="543.5" ></text> +</g> +<g > +<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="842.7" y="357" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="845.73" y="367.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="740.3" y="437" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="743.28" y="447.5" ></text> +</g> +<g > +<title>__default_morecore (10,101,010 samples, 0.06%)</title><rect x="429.4" y="853" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="432.43" y="863.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="234.2" y="565" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="237.16" y="575.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1266.5" y="677" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="1269.54" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1348.8" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1351.85" y="863.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.06%)</title><rect x="441.7" y="709" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="444.69" y="719.5" ></text> +</g> +<g > +<title>do_filp_open (30,303,030 samples, 0.19%)</title><rect x="453.9" y="565" width="2.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="456.95" y="575.5" ></text> +</g> +<g > +<title>__getblk_slow (10,101,010 samples, 0.06%)</title><rect x="582.7" y="549" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="585.66" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="853.2" y="645" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="856.24" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="553.8" y="661" width="1.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="556.77" y="671.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="453.9" y="613" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="456.95" y="623.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.06%)</title><rect x="977.6" y="741" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="980.58" y="751.5" ></text> +</g> +<g > +<title>__find_get_block (20,202,020 samples, 0.13%)</title><rect x="675.5" y="533" width="1.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="678.48" y="543.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="395.3" y="629" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="398.28" y="639.5" ></text> +</g> +<g > +<title>d_splice_alias (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="693" width="0.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1329.95" y="703.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="757" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1241.52" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="447.8" y="709" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="450.82" y="719.5" ></text> +</g> +<g > +<title>tcp_send_ack (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="693" width="2.7" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" /> +<text x="1344.84" y="703.5" ></text> +</g> +<g > +<title>mnt_want_write (10,101,010 samples, 0.06%)</title><rect x="950.4" y="581" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="953.43" y="591.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="487.2" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="490.22" y="703.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="597" width="3.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="1091.78" y="607.5" ></text> +</g> +<g > +<title>filemap_get_entry (10,101,010 samples, 0.06%)</title><rect x="1160.6" y="565" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" /> +<text x="1163.58" y="575.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="476.7" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="479.71" y="607.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="180.7" y="293" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="183.75" y="303.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="709" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1019.98" y="719.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (20,202,020 samples, 0.13%)</title><rect x="1096.7" y="613" width="1.7" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="1099.66" y="623.5" ></text> +</g> +<g > +<title>submit_bio_noacct (10,101,010 samples, 0.06%)</title><rect x="792.8" y="453" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" /> +<text x="795.82" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="924.2" y="725" width="0.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="927.16" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="805.1" y="709" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="808.08" y="719.5" ></text> +</g> +<g > +<title>filemap_flush (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="581" width="5.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="1102.29" y="591.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="963.6" y="501" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="966.57" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="1105.4" y="741" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1108.42" y="751.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="984.6" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="987.58" y="703.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="81.8" y="837" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="84.80" y="847.5" ></text> +</g> +<g > +<title>__do_softirq (40,404,040 samples, 0.25%)</title><rect x="36.3" y="421" width="3.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="39.27" y="431.5" ></text> +</g> +<g > +<title>[libc.so.6] (111,111,110 samples, 0.70%)</title><rect x="1263.9" y="885" width="9.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1266.91" y="895.5" ></text> +</g> +<g > +<title>ext4_getblk (101,010,100 samples, 0.63%)</title><rect x="82.7" y="805" width="8.7" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="85.68" y="815.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="184.3" y="533" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="187.25" y="543.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="936.4" y="629" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="939.42" y="639.5" ></text> +</g> +<g > +<title>dput (20,202,020 samples, 0.13%)</title><rect x="1260.4" y="629" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1263.41" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="901.4" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="904.40" y="735.5" ></text> +</g> +<g > +<title>git_object_lookup_prefix (40,404,040 samples, 0.25%)</title><rect x="682.5" y="837" width="3.5" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="685.49" y="847.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="581" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1253.77" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="693.0" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="695.99" y="655.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="389" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1367.61" y="399.5" ></text> +</g> +<g > +<title>malloc (30,303,030 samples, 0.19%)</title><rect x="1215.7" y="645" width="2.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1218.75" y="655.5" ></text> +</g> +<g > +<title>sk_destruct (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="245" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="1374.61" y="255.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="373" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1040.99" y="383.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="691.2" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="694.24" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="158.9" y="869" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="161.86" y="879.5" ></text> +</g> +<g > +<title>do_pipe2 (20,202,020 samples, 0.13%)</title><rect x="1321.7" y="805" width="1.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="1324.70" y="815.5" ></text> +</g> +<g > +<title>lh_table_lookup_ex (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="805" width="0.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="1354.47" y="815.5" ></text> +</g> +<g > +<title>__open64_nocancel (10,101,010 samples, 0.06%)</title><rect x="883.9" y="693" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="886.88" y="703.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (10,101,010 samples, 0.06%)</title><rect x="772.7" y="501" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="775.68" y="511.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="892.6" y="597" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="895.64" y="607.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="783.2" y="517" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="786.19" y="527.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="324.4" y="565" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="327.35" y="575.5" ></text> +</g> +<g > +<title>try_charge_memcg (10,101,010 samples, 0.06%)</title><rect x="1314.7" y="725" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" /> +<text x="1317.70" y="735.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="376.9" y="629" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="379.89" y="639.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (30,303,030 samples, 0.19%)</title><rect x="1045.0" y="581" width="2.6" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="1048.00" y="591.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.06%)</title><rect x="685.1" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="688.11" y="719.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="756.9" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="759.92" y="591.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="597" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="1197.73" y="607.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="805.1" y="485" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="808.08" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_chdir (30,303,030 samples, 0.19%)</title><rect x="154.5" y="853" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="157.48" y="863.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="613" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="1226.63" y="623.5" ></text> +</g> +<g > +<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.06%)</title><rect x="733.3" y="485" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="736.27" y="495.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="657.1" y="437" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="660.09" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="546.8" y="789" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="549.76" y="799.5" ></text> +</g> +<g > +<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="809.5" y="693" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="812.45" y="703.5" ></text> +</g> +<g > +<title>uncharge_batch (10,101,010 samples, 0.06%)</title><rect x="35.4" y="293" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="38.39" y="303.5" ></text> +</g> +<g > +<title>d_alloc_parallel (20,202,020 samples, 0.13%)</title><rect x="1050.3" y="645" width="1.7" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="1053.25" y="655.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (40,404,040 samples, 0.25%)</title><rect x="515.2" y="661" width="3.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="518.24" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="934.7" y="645" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="937.67" y="655.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (40,404,040 samples, 0.25%)</title><rect x="15.3" y="965" width="3.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="18.25" y="975.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="986.3" y="693" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="989.33" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="329.6" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="332.61" y="751.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="958.3" y="373" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="961.31" y="383.5" ></text> +</g> +<g > +<title>vfs_rename (60,606,060 samples, 0.38%)</title><rect x="466.2" y="709" width="5.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="469.21" y="719.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="496.9" y="645" width="0.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="499.85" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (919,191,910 samples, 5.77%)</title><rect x="73.9" y="1029" width="79.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="76.92" y="1039.5" >[libgit2...</text> +</g> +<g > +<title>d_move (10,101,010 samples, 0.06%)</title><rect x="663.2" y="645" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" /> +<text x="666.22" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="1202.6" y="693" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1205.61" y="703.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="797.2" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="800.20" y="575.5" ></text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.06%)</title><rect x="365.5" y="693" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="368.51" y="703.5" ></text> +</g> +<g > +<title>mntput (10,101,010 samples, 0.06%)</title><rect x="319.1" y="661" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="322.10" y="671.5" ></text> +</g> +<g > +<title>__napi_poll (40,404,040 samples, 0.25%)</title><rect x="36.3" y="373" width="3.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="39.27" y="383.5" ></text> +</g> +<g > +<title>_raw_read_lock (10,101,010 samples, 0.06%)</title><rect x="880.4" y="453" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="883.38" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="904.0" y="565" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="907.02" y="575.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="266.6" y="613" width="2.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="269.56" y="623.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="645" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1267.78" y="655.5" ></text> +</g> +<g > +<title>ip_queue_xmit (50,505,050 samples, 0.32%)</title><rect x="35.4" y="597" width="4.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="38.39" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="756.0" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="759.04" y="735.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="930.3" y="453" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="933.29" y="463.5" ></text> +</g> +<g > +<title>ext4_end_bio (10,101,010 samples, 0.06%)</title><rect x="986.3" y="549" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="989.33" y="559.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="176.4" y="485" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="179.37" y="495.5" ></text> +</g> +<g > +<title>flush_tlb_mm_range (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="709" width="0.8" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" /> +<text x="1322.07" y="719.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="289.3" y="501" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="292.33" y="511.5" ></text> +</g> +<g > +<title>ext4_release_dir (10,101,010 samples, 0.06%)</title><rect x="327.0" y="693" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="329.98" y="703.5" ></text> +</g> +<g > +<title>rename (252,525,250 samples, 1.59%)</title><rect x="1120.3" y="757" width="21.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1123.30" y="767.5" >r..</text> +</g> +<g > +<title>ext4_orphan_del (20,202,020 samples, 0.13%)</title><rect x="171.1" y="517" width="1.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="174.12" y="527.5" ></text> +</g> +<g > +<title>__ext4_find_entry (30,303,030 samples, 0.19%)</title><rect x="634.3" y="597" width="2.7" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="637.33" y="607.5" ></text> +</g> +<g > +<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="501" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="1209.99" y="511.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="709" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="1241.52" y="719.5" ></text> +</g> +<g > +<title>d_splice_alias (10,101,010 samples, 0.06%)</title><rect x="782.3" y="517" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="785.31" y="527.5" ></text> +</g> +<g > +<title>x64_sys_call (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="821" width="7.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1363.23" y="831.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="847.1" y="549" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="850.11" y="559.5" ></text> +</g> +<g > +<title>__lookup_mnt (10,101,010 samples, 0.06%)</title><rect x="865.5" y="517" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="868.49" y="527.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (20,202,020 samples, 0.13%)</title><rect x="1280.5" y="693" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1283.55" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="821" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1326.45" y="831.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="740.3" y="613" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="743.28" y="623.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="777.1" y="709" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="780.06" y="719.5" ></text> +</g> +<g > +<title>bdev_getblk (20,202,020 samples, 0.13%)</title><rect x="675.5" y="549" width="1.7" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="678.48" y="559.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="541.5" y="629" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="544.51" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="735.9" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="738.90" y="751.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="929.4" y="565" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="932.42" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (20,202,020 samples, 0.13%)</title><rect x="736.8" y="693" width="1.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="739.78" y="703.5" ></text> +</g> +<g > +<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="924.2" y="709" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="927.16" y="719.5" ></text> +</g> +<g > +<title>dput (40,404,040 samples, 0.25%)</title><rect x="786.7" y="645" width="3.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="789.69" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="17.0" y="933" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="20.01" y="943.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="206.1" y="533" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="209.14" y="543.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="677" width="5.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1372.86" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="768.3" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="771.30" y="719.5" ></text> +</g> +<g > +<title>ext4_lookup (30,303,030 samples, 0.19%)</title><rect x="634.3" y="613" width="2.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="637.33" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="995.1" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="998.09" y="703.5" ></text> +</g> +<g > +<title>jbd2_alloc (10,101,010 samples, 0.06%)</title><rect x="791.1" y="517" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="794.07" y="527.5" ></text> +</g> +<g > +<title>tcp_rcv_synsent_state_process (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="709" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1344.84" y="719.5" ></text> +</g> +<g > +<title>filemap_get_entry (10,101,010 samples, 0.06%)</title><rect x="960.9" y="389" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" /> +<text x="963.94" y="399.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="953.1" y="533" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="956.06" y="543.5" ></text> +</g> +<g > +<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="793.7" y="469" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="796.69" y="479.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="551.1" y="613" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="554.14" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1097.5" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1100.54" y="527.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (20,202,020 samples, 0.13%)</title><rect x="1344.5" y="757" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1347.47" y="767.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.06%)</title><rect x="464.5" y="613" width="0.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="467.45" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="524.9" y="661" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="527.87" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1116.30" y="735.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="168.5" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="171.49" y="815.5" ></text> +</g> +<g > +<title>file_modified (10,101,010 samples, 0.06%)</title><rect x="449.6" y="629" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="452.57" y="639.5" ></text> +</g> +<g > +<title>filename_create (20,202,020 samples, 0.13%)</title><rect x="599.3" y="677" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="602.30" y="687.5" ></text> +</g> +<g > +<title>_raw_read_lock (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="485" width="0.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1196.86" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="916.3" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="919.28" y="687.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (40,404,040 samples, 0.25%)</title><rect x="1036.2" y="485" width="3.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="1039.24" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1011.7" y="773" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1014.73" y="783.5" ></text> +</g> +<g > +<title>rmdir (60,606,060 samples, 0.38%)</title><rect x="423.3" y="837" width="5.3" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="426.30" y="847.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="663.2" y="469" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="666.22" y="479.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="929.4" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="932.42" y="623.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1183.4" y="677" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1186.35" y="687.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (50,505,050 samples, 0.32%)</title><rect x="110.7" y="805" width="4.4" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="113.70" y="815.5" ></text> +</g> +<g > +<title>json_object_put (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="837" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="1353.60" y="847.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="967.9" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="970.94" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="963.6" y="629" width="1.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="966.57" y="639.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1097.04" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="802.4" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="805.45" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_close (20,202,020 samples, 0.13%)</title><rect x="327.0" y="741" width="1.7" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="329.98" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="855.9" y="837" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="858.86" y="847.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1057.3" y="549" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1060.26" y="559.5" ></text> +</g> +<g > +<title>git_reference_name_to_id (20,202,020 samples, 0.13%)</title><rect x="783.2" y="725" width="1.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="786.19" y="735.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="549" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="1113.67" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="750.8" y="725" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="753.79" y="735.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="615.9" y="629" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="618.94" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="481.1" y="773" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="484.09" y="783.5" ></text> +</g> +<g > +<title>cimple-worker (15,191,919,040 samples, 95.43%)</title><rect x="73.0" y="1061" width="1317.0" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" /> +<text x="76.05" y="1071.5" >cimple-worker</text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="773" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="551.52" y="783.5" ></text> +</g> +<g > +<title>__perf_event_header__init_id (10,101,010 samples, 0.06%)</title><rect x="241.2" y="485" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="244.17" y="495.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="212.3" y="629" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="215.27" y="639.5" ></text> +</g> +<g > +<title>xa_load (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="517" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" /> +<text x="1202.99" y="527.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="447.8" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="450.82" y="703.5" ></text> +</g> +<g > +<title>crc_pcl (20,202,020 samples, 0.13%)</title><rect x="349.7" y="597" width="1.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="352.75" y="607.5" ></text> +</g> +<g > +<title>wait4 (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="869" width="1.7" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" /> +<text x="1326.45" y="879.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (70,707,070 samples, 0.44%)</title><rect x="1185.1" y="821" width="6.1" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="1188.10" y="831.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="980.2" y="613" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="983.20" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_wait4 (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="805" width="1.7" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" /> +<text x="1326.45" y="815.5" ></text> +</g> +<g > +<title>rmdir (181,818,180 samples, 1.14%)</title><rect x="195.6" y="709" width="15.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="198.63" y="719.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="256.1" y="565" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="259.05" y="575.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="797.2" y="517" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="800.20" y="527.5" ></text> +</g> +<g > +<title>inode_maybe_inc_iversion (10,101,010 samples, 0.06%)</title><rect x="404.0" y="645" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="407.04" y="655.5" ></text> +</g> +<g > +<title>from_kprojid (10,101,010 samples, 0.06%)</title><rect x="565.2" y="581" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="568.15" y="591.5" ></text> +</g> +<g > +<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="523.1" y="549" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="526.12" y="559.5" ></text> +</g> +<g > +<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="784.9" y="661" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="787.94" y="671.5" ></text> +</g> +<g > +<title>evict (30,303,030 samples, 0.19%)</title><rect x="787.6" y="581" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="790.56" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="808.6" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="811.58" y="719.5" ></text> +</g> +<g > +<title>pcre2_compile_8 (30,303,030 samples, 0.19%)</title><rect x="826.1" y="789" width="2.6" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="829.09" y="799.5" ></text> +</g> +<g > +<title>__filemap_fdatawrite_range (40,404,040 samples, 0.25%)</title><rect x="930.3" y="613" width="3.5" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="933.29" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1013.5" y="709" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1016.48" y="719.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="709" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1198.61" y="719.5" ></text> +</g> +<g > +<title>__wake_up (10,101,010 samples, 0.06%)</title><rect x="344.5" y="597" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="347.49" y="607.5" ></text> +</g> +<g > +<title>security_inode_unlink (10,101,010 samples, 0.06%)</title><rect x="397.9" y="677" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="400.91" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="896.1" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="899.14" y="639.5" ></text> +</g> +<g > +<title>security_inode_need_killpriv (10,101,010 samples, 0.06%)</title><rect x="779.7" y="533" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="782.68" y="543.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1158.0" y="613" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="1160.96" y="623.5" ></text> +</g> +<g > +<title>unlink (80,808,080 samples, 0.51%)</title><rect x="170.2" y="661" width="7.0" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="173.24" y="671.5" ></text> +</g> +<g > +<title>ip_output (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="613" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1336.08" y="623.5" ></text> +</g> +<g > +<title>jsonrpc_notification_create (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="933" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" /> +<text x="1392.12" y="943.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (545,454,540 samples, 3.43%)</title><rect x="561.6" y="789" width="47.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="564.65" y="799.5" >[lib..</text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="488.1" y="565" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="491.10" y="575.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (70,707,070 samples, 0.44%)</title><rect x="839.2" y="645" width="6.2" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="842.23" y="655.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="292.8" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="295.83" y="559.5" ></text> +</g> +<g > +<title>git_repository__cleanup (10,101,010 samples, 0.06%)</title><rect x="990.7" y="853" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="993.71" y="863.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1083.5" y="773" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1086.53" y="783.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1195.6" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1198.61" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="916.3" y="741" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="919.28" y="751.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="393.5" y="629" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="396.53" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1234.51" y="575.5" ></text> +</g> +<g > +<title>block_write_end (20,202,020 samples, 0.13%)</title><rect x="922.4" y="581" width="1.8" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" /> +<text x="925.41" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="741" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="741.53" y="751.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="482.0" y="549" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="484.97" y="559.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1036.2" y="453" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1039.24" y="463.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="595.8" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="598.80" y="639.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="741.2" y="437" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="744.15" y="447.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1147.4" y="597" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1150.45" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1257.8" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1260.78" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="784.1" y="565" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="787.06" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="439.9" y="773" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="442.94" y="783.5" ></text> +</g> +<g > +<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.06%)</title><rect x="1047.6" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1050.63" y="623.5" ></text> +</g> +<g > +<title>blk_finish_plug (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="501" width="2.7" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="1136.44" y="511.5" ></text> +</g> +<g > +<title>unlink (20,202,020 samples, 0.13%)</title><rect x="736.8" y="757" width="1.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="739.78" y="767.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="1356.7" y="805" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1359.73" y="815.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="645" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1211.74" y="655.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="842.7" y="373" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="845.73" y="383.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="597" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="1086.53" y="607.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="348.0" y="613" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="350.99" y="623.5" ></text> +</g> +<g > +<title>ext4_create (60,606,060 samples, 0.38%)</title><rect x="507.4" y="661" width="5.2" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="510.36" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="896.1" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="899.14" y="655.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.06%)</title><rect x="637.8" y="613" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="640.83" y="623.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="892.6" y="613" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="895.64" y="623.5" ></text> +</g> +<g > +<title>handle_softirqs (40,404,040 samples, 0.25%)</title><rect x="36.3" y="405" width="3.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="39.27" y="415.5" ></text> +</g> +<g > +<title>ip_finish_output2 (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="645" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1348.34" y="655.5" ></text> +</g> +<g > +<title>unlink (50,505,050 samples, 0.32%)</title><rect x="1063.4" y="805" width="4.4" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="1066.39" y="815.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="1283.2" y="629" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="1286.17" y="639.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="948.7" y="517" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="951.68" y="527.5" ></text> +</g> +<g > +<title>init_file (10,101,010 samples, 0.06%)</title><rect x="883.9" y="549" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="886.88" y="559.5" ></text> +</g> +<g > +<title>ext4_map_blocks (101,010,100 samples, 0.63%)</title><rect x="583.5" y="565" width="8.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="586.54" y="575.5" ></text> +</g> +<g > +<title>ext4_unlink (30,303,030 samples, 0.19%)</title><rect x="415.4" y="709" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="418.42" y="719.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1088.8" y="485" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="1091.78" y="495.5" ></text> +</g> +<g > +<title>delete_from_page_cache_batch (10,101,010 samples, 0.06%)</title><rect x="186.9" y="517" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="189.88" y="527.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="645.7" y="677" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="648.71" y="687.5" ></text> +</g> +<g > +<title>__d_lookup (10,101,010 samples, 0.06%)</title><rect x="104.6" y="821" width="0.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="107.57" y="831.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.06%)</title><rect x="608.9" y="693" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="611.93" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (202,020,200 samples, 1.27%)</title><rect x="750.8" y="805" width="17.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="753.79" y="815.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1037.1" y="421" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1040.12" y="431.5" ></text> +</g> +<g > +<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="1068.6" y="597" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1071.64" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="868.1" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="871.12" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1222.8" y="645" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1225.75" y="655.5" ></text> +</g> +<g > +<title>evict (40,404,040 samples, 0.25%)</title><rect x="462.7" y="645" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="465.70" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="857.6" y="741" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="860.61" y="751.5" ></text> +</g> +<g > +<title>__do_sys_getcwd (10,101,010 samples, 0.06%)</title><rect x="158.0" y="821" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="160.98" y="831.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1000.3" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1003.34" y="591.5" ></text> +</g> +<g > +<title>iput (141,414,140 samples, 0.89%)</title><rect x="351.5" y="661" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="354.50" y="671.5" ></text> +</g> +<g > +<title>kmalloc_trace (10,101,010 samples, 0.06%)</title><rect x="334.9" y="661" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="337.86" y="671.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.13%)</title><rect x="449.6" y="773" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="452.57" y="783.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1272.7" y="709" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1275.66" y="719.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (40,404,040 samples, 0.25%)</title><rect x="841.0" y="565" width="3.5" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="843.98" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="862.0" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="864.99" y="735.5" ></text> +</g> +<g > +<title>ext4_find_dest_de (30,303,030 samples, 0.19%)</title><rect x="133.5" y="773" width="2.6" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="136.46" y="783.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="1008.2" y="517" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="1011.22" y="527.5" ></text> +</g> +<g > +<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="655.3" y="517" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="658.34" y="527.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="898.8" y="613" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="901.77" y="623.5" ></text> +</g> +<g > +<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="594.9" y="677" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="597.92" y="687.5" ></text> +</g> +<g > +<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="597" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="1006.85" y="607.5" ></text> +</g> +<g > +<title>blk_mq_submit_bio (40,404,040 samples, 0.25%)</title><rect x="1136.9" y="421" width="3.5" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="1139.94" y="431.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="66.9" y="757" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="69.92" y="767.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="943.4" y="501" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="946.43" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="311.2" y="773" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="314.22" y="783.5" ></text> +</g> +<g > +<title>opendir (10,101,010 samples, 0.06%)</title><rect x="883.9" y="709" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" /> +<text x="886.88" y="719.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="974.1" y="485" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="977.07" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="916.3" y="725" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="919.28" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="546.8" y="757" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="549.76" y="767.5" ></text> +</g> +<g > +<title>[libpcre2-8.so.0.11.2] (10,101,010 samples, 0.06%)</title><rect x="829.6" y="773" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="832.59" y="783.5" ></text> +</g> +<g > +<title>schedule (20,202,020 samples, 0.13%)</title><rect x="659.7" y="453" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="662.72" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="693.0" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="695.99" y="639.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="357" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1040.99" y="367.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="882.1" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="885.13" y="671.5" ></text> +</g> +<g > +<title>_raw_read_lock (10,101,010 samples, 0.06%)</title><rect x="1176.3" y="645" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1179.35" y="655.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="604.6" y="549" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="607.56" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="856.7" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="859.74" y="783.5" ></text> +</g> +<g > +<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="393.5" y="613" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="396.53" y="623.5" ></text> +</g> +<g > +<title>tcp_send_ack (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="245" width="1.7" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" /> +<text x="1336.96" y="255.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="904.0" y="549" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="907.02" y="559.5" ></text> +</g> +<g > +<title>git_config_add_backend (50,505,050 samples, 0.32%)</title><rect x="1186.9" y="805" width="4.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1189.85" y="815.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.06%)</title><rect x="718.4" y="501" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" /> +<text x="721.39" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_link (20,202,020 samples, 0.13%)</title><rect x="1118.6" y="693" width="1.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="1121.55" y="703.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1057.3" y="597" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1060.26" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="661" width="1.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="1095.28" y="671.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1012.6" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1015.60" y="703.5" ></text> +</g> +<g > +<title>vfs_fstatat (60,606,060 samples, 0.38%)</title><rect x="366.4" y="725" width="5.2" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="369.38" y="735.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="69" width="1.7" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="1336.96" y="79.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="645.7" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="648.71" y="703.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="979.3" y="485" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="982.33" y="495.5" ></text> +</g> +<g > +<title>__dentry_kill (20,202,020 samples, 0.13%)</title><rect x="302.5" y="597" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="305.46" y="607.5" ></text> +</g> +<g > +<title>iterate_dir (30,303,030 samples, 0.19%)</title><rect x="401.4" y="741" width="2.6" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="404.41" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="883.9" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="886.88" y="671.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="677" width="6.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1364.98" y="687.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="148.4" y="773" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="151.35" y="783.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="10.9" y="901" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="13.88" y="911.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="517.0" y="565" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="519.99" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="770.1" y="613" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="773.05" y="623.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="538.0" y="549" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="541.01" y="559.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="337.5" y="597" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="340.49" y="607.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="197.4" y="581" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="200.39" y="591.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="184.3" y="485" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="187.25" y="495.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1153.6" y="645" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="1156.58" y="655.5" ></text> +</g> +<g > +<title>ext4_create (50,505,050 samples, 0.32%)</title><rect x="770.9" y="533" width="4.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="773.93" y="543.5" ></text> +</g> +<g > +<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="884.8" y="709" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="887.76" y="719.5" ></text> +</g> +<g > +<title>iput (10,101,010 samples, 0.06%)</title><rect x="236.8" y="613" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="239.79" y="623.5" ></text> +</g> +<g > +<title>filldir64 (10,101,010 samples, 0.06%)</title><rect x="616.8" y="629" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="619.81" y="639.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="752.5" y="517" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="755.54" y="527.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="484.6" y="629" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="487.59" y="639.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="741.2" y="501" width="0.8" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="744.15" y="511.5" ></text> +</g> +<g > +<title>save_fpregs_to_fpstate (10,101,010 samples, 0.06%)</title><rect x="397.0" y="565" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" /> +<text x="400.03" y="575.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="203.5" y="533" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="206.52" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="837" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="555.89" y="847.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="403.2" y="725" width="0.8" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="406.16" y="735.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="764.8" y="517" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="767.80" y="527.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="645" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="1238.89" y="655.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="784.9" y="485" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="787.94" y="495.5" ></text> +</g> +<g > +<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="318.2" y="677" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="321.22" y="687.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="609.8" y="709" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="612.81" y="719.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.06%)</title><rect x="278.8" y="501" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="281.82" y="511.5" ></text> +</g> +<g > +<title>d_lookup (10,101,010 samples, 0.06%)</title><rect x="662.3" y="629" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="665.35" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_free (20,202,020 samples, 0.13%)</title><rect x="358.5" y="533" width="1.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="361.50" y="543.5" ></text> +</g> +<g > +<title>mark_buffer_dirty (30,303,030 samples, 0.19%)</title><rect x="1089.7" y="501" width="2.6" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="1092.66" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="746.4" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="749.41" y="671.5" ></text> +</g> +<g > +<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="586.2" y="453" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="589.17" y="463.5" ></text> +</g> +<g > +<title>__filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="968.8" y="501" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="971.82" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="736.8" y="741" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="739.78" y="751.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="905.8" y="613" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="908.77" y="623.5" ></text> +</g> +<g > +<title>git_config_add_backend (30,303,030 samples, 0.19%)</title><rect x="1083.5" y="789" width="2.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1086.53" y="799.5" ></text> +</g> +<g > +<title>kernel_clone (202,020,200 samples, 1.27%)</title><rect x="45.9" y="741" width="17.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="48.90" y="751.5" ></text> +</g> +<g > +<title>__blk_mq_end_request (10,101,010 samples, 0.06%)</title><rect x="663.2" y="453" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="666.22" y="463.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="92.3" y="885" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="95.31" y="895.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="853.2" y="565" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="856.24" y="575.5" ></text> +</g> +<g > +<title>do_unlinkat (20,202,020 samples, 0.13%)</title><rect x="736.8" y="677" width="1.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="739.78" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="895.3" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="898.27" y="767.5" ></text> +</g> +<g > +<title>mas_find (20,202,020 samples, 0.13%)</title><rect x="1300.7" y="709" width="1.7" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="1303.69" y="719.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="228.0" y="581" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="231.03" y="591.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="315.6" y="613" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="318.60" y="623.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="634.3" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="637.33" y="575.5" ></text> +</g> +<g > +<title>__blk_flush_plug (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="469" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="1037.49" y="479.5" ></text> +</g> +<g > +<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="193.0" y="725" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="196.01" y="735.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="654.5" y="549" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="657.47" y="559.5" ></text> +</g> +<g > +<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="754.3" y="405" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="757.29" y="415.5" ></text> +</g> +<g > +<title>git_config_snapshot (30,303,030 samples, 0.19%)</title><rect x="895.3" y="789" width="2.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="898.27" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="981.1" y="661" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="984.08" y="671.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="188.6" y="533" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="191.63" y="543.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="581" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1241.52" y="591.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_plug_list (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="437" width="2.7" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="1136.44" y="447.5" ></text> +</g> +<g > +<title>ext4_getattr (10,101,010 samples, 0.06%)</title><rect x="1256.9" y="613" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="1259.90" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1086.53" y="671.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="740.3" y="453" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="743.28" y="463.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="155.4" y="789" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="158.36" y="799.5" ></text> +</g> +<g > +<title>__ext4_unlink (40,404,040 samples, 0.25%)</title><rect x="188.6" y="565" width="3.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="191.63" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="984.6" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="987.58" y="735.5" ></text> +</g> +<g > +<title>pipe_read (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="757" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1322.95" y="767.5" ></text> +</g> +<g > +<title>file_close (10,101,010 samples, 0.06%)</title><rect x="20.5" y="949" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="23.51" y="959.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (929,292,920 samples, 5.84%)</title><rect x="559.9" y="821" width="80.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="562.90" y="831.5" >[libgit2...</text> +</g> +<g > +<title>rename (151,515,150 samples, 0.95%)</title><rect x="1028.4" y="741" width="13.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1031.36" y="751.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="709" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1329.95" y="719.5" ></text> +</g> +<g > +<title>scsi_queue_rq (10,101,010 samples, 0.06%)</title><rect x="665.9" y="341" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="668.85" y="351.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.06%)</title><rect x="1342.7" y="309" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="1345.72" y="319.5" ></text> +</g> +<g > +<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="757" width="1.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="1361.48" y="767.5" ></text> +</g> +<g > +<title>ext4_read_block_bitmap (10,101,010 samples, 0.06%)</title><rect x="702.6" y="437" width="0.9" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" /> +<text x="705.63" y="447.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (101,010,100 samples, 0.63%)</title><rect x="665.0" y="565" width="8.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="667.97" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="722.8" y="741" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="725.77" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="677" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="755.54" y="687.5" ></text> +</g> +<g > +<title>request_create_start_run (20,202,020 samples, 0.13%)</title><rect x="18.8" y="981" width="1.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="21.76" y="991.5" ></text> +</g> +<g > +<title>inet_wait_for_connect (70,707,070 samples, 0.44%)</title><rect x="1376.9" y="789" width="6.1" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="1379.87" y="799.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="524.9" y="629" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="527.87" y="639.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="462.7" y="597" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="465.70" y="607.5" ></text> +</g> +<g > +<title>__sbrk (10,101,010 samples, 0.06%)</title><rect x="239.4" y="709" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="242.42" y="719.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="200.0" y="565" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="203.01" y="575.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="764.8" y="485" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="767.80" y="495.5" ></text> +</g> +<g > +<title>ext4_rename (80,808,080 samples, 0.51%)</title><rect x="1034.5" y="613" width="7.0" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1037.49" y="623.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="839.2" y="581" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="842.23" y="591.5" ></text> +</g> +<g > +<title>iput (101,010,100 samples, 0.63%)</title><rect x="811.2" y="629" width="8.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="814.21" y="639.5" ></text> +</g> +<g > +<title>dput (101,010,100 samples, 0.63%)</title><rect x="811.2" y="677" width="8.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="814.21" y="687.5" ></text> +</g> +<g > +<title>tcp_write_xmit (50,505,050 samples, 0.32%)</title><rect x="35.4" y="629" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="38.39" y="639.5" ></text> +</g> +<g > +<title>event_loop_run (525,252,520 samples, 3.30%)</title><rect x="24.0" y="949" width="45.5" height="15.0" fill="rgb(0,235,193)" rx="2" ry="2" /> +<text x="27.01" y="959.5" >even..</text> +</g> +<g > +<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="721.0" y="661" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="724.02" y="671.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="366.4" y="661" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="369.38" y="671.5" ></text> +</g> +<g > +<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="972.3" y="517" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="975.32" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="751.7" y="613" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="754.66" y="623.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="834.8" y="629" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="837.85" y="639.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (70,707,070 samples, 0.44%)</title><rect x="1214.0" y="757" width="6.1" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="1217.00" y="767.5" ></text> +</g> +<g > +<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="979.3" y="501" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="982.33" y="511.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="10.9" y="885" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="13.88" y="895.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="517" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="1221.38" y="527.5" ></text> +</g> +<g > +<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="549" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="1202.99" y="559.5" ></text> +</g> +<g > +<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.06%)</title><rect x="187.8" y="437" width="0.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="190.75" y="447.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="1165.0" y="533" width="2.6" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1167.96" y="543.5" ></text> +</g> +<g > +<title>ext4_writepages (40,404,040 samples, 0.25%)</title><rect x="930.3" y="565" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="933.29" y="575.5" ></text> +</g> +<g > +<title>__init_rwsem (10,101,010 samples, 0.06%)</title><rect x="573.9" y="581" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="576.91" y="591.5" ></text> +</g> +<g > +<title>git_reference_name_to_id (20,202,020 samples, 0.13%)</title><rect x="985.5" y="821" width="1.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="988.46" y="831.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="402.3" y="661" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="405.28" y="671.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1107.2" y="677" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1110.17" y="687.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="565" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="1221.38" y="575.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (20,202,020 samples, 0.13%)</title><rect x="1147.4" y="677" width="1.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1150.45" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1205.61" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="661" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1091.78" y="671.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="885.6" y="597" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="888.63" y="607.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="974.1" y="469" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="977.07" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="159.7" y="837" width="6.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="162.73" y="847.5" ></text> +</g> +<g > +<title>do_sys_openat2 (70,707,070 samples, 0.44%)</title><rect x="507.4" y="741" width="6.1" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="510.36" y="751.5" ></text> +</g> +<g > +<title>ext4_release_folio (10,101,010 samples, 0.06%)</title><rect x="818.2" y="485" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="821.21" y="495.5" ></text> +</g> +<g > +<title>generic_update_time (20,202,020 samples, 0.13%)</title><rect x="337.5" y="677" width="1.7" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="340.49" y="687.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="613" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1205.61" y="623.5" ></text> +</g> +<g > +<title>__skb_datagram_iter (10,101,010 samples, 0.06%)</title><rect x="1358.5" y="629" width="0.9" height="15.0" fill="rgb(0,229,163)" rx="2" ry="2" /> +<text x="1361.48" y="639.5" ></text> +</g> +<g > +<title>realpath (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="789" width="1.7" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" /> +<text x="1200.36" y="799.5" ></text> +</g> +<g > +<title>__inet_twsk_schedule (10,101,010 samples, 0.06%)</title><rect x="38.0" y="149" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="41.02" y="159.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (40,404,040 samples, 0.25%)</title><rect x="1384.7" y="757" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1387.75" y="767.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="463.6" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="466.58" y="559.5" ></text> +</g> +<g > +<title>errseq_check (10,101,010 samples, 0.06%)</title><rect x="546.8" y="469" width="0.8" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" /> +<text x="549.76" y="479.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1094.9" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1097.91" y="591.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="834.0" y="645" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="836.97" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="789" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="555.89" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="852.4" y="757" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="855.36" y="767.5" ></text> +</g> +<g > +<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="919.8" y="533" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="922.78" y="543.5" ></text> +</g> +<g > +<title>ext4_superblock_csum_set (20,202,020 samples, 0.13%)</title><rect x="349.7" y="629" width="1.8" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" /> +<text x="352.75" y="639.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="892.6" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="895.64" y="751.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (10,101,010 samples, 0.06%)</title><rect x="1342.7" y="325" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1345.72" y="335.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="1167.6" y="581" width="2.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1170.59" y="591.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="749.9" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="752.91" y="559.5" ></text> +</g> +<g > +<title>ext4_mb_good_group_nolock (10,101,010 samples, 0.06%)</title><rect x="1046.8" y="549" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1049.75" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="860.2" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="863.24" y="799.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="958.3" y="325" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="961.31" y="335.5" ></text> +</g> +<g > +<title>ext4_unlink (40,404,040 samples, 0.25%)</title><rect x="188.6" y="581" width="3.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="191.63" y="591.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="979.3" y="469" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="982.33" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="548.5" y="709" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="551.52" y="719.5" ></text> +</g> +<g > +<title>mntput (10,101,010 samples, 0.06%)</title><rect x="524.0" y="629" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="527.00" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="157.1" y="869" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="160.11" y="879.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (383,838,380 samples, 2.41%)</title><rect x="438.2" y="837" width="33.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="441.19" y="847.5" >[l..</text> +</g> +<g > +<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="911.0" y="741" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="914.03" y="751.5" ></text> +</g> +<g > +<title>mkdir (363,636,360 samples, 2.28%)</title><rect x="563.4" y="757" width="31.5" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" /> +<text x="566.40" y="767.5" >mk..</text> +</g> +<g > +<title>ext4_do_writepages (40,404,040 samples, 0.25%)</title><rect x="930.3" y="549" width="3.5" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="933.29" y="559.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="709" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1022.61" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="1242.9" y="837" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1245.89" y="847.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="922.4" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="925.41" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="182.5" y="677" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="185.50" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1015.2" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1018.23" y="799.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="886.5" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="889.51" y="607.5" ></text> +</g> +<g > +<title>memcg_list_lru_alloc (10,101,010 samples, 0.06%)</title><rect x="1080.0" y="549" width="0.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" /> +<text x="1083.03" y="559.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="415.4" y="677" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="418.42" y="687.5" ></text> +</g> +<g > +<title>__ext4_find_entry (30,303,030 samples, 0.19%)</title><rect x="341.0" y="645" width="2.6" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="343.99" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="649.2" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="652.21" y="751.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="730.6" y="613" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="733.65" y="623.5" ></text> +</g> +<g > +<title>tcp_push (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="725" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1336.08" y="735.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1182.5" y="709" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1185.47" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="1191.2" y="789" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1194.23" y="799.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="524.9" y="709" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="527.87" y="719.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="654.5" y="517" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="657.47" y="527.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="365.5" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="368.51" y="655.5" ></text> +</g> +<g > +<title>__sock_release (90,909,090 samples, 0.57%)</title><rect x="1369.0" y="789" width="7.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="1371.98" y="799.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1220.50" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="886.5" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="889.51" y="687.5" ></text> +</g> +<g > +<title>alloc_inode (10,101,010 samples, 0.06%)</title><rect x="989.0" y="613" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="991.96" y="623.5" ></text> +</g> +<g > +<title>__handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="789" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="1322.07" y="799.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (10,101,010 samples, 0.06%)</title><rect x="463.6" y="581" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="466.58" y="591.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="254.3" y="629" width="2.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="257.30" y="639.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="661" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="1116.30" y="671.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="235.0" y="469" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="238.04" y="479.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="256.1" y="581" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="259.05" y="591.5" ></text> +</g> +<g > +<title>lh_table_free (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="853" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1353.60" y="863.5" ></text> +</g> +<g > +<title>do_filp_open (30,303,030 samples, 0.19%)</title><rect x="988.1" y="725" width="2.6" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="991.08" y="735.5" ></text> +</g> +<g > +<title>security_d_instantiate (10,101,010 samples, 0.06%)</title><rect x="699.1" y="565" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="702.12" y="575.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (40,404,040 samples, 0.25%)</title><rect x="110.7" y="773" width="3.5" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="113.70" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (282,828,280 samples, 1.78%)</title><rect x="804.2" y="821" width="24.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="807.20" y="831.5" >[..</text> +</g> +<g > +<title>perf_event_mmap_event (10,101,010 samples, 0.06%)</title><rect x="241.2" y="549" width="0.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="244.17" y="559.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="661" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1239.76" y="671.5" ></text> +</g> +<g > +<title>__fput (20,202,020 samples, 0.13%)</title><rect x="237.7" y="677" width="1.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="240.66" y="687.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="734.1" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="737.15" y="751.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="765.7" y="517" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="768.67" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (222,222,220 samples, 1.40%)</title><rect x="831.3" y="805" width="19.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="834.35" y="815.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="709" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1235.39" y="719.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (30,303,030 samples, 0.19%)</title><rect x="707.9" y="549" width="2.6" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="710.88" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="750.8" y="677" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="753.79" y="687.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="712.3" y="565" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="715.26" y="575.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1262.53" y="639.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="973.2" y="453" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="976.20" y="463.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.06%)</title><rect x="930.3" y="389" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="933.29" y="399.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="306.0" y="709" width="5.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="308.96" y="719.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="725" width="1.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="1332.58" y="735.5" ></text> +</g> +<g > +<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="924.2" y="693" width="0.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="927.16" y="703.5" ></text> +</g> +<g > +<title>evict (90,909,090 samples, 0.57%)</title><rect x="654.5" y="597" width="7.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="657.47" y="607.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="986.3" y="597" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="989.33" y="607.5" ></text> +</g> +<g > +<title>__release_sock (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="757" width="2.7" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="1344.84" y="767.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="661" width="5.2" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="1009.47" y="671.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="939.9" y="405" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="942.92" y="415.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="955.7" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="958.69" y="527.5" ></text> +</g> +<g > +<title>d_instantiate_new (20,202,020 samples, 0.13%)</title><rect x="126.5" y="805" width="1.7" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="129.46" y="815.5" ></text> +</g> +<g > +<title>git_remote_fetch (1,555,555,540 samples, 9.77%)</title><rect x="855.9" y="869" width="134.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="858.86" y="879.5" >git_remote_fetch</text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="412.8" y="581" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="415.79" y="591.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="594.9" y="693" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="597.92" y="703.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.06%)</title><rect x="822.6" y="373" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="825.59" y="383.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1013.5" y="757" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1016.48" y="767.5" ></text> +</g> +<g > +<title>inode_add_lru (10,101,010 samples, 0.06%)</title><rect x="325.2" y="581" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="328.23" y="591.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="443.4" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="446.44" y="607.5" ></text> +</g> +<g > +<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="366.4" y="629" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="369.38" y="639.5" ></text> +</g> +<g > +<title>nd_jump_root (20,202,020 samples, 0.13%)</title><rect x="892.6" y="565" width="1.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="895.64" y="575.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="213" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="1375.49" y="223.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="447.8" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="450.82" y="671.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1096.7" y="469" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1099.66" y="479.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="389" width="5.2" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1372.86" y="399.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="955.7" y="437" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="958.69" y="447.5" ></text> +</g> +<g > +<title>end_bio_bh_io_sync (10,101,010 samples, 0.06%)</title><rect x="249.9" y="373" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="252.92" y="383.5" ></text> +</g> +<g > +<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1122.1" y="597" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="1125.06" y="607.5" ></text> +</g> +<g > +<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="702.6" y="453" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="705.63" y="463.5" ></text> +</g> +<g > +<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.06%)</title><rect x="384.8" y="533" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="387.77" y="543.5" ></text> +</g> +<g > +<title>x64_sys_call (90,909,090 samples, 0.57%)</title><rect x="332.2" y="741" width="7.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="335.23" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="514.4" y="821" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="517.37" y="831.5" ></text> +</g> +<g > +<title>do_fcntl (10,101,010 samples, 0.06%)</title><rect x="329.6" y="693" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="332.61" y="703.5" ></text> +</g> +<g > +<title>__close_nocancel (20,202,020 samples, 0.13%)</title><rect x="608.9" y="789" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="611.93" y="799.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1122.9" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1125.93" y="559.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="725.4" y="565" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="728.39" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="66.0" y="853" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="69.04" y="863.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="856.7" y="661" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="859.74" y="671.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="834.8" y="677" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="837.85" y="687.5" ></text> +</g> +<g > +<title>__fput (20,202,020 samples, 0.13%)</title><rect x="868.1" y="613" width="1.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="871.12" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="882.1" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="885.13" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="752.5" y="581" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="755.54" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="154.5" y="885" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="157.48" y="895.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="426.8" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="429.80" y="575.5" ></text> +</g> +<g > +<title>net_recv (30,303,030 samples, 0.19%)</title><rect x="1357.6" y="853" width="2.6" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="1360.60" y="863.5" ></text> +</g> +<g > +<title>block_write_end (10,101,010 samples, 0.06%)</title><rect x="1010.0" y="597" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" /> +<text x="1012.97" y="607.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="902.3" y="581" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="905.27" y="591.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1000.3" y="565" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1003.34" y="575.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="916.3" y="581" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="919.28" y="591.5" ></text> +</g> +<g > +<title>_copy_from_user (10,101,010 samples, 0.06%)</title><rect x="24.0" y="853" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" /> +<text x="27.01" y="863.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="764.8" y="501" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="767.80" y="511.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="485" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1129.43" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (737,373,730 samples, 4.63%)</title><rect x="560.8" y="805" width="63.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="563.77" y="815.5" >[libgit..</text> +</g> +<g > +<title>__sock_release (90,909,090 samples, 0.57%)</title><rect x="34.5" y="741" width="7.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="37.52" y="751.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="507.4" y="517" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="510.36" y="527.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="157.1" y="901" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="160.11" y="911.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="972.3" y="677" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="975.32" y="687.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="280.6" y="549" width="2.6" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="283.57" y="559.5" ></text> +</g> +<g > +<title>ext4_io_submit (50,505,050 samples, 0.32%)</title><rect x="1136.1" y="501" width="4.3" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" /> +<text x="1139.07" y="511.5" ></text> +</g> +<g > +<title>json_object_put (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="805" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="1353.60" y="815.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="677" width="0.8" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" /> +<text x="1347.47" y="687.5" ></text> +</g> +<g > +<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="271.8" y="501" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="274.81" y="511.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="645" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="1095.28" y="655.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (40,404,040 samples, 0.25%)</title><rect x="515.2" y="677" width="3.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="518.24" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="547.6" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="550.64" y="783.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="757" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1266.03" y="767.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="974.9" y="533" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="977.95" y="543.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1375.1" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1378.11" y="687.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="864.6" y="581" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="867.62" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="862.0" y="677" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="864.99" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="805" width="1.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="1322.95" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="482.0" y="677" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="484.97" y="687.5" ></text> +</g> +<g > +<title>net_send_buf (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="917" width="7.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="1363.23" y="927.5" ></text> +</g> +<g > +<title>ext4_append (50,505,050 samples, 0.32%)</title><rect x="701.8" y="565" width="4.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="704.75" y="575.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (20,202,020 samples, 0.13%)</title><rect x="162.4" y="773" width="1.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="165.36" y="783.5" ></text> +</g> +<g > +<title>rename (111,111,110 samples, 0.70%)</title><rect x="925.0" y="789" width="9.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="928.04" y="799.5" ></text> +</g> +<g > +<title>tcp_data_queue (20,202,020 samples, 0.13%)</title><rect x="1372.5" y="261" width="1.7" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="1375.49" y="271.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="457.4" y="741" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="460.45" y="751.5" ></text> +</g> +<g > +<title>accept4 (40,404,040 samples, 0.25%)</title><rect x="66.0" y="885" width="3.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="69.04" y="895.5" ></text> +</g> +<g > +<title>ip_output (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="597" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1345.72" y="607.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="714.0" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="717.01" y="639.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="1322.6" y="741" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="1325.58" y="751.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="808.6" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="811.58" y="655.5" ></text> +</g> +<g > +<title>__do_softirq (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="469" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1345.72" y="479.5" ></text> +</g> +<g > +<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="190.4" y="549" width="1.7" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="193.38" y="559.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="907.5" y="597" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="910.53" y="607.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="1017.9" y="581" width="0.8" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" /> +<text x="1020.86" y="591.5" ></text> +</g> +<g > +<title>git_signature_default (30,303,030 samples, 0.19%)</title><rect x="475.0" y="837" width="2.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="477.96" y="847.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="597" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="1029.61" y="607.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="663.2" y="485" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="666.22" y="495.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.06%)</title><rect x="151.0" y="853" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="153.98" y="863.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="412.8" y="661" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="415.79" y="671.5" ></text> +</g> +<g > +<title>ext4_bio_write_folio (10,101,010 samples, 0.06%)</title><rect x="795.4" y="437" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="798.44" y="447.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="565" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="1220.50" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="724.5" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="727.52" y="767.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="958.3" y="405" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="961.31" y="415.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="678.1" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="681.11" y="559.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="157.1" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="160.11" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="798.9" y="693" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="801.95" y="703.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="550.3" y="565" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="553.27" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="902.3" y="677" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="905.27" y="687.5" ></text> +</g> +<g > +<title>handle_pte_fault (10,101,010 samples, 0.06%)</title><rect x="163.2" y="693" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="166.24" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_openat (50,505,050 samples, 0.32%)</title><rect x="770.9" y="629" width="4.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="773.93" y="639.5" ></text> +</g> +<g > +<title>do_unlinkat (70,707,070 samples, 0.44%)</title><rect x="171.1" y="581" width="6.1" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="174.12" y="591.5" ></text> +</g> +<g > +<title>ext4_evict_inode (30,303,030 samples, 0.19%)</title><rect x="1029.2" y="565" width="2.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1032.24" y="575.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="808.6" y="597" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="811.58" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="408.4" y="837" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="411.41" y="847.5" ></text> +</g> +<g > +<title>d_alloc (20,202,020 samples, 0.13%)</title><rect x="1050.3" y="629" width="1.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1053.25" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1247.64" y="767.5" ></text> +</g> +<g > +<title>sock_close (90,909,090 samples, 0.57%)</title><rect x="1369.0" y="805" width="7.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" /> +<text x="1371.98" y="815.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="239.4" y="757" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="242.42" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1083.5" y="757" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1086.53" y="767.5" ></text> +</g> +<g > +<title>git_config_snapshot (10,101,010 samples, 0.06%)</title><rect x="759.5" y="757" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="762.54" y="767.5" ></text> +</g> +<g > +<title>git_config_set_int64 (212,121,210 samples, 1.33%)</title><rect x="1086.2" y="821" width="18.3" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1089.15" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_poll (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="869" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="1352.72" y="879.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="905.8" y="549" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="908.77" y="559.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="842.7" y="453" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="845.73" y="463.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="813.8" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="816.83" y="575.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="578.3" y="613" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="581.29" y="623.5" ></text> +</g> +<g > +<title>snprintf (20,202,020 samples, 0.13%)</title><rect x="436.4" y="869" width="1.8" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="439.43" y="879.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="271.8" y="549" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="274.81" y="559.5" ></text> +</g> +<g > +<title>ext4_getblk (30,303,030 samples, 0.19%)</title><rect x="332.2" y="597" width="2.7" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="335.23" y="607.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.06%)</title><rect x="143.1" y="901" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="146.10" y="911.5" ></text> +</g> +<g > +<title>__ext4_forget (10,101,010 samples, 0.06%)</title><rect x="362.9" y="517" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="365.88" y="527.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="956.6" y="517" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="959.56" y="527.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="645" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1247.64" y="655.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="551.1" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="554.14" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (363,636,360 samples, 2.28%)</title><rect x="563.4" y="693" width="31.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="566.40" y="703.5" >__..</text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="484.6" y="645" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="487.59" y="655.5" ></text> +</g> +<g > +<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="373.4" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="376.39" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="408.4" y="789" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="411.41" y="799.5" ></text> +</g> +<g > +<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="249.9" y="389" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" /> +<text x="252.92" y="399.5" ></text> +</g> +<g > +<title>from_kgid (10,101,010 samples, 0.06%)</title><rect x="291.1" y="501" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="294.08" y="511.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="151.9" y="885" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="154.85" y="895.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (30,303,030 samples, 0.19%)</title><rect x="266.6" y="549" width="2.6" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="269.56" y="559.5" ></text> +</g> +<g > +<title>ext4_evict_inode (30,303,030 samples, 0.19%)</title><rect x="405.8" y="661" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="408.79" y="671.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="661" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1097.04" y="671.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="421" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="1130.31" y="431.5" ></text> +</g> +<g > +<title>pthread_cond_wait (20,202,020 samples, 0.13%)</title><rect x="22.3" y="965" width="1.7" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="25.26" y="975.5" ></text> +</g> +<g > +<title>find_get_pid (10,101,010 samples, 0.06%)</title><rect x="1324.3" y="757" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="1327.33" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="489.0" y="757" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="491.97" y="767.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="753.4" y="453" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="756.41" y="463.5" ></text> +</g> +<g > +<title>evict (181,818,180 samples, 1.14%)</title><rect x="374.3" y="677" width="15.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="377.26" y="687.5" ></text> +</g> +<g > +<title>os_xsave (10,101,010 samples, 0.06%)</title><rect x="397.0" y="549" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="400.03" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="73.9" y="949" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="76.92" y="959.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="645" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="755.54" y="655.5" ></text> +</g> +<g > +<title>current_obj_cgroup (10,101,010 samples, 0.06%)</title><rect x="1309.4" y="693" width="0.9" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="1312.44" y="703.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="758.7" y="757" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="761.67" y="767.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1262.2" y="629" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1265.16" y="639.5" ></text> +</g> +<g > +<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="174.6" y="485" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="177.62" y="495.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1192.1" y="613" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1195.11" y="623.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="1126.4" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="1129.43" y="511.5" ></text> +</g> +<g > +<title>vfs_rmdir (50,505,050 samples, 0.32%)</title><rect x="177.2" y="581" width="4.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="180.25" y="591.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (20,202,020 samples, 0.13%)</title><rect x="418.9" y="725" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="421.92" y="735.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="974.1" y="501" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="977.07" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="456.6" y="741" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="459.57" y="751.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1248.52" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="42.4" y="901" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="45.40" y="911.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="373.4" y="613" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="376.39" y="623.5" ></text> +</g> +<g > +<title>cimple-server (727,272,720 samples, 4.57%)</title><rect x="10.0" y="1061" width="63.0" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" /> +<text x="13.00" y="1071.5" >cimple..</text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="329.6" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="332.61" y="783.5" ></text> +</g> +<g > +<title>iput (181,818,180 samples, 1.14%)</title><rect x="374.3" y="693" width="15.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="377.26" y="703.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="1168.5" y="565" width="1.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="1171.46" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="876.9" y="629" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="879.88" y="639.5" ></text> +</g> +<g > +<title>ext4_get_group_desc (10,101,010 samples, 0.06%)</title><rect x="1123.8" y="501" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" /> +<text x="1126.81" y="511.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="701.8" y="517" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="704.75" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_access (30,303,030 samples, 0.19%)</title><rect x="1211.4" y="693" width="2.6" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="1214.37" y="703.5" ></text> +</g> +<g > +<title>net_connect (90,909,090 samples, 0.57%)</title><rect x="1338.3" y="949" width="7.9" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" /> +<text x="1341.34" y="959.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="290.2" y="453" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="293.20" y="463.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="604.6" y="581" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="607.56" y="591.5" ></text> +</g> +<g > +<title>vfs_read (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="773" width="1.8" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="1322.95" y="783.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list.part.0 (20,202,020 samples, 0.13%)</title><rect x="822.6" y="469" width="1.7" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" /> +<text x="825.59" y="479.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1108.42" y="671.5" ></text> +</g> +<g > +<title>_start (14,252,525,110 samples, 89.53%)</title><rect x="154.5" y="1045" width="1235.5" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="157.48" y="1055.5" >_start</text> +</g> +<g > +<title>lookup_open.isra.0 (80,808,080 samples, 0.51%)</title><rect x="996.8" y="629" width="7.0" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" /> +<text x="999.84" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="394.4" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="397.40" y="639.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="74.8" y="853" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="77.80" y="863.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="834.0" y="565" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="836.97" y="575.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="309.5" y="597" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="312.47" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="524.0" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="527.00" y="719.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="182.5" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="185.50" y="639.5" ></text> +</g> +<g > +<title>get_orlov_stats (10,101,010 samples, 0.06%)</title><rect x="1269.2" y="725" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="1272.16" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="515.2" y="821" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="518.24" y="831.5" ></text> +</g> +<g > +<title>__netif_receive_skb (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1348.34" y="495.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (60,606,060 samples, 0.38%)</title><rect x="958.3" y="485" width="5.3" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="961.31" y="495.5" ></text> +</g> +<g > +<title>__mem_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="1314.7" y="741" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1317.70" y="751.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="955.7" y="485" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="958.69" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1226.3" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1229.26" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="153.6" y="981" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="156.60" y="991.5" ></text> +</g> +<g > +<title>evict (20,202,020 samples, 0.13%)</title><rect x="1096.7" y="581" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1099.66" y="591.5" ></text> +</g> +<g > +<title>mb_find_order_for_block (10,101,010 samples, 0.06%)</title><rect x="703.5" y="421" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="706.50" y="431.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="309.5" y="581" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="312.47" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="324.4" y="549" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="327.35" y="559.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="569.5" y="565" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="572.53" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="1248.1" y="741" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1251.15" y="751.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="911.0" y="773" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="914.03" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_connect (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="869" width="4.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="1344.84" y="879.5" ></text> +</g> +<g > +<title>tlb_finish_mmu (10,101,010 samples, 0.06%)</title><rect x="429.4" y="693" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="432.43" y="703.5" ></text> +</g> +<g > +<title>__lookup_mnt (10,101,010 samples, 0.06%)</title><rect x="916.3" y="501" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="919.28" y="511.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="80.9" y="821" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="83.93" y="831.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (10,101,010 samples, 0.06%)</title><rect x="1342.7" y="261" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1345.72" y="271.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="985.5" y="549" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="988.46" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="495.1" y="725" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="498.10" y="735.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="72.2" y="757" width="0.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="75.17" y="767.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="604.6" y="597" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="607.56" y="607.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="986.3" y="709" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="989.33" y="719.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="208.8" y="421" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="211.77" y="431.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="651.0" y="597" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="653.96" y="607.5" ></text> +</g> +<g > +<title>do_renameat2 (131,313,130 samples, 0.82%)</title><rect x="786.7" y="661" width="11.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="789.69" y="671.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.19%)</title><rect x="1089.7" y="485" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1092.66" y="495.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="487.2" y="645" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="490.22" y="655.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.06%)</title><rect x="979.3" y="677" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="982.33" y="687.5" ></text> +</g> +<g > +<title>do_filp_open (50,505,050 samples, 0.32%)</title><rect x="770.9" y="597" width="4.4" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="773.93" y="607.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="550.3" y="581" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="553.27" y="591.5" ></text> +</g> +<g > +<title>inflateResetKeep (10,101,010 samples, 0.06%)</title><rect x="472.3" y="725" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="475.34" y="735.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1227.1" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1230.13" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="144.0" y="981" width="9.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="146.97" y="991.5" ></text> +</g> +<g > +<title>connect (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="933" width="12.2" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" /> +<text x="1379.87" y="943.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="533" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1128.56" y="543.5" ></text> +</g> +<g > +<title>ext4_evict_inode (70,707,070 samples, 0.44%)</title><rect x="839.2" y="597" width="6.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="842.23" y="607.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="373" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1345.72" y="383.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="981.1" y="677" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="984.08" y="687.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="789" width="0.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="1343.96" y="799.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (20,202,020 samples, 0.13%)</title><rect x="1126.4" y="517" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="1129.43" y="527.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="440.8" y="613" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="443.81" y="623.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="740.3" y="517" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="743.28" y="527.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="517" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1128.56" y="527.5" ></text> +</g> +<g > +<title>tcp_sendmsg_locked (50,505,050 samples, 0.32%)</title><rect x="1333.1" y="741" width="4.4" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" /> +<text x="1336.08" y="751.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.06%)</title><rect x="671.1" y="437" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="674.10" y="447.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="528.4" y="661" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="531.38" y="671.5" ></text> +</g> +<g > +<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="597" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="1267.78" y="607.5" ></text> +</g> +<g > +<title>ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="677" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1348.34" y="687.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="348.9" y="597" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="351.87" y="607.5" ></text> +</g> +<g > +<title>__netif_receive_skb (40,404,040 samples, 0.25%)</title><rect x="36.3" y="341" width="3.5" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="39.27" y="351.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="469" width="1.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1389.50" y="479.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="309" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="1140.82" y="319.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="565" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1205.61" y="575.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="484.6" y="469" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="487.59" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="906.6" y="629" width="1.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="909.65" y="639.5" ></text> +</g> +<g > +<title>__filemap_fdatawrite_range (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="581" width="7.8" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="1135.56" y="591.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="213" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1369.36" y="223.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="677" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1091.78" y="687.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="1199.1" y="645" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="1202.11" y="655.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="248.2" y="581" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="251.17" y="591.5" ></text> +</g> +<g > +<title>do_softirq (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="581" width="1.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="1389.50" y="591.5" ></text> +</g> +<g > +<title>journal_end_buffer_io_sync (10,101,010 samples, 0.06%)</title><rect x="249.9" y="357" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" /> +<text x="252.92" y="367.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="789" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1241.52" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (808,080,800 samples, 5.08%)</title><rect x="73.9" y="1013" width="70.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="76.92" y="1023.5" >[libgit..</text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="284.1" y="565" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="287.07" y="575.5" ></text> +</g> +<g > +<title>open64 (70,707,070 samples, 0.44%)</title><rect x="507.4" y="821" width="6.1" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="510.36" y="831.5" ></text> +</g> +<g > +<title>__close (10,101,010 samples, 0.06%)</title><rect x="1085.3" y="725" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="1088.28" y="735.5" ></text> +</g> +<g > +<title>rename (90,909,090 samples, 0.57%)</title><rect x="1096.7" y="741" width="7.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1099.66" y="751.5" ></text> +</g> +<g > +<title>ip_rcv (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="453" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1348.34" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="925.0" y="757" width="9.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="928.04" y="767.5" ></text> +</g> +<g > +<title>block_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="818.2" y="517" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="821.21" y="527.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="163.2" y="725" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="166.24" y="735.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="517" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1336.08" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (90,909,090 samples, 0.57%)</title><rect x="184.3" y="629" width="7.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="187.25" y="639.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="967.9" y="581" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="970.94" y="591.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="1199.1" y="613" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" /> +<text x="1202.11" y="623.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.06%)</title><rect x="939.0" y="485" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="942.05" y="495.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="956.6" y="485" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="959.56" y="495.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.06%)</title><rect x="1064.3" y="661" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="1067.26" y="671.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="629" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1322.07" y="639.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="348.9" y="581" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="351.87" y="591.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="645" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="1363.23" y="655.5" ></text> +</g> +<g > +<title>evict (40,404,040 samples, 0.25%)</title><rect x="171.1" y="549" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="174.12" y="559.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="463.6" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="466.58" y="479.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="443.4" y="581" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="446.44" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="972.3" y="629" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="975.32" y="639.5" ></text> +</g> +<g > +<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="650.1" y="661" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="653.09" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="903.1" y="661" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="906.15" y="671.5" ></text> +</g> +<g > +<title>ip_local_deliver (30,303,030 samples, 0.19%)</title><rect x="37.1" y="293" width="2.7" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" /> +<text x="40.14" y="303.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="645" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1253.77" y="655.5" ></text> +</g> +<g > +<title>mktime (10,101,010 samples, 0.06%)</title><rect x="984.6" y="757" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="987.58" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (90,909,090 samples, 0.57%)</title><rect x="1096.7" y="709" width="7.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1099.66" y="719.5" ></text> +</g> +<g > +<title>iterate_dir (30,303,030 samples, 0.19%)</title><rect x="879.5" y="597" width="2.6" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="882.51" y="607.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="446.1" y="581" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="449.07" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="31.0" y="869" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="34.02" y="879.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="565" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="1253.77" y="575.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="369.0" y="645" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="372.01" y="655.5" ></text> +</g> +<g > +<title>git_repository_init_ext (2,636,363,610 samples, 16.56%)</title><rect x="991.6" y="853" width="228.5" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" /> +<text x="994.59" y="863.5" >git_repository_init_ext</text> +</g> +<g > +<title>__x64_sys_rename (131,313,130 samples, 0.82%)</title><rect x="786.7" y="677" width="11.4" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="789.69" y="687.5" ></text> +</g> +<g > +<title>crypto_shash_update (20,202,020 samples, 0.13%)</title><rect x="349.7" y="613" width="1.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="352.75" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="988.1" y="805" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="991.08" y="815.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="740.3" y="533" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="743.28" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (262,626,260 samples, 1.65%)</title><rect x="1220.1" y="853" width="22.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1223.13" y="863.5" >[..</text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="495.1" y="709" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="498.10" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="901" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1352.72" y="911.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="471.5" y="821" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="474.46" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="153.6" y="1013" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="156.60" y="1023.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="168.5" y="757" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="171.49" y="767.5" ></text> +</g> +<g > +<title>fstatat64 (80,808,080 samples, 0.51%)</title><rect x="313.8" y="789" width="7.1" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="316.85" y="799.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="192.1" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="195.13" y="703.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (30,303,030 samples, 0.19%)</title><rect x="37.1" y="245" width="2.7" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="40.14" y="255.5" ></text> +</g> +<g > +<title>evict (20,202,020 samples, 0.13%)</title><rect x="222.8" y="613" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="225.78" y="623.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (40,404,040 samples, 0.25%)</title><rect x="960.1" y="453" width="3.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="963.06" y="463.5" ></text> +</g> +<g > +<title>discard_slab (10,101,010 samples, 0.06%)</title><rect x="263.1" y="421" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="266.06" y="431.5" ></text> +</g> +<g > +<title>rename (131,313,130 samples, 0.82%)</title><rect x="460.1" y="805" width="11.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="463.08" y="815.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1014.4" y="693" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1017.35" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="42.4" y="885" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="45.40" y="895.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="360.3" y="565" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="363.25" y="575.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="581" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1108.42" y="591.5" ></text> +</g> +<g > +<title>link (30,303,030 samples, 0.19%)</title><rect x="974.9" y="741" width="2.7" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="977.95" y="751.5" ></text> +</g> +<g > +<title>unlink (313,131,310 samples, 1.97%)</title><rect x="371.6" y="789" width="27.2" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="374.64" y="799.5" >u..</text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="749.9" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="752.91" y="591.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1122.9" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1125.93" y="543.5" ></text> +</g> +<g > +<title>_copy_to_user (10,101,010 samples, 0.06%)</title><rect x="1013.5" y="677" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" /> +<text x="1016.48" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="885" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1344.84" y="895.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="749.9" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="752.91" y="543.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="657.1" y="533" width="1.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="660.09" y="543.5" ></text> +</g> +<g > +<title>git_repository_open_ext (222,222,220 samples, 1.40%)</title><rect x="891.8" y="821" width="19.2" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="894.76" y="831.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="501" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1128.56" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="894.4" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="897.39" y="783.5" ></text> +</g> +<g > +<title>ext4_free_inode (60,606,060 samples, 0.38%)</title><rect x="283.2" y="581" width="5.3" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="286.20" y="591.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="108.1" y="597" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="111.07" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="985.5" y="757" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="988.46" y="767.5" ></text> +</g> +<g > +<title>do_readlinkat (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="693" width="1.7" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="1200.36" y="703.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="693" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="1363.23" y="703.5" ></text> +</g> +<g > +<title>bit_wait_io (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="517" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1014.73" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_newfstat (10,101,010 samples, 0.06%)</title><rect x="610.7" y="709" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" /> +<text x="613.69" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="482.8" y="693" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="485.84" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="498.6" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="501.60" y="783.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="870.7" y="565" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="873.75" y="575.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="197.4" y="549" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" /> +<text x="200.39" y="559.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1217.00" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (202,020,200 samples, 1.27%)</title><rect x="1087.0" y="757" width="17.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1090.03" y="767.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="664.1" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="667.10" y="607.5" ></text> +</g> +<g > +<title>getname (10,101,010 samples, 0.06%)</title><rect x="725.4" y="597" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="728.39" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="967.9" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="970.94" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1204.4" y="629" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1207.37" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="773" width="7.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1044.50" y="783.5" ></text> +</g> +<g > +<title>fsnotify (20,202,020 samples, 0.13%)</title><rect x="621.2" y="677" width="1.7" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="624.19" y="687.5" ></text> +</g> +<g > +<title>__memset (20,202,020 samples, 0.13%)</title><rect x="1277.9" y="693" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1280.92" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="182.5" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="185.50" y="703.5" ></text> +</g> +<g > +<title>__memcg_slab_post_alloc_hook (20,202,020 samples, 0.13%)</title><rect x="1280.5" y="677" width="1.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="1283.55" y="687.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="821.7" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="824.71" y="575.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="585.3" y="437" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="588.29" y="447.5" ></text> +</g> +<g > +<title>hook_file_open (10,101,010 samples, 0.06%)</title><rect x="919.8" y="517" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="922.78" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1209.6" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1212.62" y="703.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="957.4" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="960.44" y="511.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="485.5" y="565" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="488.47" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="1257.8" y="725" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1260.78" y="735.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="132.6" y="725" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="135.59" y="735.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (30,303,030 samples, 0.19%)</title><rect x="1068.6" y="645" width="2.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="1071.64" y="655.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="525.7" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="528.75" y="623.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="1096.7" y="549" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="1099.66" y="559.5" ></text> +</g> +<g > +<title>__ext4_link (10,101,010 samples, 0.06%)</title><rect x="721.9" y="629" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="724.89" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="685.1" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="688.11" y="687.5" ></text> +</g> +<g > +<title>__x86_indirect_thunk_rax (10,101,010 samples, 0.06%)</title><rect x="736.8" y="661" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="739.78" y="671.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1181.6" y="725" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1184.60" y="735.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="892.6" y="645" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="895.64" y="655.5" ></text> +</g> +<g > +<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="298.1" y="469" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="301.08" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="897.9" y="725" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="900.89" y="735.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1032.24" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="798.9" y="677" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="801.95" y="687.5" ></text> +</g> +<g > +<title>git_error_set (10,101,010 samples, 0.06%)</title><rect x="798.1" y="725" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="801.07" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="750.8" y="661" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="753.79" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1231.88" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="181.6" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="184.62" y="735.5" ></text> +</g> +<g > +<title>__snprintf_chk (10,101,010 samples, 0.06%)</title><rect x="1086.2" y="805" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1089.15" y="815.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="375.1" y="645" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="378.14" y="655.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (40,404,040 samples, 0.25%)</title><rect x="937.3" y="581" width="3.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="940.30" y="591.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="263.9" y="581" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="266.93" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 1.08%)</title><rect x="196.5" y="693" width="14.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="199.51" y="703.5" ></text> +</g> +<g > +<title>__vm_area_free (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="485" width="0.8" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" /> +<text x="1347.47" y="495.5" ></text> +</g> +<g > +<title>security_socket_sendmsg (10,101,010 samples, 0.06%)</title><rect x="1337.5" y="773" width="0.8" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" /> +<text x="1340.46" y="783.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="364.6" y="677" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="367.63" y="687.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="985.5" y="581" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="988.46" y="591.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1172.0" y="469" width="0.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="1174.97" y="479.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="677" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1336.08" y="687.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="766.5" y="549" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="769.55" y="559.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="525.7" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="528.75" y="639.5" ></text> +</g> +<g > +<title>ext4_ext_find_goal (10,101,010 samples, 0.06%)</title><rect x="83.6" y="773" width="0.8" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" /> +<text x="86.55" y="783.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="613" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="1211.74" y="623.5" ></text> +</g> +<g > +<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="658.0" y="485" width="0.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="660.97" y="495.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="988.1" y="773" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="991.08" y="783.5" ></text> +</g> +<g > +<title>git_odb_read_header (40,404,040 samples, 0.25%)</title><rect x="723.6" y="789" width="3.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="726.64" y="799.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="765.7" y="549" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="768.67" y="559.5" ></text> +</g> +<g > +<title>mntput (10,101,010 samples, 0.06%)</title><rect x="854.1" y="581" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="857.11" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="407.5" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="410.54" y="639.5" ></text> +</g> +<g > +<title>mnt_want_write (10,101,010 samples, 0.06%)</title><rect x="512.6" y="677" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="515.61" y="687.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1041.5" y="597" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="1044.50" y="607.5" ></text> +</g> +<g > +<title>ext4_rmdir (121,212,120 samples, 0.76%)</title><rect x="341.0" y="661" width="10.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="343.99" y="671.5" ></text> +</g> +<g > +<title>__sbrk (20,202,020 samples, 0.13%)</title><rect x="241.2" y="693" width="1.7" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="244.17" y="703.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_lru (20,202,020 samples, 0.13%)</title><rect x="1050.3" y="597" width="1.7" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" /> +<text x="1053.25" y="607.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="154.5" y="821" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="157.48" y="831.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1231.88" y="735.5" ></text> +</g> +<g > +<title>do_softirq (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="581" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="1348.34" y="591.5" ></text> +</g> +<g > +<title>git_refdb_backend_fs (40,404,040 samples, 0.25%)</title><rect x="1239.4" y="805" width="3.5" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="1242.39" y="815.5" ></text> +</g> +<g > +<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="407.5" y="549" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="410.54" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1231.01" y="703.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="206.1" y="453" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="209.14" y="463.5" ></text> +</g> +<g > +<title>getdents64 (30,303,030 samples, 0.19%)</title><rect x="879.5" y="677" width="2.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="882.51" y="687.5" ></text> +</g> +<g > +<title>__ext4_journal_get_create_access (10,101,010 samples, 0.06%)</title><rect x="1158.8" y="629" width="0.9" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" /> +<text x="1161.83" y="639.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="423.3" y="661" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="426.30" y="671.5" ></text> +</g> +<g > +<title>ext4_truncate (10,101,010 samples, 0.06%)</title><rect x="817.3" y="581" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="820.34" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="906.6" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="909.65" y="671.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="663.2" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="666.22" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="125.6" y="725" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="128.58" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="661" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="755.54" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="24.0" y="917" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="27.01" y="927.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="322.6" y="613" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="325.60" y="623.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="840.1" y="565" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="843.10" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="481.1" y="757" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="484.09" y="767.5" ></text> +</g> +<g > +<title>x64_sys_call (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="885" width="12.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1379.87" y="895.5" ></text> +</g> +<g > +<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="773" width="1.7" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="1361.48" y="783.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="186.0" y="453" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="189.00" y="463.5" ></text> +</g> +<g > +<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="107.2" y="789" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="110.20" y="799.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="741.2" y="405" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="744.15" y="415.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="249.9" y="501" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="252.92" y="511.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="51.2" y="645" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="54.15" y="655.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="926.8" y="565" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="929.79" y="575.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="776.2" y="485" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="779.18" y="495.5" ></text> +</g> +<g > +<title>anon_vma_clone (10,101,010 samples, 0.06%)</title><rect x="1279.7" y="693" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="1282.67" y="703.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="181.6" y="629" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="184.62" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (50,505,050 samples, 0.32%)</title><rect x="177.2" y="613" width="4.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="180.25" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="757" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1019.98" y="767.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1029.61" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="875.1" y="741" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="878.13" y="751.5" ></text> +</g> +<g > +<title>getname (10,101,010 samples, 0.06%)</title><rect x="312.1" y="709" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="315.09" y="719.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="597" width="0.8" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="1322.07" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (151,515,150 samples, 0.95%)</title><rect x="874.3" y="789" width="13.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="877.25" y="799.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="645" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1243.27" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="505.6" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="508.61" y="751.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="821" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1319.45" y="831.5" ></text> +</g> +<g > +<title>__alloc_skb (10,101,010 samples, 0.06%)</title><rect x="14.4" y="741" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="17.38" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1197.73" y="767.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="613" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1234.51" y="623.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="636.1" y="581" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="639.08" y="591.5" ></text> +</g> +<g > +<title>hook_file_open (10,101,010 samples, 0.06%)</title><rect x="523.1" y="533" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="526.12" y="543.5" ></text> +</g> +<g > +<title>rwsem_down_write_slowpath (10,101,010 samples, 0.06%)</title><rect x="601.9" y="645" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="604.93" y="655.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="426.8" y="613" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="429.80" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="905.8" y="645" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="908.77" y="655.5" ></text> +</g> +<g > +<title>ext4_find_dest_de (10,101,010 samples, 0.06%)</title><rect x="580.9" y="597" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="583.91" y="607.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="603.7" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="606.68" y="591.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="1172.0" y="517" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="1174.97" y="527.5" ></text> +</g> +<g > +<title>getname (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="677" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="1006.85" y="687.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="439.9" y="613" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="442.94" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="869" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1328.20" y="879.5" ></text> +</g> +<g > +<title>new_inode (20,202,020 samples, 0.13%)</title><rect x="1151.8" y="677" width="1.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="1154.83" y="687.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="965.3" y="613" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="968.32" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="863.7" y="645" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="866.74" y="655.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="501.2" y="677" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="504.23" y="687.5" ></text> +</g> +<g > +<title>read (30,303,030 samples, 0.19%)</title><rect x="1357.6" y="837" width="2.6" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="1360.60" y="847.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="164.1" y="805" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="167.11" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 1.08%)</title><rect x="811.2" y="757" width="14.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="814.21" y="767.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="958.3" y="357" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="961.31" y="367.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (171,717,170 samples, 1.08%)</title><rect x="625.6" y="741" width="14.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="628.57" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1115.1" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1118.05" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="837" width="7.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1363.23" y="847.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="543.3" y="709" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="546.26" y="719.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="442.6" y="629" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="445.56" y="639.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="405" width="2.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1136.44" y="415.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="553.8" y="629" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="556.77" y="639.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="809.5" y="629" width="0.8" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" /> +<text x="812.45" y="639.5" ></text> +</g> +<g > +<title>__blk_mq_alloc_requests (10,101,010 samples, 0.06%)</title><rect x="1136.9" y="405" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1139.94" y="415.5" ></text> +</g> +<g > +<title>___d_drop (10,101,010 samples, 0.06%)</title><rect x="1130.8" y="613" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="1133.81" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1257.8" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1260.78" y="703.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="1092.3" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="1095.28" y="607.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="689.5" y="581" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="692.49" y="591.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="440.8" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="443.81" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="910.2" y="789" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="913.15" y="799.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="487.2" y="709" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="490.22" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="680.7" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="683.74" y="783.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="721.9" y="565" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="724.89" y="575.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1041.5" y="677" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1044.50" y="687.5" ></text> +</g> +<g > +<title>unlink (191,919,190 samples, 1.21%)</title><rect x="221.0" y="725" width="16.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="224.03" y="735.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="932.9" y="469" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="935.92" y="479.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (10,101,010 samples, 0.06%)</title><rect x="671.1" y="453" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="674.10" y="463.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="678.1" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="681.11" y="575.5" ></text> +</g> +<g > +<title>__block_commit_write (10,101,010 samples, 0.06%)</title><rect x="1010.0" y="581" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="1012.97" y="591.5" ></text> +</g> +<g > +<title>inet_sendmsg (60,606,060 samples, 0.38%)</title><rect x="1332.2" y="773" width="5.3" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" /> +<text x="1335.21" y="783.5" ></text> +</g> +<g > +<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="967.9" y="565" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="970.94" y="575.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="766.5" y="533" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="769.55" y="543.5" ></text> +</g> +<g > +<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="765.7" y="581" width="1.7" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="768.67" y="591.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="713.1" y="597" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="716.13" y="607.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="939.9" y="501" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="942.92" y="511.5" ></text> +</g> +<g > +<title>vfs_write (30,303,030 samples, 0.19%)</title><rect x="707.9" y="613" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="710.88" y="623.5" ></text> +</g> +<g > +<title>lockref_put_return (10,101,010 samples, 0.06%)</title><rect x="1118.6" y="645" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1121.55" y="655.5" ></text> +</g> +<g > +<title>handle_pte_fault (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="549" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="1108.42" y="559.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.06%)</title><rect x="938.2" y="469" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="941.17" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_write (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="741" width="3.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="1071.64" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1259.03" y="767.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1032.24" y="511.5" ></text> +</g> +<g > +<title>fprintf (40,404,040 samples, 0.25%)</title><rect x="556.4" y="869" width="3.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="559.40" y="879.5" ></text> +</g> +<g > +<title>x64_sys_call (565,656,560 samples, 3.55%)</title><rect x="94.9" y="949" width="49.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="97.94" y="959.5" >x64_..</text> +</g> +<g > +<title>tcp_v4_connect (70,707,070 samples, 0.44%)</title><rect x="1383.0" y="789" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1385.99" y="799.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="677" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1097.04" y="687.5" ></text> +</g> +<g > +<title>memcg_account_kmem (10,101,010 samples, 0.06%)</title><rect x="57.3" y="661" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="60.28" y="671.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="533" width="5.2" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="1372.86" y="543.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1326.1" y="789" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1329.08" y="799.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="805" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1184.60" y="815.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="693" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1198.61" y="703.5" ></text> +</g> +<g > +<title>net_accept (40,404,040 samples, 0.25%)</title><rect x="66.0" y="901" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="69.04" y="911.5" ></text> +</g> +<g > +<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="661" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="1098.79" y="671.5" ></text> +</g> +<g > +<title>make_kprojid (10,101,010 samples, 0.06%)</title><rect x="1151.0" y="677" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1153.95" y="687.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="847.1" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="850.11" y="623.5" ></text> +</g> +<g > +<title>block_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="187.8" y="485" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="190.75" y="495.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (90,909,090 samples, 0.57%)</title><rect x="292.8" y="565" width="7.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="295.83" y="575.5" ></text> +</g> +<g > +<title>do_get_write_access (20,202,020 samples, 0.13%)</title><rect x="130.0" y="741" width="1.7" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="132.96" y="751.5" ></text> +</g> +<g > +<title>folio_wait_writeback (20,202,020 samples, 0.13%)</title><rect x="659.7" y="517" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="662.72" y="527.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="289.3" y="549" width="2.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="292.33" y="559.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="651.0" y="613" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="653.96" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1226.3" y="677" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1229.26" y="687.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="805" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1202.11" y="815.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (20,202,020 samples, 0.13%)</title><rect x="12.6" y="421" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="15.63" y="431.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="108.1" y="661" width="0.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="111.07" y="671.5" ></text> +</g> +<g > +<title>write (70,707,070 samples, 0.44%)</title><rect x="1005.6" y="773" width="6.1" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1008.60" y="783.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="175.5" y="469" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="178.49" y="479.5" ></text> +</g> +<g > +<title>git_remote_connect_ext (535,353,530 samples, 3.36%)</title><rect x="866.4" y="853" width="46.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="869.37" y="863.5" >git_..</text> +</g> +<g > +<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="818.2" y="533" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="821.21" y="543.5" ></text> +</g> +<g > +<title>alloc_pages_mpol (20,202,020 samples, 0.13%)</title><rect x="1108.9" y="501" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1111.92" y="511.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1181.6" y="709" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1184.60" y="719.5" ></text> +</g> +<g > +<title>ext4_setattr (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="677" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="1014.73" y="687.5" ></text> +</g> +<g > +<title>scsi_device_unbusy (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="565" width="0.8" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" /> +<text x="1322.07" y="575.5" ></text> +</g> +<g > +<title>getdents64 (131,313,130 samples, 0.82%)</title><rect x="245.5" y="757" width="11.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="248.55" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (313,131,310 samples, 1.97%)</title><rect x="653.6" y="741" width="27.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="656.59" y="751.5" >e..</text> +</g> +<g > +<title>mas_walk (10,101,010 samples, 0.06%)</title><rect x="242.0" y="565" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="245.04" y="575.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="392.7" y="613" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="395.65" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="751.7" y="597" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="754.66" y="607.5" ></text> +</g> +<g > +<title>git_odb_read (20,202,020 samples, 0.13%)</title><rect x="546.8" y="853" width="1.7" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="549.76" y="863.5" ></text> +</g> +<g > +<title>ext4_es_remove_extent (20,202,020 samples, 0.13%)</title><rect x="788.4" y="517" width="1.8" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" /> +<text x="791.44" y="527.5" ></text> +</g> +<g > +<title>ext4_da_reserve_space (10,101,010 samples, 0.06%)</title><rect x="1069.5" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1072.52" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="853" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1319.45" y="863.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1206.1" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1209.12" y="687.5" ></text> +</g> +<g > +<title>write (30,303,030 samples, 0.19%)</title><rect x="433.8" y="789" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="436.81" y="799.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="415.4" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="418.42" y="639.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="692.1" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="695.12" y="575.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="980.2" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="983.20" y="591.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="514.4" y="725" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="517.37" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="542.4" y="805" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="545.39" y="815.5" ></text> +</g> +<g > +<title>ip_finish_output2 (40,404,040 samples, 0.25%)</title><rect x="36.3" y="501" width="3.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="39.27" y="511.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="168.5" y="789" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="171.49" y="799.5" ></text> +</g> +<g > +<title>handle_softirqs (20,202,020 samples, 0.13%)</title><rect x="12.6" y="501" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="15.63" y="511.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="894.4" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="897.39" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="688.6" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="691.62" y="655.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="495.1" y="789" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="498.10" y="799.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="485.5" y="741" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="488.47" y="751.5" ></text> +</g> +<g > +<title>ext4_mb_good_group (10,101,010 samples, 0.06%)</title><rect x="1046.8" y="533" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="1049.75" y="543.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="523.1" y="725" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="526.12" y="735.5" ></text> +</g> +<g > +<title>iterate_dir (50,505,050 samples, 0.32%)</title><rect x="418.9" y="773" width="4.4" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="421.92" y="783.5" ></text> +</g> +<g > +<title>fstatat64 (50,505,050 samples, 0.32%)</title><rect x="548.5" y="725" width="4.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="551.52" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1086.53" y="687.5" ></text> +</g> +<g > +<title>ip_finish_output2 (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="101" width="1.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1336.96" y="111.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="731.5" y="533" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="734.52" y="543.5" ></text> +</g> +<g > +<title>git_reference_iterator_new (50,505,050 samples, 0.32%)</title><rect x="887.4" y="789" width="4.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="890.39" y="799.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="405" width="0.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="1390.37" y="415.5" ></text> +</g> +<g > +<title>open64 (30,303,030 samples, 0.19%)</title><rect x="988.1" y="821" width="2.6" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="991.08" y="831.5" ></text> +</g> +<g > +<title>idr_find (10,101,010 samples, 0.06%)</title><rect x="1324.3" y="741" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" /> +<text x="1327.33" y="751.5" ></text> +</g> +<g > +<title>__d_add (10,101,010 samples, 0.06%)</title><rect x="718.4" y="517" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="721.39" y="527.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="749.0" y="597" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="752.04" y="607.5" ></text> +</g> +<g > +<title>ext4_ext_insert_extent (10,101,010 samples, 0.06%)</title><rect x="84.4" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="87.43" y="767.5" ></text> +</g> +<g > +<title>libjson_set (10,101,010 samples, 0.06%)</title><rect x="1348.8" y="901" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1351.85" y="911.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.06%)</title><rect x="439.9" y="693" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="442.94" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="482.8" y="677" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="485.84" y="687.5" ></text> +</g> +<g > +<title>ext4_inode_journal_mode (10,101,010 samples, 0.06%)</title><rect x="848.9" y="533" width="0.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" /> +<text x="851.86" y="543.5" ></text> +</g> +<g > +<title>__d_rehash (10,101,010 samples, 0.06%)</title><rect x="782.3" y="485" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="785.31" y="495.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="496.9" y="661" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="499.85" y="671.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (30,303,030 samples, 0.19%)</title><rect x="707.9" y="597" width="2.6" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="710.88" y="607.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="741" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="1349.22" y="751.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="773" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="1319.45" y="783.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="375.1" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="378.14" y="607.5" ></text> +</g> +<g > +<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="550.3" y="533" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="553.27" y="543.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="485.5" y="709" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="488.47" y="719.5" ></text> +</g> +<g > +<title>ksys_write (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="629" width="3.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="1091.78" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="439.9" y="741" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="442.94" y="751.5" ></text> +</g> +<g > +<title>mempool_alloc_slab (10,101,010 samples, 0.06%)</title><rect x="1103.7" y="373" width="0.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="1106.67" y="383.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="709" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1332.58" y="719.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="808.6" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="811.58" y="639.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="918.0" y="469" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="921.03" y="479.5" ></text> +</g> +<g > +<title>blk_mq_attempt_bio_merge (10,101,010 samples, 0.06%)</title><rect x="466.2" y="453" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="469.21" y="463.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (111,111,110 samples, 0.70%)</title><rect x="82.7" y="853" width="9.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="85.68" y="863.5" ></text> +</g> +<g > +<title>fsnotify (10,101,010 samples, 0.06%)</title><rect x="904.0" y="501" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="907.02" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.57%)</title><rect x="184.3" y="677" width="7.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="187.25" y="687.5" ></text> +</g> +<g > +<title>__close (20,202,020 samples, 0.13%)</title><rect x="868.1" y="709" width="1.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="871.12" y="719.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="886.5" y="629" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="889.51" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="443.4" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="446.44" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="453.9" y="677" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="456.95" y="687.5" ></text> +</g> +<g > +<title>git_config_snapshot (40,404,040 samples, 0.25%)</title><rect x="852.4" y="821" width="3.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="855.36" y="831.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="976.7" y="613" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="979.70" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_clone3 (202,020,200 samples, 1.27%)</title><rect x="45.9" y="773" width="17.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="48.90" y="783.5" ></text> +</g> +<g > +<title>__fput_sync (20,202,020 samples, 0.13%)</title><rect x="1015.2" y="725" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="1018.23" y="735.5" ></text> +</g> +<g > +<title>libjson_set_internal (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="853" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="1392.12" y="863.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="791.1" y="453" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="794.07" y="463.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="677" width="4.4" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="1380.74" y="687.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="886.5" y="725" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="889.51" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="757" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1022.61" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="892.6" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="895.64" y="735.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="186.0" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="189.00" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="778.8" y="645" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="781.81" y="655.5" ></text> +</g> +<g > +<title>tcp_sendmsg_locked (40,404,040 samples, 0.25%)</title><rect x="11.8" y="773" width="3.5" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" /> +<text x="14.75" y="783.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="894.4" y="789" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="897.39" y="799.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="597" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="1221.38" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="366.4" y="805" width="5.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="369.38" y="815.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="725" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1022.61" y="735.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="362.9" y="549" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" /> +<text x="365.88" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="759.5" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="762.54" y="735.5" ></text> +</g> +<g > +<title>__tcp_ack_snd_check (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="261" width="2.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="1367.61" y="271.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="496.0" y="677" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="498.98" y="687.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="929.4" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="932.42" y="639.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="693" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1349.22" y="703.5" ></text> +</g> +<g > +<title>do_softirq (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="485" width="4.4" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="1380.74" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="978.5" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="981.45" y="751.5" ></text> +</g> +<g > +<title>up_write (10,101,010 samples, 0.06%)</title><rect x="679.9" y="677" width="0.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="682.86" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="727.1" y="677" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="730.14" y="687.5" ></text> +</g> +<g > +<title>vfs_rmdir (454,545,450 samples, 2.86%)</title><rect x="265.7" y="645" width="39.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="268.69" y="655.5" >vfs..</text> +</g> +<g > +<title>__socket (30,303,030 samples, 0.19%)</title><rect x="1339.2" y="933" width="2.6" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="1342.21" y="943.5" ></text> +</g> +<g > +<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="287.6" y="533" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="290.58" y="543.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="428.6" y="709" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="431.55" y="719.5" ></text> +</g> +<g > +<title>inflateInit2_ (20,202,020 samples, 0.13%)</title><rect x="472.3" y="741" width="1.8" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" /> +<text x="475.34" y="751.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="440.8" y="565" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="443.81" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (90,909,090 samples, 0.57%)</title><rect x="1096.7" y="693" width="7.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1099.66" y="703.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="785.8" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="788.81" y="655.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="503.9" y="709" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="506.86" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="830.5" y="805" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="833.47" y="815.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="537.1" y="581" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" /> +<text x="540.13" y="591.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="297.2" y="421" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="300.21" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="709" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="755.54" y="719.5" ></text> +</g> +<g > +<title>ext4_add_entry (141,414,140 samples, 0.89%)</title><rect x="128.2" y="805" width="12.3" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="131.21" y="815.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="72.2" y="773" width="0.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="75.17" y="783.5" ></text> +</g> +<g > +<title>request_create_finished_run (20,202,020 samples, 0.13%)</title><rect x="1348.0" y="949" width="1.7" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1350.97" y="959.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="394.4" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="397.40" y="623.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="857.6" y="709" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="860.61" y="719.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1227.1" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1230.13" y="575.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="1116.8" y="613" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="1119.80" y="623.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="208.8" y="437" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="211.77" y="447.5" ></text> +</g> +<g > +<title>git_config_add_backend (111,111,110 samples, 0.70%)</title><rect x="1201.7" y="789" width="9.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1204.74" y="799.5" ></text> +</g> +<g > +<title>closedir (30,303,030 samples, 0.19%)</title><rect x="398.8" y="837" width="2.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="401.78" y="847.5" ></text> +</g> +<g > +<title>d_instantiate_new (10,101,010 samples, 0.06%)</title><rect x="699.1" y="581" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="702.12" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="433.8" y="741" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="436.81" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (101,010,100 samples, 0.63%)</title><rect x="1264.8" y="805" width="8.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1267.78" y="815.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="963.6" y="661" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="966.57" y="671.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="443.4" y="645" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="446.44" y="655.5" ></text> +</g> +<g > +<title>__netif_receive_skb (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="485" width="1.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1389.50" y="495.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="264.8" y="597" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="267.81" y="607.5" ></text> +</g> +<g > +<title>__sk_free (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="261" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="1374.61" y="271.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="645.7" y="661" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="648.71" y="671.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="645" width="2.6" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1336.08" y="655.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="882.1" y="565" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="885.13" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="804.2" y="741" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="807.20" y="751.5" ></text> +</g> +<g > +<title>git_error_set (10,101,010 samples, 0.06%)</title><rect x="489.0" y="773" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="491.97" y="783.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="517.9" y="629" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="520.87" y="639.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="613" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1026.98" y="623.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="485.5" y="645" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="488.47" y="655.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="764.8" y="469" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="767.80" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (434,343,430 samples, 2.73%)</title><rect x="1104.5" y="773" width="37.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1107.54" y="783.5" >[li..</text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="741" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="1329.95" y="751.5" ></text> +</g> +<g > +<title>__do_sys_wait4 (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="789" width="1.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="1326.45" y="799.5" ></text> +</g> +<g > +<title>git_config_add_backend (60,606,060 samples, 0.38%)</title><rect x="762.2" y="693" width="5.2" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="765.17" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (343,434,340 samples, 2.16%)</title><rect x="768.3" y="773" width="29.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="771.30" y="783.5" >[l..</text> +</g> +<g > +<title>sk_alloc (10,101,010 samples, 0.06%)</title><rect x="1340.1" y="789" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="1343.09" y="799.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1000.3" y="549" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="1003.34" y="559.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="549.4" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="552.39" y="591.5" ></text> +</g> +<g > +<title>__fput (20,202,020 samples, 0.13%)</title><rect x="518.7" y="725" width="1.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="521.74" y="735.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="199.1" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="202.14" y="559.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="802.4" y="597" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="805.45" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (171,717,170 samples, 1.08%)</title><rect x="77.4" y="917" width="14.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="80.42" y="927.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="248.2" y="549" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="251.17" y="559.5" ></text> +</g> +<g > +<title>tcp_push (30,303,030 samples, 0.19%)</title><rect x="11.8" y="757" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="14.75" y="767.5" ></text> +</g> +<g > +<title>__filemap_fdatawrite_range (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="565" width="5.2" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="1102.29" y="575.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="773" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1259.03" y="783.5" ></text> +</g> +<g > +<title>link (10,101,010 samples, 0.06%)</title><rect x="544.1" y="821" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="547.14" y="831.5" ></text> +</g> +<g > +<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="646.6" y="517" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="649.59" y="527.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (50,505,050 samples, 0.32%)</title><rect x="35.4" y="581" width="4.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="38.39" y="591.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="804.2" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="807.20" y="719.5" ></text> +</g> +<g > +<title>ftrace_graph_init_task (10,101,010 samples, 0.06%)</title><rect x="62.5" y="725" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="65.54" y="735.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1154.5" y="661" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1157.45" y="671.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="754.3" y="437" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="757.29" y="447.5" ></text> +</g> +<g > +<title>inet_wait_for_connect (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="789" width="2.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="1344.84" y="799.5" ></text> +</g> +<g > +<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="757" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="1343.96" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="940.8" y="613" width="4.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="943.80" y="623.5" ></text> +</g> +<g > +<title>write (30,303,030 samples, 0.19%)</title><rect x="707.9" y="709" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="710.88" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (121,212,120 samples, 0.76%)</title><rect x="695.6" y="645" width="10.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="698.62" y="655.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="581" width="3.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="1091.78" y="591.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="586.2" y="469" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="589.17" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="783.2" y="597" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="786.19" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="742.0" y="645" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="745.03" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="785.8" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="788.81" y="719.5" ></text> +</g> +<g > +<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="501" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1202.99" y="511.5" ></text> +</g> +<g > +<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="248.2" y="453" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="251.17" y="463.5" ></text> +</g> +<g > +<title>__tcp_ack_snd_check (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="261" width="2.6" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="1336.08" y="271.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (444,444,440 samples, 2.79%)</title><rect x="1143.1" y="805" width="38.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1146.07" y="815.5" >ent..</text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="392.7" y="581" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="395.65" y="591.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="549.4" y="597" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="552.39" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="867.2" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="870.25" y="687.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="1131.7" y="613" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="1134.69" y="623.5" ></text> +</g> +<g > +<title>tcp_close (70,707,070 samples, 0.44%)</title><rect x="35.4" y="693" width="6.1" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" /> +<text x="38.39" y="703.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="944.3" y="501" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="947.30" y="511.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="355.0" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="358.00" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="756.0" y="645" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="759.04" y="655.5" ></text> +</g> +<g > +<title>vmbus_on_event (10,101,010 samples, 0.06%)</title><rect x="631.7" y="533" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="634.70" y="543.5" ></text> +</g> +<g > +<title>__blk_mq_free_request (10,101,010 samples, 0.06%)</title><rect x="740.3" y="357" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="743.28" y="367.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="356.8" y="597" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="359.75" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="948.7" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="951.68" y="639.5" ></text> +</g> +<g > +<title>call_rcu (20,202,020 samples, 0.13%)</title><rect x="302.5" y="565" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="305.46" y="575.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1146.6" y="693" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1149.57" y="703.5" ></text> +</g> +<g > +<title>__dentry_kill (40,404,040 samples, 0.25%)</title><rect x="786.7" y="629" width="3.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="789.69" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_rename (141,414,140 samples, 0.89%)</title><rect x="837.5" y="709" width="12.2" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="840.47" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1249.9" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1252.90" y="703.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="378.6" y="581" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="381.64" y="591.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="916.3" y="549" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="919.28" y="559.5" ></text> +</g> +<g > +<title>ext4_mb_clear_bb (20,202,020 samples, 0.13%)</title><rect x="842.7" y="485" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="845.73" y="495.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="742.9" y="533" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="745.91" y="543.5" ></text> +</g> +<g > +<title>__ext4_new_inode (20,202,020 samples, 0.13%)</title><rect x="1061.6" y="677" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1064.64" y="687.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="113.3" y="693" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="116.32" y="703.5" ></text> +</g> +<g > +<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="341.9" y="565" width="0.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="344.87" y="575.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="146.6" y="789" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" /> +<text x="149.60" y="799.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.06%)</title><rect x="1283.2" y="661" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1286.17" y="671.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="740.3" y="421" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="743.28" y="431.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="485.5" y="581" width="0.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="488.47" y="591.5" ></text> +</g> +<g > +<title>ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="613" width="1.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1345.72" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="746.4" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="749.41" y="655.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="677" width="3.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="1071.64" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (40,404,040 samples, 0.25%)</title><rect x="556.4" y="853" width="3.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="559.40" y="863.5" ></text> +</g> +<g > +<title>ext4_truncate (20,202,020 samples, 0.13%)</title><rect x="1030.1" y="549" width="1.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="1033.11" y="559.5" ></text> +</g> +<g > +<title>filemap_get_folios_tag (10,101,010 samples, 0.06%)</title><rect x="1039.7" y="469" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1042.75" y="479.5" ></text> +</g> +<g > +<title>libjson_new_object (20,202,020 samples, 0.13%)</title><rect x="18.8" y="933" width="1.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="21.76" y="943.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (60,606,060 samples, 0.38%)</title><rect x="791.9" y="597" width="5.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="794.94" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="834.0" y="757" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="836.97" y="767.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="311.2" y="709" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="314.22" y="719.5" ></text> +</g> +<g > +<title>ext4_evict_inode (40,404,040 samples, 0.25%)</title><rect x="171.1" y="533" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="174.12" y="543.5" ></text> +</g> +<g > +<title>__close (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="917" width="8.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="1371.11" y="927.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="975.8" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="978.82" y="591.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="830.5" y="789" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="833.47" y="799.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="278.8" y="581" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="281.82" y="591.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1040.6" y="549" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="1043.62" y="559.5" ></text> +</g> +<g > +<title>__block_commit_write (30,303,030 samples, 0.19%)</title><rect x="1089.7" y="517" width="2.6" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="1092.66" y="527.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="1237.6" y="613" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="1240.64" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="861.1" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="864.12" y="783.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="487.2" y="773" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="490.22" y="783.5" ></text> +</g> +<g > +<title>__destroy_inode (10,101,010 samples, 0.06%)</title><rect x="351.5" y="613" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" /> +<text x="354.50" y="623.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="693.0" y="501" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="695.99" y="511.5" ></text> +</g> +<g > +<title>ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="581" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1345.72" y="591.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="13.5" y="245" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="16.50" y="255.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="948.7" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="951.68" y="575.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="204.4" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="207.39" y="479.5" ></text> +</g> +<g > +<title>tcp_write_xmit (70,707,070 samples, 0.44%)</title><rect x="1369.9" y="693" width="6.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1372.86" y="703.5" ></text> +</g> +<g > +<title>from_kgid_munged (10,101,010 samples, 0.06%)</title><rect x="1226.3" y="613" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1229.26" y="623.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="485" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1128.56" y="495.5" ></text> +</g> +<g > +<title>pipe_write (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="709" width="1.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="1349.22" y="719.5" ></text> +</g> +<g > +<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="563.4" y="661" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="566.40" y="671.5" ></text> +</g> +<g > +<title>__do_sys_clone (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="789" width="40.3" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="1276.54" y="799.5" >__d..</text> +</g> +<g > +<title>ext4_es_find_extent_range (10,101,010 samples, 0.06%)</title><rect x="516.1" y="549" width="0.9" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" /> +<text x="519.12" y="559.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="613" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="1086.53" y="623.5" ></text> +</g> +<g > +<title>folio_clear_dirty_for_io (10,101,010 samples, 0.06%)</title><rect x="1038.9" y="437" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="1041.87" y="447.5" ></text> +</g> +<g > +<title>__default_morecore (10,101,010 samples, 0.06%)</title><rect x="328.7" y="757" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="331.73" y="767.5" ></text> +</g> +<g > +<title>alloc_inode (50,505,050 samples, 0.32%)</title><rect x="573.9" y="597" width="4.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="576.91" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_rename (151,515,150 samples, 0.95%)</title><rect x="1028.4" y="677" width="13.1" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="1031.36" y="687.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="278.8" y="565" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="281.82" y="575.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="531.9" y="581" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="534.88" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1249.0" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1252.02" y="703.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="806.0" y="485" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="808.95" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="760.4" y="741" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="763.42" y="751.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="453" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1032.24" y="463.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="966.2" y="629" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="969.19" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="440.8" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="443.81" y="703.5" ></text> +</g> +<g > +<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="485" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="1221.38" y="495.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="964.4" y="501" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="967.44" y="511.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="1231.88" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (2,818,181,790 samples, 17.70%)</title><rect x="559.9" y="853" width="244.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="562.90" y="863.5" >[libgit2.so.1.7.2]</text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="856.7" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="859.74" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="451.3" y="773" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="454.32" y="783.5" ></text> +</g> +<g > +<title>do_unlinkat (171,717,170 samples, 1.08%)</title><rect x="222.8" y="645" width="14.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="225.78" y="655.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="475.8" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="478.84" y="591.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="186.0" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="189.00" y="527.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.06%)</title><rect x="930.3" y="469" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="933.29" y="479.5" ></text> +</g> +<g > +<title>x64_sys_call (121,212,120 samples, 0.76%)</title><rect x="695.6" y="661" width="10.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="698.62" y="671.5" ></text> +</g> +<g > +<title>blk_mq_put_tag (10,101,010 samples, 0.06%)</title><rect x="740.3" y="341" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="743.28" y="351.5" ></text> +</g> +<g > +<title>cap_inode_need_killpriv (10,101,010 samples, 0.06%)</title><rect x="515.2" y="597" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="518.24" y="607.5" ></text> +</g> +<g > +<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.06%)</title><rect x="1031.0" y="437" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="1033.99" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="747.3" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="750.28" y="687.5" ></text> +</g> +<g > +<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="1226.3" y="597" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1229.26" y="607.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (20,202,020 samples, 0.13%)</title><rect x="822.6" y="485" width="1.7" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="825.59" y="495.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="979.3" y="549" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="982.33" y="559.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="714.0" y="613" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="717.01" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="240.3" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="243.29" y="735.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="784.9" y="629" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="787.94" y="639.5" ></text> +</g> +<g > +<title>strchrnul@plt (10,101,010 samples, 0.06%)</title><rect x="430.3" y="821" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" /> +<text x="433.30" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="1021.4" y="741" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1024.36" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.70%)</title><rect x="1201.7" y="773" width="9.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1204.74" y="783.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="1153.6" y="613" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="1156.58" y="623.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="733.3" y="517" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="736.27" y="527.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="597" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="1196.86" y="607.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="272.7" y="549" width="1.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="275.69" y="559.5" ></text> +</g> +<g > +<title>__alloc_skb (10,101,010 samples, 0.06%)</title><rect x="1336.6" y="709" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="1339.59" y="719.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1041.5" y="613" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="1044.50" y="623.5" ></text> +</g> +<g > +<title>ext4_htree_store_dirent (10,101,010 samples, 0.06%)</title><rect x="619.4" y="613" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="622.44" y="623.5" ></text> +</g> +<g > +<title>block_write_end (10,101,010 samples, 0.06%)</title><rect x="646.6" y="549" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" /> +<text x="649.59" y="559.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="215.8" y="629" width="0.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="218.77" y="639.5" ></text> +</g> +<g > +<title>xa_load (10,101,010 samples, 0.06%)</title><rect x="786.7" y="565" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" /> +<text x="789.69" y="575.5" ></text> +</g> +<g > +<title>do_mkdirat (171,717,170 samples, 1.08%)</title><rect x="77.4" y="901" width="14.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="80.42" y="911.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="177.2" y="661" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="180.25" y="671.5" ></text> +</g> +<g > +<title>[unknown] (929,292,920 samples, 5.84%)</title><rect x="73.9" y="1045" width="80.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="76.92" y="1055.5" >[unknown]</text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="533" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="1347.47" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="965.3" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="968.32" y="687.5" ></text> +</g> +<g > +<title>_find_next_zero_bit (10,101,010 samples, 0.06%)</title><rect x="1052.0" y="613" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="1055.01" y="623.5" ></text> +</g> +<g > +<title>evict (141,414,140 samples, 0.89%)</title><rect x="351.5" y="645" width="12.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="354.50" y="655.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="693" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="1211.74" y="703.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1200.9" y="597" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="1203.86" y="607.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.13%)</title><rect x="732.4" y="725" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="735.40" y="735.5" ></text> +</g> +<g > +<title>filemap_alloc_folio (20,202,020 samples, 0.13%)</title><rect x="1108.9" y="533" width="1.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="1111.92" y="543.5" ></text> +</g> +<g > +<title>inflate (10,101,010 samples, 0.06%)</title><rect x="471.5" y="741" width="0.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="474.46" y="751.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="81.8" y="805" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="84.80" y="815.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (30,303,030 samples, 0.19%)</title><rect x="37.1" y="277" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="40.14" y="287.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="346.2" y="629" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="349.24" y="639.5" ></text> +</g> +<g > +<title>ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="133" width="1.7" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1336.96" y="143.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="666.7" y="341" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="669.73" y="351.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="180.7" y="325" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="183.75" y="335.5" ></text> +</g> +<g > +<title>down_write (70,707,070 samples, 0.44%)</title><rect x="1293.7" y="709" width="6.1" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" /> +<text x="1296.68" y="719.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="835.7" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="838.72" y="655.5" ></text> +</g> +<g > +<title>readdir64 (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1232.76" y="767.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="348.0" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="350.99" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="1211.4" y="789" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1214.37" y="799.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="585.3" y="469" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="588.29" y="479.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="421" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="1366.73" y="431.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="897.9" y="709" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="900.89" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="514.4" y="789" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="517.37" y="799.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="125.6" y="757" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="128.58" y="767.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="634.3" y="517" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="637.33" y="527.5" ></text> +</g> +<g > +<title>pthread_create (232,323,230 samples, 1.46%)</title><rect x="44.1" y="869" width="20.2" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="47.15" y="879.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (40,404,040 samples, 0.25%)</title><rect x="217.5" y="677" width="3.5" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="220.53" y="687.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="474.1" y="629" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="477.09" y="639.5" ></text> +</g> +<g > +<title>path_lookupat (40,404,040 samples, 0.25%)</title><rect x="941.7" y="533" width="3.5" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="944.68" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="1221.9" y="725" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1224.88" y="735.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="839.2" y="565" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="842.23" y="575.5" ></text> +</g> +<g > +<title>iput (40,404,040 samples, 0.25%)</title><rect x="424.2" y="725" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="427.18" y="735.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="402.3" y="709" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="405.28" y="719.5" ></text> +</g> +<g > +<title>mb_find_extent (10,101,010 samples, 0.06%)</title><rect x="703.5" y="437" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="706.50" y="447.5" ></text> +</g> +<g > +<title>apparmor_path_unlink (10,101,010 samples, 0.06%)</title><rect x="307.7" y="645" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="310.72" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="901.4" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="904.40" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="213.1" y="741" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="216.15" y="751.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="657.1" y="453" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="660.09" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="784.1" y="597" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="787.06" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1254.3" y="773" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1257.28" y="783.5" ></text> +</g> +<g > +<title>open_last_lookups (464,646,460 samples, 2.92%)</title><rect x="102.8" y="869" width="40.3" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="105.82" y="879.5" >ope..</text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.06%)</title><rect x="426.8" y="629" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="429.80" y="639.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="883.9" y="597" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="886.88" y="607.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="493.4" y="613" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="496.35" y="623.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1183.4" y="645" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="1186.35" y="655.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="180.7" y="405" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="183.75" y="415.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="929.4" y="549" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="932.42" y="559.5" ></text> +</g> +<g > +<title>memchr (10,101,010 samples, 0.06%)</title><rect x="616.8" y="613" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="619.81" y="623.5" ></text> +</g> +<g > +<title>vfs_write (30,303,030 samples, 0.19%)</title><rect x="433.8" y="693" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="436.81" y="703.5" ></text> +</g> +<g > +<title>server_main (565,656,560 samples, 3.55%)</title><rect x="24.0" y="981" width="49.0" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="27.01" y="991.5" >serv..</text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="613" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1217.00" y="623.5" ></text> +</g> +<g > +<title>process_backlog (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="421" width="2.6" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" /> +<text x="1336.08" y="431.5" ></text> +</g> +<g > +<title>lh_table_lookup_entry_w_hash (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="789" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="1354.47" y="799.5" ></text> +</g> +<g > +<title>ext4_mb_clear_bb (20,202,020 samples, 0.13%)</title><rect x="208.8" y="453" width="1.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="211.77" y="463.5" ></text> +</g> +<g > +<title>filemap_flush (20,202,020 samples, 0.13%)</title><rect x="848.0" y="613" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="850.98" y="623.5" ></text> +</g> +<g > +<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="806.0" y="501" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="808.95" y="511.5" ></text> +</g> +<g > +<title>ext4_evict_inode (90,909,090 samples, 0.57%)</title><rect x="1122.9" y="581" width="7.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1125.93" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="157.1" y="837" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="160.11" y="847.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="684.2" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="687.24" y="783.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="595.8" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="598.80" y="607.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="525.7" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="528.75" y="607.5" ></text> +</g> +<g > +<title>git_reference_create_matching (505,050,500 samples, 3.17%)</title><rect x="686.0" y="821" width="43.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="688.99" y="831.5" >git_..</text> +</g> +<g > +<title>generic_perform_write (30,303,030 samples, 0.19%)</title><rect x="1108.9" y="581" width="2.6" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="1111.92" y="591.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="840.1" y="501" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="843.10" y="511.5" ></text> +</g> +<g > +<title>__ext4_xattr_set_credits (10,101,010 samples, 0.06%)</title><rect x="124.7" y="821" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="127.71" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="981.1" y="709" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="984.08" y="719.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="437" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" /> +<text x="1037.49" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (222,222,220 samples, 1.40%)</title><rect x="831.3" y="821" width="19.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="834.35" y="831.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1059.9" y="773" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1062.89" y="783.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="613" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1371.98" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_write (30,303,030 samples, 0.19%)</title><rect x="707.9" y="645" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="710.88" y="655.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="770.1" y="597" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="773.05" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (515,151,510 samples, 3.24%)</title><rect x="260.4" y="677" width="44.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="263.43" y="687.5" >__x6..</text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="241.2" y="645" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="244.17" y="655.5" ></text> +</g> +<g > +<title>git_error_set (10,101,010 samples, 0.06%)</title><rect x="690.4" y="677" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="693.37" y="687.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="184.3" y="549" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="187.25" y="559.5" ></text> +</g> +<g > +<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="533" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="1197.73" y="543.5" ></text> +</g> +<g > +<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="11.8" y="853" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="14.75" y="863.5" ></text> +</g> +<g > +<title>inet_sock_destruct (10,101,010 samples, 0.06%)</title><rect x="1376.0" y="677" width="0.9" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="1378.99" y="687.5" ></text> +</g> +<g > +<title>__ext4_unlink (30,303,030 samples, 0.19%)</title><rect x="174.6" y="533" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="177.62" y="543.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="856.7" y="629" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="859.74" y="639.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="356.8" y="549" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="359.75" y="559.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (30,303,030 samples, 0.19%)</title><rect x="841.9" y="549" width="2.6" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="844.85" y="559.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="953.1" y="469" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="956.06" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="520.5" y="757" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="523.49" y="767.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (50,505,050 samples, 0.32%)</title><rect x="1369.9" y="309" width="4.3" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="1372.86" y="319.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="984.6" y="517" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="987.58" y="527.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="447.8" y="725" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="450.82" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1340.1" y="885" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1343.09" y="895.5" ></text> +</g> +<g > +<title>make_vfsuid (10,101,010 samples, 0.06%)</title><rect x="92.3" y="805" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="95.31" y="815.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="721.9" y="549" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="724.89" y="559.5" ></text> +</g> +<g > +<title>vmbus_sendpacket_mpb_desc (10,101,010 samples, 0.06%)</title><rect x="665.9" y="277" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="668.85" y="287.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="908.4" y="709" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="911.40" y="719.5" ></text> +</g> +<g > +<title>read (20,202,020 samples, 0.13%)</title><rect x="533.6" y="709" width="1.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="536.63" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="546.8" y="693" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="549.76" y="703.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="842.7" y="389" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="845.73" y="399.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.06%)</title><rect x="868.1" y="597" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="871.12" y="607.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="713.1" y="565" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="716.13" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="542.4" y="789" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="545.39" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="690.4" y="661" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="693.37" y="671.5" ></text> +</g> +<g > +<title>unlink_cb (90,909,090 samples, 0.57%)</title><rect x="410.2" y="853" width="7.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="413.16" y="863.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="440.8" y="645" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="443.81" y="655.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="109.8" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="112.82" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.44%)</title><rect x="171.1" y="645" width="6.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="174.12" y="655.5" ></text> +</g> +<g > +<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="1237.6" y="597" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="1240.64" y="607.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (30,303,030 samples, 0.19%)</title><rect x="625.6" y="661" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="628.57" y="671.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="114.2" y="725" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="117.20" y="735.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (90,909,090 samples, 0.57%)</title><rect x="654.5" y="629" width="7.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="657.47" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (292,929,290 samples, 1.84%)</title><rect x="373.4" y="741" width="25.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="376.39" y="751.5" >x..</text> +</g> +<g > +<title>ext4_mkdir (414,141,410 samples, 2.60%)</title><rect x="1145.7" y="709" width="35.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1148.70" y="719.5" >ext..</text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="407.5" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="410.54" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="853" width="7.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1363.23" y="863.5" ></text> +</g> +<g > +<title>open64 (20,202,020 samples, 0.13%)</title><rect x="531.9" y="709" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="534.88" y="719.5" ></text> +</g> +<g > +<title>ext4_clear_inode (10,101,010 samples, 0.06%)</title><rect x="406.7" y="629" width="0.8" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="409.66" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="433.8" y="757" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="436.81" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="689.5" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="692.49" y="655.5" ></text> +</g> +<g > +<title>set_root (10,101,010 samples, 0.06%)</title><rect x="1197.4" y="597" width="0.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="1200.36" y="607.5" ></text> +</g> +<g > +<title>__ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="737.7" y="629" width="0.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="740.65" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.95%)</title><rect x="950.4" y="677" width="13.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="953.43" y="687.5" ></text> +</g> +<g > +<title>fstatat64 (50,505,050 samples, 0.32%)</title><rect x="940.8" y="677" width="4.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="943.80" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="802.4" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="805.45" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="1022.2" y="709" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1025.23" y="719.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="558.1" y="661" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="561.15" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="558.1" y="757" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="561.15" y="767.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1217.00" y="751.5" ></text> +</g> +<g > +<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="1237.6" y="661" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="1240.64" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="1254.3" y="805" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1257.28" y="815.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="905.8" y="485" width="0.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="908.77" y="495.5" ></text> +</g> +<g > +<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="183.4" y="581" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="186.38" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (262,626,260 samples, 1.65%)</title><rect x="1220.1" y="837" width="22.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1223.13" y="847.5" >[..</text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="953.1" y="485" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="956.06" y="495.5" ></text> +</g> +<g > +<title>__ip_finish_output (40,404,040 samples, 0.25%)</title><rect x="36.3" y="517" width="3.5" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="39.27" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="837" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="551.52" y="847.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="645" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="1086.53" y="655.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="639.6" y="661" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="642.58" y="671.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="579.2" y="597" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="582.16" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="237.7" y="741" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="240.66" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="858.5" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="861.49" y="719.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="730.6" y="629" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="733.65" y="639.5" ></text> +</g> +<g > +<title>__find_get_block (30,303,030 samples, 0.19%)</title><rect x="332.2" y="565" width="2.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="335.23" y="575.5" ></text> +</g> +<g > +<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="1031.0" y="469" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="1033.99" y="479.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="1031.0" y="485" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" /> +<text x="1033.99" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="611.6" y="741" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="614.56" y="751.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="692.1" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="695.12" y="703.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="422.4" y="709" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="425.42" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (70,707,070 samples, 0.44%)</title><rect x="714.0" y="709" width="6.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="717.01" y="719.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="645" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="1248.52" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="1187.7" y="773" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1190.73" y="783.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="378.6" y="565" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="381.64" y="575.5" ></text> +</g> +<g > +<title>cap_inode_need_killpriv (10,101,010 samples, 0.06%)</title><rect x="779.7" y="517" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="782.68" y="527.5" ></text> +</g> +<g > +<title>worker_do_run (13,787,878,650 samples, 86.61%)</title><rect x="154.5" y="965" width="1195.2" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" /> +<text x="157.48" y="975.5" >worker_do_run</text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="713.1" y="661" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="716.13" y="671.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="501" width="0.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="1113.67" y="511.5" ></text> +</g> +<g > +<title>mb_find_extent (10,101,010 samples, 0.06%)</title><rect x="590.5" y="485" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="593.55" y="495.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="581" width="0.8" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="1222.25" y="591.5" ></text> +</g> +<g > +<title>path_init (10,101,010 samples, 0.06%)</title><rect x="917.2" y="549" width="0.8" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="920.16" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="821" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1184.60" y="831.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (20,202,020 samples, 0.13%)</title><rect x="988.1" y="677" width="1.7" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" /> +<text x="991.08" y="687.5" ></text> +</g> +<g > +<title>vfs_rename (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="645" width="5.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="1102.29" y="655.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="864.6" y="597" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="867.62" y="607.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="619.4" y="597" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="622.44" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="724.5" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="727.52" y="751.5" ></text> +</g> +<g > +<title>__schedule (20,202,020 samples, 0.13%)</title><rect x="659.7" y="437" width="1.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="662.72" y="447.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="204.4" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="207.39" y="495.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="580.9" y="517" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="583.91" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="475.0" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="477.96" y="767.5" ></text> +</g> +<g > +<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="606.3" y="629" width="1.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="609.31" y="639.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="725.4" y="533" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="728.39" y="543.5" ></text> +</g> +<g > +<title>__handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="163.2" y="709" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="166.24" y="719.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (30,303,030 samples, 0.19%)</title><rect x="702.6" y="501" width="2.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="705.63" y="511.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="939.9" y="437" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" /> +<text x="942.92" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="765.7" y="645" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="768.67" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="206.1" y="501" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="209.14" y="511.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1006.85" y="671.5" ></text> +</g> +<g > +<title>ext4_mkdir (141,414,140 samples, 0.89%)</title><rect x="951.3" y="581" width="12.3" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="954.31" y="591.5" ></text> +</g> +<g > +<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="586.2" y="485" width="0.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="589.17" y="495.5" ></text> +</g> +<g > +<title>read_tsc (10,101,010 samples, 0.06%)</title><rect x="1099.3" y="421" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1102.29" y="431.5" ></text> +</g> +<g > +<title>__x64_sys_readlink (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="709" width="1.7" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" /> +<text x="1200.36" y="719.5" ></text> +</g> +<g > +<title>do_rmdir (50,505,050 samples, 0.32%)</title><rect x="177.2" y="597" width="4.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="180.25" y="607.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1147.4" y="661" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1150.45" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (141,414,140 samples, 0.89%)</title><rect x="837.5" y="757" width="12.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="840.47" y="767.5" ></text> +</g> +<g > +<title>net_rx_action (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="453" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1367.61" y="463.5" ></text> +</g> +<g > +<title>git_signature_now (20,202,020 samples, 0.13%)</title><rect x="801.6" y="773" width="1.7" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" /> +<text x="804.57" y="783.5" ></text> +</g> +<g > +<title>do_arch_prctl_64 (10,101,010 samples, 0.06%)</title><rect x="53.8" y="693" width="0.9" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" /> +<text x="56.78" y="703.5" ></text> +</g> +<g > +<title>ext4_bio_write_folio (30,303,030 samples, 0.19%)</title><rect x="1101.9" y="437" width="2.6" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1104.92" y="447.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="975.8" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="978.82" y="559.5" ></text> +</g> +<g > +<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="1048.5" y="629" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="1051.50" y="639.5" ></text> +</g> +<g > +<title>path_openat (90,909,090 samples, 0.57%)</title><rect x="996.0" y="661" width="7.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="998.96" y="671.5" ></text> +</g> +<g > +<title>from_kgid (10,101,010 samples, 0.06%)</title><rect x="282.3" y="517" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="285.32" y="527.5" ></text> +</g> +<g > +<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="197.4" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="200.39" y="623.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="446.1" y="629" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="449.07" y="639.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="167.6" y="757" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="170.61" y="767.5" ></text> +</g> +<g > +<title>ext4_map_blocks (101,010,100 samples, 0.63%)</title><rect x="82.7" y="789" width="8.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="85.68" y="799.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (20,202,020 samples, 0.13%)</title><rect x="842.7" y="533" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="845.73" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="730.6" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="733.65" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (363,636,360 samples, 2.28%)</title><rect x="563.4" y="709" width="31.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="566.40" y="719.5" >x6..</text> +</g> +<g > +<title>__filemap_get_folio (20,202,020 samples, 0.13%)</title><rect x="333.1" y="533" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="336.11" y="543.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="758.7" y="645" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="761.67" y="655.5" ></text> +</g> +<g > +<title>opendir (10,101,010 samples, 0.06%)</title><rect x="504.7" y="789" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" /> +<text x="507.73" y="799.5" ></text> +</g> +<g > +<title>strncpy_from_user (20,202,020 samples, 0.13%)</title><rect x="780.6" y="581" width="1.7" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="783.56" y="591.5" ></text> +</g> +<g > +<title>folio_alloc (20,202,020 samples, 0.13%)</title><rect x="1007.3" y="565" width="1.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="1010.35" y="575.5" ></text> +</g> +<g > +<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="1292.8" y="661" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="1295.80" y="671.5" ></text> +</g> +<g > +<title>__sys_socket (20,202,020 samples, 0.13%)</title><rect x="1340.1" y="853" width="1.7" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" /> +<text x="1343.09" y="863.5" ></text> +</g> +<g > +<title>__file_remove_privs (10,101,010 samples, 0.06%)</title><rect x="449.6" y="613" width="0.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="452.57" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="439.9" y="725" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="442.94" y="735.5" ></text> +</g> +<g > +<title>kmalloc_reserve (10,101,010 samples, 0.06%)</title><rect x="1365.5" y="197" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="1368.48" y="207.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="707.0" y="549" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="710.01" y="559.5" ></text> +</g> +<g > +<title>__ext4_unlink (30,303,030 samples, 0.19%)</title><rect x="415.4" y="693" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="418.42" y="703.5" ></text> +</g> +<g > +<title>jsonrpc_request_send (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="949" width="6.1" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="1335.21" y="959.5" ></text> +</g> +<g > +<title>d_instantiate (10,101,010 samples, 0.06%)</title><rect x="605.4" y="629" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="608.43" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (10,101,010 samples, 0.06%)</title><rect x="680.7" y="741" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="683.74" y="751.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="398.8" y="709" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="401.78" y="719.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (50,505,050 samples, 0.32%)</title><rect x="332.2" y="677" width="4.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="335.23" y="687.5" ></text> +</g> +<g > +<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="1176.3" y="661" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1179.35" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (30,303,030 samples, 0.19%)</title><rect x="398.8" y="805" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="401.78" y="815.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="313.0" y="709" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="315.97" y="719.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="951.3" y="549" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="954.31" y="559.5" ></text> +</g> +<g > +<title>mntput (10,101,010 samples, 0.06%)</title><rect x="369.9" y="693" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="372.89" y="703.5" ></text> +</g> +<g > +<title>clear_page_erms (10,101,010 samples, 0.06%)</title><rect x="1283.2" y="597" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="1286.17" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="802.4" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="805.45" y="719.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="468.0" y="517" width="1.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="470.96" y="527.5" ></text> +</g> +<g > +<title>readdir64 (30,303,030 samples, 0.19%)</title><rect x="401.4" y="837" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="404.41" y="847.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1013.5" y="725" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1016.48" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="821" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1322.95" y="831.5" ></text> +</g> +<g > +<title>submit_bio_noacct (10,101,010 samples, 0.06%)</title><rect x="1099.3" y="453" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" /> +<text x="1102.29" y="463.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.06%)</title><rect x="563.4" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="566.40" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="948.7" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="951.68" y="671.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="1049.4" y="677" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="1052.38" y="687.5" ></text> +</g> +<g > +<title>net_send (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="901" width="7.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="1363.23" y="911.5" ></text> +</g> +<g > +<title>vfs_rename (90,909,090 samples, 0.57%)</title><rect x="1033.6" y="645" width="7.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="1036.62" y="655.5" ></text> +</g> +<g > +<title>tcp_push (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="725" width="6.1" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1364.98" y="735.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="726.3" y="645" width="0.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="729.27" y="655.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="770.1" y="549" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="773.05" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="1214.9" y="709" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1217.87" y="719.5" ></text> +</g> +<g > +<title>unlink (20,202,020 samples, 0.13%)</title><rect x="545.0" y="821" width="1.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="548.01" y="831.5" ></text> +</g> +<g > +<title>log_entry_start (50,505,050 samples, 0.32%)</title><rect x="1327.8" y="917" width="4.4" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" /> +<text x="1330.83" y="927.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="729.8" y="805" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="732.77" y="815.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="776.2" y="517" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="779.18" y="527.5" ></text> +</g> +<g > +<title>pipe_write (30,303,030 samples, 0.19%)</title><rect x="433.8" y="677" width="2.6" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="436.81" y="687.5" ></text> +</g> +<g > +<title>git_config_set_string (464,646,460 samples, 2.92%)</title><rect x="640.5" y="821" width="40.2" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="643.46" y="831.5" >git..</text> +</g> +<g > +<title>path_parentat (20,202,020 samples, 0.13%)</title><rect x="837.5" y="661" width="1.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="840.47" y="671.5" ></text> +</g> +<g > +<title>elv_merge (10,101,010 samples, 0.06%)</title><rect x="466.2" y="389" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="469.21" y="399.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="629" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="1086.53" y="639.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="552.0" y="565" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="555.02" y="575.5" ></text> +</g> +<g > +<title>file_close (111,111,110 samples, 0.70%)</title><rect x="32.8" y="885" width="9.6" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="35.77" y="895.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1193.0" y="629" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1195.98" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="440.8" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="443.81" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="475.8" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="478.84" y="751.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="549" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="1347.47" y="559.5" ></text> +</g> +<g > +<title>tcp_v6_syn_recv_sock (10,101,010 samples, 0.06%)</title><rect x="1377.7" y="261" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1380.74" y="271.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="892.6" y="661" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="895.64" y="671.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1147.4" y="629" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1150.45" y="639.5" ></text> +</g> +<g > +<title>opendir (20,202,020 samples, 0.13%)</title><rect x="1235.0" y="773" width="1.8" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" /> +<text x="1238.01" y="783.5" ></text> +</g> +<g > +<title>ext4_ext_insert_extent (20,202,020 samples, 0.13%)</title><rect x="793.7" y="437" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="796.69" y="447.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1227.1" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1230.13" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1257.8" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1260.78" y="687.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="565" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1347.47" y="575.5" ></text> +</g> +<g > +<title>link (30,303,030 samples, 0.19%)</title><rect x="1117.7" y="757" width="2.6" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="1120.68" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="876.9" y="613" width="1.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="879.88" y="623.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (30,303,030 samples, 0.19%)</title><rect x="332.2" y="661" width="2.7" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="335.23" y="671.5" ></text> +</g> +<g > +<title>d_alloc_parallel (40,404,040 samples, 0.25%)</title><rect x="1077.4" y="629" width="3.5" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="1080.40" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="963.6" y="645" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="966.57" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="443.4" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="446.44" y="719.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="607.2" y="565" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="610.18" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1026.98" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_write (30,303,030 samples, 0.19%)</title><rect x="433.8" y="725" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="436.81" y="735.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="278.8" y="469" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="281.82" y="479.5" ></text> +</g> +<g > +<title>new_inode (10,101,010 samples, 0.06%)</title><rect x="989.0" y="629" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="991.96" y="639.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="373" width="4.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1380.74" y="383.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="348.9" y="565" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="351.87" y="575.5" ></text> +</g> +<g > +<title>log_entry_start (40,404,040 samples, 0.25%)</title><rect x="15.3" y="981" width="3.5" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" /> +<text x="18.25" y="991.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="449.6" y="645" width="1.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="452.57" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="486.3" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="489.35" y="735.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="125.6" y="789" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="128.58" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (545,454,540 samples, 3.43%)</title><rect x="480.2" y="853" width="47.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="483.22" y="863.5" >[lib..</text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.06%)</title><rect x="384.8" y="517" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="387.77" y="527.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="661" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="1231.88" y="671.5" ></text> +</g> +<g > +<title>do_user_addr_fault (30,303,030 samples, 0.19%)</title><rect x="1313.8" y="837" width="2.6" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="1316.82" y="847.5" ></text> +</g> +<g > +<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="1096.7" y="565" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1099.66" y="575.5" ></text> +</g> +<g > +<title>from_kgid_munged (10,101,010 samples, 0.06%)</title><rect x="548.5" y="613" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="551.52" y="623.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="167.6" y="741" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="170.61" y="751.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="785.8" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="788.81" y="639.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1115.9" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1118.93" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="940.8" y="597" width="4.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="943.80" y="607.5" ></text> +</g> +<g > +<title>tasklet_action_common.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="581" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="1371.98" y="591.5" ></text> +</g> +<g > +<title>is_vmalloc_addr (10,101,010 samples, 0.06%)</title><rect x="483.7" y="549" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="486.72" y="559.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="730.6" y="725" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="733.65" y="735.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="397.0" y="597" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="400.03" y="607.5" ></text> +</g> +<g > +<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="721.9" y="517" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="724.89" y="527.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="442.6" y="725" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="445.56" y="735.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="932.0" y="421" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="935.04" y="431.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="966.2" y="613" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="969.19" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="725.4" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="728.39" y="655.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (20,202,020 samples, 0.13%)</title><rect x="12.6" y="341" width="1.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="15.63" y="351.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="133" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="1375.49" y="143.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="35.4" y="405" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="38.39" y="415.5" ></text> +</g> +<g > +<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="362.9" y="533" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="365.88" y="543.5" ></text> +</g> +<g > +<title>mnt_want_write (10,101,010 samples, 0.06%)</title><rect x="1032.7" y="645" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1035.74" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="730.6" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="733.65" y="719.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="353.2" y="613" width="2.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="356.25" y="623.5" ></text> +</g> +<g > +<title>opendir (10,101,010 samples, 0.06%)</title><rect x="803.3" y="837" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" /> +<text x="806.32" y="847.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="309.5" y="613" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="312.47" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (101,010,100 samples, 0.63%)</title><rect x="1264.8" y="837" width="8.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1267.78" y="847.5" ></text> +</g> +<g > +<title>jsonrpc_request_set_param_int (10,101,010 samples, 0.06%)</title><rect x="1348.8" y="933" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1351.85" y="943.5" ></text> +</g> +<g > +<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="817.3" y="485" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="820.34" y="495.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="639.6" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="642.58" y="687.5" ></text> +</g> +<g > +<title>ip_finish_output (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="597" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1336.08" y="607.5" ></text> +</g> +<g > +<title>_find_next_bit (10,101,010 samples, 0.06%)</title><rect x="1133.4" y="293" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" /> +<text x="1136.44" y="303.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="501.2" y="613" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="504.23" y="623.5" ></text> +</g> +<g > +<title>signalfd_poll (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="821" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="1352.72" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (171,717,170 samples, 1.08%)</title><rect x="222.8" y="661" width="14.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="225.78" y="671.5" ></text> +</g> +<g > +<title>getname (10,101,010 samples, 0.06%)</title><rect x="749.9" y="613" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="752.91" y="623.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="468.0" y="485" width="0.8" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="470.96" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="996.0" y="741" width="9.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="998.96" y="751.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1010.0" y="549" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1012.97" y="559.5" ></text> +</g> +<g > +<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="742.9" y="517" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="745.91" y="527.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="428.6" y="789" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="431.55" y="799.5" ></text> +</g> +<g > +<title>ext4_bio_write_folio (10,101,010 samples, 0.06%)</title><rect x="848.0" y="469" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="850.98" y="479.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.13%)</title><rect x="911.0" y="821" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="914.03" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="804.2" y="773" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="807.20" y="783.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="469.7" y="645" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="472.71" y="655.5" ></text> +</g> +<g > +<title>jbd2_journal_begin_ordered_truncate (10,101,010 samples, 0.06%)</title><rect x="465.3" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="468.33" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="73.0" y="1045" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="76.05" y="1055.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="269.2" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="272.19" y="607.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (40,404,040 samples, 0.25%)</title><rect x="248.2" y="613" width="3.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="251.17" y="623.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (30,303,030 samples, 0.19%)</title><rect x="467.1" y="549" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="470.08" y="559.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="741" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1363.23" y="751.5" ></text> +</g> +<g > +<title>blk_finish_plug (10,101,010 samples, 0.06%)</title><rect x="962.7" y="421" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="965.69" y="431.5" ></text> +</g> +<g > +<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="205.3" y="501" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="208.27" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.76%)</title><rect x="529.3" y="821" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="532.25" y="831.5" ></text> +</g> +<g > +<title>lockref_put_return (10,101,010 samples, 0.06%)</title><rect x="211.4" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="214.40" y="623.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="856.7" y="709" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="859.74" y="719.5" ></text> +</g> +<g > +<title>open64 (20,202,020 samples, 0.13%)</title><rect x="553.8" y="725" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="556.77" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1026.98" y="703.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="975.8" y="501" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="978.82" y="511.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="450.4" y="629" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="453.44" y="639.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1172.0" y="485" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="1174.97" y="495.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="346.2" y="613" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="349.24" y="623.5" ></text> +</g> +<g > +<title>do_sys_openat2 (50,505,050 samples, 0.32%)</title><rect x="770.9" y="613" width="4.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="773.93" y="623.5" ></text> +</g> +<g > +<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="248.2" y="517" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="251.17" y="527.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="227.2" y="565" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="230.16" y="575.5" ></text> +</g> +<g > +<title>libgit_clone_to_tmp (8,232,323,150 samples, 51.71%)</title><rect x="559.9" y="917" width="713.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="562.90" y="927.5" >libgit_clone_to_tmp</text> +</g> +<g > +<title>worker_get_run (464,646,460 samples, 2.92%)</title><rect x="1349.7" y="965" width="40.3" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="1352.72" y="975.5" >wor..</text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="894.4" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="897.39" y="767.5" ></text> +</g> +<g > +<title>ext4_es_free_extent (10,101,010 samples, 0.06%)</title><rect x="414.5" y="613" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" /> +<text x="417.54" y="623.5" ></text> +</g> +<g > +<title>vfs_unlink (30,303,030 samples, 0.19%)</title><rect x="415.4" y="725" width="2.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="418.42" y="735.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="206.1" y="437" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="209.14" y="447.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="489.0" y="709" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="491.97" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="685.1" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="688.11" y="735.5" ></text> +</g> +<g > +<title>git_repository_is_empty (262,626,260 samples, 1.65%)</title><rect x="1220.1" y="869" width="22.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="1223.13" y="879.5" >g..</text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="155.4" y="773" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="158.36" y="783.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1182.5" y="725" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1185.47" y="735.5" ></text> +</g> +<g > +<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="505.6" y="789" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="508.61" y="799.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="570.4" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="573.41" y="591.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (292,929,290 samples, 1.84%)</title><rect x="1155.3" y="693" width="25.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1158.33" y="703.5" >e..</text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1262.53" y="687.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1262.2" y="597" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1265.16" y="607.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="181" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1375.49" y="191.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="725" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="741.53" y="735.5" ></text> +</g> +<g > +<title>ext4_read_inode_bitmap (10,101,010 samples, 0.06%)</title><rect x="571.3" y="613" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="574.28" y="623.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1001.2" y="517" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1004.22" y="527.5" ></text> +</g> +<g > +<title>[libz.so.1.3] (10,101,010 samples, 0.06%)</title><rect x="471.5" y="725" width="0.8" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" /> +<text x="474.46" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="158.0" y="853" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="160.98" y="863.5" ></text> +</g> +<g > +<title>tcp_stream_alloc_skb (10,101,010 samples, 0.06%)</title><rect x="1388.2" y="757" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="1391.25" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="750.8" y="693" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="753.79" y="703.5" ></text> +</g> +<g > +<title>set_root (20,202,020 samples, 0.13%)</title><rect x="892.6" y="549" width="1.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="895.64" y="559.5" ></text> +</g> +<g > +<title>ext4_append (111,111,110 samples, 0.70%)</title><rect x="82.7" y="837" width="9.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="85.68" y="847.5" ></text> +</g> +<g > +<title>malloc (20,202,020 samples, 0.13%)</title><rect x="760.4" y="661" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="763.42" y="671.5" ></text> +</g> +<g > +<title>mnt_put_write_access (10,101,010 samples, 0.06%)</title><rect x="859.4" y="645" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="862.37" y="655.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (20,202,020 samples, 0.13%)</title><rect x="963.6" y="549" width="1.7" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" /> +<text x="966.57" y="559.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="570.4" y="517" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="573.41" y="527.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="930.3" y="437" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="933.29" y="447.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="727.1" y="661" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="730.14" y="671.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="791.9" y="485" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="794.94" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="883.9" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="886.88" y="639.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="886.5" y="581" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="889.51" y="591.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (10,101,010 samples, 0.06%)</title><rect x="962.7" y="405" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="965.69" y="415.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="296.3" y="453" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="299.33" y="463.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="675.5" y="597" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="678.48" y="607.5" ></text> +</g> +<g > +<title>ext4_inode_journal_mode (10,101,010 samples, 0.06%)</title><rect x="999.5" y="581" width="0.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" /> +<text x="1002.47" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="972.3" y="661" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="975.32" y="671.5" ></text> +</g> +<g > +<title>open64 (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="709" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="1226.63" y="719.5" ></text> +</g> +<g > +<title>unlink_cb (70,707,070 samples, 0.44%)</title><rect x="320.9" y="789" width="6.1" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="323.85" y="799.5" ></text> +</g> +<g > +<title>do_writepages (40,404,040 samples, 0.25%)</title><rect x="466.2" y="597" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="469.21" y="607.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1122.9" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1125.93" y="527.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.06%)</title><rect x="75.7" y="805" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="78.67" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="688.6" y="693" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="691.62" y="703.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="357.6" y="517" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="360.63" y="527.5" ></text> +</g> +<g > +<title>filename_lookup (40,404,040 samples, 0.25%)</title><rect x="937.3" y="533" width="3.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="940.30" y="543.5" ></text> +</g> +<g > +<title>__es_delayed_clu (10,101,010 samples, 0.06%)</title><rect x="584.4" y="517" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="587.42" y="527.5" ></text> +</g> +<g > +<title>walk_component (30,303,030 samples, 0.19%)</title><rect x="942.6" y="517" width="2.6" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="945.55" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="1063.4" y="789" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1066.39" y="799.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="538.0" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="541.01" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (464,646,460 samples, 2.92%)</title><rect x="438.2" y="901" width="40.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="441.19" y="911.5" >[li..</text> +</g> +<g > +<title>__filename_parentat (20,202,020 samples, 0.13%)</title><rect x="837.5" y="677" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="840.47" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="193.0" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="196.01" y="719.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="847.1" y="581" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="850.11" y="591.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="937.3" y="501" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="940.30" y="511.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="1126.4" y="533" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="1129.43" y="543.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="779.7" y="597" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="782.68" y="607.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="916.3" y="533" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="919.28" y="543.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (30,303,030 samples, 0.19%)</title><rect x="579.2" y="613" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="582.16" y="623.5" ></text> +</g> +<g > +<title>vfs_fstatat (171,717,170 samples, 1.08%)</title><rect x="625.6" y="709" width="14.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="628.57" y="719.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="73.9" y="933" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="76.92" y="943.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="973.2" y="469" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="976.20" y="479.5" ></text> +</g> +<g > +<title>ext4_free_blocks (30,303,030 samples, 0.19%)</title><rect x="207.9" y="469" width="2.6" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="210.89" y="479.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="851.5" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="854.48" y="623.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="883.9" y="565" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="886.88" y="575.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="883.0" y="677" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="886.01" y="687.5" ></text> +</g> +<g > +<title>ext4_evict_inode (171,717,170 samples, 1.08%)</title><rect x="375.1" y="661" width="14.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="378.14" y="671.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="781.4" y="565" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="784.43" y="575.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="632.6" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="635.58" y="639.5" ></text> +</g> +<g > +<title>kernel_wait4 (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="773" width="1.7" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" /> +<text x="1326.45" y="783.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="208.8" y="325" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="211.77" y="335.5" ></text> +</g> +<g > +<title>open64 (20,202,020 samples, 0.13%)</title><rect x="963.6" y="693" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="966.57" y="703.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="167.6" y="725" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="170.61" y="735.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (10,101,010 samples, 0.06%)</title><rect x="1230.6" y="613" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="1233.63" y="623.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="725.4" y="693" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="728.39" y="703.5" ></text> +</g> +<g > +<title>handle_pte_fault (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="661" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="1114.55" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="789" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1266.03" y="799.5" ></text> +</g> +<g > +<title>alloc_pages_mpol (10,101,010 samples, 0.06%)</title><rect x="1283.2" y="645" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1286.17" y="655.5" ></text> +</g> +<g > +<title>truncate_cleanup_folio (10,101,010 samples, 0.06%)</title><rect x="187.8" y="517" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="190.75" y="527.5" ></text> +</g> +<g > +<title>nft_do_chain_ipv4 (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="661" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="1347.47" y="671.5" ></text> +</g> +<g > +<title>ext4_orphan_add (10,101,010 samples, 0.06%)</title><rect x="797.2" y="597" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="800.20" y="607.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.06%)</title><rect x="980.2" y="709" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="983.20" y="719.5" ></text> +</g> +<g > +<title>__napi_poll (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="517" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1348.34" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="866.4" y="773" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="869.37" y="783.5" ></text> +</g> +<g > +<title>from_kprojid (10,101,010 samples, 0.06%)</title><rect x="407.5" y="565" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="410.54" y="575.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (20,202,020 samples, 0.13%)</title><rect x="848.0" y="581" width="1.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="850.98" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="456.6" y="725" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="459.57" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (313,131,310 samples, 1.97%)</title><rect x="653.6" y="725" width="27.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="656.59" y="735.5" >d..</text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="904.9" y="613" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="907.90" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="821" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="555.89" y="831.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="948.7" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="951.68" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (494,949,490 samples, 3.11%)</title><rect x="170.2" y="757" width="42.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="173.24" y="767.5" >[lib..</text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="252.6" y="645" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="255.55" y="655.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="663.2" y="533" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="666.22" y="543.5" ></text> +</g> +<g > +<title>ip_finish_output (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="597" width="5.2" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1372.86" y="607.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="791.1" y="565" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="794.07" y="575.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.06%)</title><rect x="856.7" y="805" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="859.74" y="815.5" ></text> +</g> +<g > +<title>unlink (90,909,090 samples, 0.57%)</title><rect x="410.2" y="821" width="7.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="413.16" y="831.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="942.6" y="421" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="945.55" y="431.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum_set (20,202,020 samples, 0.13%)</title><rect x="116.0" y="805" width="1.7" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="118.95" y="815.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="357" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1140.82" y="367.5" ></text> +</g> +<g > +<title>ext4_rename2 (80,808,080 samples, 0.51%)</title><rect x="1034.5" y="629" width="7.0" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="1037.49" y="639.5" ></text> +</g> +<g > +<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="716.6" y="581" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="719.64" y="591.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1183.4" y="693" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1186.35" y="703.5" ></text> +</g> +<g > +<title>sock_read_iter (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="725" width="1.7" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="1361.48" y="735.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="894.4" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="897.39" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="980.2" y="645" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="983.20" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (2,191,919,170 samples, 13.77%)</title><rect x="991.6" y="837" width="190.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="994.59" y="847.5" >[libgit2.so.1.7.2]</text> +</g> +<g > +<title>git_reference_type (10,101,010 samples, 0.06%)</title><rect x="873.4" y="805" width="0.9" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="876.38" y="815.5" ></text> +</g> +<g > +<title>do_softirq (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="501" width="2.6" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="1336.08" y="511.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="861.1" y="789" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="864.12" y="799.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="813.8" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="816.83" y="559.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="749.0" y="581" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="752.04" y="591.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.06%)</title><rect x="719.3" y="565" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="722.26" y="575.5" ></text> +</g> +<g > +<title>__blk_flush_plug (20,202,020 samples, 0.13%)</title><rect x="822.6" y="501" width="1.7" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="825.59" y="511.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="517" width="4.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="1380.74" y="527.5" ></text> +</g> +<g > +<title>do_softirq (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="501" width="5.2" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="1372.86" y="511.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="883.0" y="645" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="886.01" y="655.5" ></text> +</g> +<g > +<title>check_stack_object (10,101,010 samples, 0.06%)</title><rect x="976.7" y="597" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="979.70" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (3,010,100,980 samples, 18.91%)</title><rect x="169.4" y="901" width="260.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="172.37" y="911.5" >[libc.so.6]</text> +</g> +<g > +<title>do_softirq (40,404,040 samples, 0.25%)</title><rect x="36.3" y="437" width="3.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="39.27" y="447.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="613" width="0.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1347.47" y="623.5" ></text> +</g> +<g > +<title>vfs_unlink (30,303,030 samples, 0.19%)</title><rect x="1065.1" y="709" width="2.7" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="1068.14" y="719.5" ></text> +</g> +<g > +<title>__sbrk (10,101,010 samples, 0.06%)</title><rect x="328.7" y="741" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="331.73" y="751.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="740.3" y="485" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="743.28" y="495.5" ></text> +</g> +<g > +<title>[libc.so.6] (222,222,220 samples, 1.40%)</title><rect x="44.1" y="853" width="19.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="47.15" y="863.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="629" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1371.98" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="322.6" y="741" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="325.60" y="751.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.06%)</title><rect x="989.0" y="549" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="991.96" y="559.5" ></text> +</g> +<g > +<title>eventfd (20,202,020 samples, 0.13%)</title><rect x="64.3" y="885" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="67.29" y="895.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1172.0" y="501" width="0.8" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="1174.97" y="511.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="981.1" y="629" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="984.08" y="639.5" ></text> +</g> +<g > +<title>sock_close (90,909,090 samples, 0.57%)</title><rect x="34.5" y="757" width="7.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" /> +<text x="37.52" y="767.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="667.6" y="421" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="670.60" y="431.5" ></text> +</g> +<g > +<title>shrink_dentry_list (10,101,010 samples, 0.06%)</title><rect x="363.8" y="645" width="0.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="366.76" y="655.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="905.8" y="581" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="908.77" y="591.5" ></text> +</g> +<g > +<title>__get_free_pages (10,101,010 samples, 0.06%)</title><rect x="926.8" y="501" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="929.79" y="511.5" ></text> +</g> +<g > +<title>x64_sys_call (131,313,130 samples, 0.82%)</title><rect x="245.5" y="709" width="11.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="248.55" y="719.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1100.2" y="469" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1103.16" y="479.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.06%)</title><rect x="1038.9" y="469" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1041.87" y="479.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="661" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1235.39" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (242,424,240 samples, 1.52%)</title><rect x="1121.2" y="725" width="21.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1124.18" y="735.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="809.5" y="677" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="812.45" y="687.5" ></text> +</g> +<g > +<title>process_backlog (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="421" width="2.6" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" /> +<text x="1367.61" y="431.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="615.9" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="618.94" y="687.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (30,303,030 samples, 0.19%)</title><rect x="332.2" y="629" width="2.7" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="335.23" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="981.1" y="645" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="984.08" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="756.0" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="759.04" y="687.5" ></text> +</g> +<g > +<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="905.8" y="469" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="908.77" y="479.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="256.1" y="597" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="259.05" y="607.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="419.8" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="422.80" y="687.5" ></text> +</g> +<g > +<title>__free_slab (10,101,010 samples, 0.06%)</title><rect x="263.1" y="389" width="0.8" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="266.06" y="399.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="634.3" y="581" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="637.33" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="477.6" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="480.59" y="831.5" ></text> +</g> +<g > +<title>__blk_flush_plug (10,101,010 samples, 0.06%)</title><rect x="930.3" y="517" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="933.29" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (565,656,560 samples, 3.55%)</title><rect x="94.9" y="981" width="49.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="97.94" y="991.5" >entr..</text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="237.7" y="757" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="240.66" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="741" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1259.03" y="751.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="870.7" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="873.75" y="591.5" ></text> +</g> +<g > +<title>destroy_inode (10,101,010 samples, 0.06%)</title><rect x="811.2" y="597" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="814.21" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="773" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1071.64" y="783.5" ></text> +</g> +<g > +<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="341.9" y="597" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="344.87" y="607.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="504.7" y="629" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="507.73" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="11.8" y="885" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="14.75" y="895.5" ></text> +</g> +<g > +<title>zap_pmd_range.isra.0 (20,202,020 samples, 0.13%)</title><rect x="399.7" y="581" width="1.7" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="402.66" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="741" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="551.52" y="751.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1041.5" y="629" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="1044.50" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="894.4" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="897.39" y="751.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="180.7" y="453" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" /> +<text x="183.75" y="463.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="958.3" y="437" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="961.31" y="447.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="412.8" y="677" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="415.79" y="687.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="853.2" y="629" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="856.24" y="639.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="693.0" y="581" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="695.99" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="581.8" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="584.79" y="607.5" ></text> +</g> +<g > +<title>ext4_xattr_ibody_get (10,101,010 samples, 0.06%)</title><rect x="779.7" y="469" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" /> +<text x="782.68" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="521.4" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="524.37" y="751.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="415.4" y="661" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" /> +<text x="418.42" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="934.7" y="677" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="937.67" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="691.2" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="694.24" y="671.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="1074.8" y="661" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="1077.77" y="671.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="360.3" y="517" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="363.25" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="773" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1258.15" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1197.73" y="719.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="837.5" y="645" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="840.47" y="655.5" ></text> +</g> +<g > +<title>file_close (20,202,020 samples, 0.13%)</title><rect x="31.0" y="901" width="1.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="34.02" y="911.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="902.3" y="629" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="905.27" y="639.5" ></text> +</g> +<g > +<title>git_refdb_open (30,303,030 samples, 0.19%)</title><rect x="752.5" y="741" width="2.7" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="755.54" y="751.5" ></text> +</g> +<g > +<title>mkdir (131,313,130 samples, 0.82%)</title><rect x="694.7" y="709" width="11.4" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" /> +<text x="697.75" y="719.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="74.8" y="837" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="77.80" y="847.5" ></text> +</g> +<g > +<title>ext4_htree_store_dirent (10,101,010 samples, 0.06%)</title><rect x="419.8" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="422.80" y="703.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="249.9" y="469" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="252.92" y="479.5" ></text> +</g> +<g > +<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="484.6" y="565" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="487.59" y="575.5" ></text> +</g> +<g > +<title>handle_softirqs (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="453" width="1.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1345.72" y="463.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="965.3" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="968.32" y="655.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="570.4" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="573.41" y="607.5" ></text> +</g> +<g > +<title>path_put (10,101,010 samples, 0.06%)</title><rect x="536.3" y="645" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="539.26" y="655.5" ></text> +</g> +<g > +<title>git_error_set (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="677" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1208.24" y="687.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="263.9" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="266.93" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="760.4" y="693" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="763.42" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="888.3" y="613" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="891.26" y="623.5" ></text> +</g> +<g > +<title>ext4_htree_store_dirent (10,101,010 samples, 0.06%)</title><rect x="881.3" y="517" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="884.26" y="527.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="197" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1369.36" y="207.5" ></text> +</g> +<g > +<title>__es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="323.5" y="565" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" /> +<text x="326.48" y="575.5" ></text> +</g> +<g > +<title>git_reference_create (585,858,580 samples, 3.68%)</title><rect x="934.7" y="821" width="50.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="937.67" y="831.5" >git_r..</text> +</g> +<g > +<title>current_obj_cgroup (10,101,010 samples, 0.06%)</title><rect x="730.6" y="469" width="0.9" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="733.65" y="479.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="258.7" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="261.68" y="735.5" ></text> +</g> +<g > +<title>__sk_destruct (10,101,010 samples, 0.06%)</title><rect x="1376.0" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1378.99" y="703.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="741" width="2.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1344.84" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_openat (111,111,110 samples, 0.70%)</title><rect x="996.0" y="709" width="9.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="998.96" y="719.5" ></text> +</g> +<g > +<title>brk (10,101,010 samples, 0.06%)</title><rect x="429.4" y="821" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" /> +<text x="432.43" y="831.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="780.6" y="677" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="783.56" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="489.0" y="677" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="491.97" y="687.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1098.79" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="84.4" y="725" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="87.43" y="735.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="918.0" y="453" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" /> +<text x="921.03" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="756.0" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="759.04" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="72.2" y="885" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="75.17" y="895.5" ></text> +</g> +<g > +<title>touch_atime (30,303,030 samples, 0.19%)</title><rect x="336.6" y="693" width="2.6" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="339.61" y="703.5" ></text> +</g> +<g > +<title>security_inode_alloc (10,101,010 samples, 0.06%)</title><rect x="123.0" y="757" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="125.96" y="767.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.06%)</title><rect x="75.7" y="789" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="78.67" y="799.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="610.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="613.69" y="767.5" ></text> +</g> +<g > +<title>exc_page_fault (30,303,030 samples, 0.19%)</title><rect x="1313.8" y="853" width="2.6" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1316.82" y="863.5" ></text> +</g> +<g > +<title>apparmor_socket_sendmsg (10,101,010 samples, 0.06%)</title><rect x="1337.5" y="757" width="0.8" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" /> +<text x="1340.46" y="767.5" ></text> +</g> +<g > +<title>do_unlinkat (50,505,050 samples, 0.32%)</title><rect x="1063.4" y="725" width="4.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="1066.39" y="735.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="1065.1" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1068.14" y="671.5" ></text> +</g> +<g > +<title>ext4_unlink (70,707,070 samples, 0.44%)</title><rect x="391.8" y="677" width="6.1" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="394.78" y="687.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="458.3" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="461.32" y="719.5" ></text> +</g> +<g > +<title>inet_stream_connect (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="821" width="4.4" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" /> +<text x="1344.84" y="831.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="940.8" y="517" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="943.80" y="527.5" ></text> +</g> +<g > +<title>open_last_lookups (70,707,070 samples, 0.44%)</title><rect x="507.4" y="693" width="6.1" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="510.36" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="773" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1349.22" y="783.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1361.1" y="709" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="1364.10" y="719.5" ></text> +</g> +<g > +<title>ext4_add_entry (40,404,040 samples, 0.25%)</title><rect x="578.3" y="629" width="3.5" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="581.29" y="639.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="725" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1363.23" y="735.5" ></text> +</g> +<g > +<title>vfs_rmdir (50,505,050 samples, 0.32%)</title><rect x="404.0" y="709" width="4.4" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="407.04" y="719.5" ></text> +</g> +<g > +<title>file_modified (10,101,010 samples, 0.06%)</title><rect x="515.2" y="645" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="518.24" y="655.5" ></text> +</g> +<g > +<title>open64 (20,202,020 samples, 0.13%)</title><rect x="763.9" y="613" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="766.92" y="623.5" ></text> +</g> +<g > +<title>ext4_fname_free_filename (10,101,010 samples, 0.06%)</title><rect x="235.9" y="597" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" /> +<text x="238.91" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_clone (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="805" width="40.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="1276.54" y="815.5" >__x..</text> +</g> +<g > +<title>jsonrpc_request_create_params (20,202,020 samples, 0.13%)</title><rect x="18.8" y="949" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="21.76" y="959.5" ></text> +</g> +<g > +<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="347.1" y="581" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="350.12" y="591.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="212.3" y="613" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="215.27" y="623.5" ></text> +</g> +<g > +<title>io_schedule (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="501" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="1014.73" y="511.5" ></text> +</g> +<g > +<title>get_current_dir_name (20,202,020 samples, 0.13%)</title><rect x="157.1" y="917" width="1.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" /> +<text x="160.11" y="927.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="261" width="0.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="1390.37" y="271.5" ></text> +</g> +<g > +<title>tcp_inbound_hash.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="37.1" y="229" width="0.9" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" /> +<text x="40.14" y="239.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="884.8" y="677" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="887.76" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="482.0" y="725" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="484.97" y="735.5" ></text> +</g> +<g > +<title>ext4_rmdir (131,313,130 samples, 0.82%)</title><rect x="266.6" y="629" width="11.3" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="269.56" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="408.4" y="805" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="411.41" y="815.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="709" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1186.35" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="693" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1116.30" y="703.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="60.8" y="693" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="63.79" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1247.64" y="751.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="979.3" y="533" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="982.33" y="543.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="528.4" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="531.38" y="655.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="1165.8" y="501" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1168.84" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (80,808,080 samples, 0.51%)</title><rect x="332.2" y="725" width="7.0" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="335.23" y="735.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.06%)</title><rect x="795.4" y="469" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="798.44" y="479.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="484.6" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="487.59" y="703.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (20,202,020 samples, 0.13%)</title><rect x="108.9" y="805" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="111.95" y="815.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (40,404,040 samples, 0.25%)</title><rect x="586.2" y="517" width="3.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="589.17" y="527.5" ></text> +</g> +<g > +<title>put_unused_fd (10,101,010 samples, 0.06%)</title><rect x="946.1" y="581" width="0.8" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" /> +<text x="949.05" y="591.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="965.3" y="565" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="968.32" y="575.5" ></text> +</g> +<g > +<title>dquot_initialize (10,101,010 samples, 0.06%)</title><rect x="1052.9" y="613" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="1055.88" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="967.9" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="970.94" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="725" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1243.27" y="735.5" ></text> +</g> +<g > +<title>[libz.so.1.3] (10,101,010 samples, 0.06%)</title><rect x="531.0" y="693" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" /> +<text x="534.00" y="703.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="1109.8" y="469" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="1112.80" y="479.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (40,404,040 samples, 0.25%)</title><rect x="930.3" y="597" width="3.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="933.29" y="607.5" ></text> +</g> +<g > +<title>fstatat64 (121,212,120 samples, 0.76%)</title><rect x="1073.0" y="821" width="10.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1076.02" y="831.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="256.1" y="549" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="259.05" y="559.5" ></text> +</g> +<g > +<title>open_last_lookups (10,101,010 samples, 0.06%)</title><rect x="311.2" y="677" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="314.22" y="687.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="548.5" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="551.52" y="639.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="607.2" y="549" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="610.18" y="559.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="27.5" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="30.51" y="751.5" ></text> +</g> +<g > +<title>__fput_sync (20,202,020 samples, 0.13%)</title><rect x="327.0" y="725" width="1.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="329.98" y="735.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="191.3" y="485" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="194.26" y="495.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (40,404,040 samples, 0.25%)</title><rect x="617.7" y="645" width="3.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="620.69" y="655.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="546.8" y="517" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="549.76" y="527.5" ></text> +</g> +<g > +<title>ext4_rmdir (10,101,010 samples, 0.06%)</title><rect x="423.3" y="725" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="426.30" y="735.5" ></text> +</g> +<g > +<title>path_put (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="677" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1188.98" y="687.5" ></text> +</g> +<g > +<title>do_filp_open (90,909,090 samples, 0.57%)</title><rect x="996.0" y="677" width="7.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="998.96" y="687.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="533" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="1221.38" y="543.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="967.9" y="629" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="970.94" y="639.5" ></text> +</g> +<g > +<title>iput (30,303,030 samples, 0.19%)</title><rect x="787.6" y="597" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="790.56" y="607.5" ></text> +</g> +<g > +<title>__inet_stream_connect (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="805" width="4.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="1344.84" y="815.5" ></text> +</g> +<g > +<title>iput (40,404,040 samples, 0.25%)</title><rect x="322.6" y="661" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="325.60" y="671.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="629" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="1258.15" y="639.5" ></text> +</g> +<g > +<title>path_get (10,101,010 samples, 0.06%)</title><rect x="611.6" y="597" width="0.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="614.56" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="442.6" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="445.56" y="719.5" ></text> +</g> +<g > +<title>storvsc_do_io (10,101,010 samples, 0.06%)</title><rect x="665.9" y="293" width="0.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="668.85" y="303.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="511.7" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="514.74" y="607.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (121,212,120 samples, 0.76%)</title><rect x="129.1" y="789" width="10.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="132.09" y="799.5" ></text> +</g> +<g > +<title>unlink_cb (212,121,210 samples, 1.33%)</title><rect x="194.8" y="741" width="18.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="197.76" y="751.5" ></text> +</g> +<g > +<title>net_rx_action (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="437" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1345.72" y="447.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1022.2" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1025.23" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="311.2" y="757" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="314.22" y="767.5" ></text> +</g> +<g > +<title>__anon_inode_getfile (20,202,020 samples, 0.13%)</title><rect x="64.3" y="773" width="1.7" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" /> +<text x="67.29" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="870.7" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="873.75" y="703.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="1001.2" y="549" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1004.22" y="559.5" ></text> +</g> +<g > +<title>d_instantiate_new (10,101,010 samples, 0.06%)</title><rect x="954.8" y="565" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="957.81" y="575.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="325" width="2.6" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="1336.08" y="335.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="423.3" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="426.30" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_openat (30,303,030 samples, 0.19%)</title><rect x="611.6" y="709" width="2.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="614.56" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1190.73" y="719.5" ></text> +</g> +<g > +<title>path_lookupat (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="677" width="8.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1077.77" y="687.5" ></text> +</g> +<g > +<title>copy_pte_range (101,010,100 samples, 0.63%)</title><rect x="1284.9" y="677" width="8.8" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" /> +<text x="1287.92" y="687.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="125.6" y="773" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="128.58" y="783.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="514.4" y="693" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="517.37" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1236.8" y="709" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1239.76" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1339.2" y="901" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1342.21" y="911.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="917" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1352.72" y="927.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="778.8" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="781.81" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (464,646,460 samples, 2.92%)</title><rect x="640.5" y="805" width="40.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="643.46" y="815.5" >[li..</text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="775.3" y="629" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="778.30" y="639.5" ></text> +</g> +<g > +<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="275.3" y="549" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="278.32" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="64.3" y="869" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="67.29" y="879.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="882.1" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="885.13" y="655.5" ></text> +</g> +<g > +<title>vfs_link (10,101,010 samples, 0.06%)</title><rect x="721.9" y="661" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="724.89" y="671.5" ></text> +</g> +<g > +<title>dd_dispatch_request (10,101,010 samples, 0.06%)</title><rect x="823.5" y="373" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="826.46" y="383.5" ></text> +</g> +<g > +<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="596.7" y="645" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="599.68" y="655.5" ></text> +</g> +<g > +<title>__ext4_new_inode (191,919,190 samples, 1.21%)</title><rect x="108.1" y="821" width="16.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="111.07" y="831.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="715.8" y="549" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="718.76" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (171,717,170 samples, 1.08%)</title><rect x="222.8" y="693" width="14.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="225.78" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (2,757,575,730 samples, 17.32%)</title><rect x="169.4" y="853" width="239.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="172.37" y="863.5" >[libc.so.6]</text> +</g> +<g > +<title>ext4_dx_readdir (20,202,020 samples, 0.13%)</title><rect x="418.9" y="741" width="1.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="421.92" y="751.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="986.3" y="501" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="989.33" y="511.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.06%)</title><rect x="591.4" y="485" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="594.42" y="495.5" ></text> +</g> +<g > +<title>__getpagesize (10,101,010 samples, 0.06%)</title><rect x="63.4" y="853" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" /> +<text x="66.41" y="863.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="985.5" y="741" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="988.46" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="533.6" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="536.63" y="703.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (10,101,010 samples, 0.06%)</title><rect x="570.4" y="613" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="573.41" y="623.5" ></text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.06%)</title><rect x="428.6" y="757" width="0.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="431.55" y="767.5" ></text> +</g> +<g > +<title>do_rmdir (272,727,270 samples, 1.71%)</title><rect x="341.0" y="693" width="23.6" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="343.99" y="703.5" >d..</text> +</g> +<g > +<title>fscrypt_match_name (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="517" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="1197.73" y="527.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="423.3" y="709" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="426.30" y="719.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="769.2" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="772.18" y="671.5" ></text> +</g> +<g > +<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="248.2" y="501" width="0.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="251.17" y="511.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="742.9" y="549" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="745.91" y="559.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1355.0" y="805" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1357.97" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (131,313,130 samples, 0.82%)</title><rect x="756.0" y="773" width="11.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="759.04" y="783.5" ></text> +</g> +<g > +<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="218.4" y="661" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="221.40" y="671.5" ></text> +</g> +<g > +<title>ci_run (676,767,670 samples, 4.25%)</title><rect x="1273.5" y="933" width="58.7" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" /> +<text x="1276.54" y="943.5" >ci_run</text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="31.9" y="821" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="34.89" y="831.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="71.3" y="901" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="74.29" y="911.5" ></text> +</g> +<g > +<title>sbitmap_queue_clear (10,101,010 samples, 0.06%)</title><rect x="740.3" y="325" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" /> +<text x="743.28" y="335.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="918.0" y="485" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="921.03" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="92.3" y="933" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="95.31" y="943.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="631.7" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="634.70" y="639.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1088.8" y="501" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="1091.78" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="757" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="551.52" y="767.5" ></text> +</g> +<g > +<title>ip_local_out (40,404,040 samples, 0.25%)</title><rect x="1384.7" y="709" width="3.5" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1387.75" y="719.5" ></text> +</g> +<g > +<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.06%)</title><rect x="466.2" y="501" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="469.21" y="511.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.06%)</title><rect x="87.1" y="741" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="90.06" y="751.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="757" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1186.35" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="925.0" y="773" width="9.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="928.04" y="783.5" ></text> +</g> +<g > +<title>handle_softirqs (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="453" width="4.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1380.74" y="463.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="474.1" y="597" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="477.09" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="732.4" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="735.40" y="703.5" ></text> +</g> +<g > +<title>__ext4_link (50,505,050 samples, 0.32%)</title><rect x="603.7" y="645" width="4.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="606.68" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="645" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1208.24" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1226.3" y="661" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1229.26" y="671.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="963.6" y="581" width="1.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="966.57" y="591.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1029.61" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="484.6" y="677" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="487.59" y="687.5" ></text> +</g> +<g > +<title>getdents64 (121,212,120 samples, 0.76%)</title><rect x="614.2" y="773" width="10.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="617.19" y="783.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1226.3" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1229.26" y="703.5" ></text> +</g> +<g > +<title>free_pipe_info (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1319.45" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="917" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1344.84" y="927.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="693.0" y="613" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="695.99" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (282,828,280 samples, 1.78%)</title><rect x="804.2" y="805" width="24.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="807.20" y="815.5" >[..</text> +</g> +<g > +<title>__send (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="869" width="7.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="1363.23" y="879.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="972.3" y="469" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="975.32" y="479.5" ></text> +</g> +<g > +<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.06%)</title><rect x="967.9" y="549" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" /> +<text x="970.94" y="559.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="345.4" y="645" width="2.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="348.37" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="439.1" y="789" width="12.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="442.06" y="799.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="553.8" y="645" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="556.77" y="655.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (30,303,030 samples, 0.19%)</title><rect x="289.3" y="517" width="2.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="292.33" y="527.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_plug_list (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="421" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="1037.49" y="431.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="773" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1332.58" y="783.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="1197.73" y="623.5" ></text> +</g> +<g > +<title>ci_run_script (595,959,590 samples, 3.74%)</title><rect x="1273.5" y="917" width="51.7" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="1276.54" y="927.5" >ci_ru..</text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="798.9" y="709" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="801.95" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="784.1" y="613" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="787.06" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="765.7" y="597" width="1.7" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="768.67" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="688.6" y="709" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="691.62" y="719.5" ></text> +</g> +<g > +<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="1010.0" y="565" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="1012.97" y="575.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="677" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="1241.52" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="471.5" y="773" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="474.46" y="783.5" ></text> +</g> +<g > +<title>tlb_batch_pages_flush (10,101,010 samples, 0.06%)</title><rect x="429.4" y="677" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="432.43" y="687.5" ></text> +</g> +<g > +<title>tcp_connect (20,202,020 samples, 0.13%)</title><rect x="1344.5" y="773" width="1.7" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" /> +<text x="1347.47" y="783.5" ></text> +</g> +<g > +<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="597" width="0.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="1222.25" y="607.5" ></text> +</g> +<g > +<title>d_lru_add (10,101,010 samples, 0.06%)</title><rect x="75.7" y="773" width="0.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="78.67" y="783.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.13%)</title><rect x="906.6" y="693" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="909.65" y="703.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1169.3" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1172.34" y="527.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="824.3" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="827.34" y="575.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="249.9" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="252.92" y="575.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="756.0" y="613" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="759.04" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="936.4" y="661" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="939.42" y="671.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (90,909,090 samples, 0.57%)</title><rect x="1050.3" y="661" width="7.8" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" /> +<text x="1053.25" y="671.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="979.3" y="581" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="982.33" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 1.08%)</title><rect x="222.8" y="709" width="14.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="225.78" y="719.5" ></text> +</g> +<g > +<title>jsonrpc_request_send (50,505,050 samples, 0.32%)</title><rect x="10.9" y="981" width="4.4" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="13.88" y="991.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="985.5" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="988.46" y="703.5" ></text> +</g> +<g > +<title>nf_conntrack_in (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="85" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="1375.49" y="95.5" ></text> +</g> +<g > +<title>new_inode (50,505,050 samples, 0.32%)</title><rect x="573.9" y="613" width="4.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="576.91" y="623.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="858.5" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="861.49" y="751.5" ></text> +</g> +<g > +<title>git_object_peel (20,202,020 samples, 0.13%)</title><rect x="546.8" y="885" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="549.76" y="895.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1213.1" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="1216.12" y="607.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="594.9" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="597.92" y="655.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="357.6" y="501" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="360.63" y="511.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="425.9" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="428.93" y="559.5" ></text> +</g> +<g > +<title>str2hashbuf_signed (10,101,010 samples, 0.06%)</title><rect x="505.6" y="581" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="508.61" y="591.5" ></text> +</g> +<g > +<title>tcp_connect (50,505,050 samples, 0.32%)</title><rect x="1384.7" y="773" width="4.4" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" /> +<text x="1387.75" y="783.5" ></text> +</g> +<g > +<title>ext4_mb_mark_context (20,202,020 samples, 0.13%)</title><rect x="1171.1" y="565" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="1174.09" y="575.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="320.0" y="645" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="322.97" y="655.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="615.9" y="661" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="618.94" y="671.5" ></text> +</g> +<g > +<title>filemap_alloc_folio (20,202,020 samples, 0.13%)</title><rect x="1007.3" y="581" width="1.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="1010.35" y="591.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="249.9" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="252.92" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (60,606,060 samples, 0.38%)</title><rect x="423.3" y="773" width="5.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="426.30" y="783.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="692.1" y="517" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="695.12" y="527.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="689.5" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="692.49" y="575.5" ></text> +</g> +<g > +<title>__close_nocancel (10,101,010 samples, 0.06%)</title><rect x="192.1" y="741" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="195.13" y="751.5" ></text> +</g> +<g > +<title>may_open (10,101,010 samples, 0.06%)</title><rect x="99.3" y="853" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="102.31" y="863.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="440.8" y="469" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="443.81" y="479.5" ></text> +</g> +<g > +<title>may_delete (10,101,010 samples, 0.06%)</title><rect x="310.3" y="629" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="313.34" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="327.0" y="789" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="329.98" y="799.5" ></text> +</g> +<g > +<title>schedule (30,303,030 samples, 0.19%)</title><rect x="25.8" y="789" width="2.6" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="28.76" y="799.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (30,303,030 samples, 0.19%)</title><rect x="1178.1" y="677" width="2.6" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" /> +<text x="1181.10" y="687.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="841.9" y="533" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="844.85" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1025.7" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1028.74" y="719.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (70,707,070 samples, 0.44%)</title><rect x="1369.9" y="709" width="6.1" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="1372.86" y="719.5" ></text> +</g> +<g > +<title>ext4_evict_inode (30,303,030 samples, 0.19%)</title><rect x="787.6" y="565" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="790.56" y="575.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="863.7" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="866.74" y="607.5" ></text> +</g> +<g > +<title>init_file (10,101,010 samples, 0.06%)</title><rect x="693.0" y="549" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="695.99" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="802.4" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="805.45" y="687.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="1147.4" y="613" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1150.45" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="856.7" y="741" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="859.74" y="751.5" ></text> +</g> +<g > +<title>__close (10,101,010 samples, 0.06%)</title><rect x="524.0" y="741" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="527.00" y="751.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="189.5" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="192.51" y="543.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="808.6" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="811.58" y="703.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="383.0" y="517" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="386.02" y="527.5" ></text> +</g> +<g > +<title>call_filldir (10,101,010 samples, 0.06%)</title><rect x="247.3" y="629" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="250.30" y="639.5" ></text> +</g> +<g > +<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="629" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="1234.51" y="639.5" ></text> +</g> +<g > +<title>walk_component (60,606,060 samples, 0.38%)</title><rect x="633.5" y="645" width="5.2" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="636.45" y="655.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="292.0" y="549" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="294.95" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="896.1" y="693" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="899.14" y="703.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="980.2" y="629" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="983.20" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="972.3" y="581" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="975.32" y="591.5" ></text> +</g> +<g > +<title>ext4_getblk (20,202,020 samples, 0.13%)</title><rect x="617.7" y="581" width="1.7" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="620.69" y="591.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="186.0" y="549" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="189.00" y="559.5" ></text> +</g> +<g > +<title>ip_output (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="149" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1336.96" y="159.5" ></text> +</g> +<g > +<title>ipv6_sock_mc_close (10,101,010 samples, 0.06%)</title><rect x="41.5" y="709" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" /> +<text x="44.52" y="719.5" ></text> +</g> +<g > +<title>path_openat (30,303,030 samples, 0.19%)</title><rect x="453.9" y="549" width="2.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="456.95" y="559.5" ></text> +</g> +<g > +<title>log_prefix_thread_id (20,202,020 samples, 0.13%)</title><rect x="69.5" y="933" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="72.54" y="943.5" ></text> +</g> +<g > +<title>opendir (40,404,040 samples, 0.25%)</title><rect x="610.7" y="789" width="3.5" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" /> +<text x="613.69" y="799.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1119.4" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1122.43" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="981.1" y="725" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="984.08" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (191,919,190 samples, 1.21%)</title><rect x="891.8" y="805" width="16.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="894.76" y="815.5" ></text> +</g> +<g > +<title>vfs_rename (60,606,060 samples, 0.38%)</title><rect x="820.8" y="677" width="5.3" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="823.84" y="687.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1196.5" y="661" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="1199.48" y="671.5" ></text> +</g> +<g > +<title>_IO_file_write (30,303,030 samples, 0.19%)</title><rect x="433.8" y="805" width="2.6" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" /> +<text x="436.81" y="815.5" ></text> +</g> +<g > +<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="404.0" y="757" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="407.04" y="767.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="92.3" y="837" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="95.31" y="847.5" ></text> +</g> +<g > +<title>__x64_sys_openat (50,505,050 samples, 0.32%)</title><rect x="742.0" y="613" width="4.4" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="745.03" y="623.5" ></text> +</g> +<g > +<title>alloc_pages_mpol (10,101,010 samples, 0.06%)</title><rect x="732.4" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="735.40" y="511.5" ></text> +</g> +<g > +<title>kfree (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="725" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="1319.45" y="735.5" ></text> +</g> +<g > +<title>mkdir (444,444,440 samples, 2.79%)</title><rect x="1143.1" y="821" width="38.5" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" /> +<text x="1146.07" y="831.5" >mkdir</text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="311.2" y="789" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="314.22" y="799.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="613" width="0.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1222.25" y="623.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="611.6" y="629" width="0.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="614.56" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="568.7" y="613" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="571.65" y="623.5" ></text> +</g> +<g > +<title>expand_files (10,101,010 samples, 0.06%)</title><rect x="1059.0" y="693" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="1062.01" y="703.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="633.5" y="613" width="0.8" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="636.45" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (111,111,110 samples, 0.70%)</title><rect x="144.0" y="965" width="9.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="146.97" y="975.5" ></text> +</g> +<g > +<title>blk_finish_plug (10,101,010 samples, 0.06%)</title><rect x="930.3" y="533" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="933.29" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1208.24" y="639.5" ></text> +</g> +<g > +<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1177.2" y="613" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="1180.22" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="916.3" y="645" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="919.28" y="655.5" ></text> +</g> +<g > +<title>sk_free (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="277" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" /> +<text x="1374.61" y="287.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="473.2" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="476.21" y="719.5" ></text> +</g> +<g > +<title>__close_nocancel (10,101,010 samples, 0.06%)</title><rect x="418.0" y="869" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="421.05" y="879.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="661" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1188.98" y="671.5" ></text> +</g> +<g > +<title>xas_find (10,101,010 samples, 0.06%)</title><rect x="388.3" y="597" width="0.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="391.27" y="607.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="986.3" y="645" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="989.33" y="655.5" ></text> +</g> +<g > +<title>memcmp (10,101,010 samples, 0.06%)</title><rect x="469.7" y="597" width="0.9" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="472.71" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="741" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1235.39" y="751.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="506.5" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="509.48" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="706.1" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="709.13" y="687.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1334.8" y="37" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1337.84" y="47.5" ></text> +</g> +<g > +<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="661" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1195.11" y="671.5" ></text> +</g> +<g > +<title>mod_objcg_state (10,101,010 samples, 0.06%)</title><rect x="576.5" y="533" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="579.54" y="543.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (30,303,030 samples, 0.19%)</title><rect x="207.9" y="485" width="2.6" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" /> +<text x="210.89" y="495.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="357.6" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="360.63" y="559.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1025.7" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1028.74" y="703.5" ></text> +</g> +<g > +<title>__default_morecore (10,101,010 samples, 0.06%)</title><rect x="239.4" y="725" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="242.42" y="735.5" ></text> +</g> +<g > +<title>wp_page_copy (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="741" width="0.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="1322.07" y="751.5" ></text> +</g> +<g > +<title>call_filldir (10,101,010 samples, 0.06%)</title><rect x="616.8" y="645" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="619.81" y="655.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="68.7" y="709" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="71.67" y="719.5" ></text> +</g> +<g > +<title>pipe_write (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="693" width="1.7" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="1332.58" y="703.5" ></text> +</g> +<g > +<title>shrink_dcache_parent (10,101,010 samples, 0.06%)</title><rect x="427.7" y="725" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="430.68" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="692.1" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="695.12" y="687.5" ></text> +</g> +<g > +<title>ext4_truncate (40,404,040 samples, 0.25%)</title><rect x="841.0" y="581" width="3.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="843.98" y="591.5" ></text> +</g> +<g > +<title>ip_queue_xmit (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="661" width="6.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1364.98" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1108.42" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (383,838,380 samples, 2.41%)</title><rect x="686.9" y="757" width="33.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="689.87" y="767.5" >[l..</text> +</g> +<g > +<title>mempool_alloc (10,101,010 samples, 0.06%)</title><rect x="795.4" y="389" width="0.9" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" /> +<text x="798.44" y="399.5" ></text> +</g> +<g > +<title>__slab_free (10,101,010 samples, 0.06%)</title><rect x="31.9" y="757" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="34.89" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1238.89" y="735.5" ></text> +</g> +<g > +<title>mnt_want_write (10,101,010 samples, 0.06%)</title><rect x="309.5" y="645" width="0.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="312.47" y="655.5" ></text> +</g> +<g > +<title>tcp_send_ack (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="229" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" /> +<text x="1375.49" y="239.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="908.4" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="911.40" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="1191.2" y="805" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1194.23" y="815.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1205.61" y="655.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="747.3" y="629" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="750.28" y="639.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="80.1" y="789" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="83.05" y="799.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="737.7" y="613" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="740.65" y="623.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="809.5" y="645" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="812.45" y="655.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="373" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="1037.49" y="383.5" ></text> +</g> +<g > +<title>perf_iterate_ctx (10,101,010 samples, 0.06%)</title><rect x="241.2" y="517" width="0.8" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="244.17" y="527.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="273.6" y="517" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="276.57" y="527.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_plug_list (20,202,020 samples, 0.13%)</title><rect x="822.6" y="453" width="1.7" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="825.59" y="463.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="783.2" y="613" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="786.19" y="623.5" ></text> +</g> +<g > +<title>__es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="467.1" y="501" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" /> +<text x="470.08" y="511.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="998.6" y="565" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="1001.59" y="575.5" ></text> +</g> +<g > +<title>ext4_evict_inode (20,202,020 samples, 0.13%)</title><rect x="1063.4" y="677" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1066.39" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="857.6" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="860.61" y="767.5" ></text> +</g> +<g > +<title>realpath (10,101,010 samples, 0.06%)</title><rect x="757.8" y="741" width="0.9" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" /> +<text x="760.79" y="751.5" ></text> +</g> +<g > +<title>block_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="661.5" y="485" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="664.47" y="495.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (20,202,020 samples, 0.13%)</title><rect x="932.0" y="485" width="1.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="935.04" y="495.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="597" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1098.79" y="607.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="896.1" y="677" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="899.14" y="687.5" ></text> +</g> +<g > +<title>git_revparse_ext (30,303,030 samples, 0.19%)</title><rect x="552.9" y="885" width="2.6" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="555.89" y="895.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="979.3" y="597" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="982.33" y="607.5" ></text> +</g> +<g > +<title>link (10,101,010 samples, 0.06%)</title><rect x="785.8" y="741" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="788.81" y="751.5" ></text> +</g> +<g > +<title>open_last_lookups (20,202,020 samples, 0.13%)</title><rect x="963.6" y="565" width="1.7" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="966.57" y="575.5" ></text> +</g> +<g > +<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="548.5" y="597" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="551.52" y="607.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="597" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1205.61" y="607.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="725" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1202.11" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="821" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1186.35" y="831.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (30,303,030 samples, 0.19%)</title><rect x="589.7" y="517" width="2.6" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="592.67" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="775.3" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="778.30" y="687.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="775.3" y="597" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="778.30" y="607.5" ></text> +</g> +<g > +<title>iput (40,404,040 samples, 0.25%)</title><rect x="171.1" y="565" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="174.12" y="575.5" ></text> +</g> +<g > +<title>copy_present_pte (50,505,050 samples, 0.32%)</title><rect x="1288.4" y="661" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1291.43" y="671.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="74.8" y="773" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="77.80" y="783.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="484.6" y="501" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="487.59" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="240.3" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="243.29" y="751.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="857.6" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="860.61" y="687.5" ></text> +</g> +<g > +<title>git_repository_init (2,636,363,610 samples, 16.56%)</title><rect x="991.6" y="869" width="228.5" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="994.59" y="879.5" >git_repository_init</text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="946.9" y="693" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="949.93" y="703.5" ></text> +</g> +<g > +<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="365.5" y="677" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="368.51" y="687.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="279.7" y="549" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="282.70" y="559.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="277" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1348.34" y="287.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1154.5" y="629" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1157.45" y="639.5" ></text> +</g> +<g > +<title>tcp_v4_conn_request (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="325" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="1348.34" y="335.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="171.1" y="501" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="174.12" y="511.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="650.1" y="629" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="653.09" y="639.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="548.5" y="645" width="4.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="551.52" y="655.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.06%)</title><rect x="817.3" y="533" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="820.34" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="862.9" y="709" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="865.87" y="719.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="867.2" y="613" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="870.25" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="23.1" y="917" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="26.13" y="927.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="72.2" y="709" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="75.17" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="862.0" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="864.99" y="703.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="661" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1197.73" y="671.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="587.0" y="437" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="590.04" y="447.5" ></text> +</g> +<g > +<title>path_init (10,101,010 samples, 0.06%)</title><rect x="1076.5" y="661" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="1079.52" y="671.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="797.2" y="533" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="800.20" y="543.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="292.8" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="295.83" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="688.6" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="691.62" y="671.5" ></text> +</g> +<g > +<title>__fdget_pos (10,101,010 samples, 0.06%)</title><rect x="245.5" y="677" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="248.55" y="687.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="677.2" y="581" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="680.23" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="158.9" y="853" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="161.86" y="863.5" ></text> +</g> +<g > +<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="780.6" y="629" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="783.56" y="639.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="107.2" y="805" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="110.20" y="815.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.06%)</title><rect x="672.0" y="485" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="674.98" y="495.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="613" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1239.76" y="623.5" ></text> +</g> +<g > +<title>user_path_at_empty (30,303,030 samples, 0.19%)</title><rect x="492.5" y="661" width="2.6" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="495.47" y="671.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="680.7" y="661" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="683.74" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="365.5" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="368.51" y="767.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="409.3" y="741" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="412.29" y="751.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="501" width="0.9" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" /> +<text x="1130.31" y="511.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="383.9" y="485" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="386.90" y="495.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="292.8" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="295.83" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="72.2" y="805" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="75.17" y="815.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (20,202,020 samples, 0.13%)</title><rect x="186.9" y="549" width="1.7" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="189.88" y="559.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="953.1" y="517" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="956.06" y="527.5" ></text> +</g> +<g > +<title>vmbus_setevent (10,101,010 samples, 0.06%)</title><rect x="665.9" y="245" width="0.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="668.85" y="255.5" ></text> +</g> +<g > +<title>ext4_es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="841.0" y="549" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" /> +<text x="843.98" y="559.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="198.3" y="581" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="201.26" y="591.5" ></text> +</g> +<g > +<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="693" width="2.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1202.11" y="703.5" ></text> +</g> +<g > +<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="458.3" y="725" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="461.32" y="735.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="157.1" y="821" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="160.11" y="831.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="974.9" y="709" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="977.95" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="66.0" y="869" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="69.04" y="879.5" ></text> +</g> +<g > +<title>remove (313,131,310 samples, 1.97%)</title><rect x="371.6" y="805" width="27.2" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="374.64" y="815.5" >r..</text> +</g> +<g > +<title>readdir64 (121,212,120 samples, 0.76%)</title><rect x="614.2" y="789" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="617.19" y="799.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="551.1" y="581" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="554.14" y="591.5" ></text> +</g> +<g > +<title>ip_queue_xmit (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="661" width="5.2" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1372.86" y="671.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1234.1" y="741" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1237.14" y="751.5" ></text> +</g> +<g > +<title>inode_has_buffers (10,101,010 samples, 0.06%)</title><rect x="374.3" y="645" width="0.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="377.26" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="445.2" y="725" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="448.19" y="735.5" ></text> +</g> +<g > +<title>tcp_server_accept_handler (292,929,290 samples, 1.84%)</title><rect x="44.1" y="933" width="25.4" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" /> +<text x="47.15" y="943.5" >t..</text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="484.6" y="421" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="487.59" y="431.5" ></text> +</g> +<g > +<title>git_signature_now (10,101,010 samples, 0.06%)</title><rect x="984.6" y="773" width="0.9" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" /> +<text x="987.58" y="783.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="324.4" y="581" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="327.35" y="591.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="516.1" y="565" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="519.12" y="575.5" ></text> +</g> +<g > +<title>crc_pcl (30,303,030 samples, 0.19%)</title><rect x="1178.1" y="645" width="2.6" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="1181.10" y="655.5" ></text> +</g> +<g > +<title>git_config_set_string (444,444,440 samples, 2.79%)</title><rect x="1104.5" y="821" width="38.6" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="1107.54" y="831.5" >git..</text> +</g> +<g > +<title>main (14,252,525,110 samples, 89.53%)</title><rect x="154.5" y="997" width="1235.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="157.48" y="1007.5" >main</text> +</g> +<g > +<title>ext4_mb_new_blocks (101,010,100 samples, 0.63%)</title><rect x="1167.6" y="597" width="8.7" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="1170.59" y="607.5" ></text> +</g> +<g > +<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="1165.8" y="485" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1168.84" y="495.5" ></text> +</g> +<g > +<title>__srcu_read_lock (10,101,010 samples, 0.06%)</title><rect x="418.0" y="725" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="421.05" y="735.5" ></text> +</g> +<g > +<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="1056.4" y="645" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1059.38" y="655.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="709" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1247.64" y="719.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="440.8" y="581" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="443.81" y="591.5" ></text> +</g> +<g > +<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="326.1" y="661" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="329.10" y="671.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="732.4" y="613" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="735.40" y="623.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="856.7" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="859.74" y="687.5" ></text> +</g> +<g > +<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="1236.8" y="773" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1239.76" y="783.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="425.9" y="517" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="428.93" y="527.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1184.2" y="661" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1187.23" y="671.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="763.9" y="533" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="766.92" y="543.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="110.7" y="741" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="113.70" y="751.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="1355.0" y="821" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1357.97" y="831.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="776.2" y="501" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="779.18" y="511.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="446.1" y="693" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="449.07" y="703.5" ></text> +</g> +<g > +<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="1080.0" y="517" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1083.03" y="527.5" ></text> +</g> +<g > +<title>_raw_read_lock (10,101,010 samples, 0.06%)</title><rect x="771.8" y="469" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="774.80" y="479.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="963.6" y="597" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="966.57" y="607.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="311.2" y="693" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="314.22" y="703.5" ></text> +</g> +<g > +<title>do_mkdirat (101,010,100 samples, 0.63%)</title><rect x="1264.8" y="789" width="8.7" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="1267.78" y="799.5" ></text> +</g> +<g > +<title>__fsnotify_parent (10,101,010 samples, 0.06%)</title><rect x="100.2" y="821" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="103.19" y="831.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="986.3" y="725" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="989.33" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="677" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1232.76" y="687.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="747.3" y="565" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="750.28" y="575.5" ></text> +</g> +<g > +<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="176.4" y="469" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="179.37" y="479.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1026.11" y="655.5" ></text> +</g> +<g > +<title>mempool_alloc_slab (10,101,010 samples, 0.06%)</title><rect x="795.4" y="373" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="798.44" y="383.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1085.3" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1088.28" y="719.5" ></text> +</g> +<g > +<title>ip_local_deliver (10,101,010 samples, 0.06%)</title><rect x="1342.7" y="341" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" /> +<text x="1345.72" y="351.5" ></text> +</g> +<g > +<title>__x64_sys_rename (111,111,110 samples, 0.70%)</title><rect x="925.0" y="725" width="9.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="928.04" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="64.3" y="853" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="67.29" y="863.5" ></text> +</g> +<g > +<title>ext4_writepages (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="533" width="7.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1135.56" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="905.8" y="597" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="908.77" y="607.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="191.3" y="533" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="194.26" y="543.5" ></text> +</g> +<g > +<title>from_kuid (10,101,010 samples, 0.06%)</title><rect x="1148.3" y="597" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="1151.32" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="773" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1243.27" y="783.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="516.1" y="581" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="519.12" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (171,717,170 samples, 1.08%)</title><rect x="811.2" y="725" width="14.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="814.21" y="735.5" ></text> +</g> +<g > +<title>iput (282,828,280 samples, 1.78%)</title><rect x="277.9" y="629" width="24.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="280.94" y="639.5" >i..</text> +</g> +<g > +<title>__ext4_unlink (60,606,060 samples, 0.38%)</title><rect x="392.7" y="661" width="5.2" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="395.65" y="671.5" ></text> +</g> +<g > +<title>path_openat (70,707,070 samples, 0.44%)</title><rect x="507.4" y="709" width="6.1" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="510.36" y="719.5" ></text> +</g> +<g > +<title>nf_conntrack_handle_packet (10,101,010 samples, 0.06%)</title><rect x="1362.0" y="565" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" /> +<text x="1364.98" y="575.5" ></text> +</g> +<g > +<title>ext4_mb_prefetch_fini (10,101,010 samples, 0.06%)</title><rect x="704.4" y="453" width="0.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" /> +<text x="707.38" y="463.5" ></text> +</g> +<g > +<title>git_repository__cleanup (10,101,010 samples, 0.06%)</title><rect x="755.2" y="773" width="0.8" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="758.16" y="783.5" ></text> +</g> +<g > +<title>closedir (10,101,010 samples, 0.06%)</title><rect x="328.7" y="805" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="331.73" y="815.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="389" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1040.99" y="399.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1339.2" y="917" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1342.21" y="927.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="979.3" y="373" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="982.33" y="383.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="904.0" y="613" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="907.02" y="623.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="714.9" y="581" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="717.89" y="591.5" ></text> +</g> +<g > +<title>__filemap_fdatawrite_range (101,010,100 samples, 0.63%)</title><rect x="665.0" y="581" width="8.7" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="667.97" y="591.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="294.6" y="485" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="297.58" y="495.5" ></text> +</g> +<g > +<title>git_config_add_backend (40,404,040 samples, 0.25%)</title><rect x="981.1" y="741" width="3.5" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="984.08" y="751.5" ></text> +</g> +<g > +<title>may_delete (10,101,010 samples, 0.06%)</title><rect x="428.6" y="725" width="0.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="431.55" y="735.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (20,202,020 samples, 0.13%)</title><rect x="659.7" y="421" width="1.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="662.72" y="431.5" ></text> +</g> +<g > +<title>[libc.so.6] (161,616,160 samples, 1.02%)</title><rect x="10.0" y="1045" width="14.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="13.00" y="1055.5" ></text> +</g> +<g > +<title>brk (30,303,030 samples, 0.19%)</title><rect x="398.8" y="757" width="2.6" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" /> +<text x="401.78" y="767.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="815.6" y="581" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="818.58" y="591.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="984.6" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="987.58" y="623.5" ></text> +</g> +<g > +<title>ext4_bread (40,404,040 samples, 0.25%)</title><rect x="701.8" y="549" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="704.75" y="559.5" ></text> +</g> +<g > +<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="671.1" y="405" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="674.10" y="415.5" ></text> +</g> +<g > +<title>common_perm_cond (10,101,010 samples, 0.06%)</title><rect x="1116.8" y="597" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" /> +<text x="1119.80" y="607.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="473.2" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="476.21" y="735.5" ></text> +</g> +<g > +<title>ext4_create (50,505,050 samples, 0.32%)</title><rect x="1052.0" y="645" width="4.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="1055.01" y="655.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="732.4" y="629" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="735.40" y="639.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (20,202,020 samples, 0.13%)</title><rect x="822.6" y="437" width="1.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="825.59" y="447.5" ></text> +</g> +<g > +<title>unmap_single_vma (20,202,020 samples, 0.13%)</title><rect x="399.7" y="613" width="1.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="402.66" y="623.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="207.0" y="517" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="210.02" y="527.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="190.4" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="193.38" y="543.5" ></text> +</g> +<g > +<title>do_renameat2 (141,414,140 samples, 0.89%)</title><rect x="837.5" y="693" width="12.2" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="840.47" y="703.5" ></text> +</g> +<g > +<title>tcp_queue_rcv (10,101,010 samples, 0.06%)</title><rect x="38.9" y="181" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" /> +<text x="41.90" y="191.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="867.2" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="870.25" y="655.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="565" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1196.86" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="594.9" y="725" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="597.92" y="735.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="476.7" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="479.71" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1202.6" y="677" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1205.61" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="805" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="741.53" y="815.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="186.0" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="189.00" y="543.5" ></text> +</g> +<g > +<title>ext4_evict_inode (40,404,040 samples, 0.25%)</title><rect x="322.6" y="629" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="325.60" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="380.4" y="549" width="2.6" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="383.39" y="559.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="534.5" y="581" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="537.51" y="591.5" ></text> +</g> +<g > +<title>filename_lookup (80,808,080 samples, 0.51%)</title><rect x="144.8" y="901" width="7.1" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="147.85" y="911.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="808.6" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="811.58" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="446.1" y="677" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="449.07" y="687.5" ></text> +</g> +<g > +<title>security_file_permission (20,202,020 samples, 0.13%)</title><rect x="622.9" y="677" width="1.8" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" /> +<text x="625.94" y="687.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1298.9" y="693" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1301.93" y="703.5" ></text> +</g> +<g > +<title>__dentry_kill (50,505,050 samples, 0.32%)</title><rect x="1028.4" y="629" width="4.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="1031.36" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="772.7" y="485" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="775.68" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (363,636,360 samples, 2.28%)</title><rect x="563.4" y="741" width="31.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="566.40" y="751.5" >en..</text> +</g> +<g > +<title>vfs_fstat (10,101,010 samples, 0.06%)</title><rect x="610.7" y="677" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="613.69" y="687.5" ></text> +</g> +<g > +<title>do_sys_openat2 (30,303,030 samples, 0.19%)</title><rect x="214.0" y="693" width="2.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="217.02" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_openat (565,656,560 samples, 3.55%)</title><rect x="94.9" y="933" width="49.1" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="97.94" y="943.5" >__x6..</text> +</g> +<g > +<title>neigh_hh_output (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="85" width="1.7" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="1336.96" y="95.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="903.1" y="597" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="906.15" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="735.0" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="738.03" y="719.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="357" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1037.49" y="367.5" ></text> +</g> +<g > +<title>common_perm_cond (10,101,010 samples, 0.06%)</title><rect x="320.0" y="629" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" /> +<text x="322.97" y="639.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="907.5" y="549" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="910.53" y="559.5" ></text> +</g> +<g > +<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="757" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="1184.60" y="767.5" ></text> +</g> +<g > +<title>lockref_get_not_dead (10,101,010 samples, 0.06%)</title><rect x="1199.1" y="597" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="1202.11" y="607.5" ></text> +</g> +<g > +<title>net_recv_buf (30,303,030 samples, 0.19%)</title><rect x="1357.6" y="869" width="2.6" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="1360.60" y="879.5" ></text> +</g> +<g > +<title>__call_rcu_common.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="811.2" y="565" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="814.21" y="575.5" ></text> +</g> +<g > +<title>__lookup_mnt (10,101,010 samples, 0.06%)</title><rect x="446.1" y="533" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="449.07" y="543.5" ></text> +</g> +<g > +<title>net_send (40,404,040 samples, 0.25%)</title><rect x="11.8" y="933" width="3.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="14.75" y="943.5" ></text> +</g> +<g > +<title>tcp_sendmsg (60,606,060 samples, 0.38%)</title><rect x="1332.2" y="757" width="5.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1335.21" y="767.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="667.6" y="437" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="670.60" y="447.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="902.3" y="661" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="905.27" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="773" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1198.61" y="783.5" ></text> +</g> +<g > +<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="592.3" y="549" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="595.30" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="153.6" y="933" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="156.60" y="943.5" ></text> +</g> +<g > +<title>__rmqueue_pcplist (10,101,010 samples, 0.06%)</title><rect x="732.4" y="453" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="735.40" y="463.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="907.5" y="565" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="910.53" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="92.3" y="965" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="95.31" y="975.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="867.2" y="581" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="870.25" y="591.5" ></text> +</g> +<g > +<title>__ext4_new_inode (141,414,140 samples, 0.89%)</title><rect x="566.0" y="629" width="12.3" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="569.03" y="639.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (20,202,020 samples, 0.13%)</title><rect x="172.9" y="501" width="1.7" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="175.87" y="511.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="901.4" y="693" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="904.40" y="703.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.06%)</title><rect x="722.8" y="757" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="725.77" y="767.5" ></text> +</g> +<g > +<title>alloc_thread_stack_node (20,202,020 samples, 0.13%)</title><rect x="56.4" y="693" width="1.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="59.41" y="703.5" ></text> +</g> +<g > +<title>do_sys_openat2 (121,212,120 samples, 0.76%)</title><rect x="1049.4" y="725" width="10.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="1052.38" y="735.5" ></text> +</g> +<g > +<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="591.4" y="469" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="594.42" y="479.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="924.2" y="661" width="0.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="927.16" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="750.8" y="789" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="753.79" y="799.5" ></text> +</g> +<g > +<title>ip_local_deliver (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="357" width="2.6" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" /> +<text x="1336.08" y="367.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="318.2" y="629" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="321.22" y="639.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="673.7" y="581" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" /> +<text x="676.73" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="765.7" y="613" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="768.67" y="623.5" ></text> +</g> +<g > +<title>pthread_rwlock_rdlock (10,101,010 samples, 0.06%)</title><rect x="513.5" y="821" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="516.49" y="831.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="978.5" y="677" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="981.45" y="687.5" ></text> +</g> +<g > +<title>blk_mq_sched_bio_merge (10,101,010 samples, 0.06%)</title><rect x="466.2" y="437" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" /> +<text x="469.21" y="447.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="790.2" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="793.19" y="559.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1256.0" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1259.03" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="378.6" y="629" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="381.64" y="639.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="1381.2" y="325" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" /> +<text x="1384.24" y="335.5" ></text> +</g> +<g > +<title>x64_sys_call (101,010,100 samples, 0.63%)</title><rect x="1264.8" y="821" width="8.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1267.78" y="831.5" ></text> +</g> +<g > +<title>filename_create (20,202,020 samples, 0.13%)</title><rect x="1143.9" y="725" width="1.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="1146.95" y="735.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="677" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1235.39" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_openat (40,404,040 samples, 0.25%)</title><rect x="918.0" y="645" width="3.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="921.03" y="655.5" ></text> +</g> +<g > +<title>net_rx_action (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="437" width="4.4" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1380.74" y="447.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (20,202,020 samples, 0.13%)</title><rect x="71.3" y="933" width="1.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="74.29" y="943.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="976.7" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="979.70" y="655.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="397.0" y="613" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="400.03" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="362.0" y="517" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="365.01" y="527.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1096.7" y="501" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1099.66" y="511.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1177.2" y="645" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="1180.22" y="655.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="293" width="2.6" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1367.61" y="303.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="884.8" y="661" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="887.76" y="671.5" ></text> +</g> +<g > +<title>tlb_finish_mmu (10,101,010 samples, 0.06%)</title><rect x="398.8" y="629" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="401.78" y="639.5" ></text> +</g> +<g > +<title>_compound_head (10,101,010 samples, 0.06%)</title><rect x="1287.6" y="661" width="0.8" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" /> +<text x="1290.55" y="671.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="741.2" y="533" width="0.8" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="744.15" y="543.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1094.9" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1097.91" y="607.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="989.0" y="565" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="991.96" y="575.5" ></text> +</g> +<g > +<title>ip_output (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="597" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1380.74" y="607.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1070.4" y="581" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="1073.39" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="789" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1019.98" y="799.5" ></text> +</g> +<g > +<title>filename_lookup (101,010,100 samples, 0.63%)</title><rect x="629.9" y="677" width="8.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="632.95" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="474.1" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="477.09" y="735.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="248.2" y="597" width="0.8" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="251.17" y="607.5" ></text> +</g> +<g > +<title>nf_hook_slow (20,202,020 samples, 0.13%)</title><rect x="1362.0" y="597" width="1.7" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" /> +<text x="1364.98" y="607.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="635.2" y="533" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="638.20" y="543.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1261.3" y="613" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1264.28" y="623.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="1049.4" y="661" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="1052.38" y="671.5" ></text> +</g> +<g > +<title>neigh_hh_output (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="533" width="1.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="1345.72" y="543.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="837" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1184.60" y="847.5" ></text> +</g> +<g > +<title>ip_rcv (30,303,030 samples, 0.19%)</title><rect x="37.1" y="309" width="2.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="40.14" y="319.5" ></text> +</g> +<g > +<title>_copy_to_user (10,101,010 samples, 0.06%)</title><rect x="182.5" y="613" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" /> +<text x="185.50" y="623.5" ></text> +</g> +<g > +<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="969.7" y="629" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="972.70" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_fcntl (10,101,010 samples, 0.06%)</title><rect x="329.6" y="709" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="332.61" y="719.5" ></text> +</g> +<g > +<title>ext4_get_group_desc (10,101,010 samples, 0.06%)</title><rect x="1149.2" y="661" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" /> +<text x="1152.20" y="671.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (70,707,070 samples, 0.44%)</title><rect x="85.3" y="757" width="6.1" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="88.30" y="767.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="269.2" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="272.19" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_write (40,404,040 samples, 0.25%)</title><rect x="515.2" y="725" width="3.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="518.24" y="735.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="402.3" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="405.28" y="655.5" ></text> +</g> +<g > +<title>mem_cgroup_commit_charge (10,101,010 samples, 0.06%)</title><rect x="968.8" y="469" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" /> +<text x="971.82" y="479.5" ></text> +</g> +<g > +<title>__filename_parentat (40,404,040 samples, 0.25%)</title><rect x="262.2" y="645" width="3.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="265.18" y="655.5" ></text> +</g> +<g > +<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="581" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1347.47" y="591.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="774.4" y="485" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="777.43" y="495.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="38.0" y="117" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="41.02" y="127.5" ></text> +</g> +<g > +<title>nf_conntrack_handle_packet (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="69" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" /> +<text x="1375.49" y="79.5" ></text> +</g> +<g > +<title>__open64_nocancel (10,101,010 samples, 0.06%)</title><rect x="803.3" y="821" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="806.32" y="831.5" ></text> +</g> +<g > +<title>file_close (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="885" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="1319.45" y="895.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="856.7" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="859.74" y="767.5" ></text> +</g> +<g > +<title>__do_softirq (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="485" width="5.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1372.86" y="495.5" ></text> +</g> +<g > +<title>ext4_rename (90,909,090 samples, 0.57%)</title><rect x="790.2" y="613" width="7.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="793.19" y="623.5" ></text> +</g> +<g > +<title>vmbus_on_event (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="565" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="1371.98" y="575.5" ></text> +</g> +<g > +<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="469" width="0.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="1113.67" y="479.5" ></text> +</g> +<g > +<title>rw_verify_area (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="613" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1231.01" y="623.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="805" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1322.07" y="815.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="741" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1266.03" y="751.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (20,202,020 samples, 0.13%)</title><rect x="425.1" y="629" width="1.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="428.05" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (70,707,070 samples, 0.44%)</title><rect x="507.4" y="789" width="6.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="510.36" y="799.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (10,101,010 samples, 0.06%)</title><rect x="463.6" y="597" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="466.58" y="607.5" ></text> +</g> +<g > +<title>open64 (50,505,050 samples, 0.32%)</title><rect x="742.0" y="677" width="4.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="745.03" y="687.5" ></text> +</g> +<g > +<title>remove (191,919,190 samples, 1.21%)</title><rect x="221.0" y="741" width="16.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="224.03" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="851.5" y="661" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="854.48" y="671.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="784.1" y="517" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="787.06" y="527.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1061.6" y="661" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1064.64" y="671.5" ></text> +</g> +<g > +<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="190.4" y="517" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" /> +<text x="193.38" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="474.1" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="477.09" y="719.5" ></text> +</g> +<g > +<title>alloc_file_pseudo (20,202,020 samples, 0.13%)</title><rect x="67.8" y="757" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="70.79" y="767.5" ></text> +</g> +<g > +<title>_start (565,656,560 samples, 3.55%)</title><rect x="24.0" y="1045" width="49.0" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="27.01" y="1055.5" >_start</text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="346.2" y="565" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="349.24" y="575.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="851.5" y="581" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="854.48" y="591.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="484.6" y="581" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="487.59" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="902.3" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="905.27" y="719.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="750.8" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="753.79" y="655.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="936.4" y="581" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="939.42" y="591.5" ></text> +</g> +<g > +<title>free_rb_tree_fname (10,101,010 samples, 0.06%)</title><rect x="238.5" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="241.54" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_link (20,202,020 samples, 0.13%)</title><rect x="721.0" y="693" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="724.02" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="750.8" y="741" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="753.79" y="751.5" ></text> +</g> +<g > +<title>remove (50,505,050 samples, 0.32%)</title><rect x="177.2" y="693" width="4.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="180.25" y="703.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (30,303,030 samples, 0.19%)</title><rect x="332.2" y="645" width="2.7" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="335.23" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="375.1" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="378.14" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="366.4" y="789" width="5.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="369.38" y="799.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="752.5" y="597" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="755.54" y="607.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="483.7" y="581" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="486.72" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="757" width="8.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1077.77" y="767.5" ></text> +</g> +<g > +<title>vfs_unlink (131,313,130 samples, 0.82%)</title><rect x="226.3" y="629" width="11.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="229.28" y="639.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1100.2" y="421" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1103.16" y="431.5" ></text> +</g> +<g > +<title>generic_perform_write (30,303,030 samples, 0.19%)</title><rect x="516.1" y="645" width="2.6" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="519.12" y="655.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="581" width="0.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="1322.07" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="725" width="5.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1009.47" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1238.89" y="719.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="746.4" y="565" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="749.41" y="575.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="534.5" y="565" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="537.51" y="575.5" ></text> +</g> +<g > +<title>open64 (585,858,580 samples, 3.68%)</title><rect x="93.2" y="997" width="50.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="96.19" y="1007.5" >open64</text> +</g> +<g > +<title>filemap_release_folio (10,101,010 samples, 0.06%)</title><rect x="389.1" y="565" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" /> +<text x="392.15" y="575.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1197.73" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="746.4" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="749.41" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="946.1" y="613" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="949.05" y="623.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="706.1" y="629" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="709.13" y="639.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="318.2" y="597" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="321.22" y="607.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1226.3" y="645" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1229.26" y="655.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="629" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1239.76" y="639.5" ></text> +</g> +<g > +<title>__d_move (10,101,010 samples, 0.06%)</title><rect x="663.2" y="629" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="666.22" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="972.3" y="709" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="975.32" y="719.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="834.0" y="549" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="836.97" y="559.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="606.3" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="609.31" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="984.6" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="987.58" y="671.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="504.7" y="613" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" /> +<text x="507.73" y="623.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="255.2" y="597" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="258.18" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (404,040,400 samples, 2.54%)</title><rect x="934.7" y="725" width="35.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="937.67" y="735.5" >[l..</text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="449.6" y="725" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="452.57" y="735.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="322.6" y="597" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="325.60" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="837" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1322.95" y="847.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="482.0" y="741" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="484.97" y="751.5" ></text> +</g> +<g > +<title>ext4_rename (60,606,060 samples, 0.38%)</title><rect x="820.8" y="645" width="5.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="823.84" y="655.5" ></text> +</g> +<g > +<title>_IO_file_write (20,202,020 samples, 0.13%)</title><rect x="558.1" y="805" width="1.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" /> +<text x="561.15" y="815.5" ></text> +</g> +<g > +<title>_compound_head (10,101,010 samples, 0.06%)</title><rect x="1313.8" y="757" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" /> +<text x="1316.82" y="767.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="842.7" y="341" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="845.73" y="351.5" ></text> +</g> +<g > +<title>x64_sys_call (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="821" width="6.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1335.21" y="831.5" ></text> +</g> +<g > +<title>git_config_get_string (10,101,010 samples, 0.06%)</title><rect x="798.1" y="757" width="0.8" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" /> +<text x="801.07" y="767.5" ></text> +</g> +<g > +<title>do_unlinkat (90,909,090 samples, 0.57%)</title><rect x="184.3" y="613" width="7.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="187.25" y="623.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1182.5" y="661" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="1185.47" y="671.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="199.1" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="202.14" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1013.5" y="773" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1016.48" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="645" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="1226.63" y="655.5" ></text> +</g> +<g > +<title>iterate_dir (111,111,110 samples, 0.70%)</title><rect x="615.1" y="693" width="9.6" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="618.06" y="703.5" ></text> +</g> +<g > +<title>security_task_alloc (10,101,010 samples, 0.06%)</title><rect x="61.7" y="709" width="0.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="64.66" y="719.5" ></text> +</g> +<g > +<title>d_lru_add (10,101,010 samples, 0.06%)</title><rect x="971.4" y="501" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="974.45" y="511.5" ></text> +</g> +<g > +<title>dnotify_flush (10,101,010 samples, 0.06%)</title><rect x="418.0" y="773" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="421.05" y="783.5" ></text> +</g> +<g > +<title>__lookup_slow (60,606,060 samples, 0.38%)</title><rect x="1077.4" y="645" width="5.3" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="1080.40" y="655.5" ></text> +</g> +<g > +<title>__d_move (10,101,010 samples, 0.06%)</title><rect x="1130.8" y="629" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="1133.81" y="639.5" ></text> +</g> +<g > +<title>release_sock (10,101,010 samples, 0.06%)</title><rect x="1332.2" y="741" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1335.21" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="328.7" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="331.73" y="783.5" ></text> +</g> +<g > +<title>memcg_account_kmem (10,101,010 samples, 0.06%)</title><rect x="68.7" y="677" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="71.67" y="687.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="404.9" y="661" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" /> +<text x="407.91" y="671.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (101,010,100 samples, 0.63%)</title><rect x="583.5" y="549" width="8.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="586.54" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1331.3" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1334.33" y="863.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="969.7" y="661" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="972.70" y="671.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1231.01" y="687.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="405" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="1348.34" y="415.5" ></text> +</g> +<g > +<title>vfs_mkdir (80,808,080 samples, 0.51%)</title><rect x="1266.5" y="773" width="7.0" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="1269.54" y="783.5" ></text> +</g> +<g > +<title>chmod (20,202,020 samples, 0.13%)</title><rect x="1011.7" y="789" width="1.8" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" /> +<text x="1014.73" y="799.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="661" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1380.74" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="922.4" y="693" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="925.41" y="703.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="816.5" y="549" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="819.46" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1243.27" y="751.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="670.2" y="437" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="673.23" y="447.5" ></text> +</g> +<g > +<title>ext4_link (10,101,010 samples, 0.06%)</title><rect x="721.9" y="645" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="724.89" y="655.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="74.8" y="789" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="77.80" y="799.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="585.3" y="485" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="588.29" y="495.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="805.1" y="501" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="808.08" y="511.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="629" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="1095.28" y="639.5" ></text> +</g> +<g > +<title>copy_thread (10,101,010 samples, 0.06%)</title><rect x="53.8" y="709" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="56.78" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="857.6" y="773" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="860.61" y="783.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="488.1" y="549" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" /> +<text x="491.10" y="559.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="96.7" y="869" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="99.69" y="879.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="546.8" y="533" width="0.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="549.76" y="543.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (20,202,020 samples, 0.13%)</title><rect x="665.9" y="421" width="1.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="668.85" y="431.5" ></text> +</g> +<g > +<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="628.2" y="661" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="631.20" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="870.7" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="873.75" y="655.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="503.0" y="549" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="505.98" y="559.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="908.4" y="645" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="911.40" y="655.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="179.9" y="437" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="182.87" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1248.52" y="815.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="355.0" y="517" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="358.00" y="527.5" ></text> +</g> +<g > +<title>vfs_rename (90,909,090 samples, 0.57%)</title><rect x="790.2" y="645" width="7.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="793.19" y="655.5" ></text> +</g> +<g > +<title>lh_table_new (20,202,020 samples, 0.13%)</title><rect x="18.8" y="901" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="21.76" y="911.5" ></text> +</g> +<g > +<title>shrink_dcache_parent (20,202,020 samples, 0.13%)</title><rect x="302.5" y="629" width="1.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="305.46" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.76%)</title><rect x="614.2" y="757" width="10.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="617.19" y="767.5" ></text> +</g> +<g > +<title>git_repository_init_ext (10,101,010 samples, 0.06%)</title><rect x="153.6" y="1029" width="0.9" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" /> +<text x="156.60" y="1039.5" ></text> +</g> +<g > +<title>bio_alloc_bioset (10,101,010 samples, 0.06%)</title><rect x="1103.7" y="421" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="1106.67" y="431.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (60,606,060 samples, 0.38%)</title><rect x="1044.1" y="677" width="5.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1047.12" y="687.5" ></text> +</g> +<g > +<title>git_config_open_default (90,909,090 samples, 0.57%)</title><rect x="1183.4" y="837" width="7.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="1186.35" y="847.5" ></text> +</g> +<g > +<title>alloc_file (20,202,020 samples, 0.13%)</title><rect x="67.8" y="741" width="1.7" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" /> +<text x="70.79" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="918.0" y="677" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="921.03" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="984.6" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="987.58" y="639.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="219.3" y="581" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" /> +<text x="222.28" y="591.5" ></text> +</g> +<g > +<title>filemap_alloc_folio (10,101,010 samples, 0.06%)</title><rect x="701.8" y="469" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="704.75" y="479.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="700.0" y="533" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="703.00" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="446.9" y="757" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="449.94" y="767.5" ></text> +</g> +<g > +<title>git_remote_create_with_opts (595,959,590 samples, 3.74%)</title><rect x="804.2" y="853" width="51.7" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="807.20" y="863.5" >git_r..</text> +</g> +<g > +<title>tcp_v4_do_rcv (60,606,060 samples, 0.38%)</title><rect x="1376.9" y="741" width="5.2" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1379.87" y="751.5" ></text> +</g> +<g > +<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="517.0" y="581" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="519.99" y="591.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="938.2" y="485" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="941.17" y="495.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="230.7" y="565" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="233.66" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="523.1" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="526.12" y="719.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="98.4" y="837" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="101.44" y="847.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (434,343,430 samples, 2.73%)</title><rect x="1143.9" y="757" width="37.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1146.95" y="767.5" >__x..</text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="855.9" y="789" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="858.86" y="799.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="354.1" y="581" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="357.12" y="591.5" ></text> +</g> +<g > +<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="989.8" y="693" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="992.84" y="703.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1083.5" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1086.53" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="783.2" y="677" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="786.19" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="755.2" y="709" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="758.16" y="719.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="383.9" y="517" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="386.90" y="527.5" ></text> +</g> +<g > +<title>__sbrk (10,101,010 samples, 0.06%)</title><rect x="429.4" y="837" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="432.43" y="847.5" ></text> +</g> +<g > +<title>mkdir (181,818,180 samples, 1.14%)</title><rect x="76.5" y="981" width="15.8" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" /> +<text x="79.55" y="991.5" ></text> +</g> +<g > +<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="271.8" y="517" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="274.81" y="527.5" ></text> +</g> +<g > +<title>crypto_shash_update (30,303,030 samples, 0.19%)</title><rect x="1178.1" y="661" width="2.6" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1181.10" y="671.5" ></text> +</g> +<g > +<title>do_writepages (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="549" width="7.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1135.56" y="559.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="421" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1221.38" y="431.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="401.4" y="805" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="404.41" y="815.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="993.3" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="996.34" y="799.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="1200.9" y="613" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1203.86" y="623.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="597" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1220.50" y="607.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_bh (10,101,010 samples, 0.06%)</title><rect x="1382.1" y="757" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="1385.12" y="767.5" ></text> +</g> +<g > +<title>d_splice_alias (10,101,010 samples, 0.06%)</title><rect x="718.4" y="533" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="721.39" y="543.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="501" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1345.72" y="511.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="507.4" y="613" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="510.36" y="623.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="777.1" y="613" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="780.06" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="918.0" y="661" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="921.03" y="671.5" ></text> +</g> +<g > +<title>ext4_free_inodes_count (10,101,010 samples, 0.06%)</title><rect x="1062.5" y="661" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="1065.51" y="671.5" ></text> +</g> +<g > +<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="1148.3" y="581" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1151.32" y="591.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="286.7" y="549" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="289.70" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (212,121,210 samples, 1.33%)</title><rect x="439.1" y="805" width="18.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="442.06" y="815.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="92.3" y="901" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="95.31" y="911.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="753.4" y="437" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="756.41" y="447.5" ></text> +</g> +<g > +<title>git_odb_read (80,808,080 samples, 0.51%)</title><rect x="520.5" y="821" width="7.0" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="523.49" y="831.5" ></text> +</g> +<g > +<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="413.7" y="661" width="0.8" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" /> +<text x="416.67" y="671.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="484.6" y="517" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="487.59" y="527.5" ></text> +</g> +<g > +<title>__slab_free (10,101,010 samples, 0.06%)</title><rect x="414.5" y="597" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="417.54" y="607.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (20,202,020 samples, 0.13%)</title><rect x="1069.5" y="613" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1072.52" y="623.5" ></text> +</g> +<g > +<title>__dentry_kill (50,505,050 samples, 0.32%)</title><rect x="461.8" y="693" width="4.4" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="464.83" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="495.1" y="741" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="498.10" y="751.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="1142.2" y="773" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="1145.20" y="783.5" ></text> +</g> +<g > +<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="53" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1375.49" y="63.5" ></text> +</g> +<g > +<title>ext4_discard_preallocations (10,101,010 samples, 0.06%)</title><rect x="814.7" y="581" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="817.71" y="591.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1047.6" y="629" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="1050.63" y="639.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="629" width="0.9" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="1026.98" y="639.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="373" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1348.34" y="383.5" ></text> +</g> +<g > +<title>from_kgid_munged (10,101,010 samples, 0.06%)</title><rect x="1188.6" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1191.60" y="655.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="318.2" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="321.22" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="767.4" y="709" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="770.42" y="719.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1058.1" y="677" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1061.13" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="757.8" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="760.79" y="719.5" ></text> +</g> +<g > +<title>ext4_free_inode (20,202,020 samples, 0.13%)</title><rect x="376.9" y="645" width="1.7" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="379.89" y="655.5" ></text> +</g> +<g > +<title>storvsc_queuecommand (10,101,010 samples, 0.06%)</title><rect x="930.3" y="341" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="933.29" y="351.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="405.8" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="408.79" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="876.0" y="709" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="879.00" y="719.5" ></text> +</g> +<g > +<title>tcp_in_window (10,101,010 samples, 0.06%)</title><rect x="1362.9" y="517" width="0.8" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="1365.86" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="471.5" y="789" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="474.46" y="799.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="405.8" y="613" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="408.79" y="623.5" ></text> +</g> +<g > +<title>free_slab (10,101,010 samples, 0.06%)</title><rect x="263.1" y="405" width="0.8" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" /> +<text x="266.06" y="415.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="523.1" y="597" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="526.12" y="607.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="870.7" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="873.75" y="607.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="524.9" y="613" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="527.87" y="623.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1143.9" y="661" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="1146.95" y="671.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (50,505,050 samples, 0.32%)</title><rect x="1100.2" y="485" width="4.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="1103.16" y="495.5" ></text> +</g> +<g > +<title>bdev_getblk (20,202,020 samples, 0.13%)</title><rect x="1159.7" y="629" width="1.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="1162.71" y="639.5" ></text> +</g> +<g > +<title>evict (40,404,040 samples, 0.25%)</title><rect x="322.6" y="645" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="325.60" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="969.7" y="693" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="972.70" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1106.3" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1109.29" y="719.5" ></text> +</g> +<g > +<title>d_alloc (40,404,040 samples, 0.25%)</title><rect x="1077.4" y="613" width="3.5" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1080.40" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="783.2" y="581" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="786.19" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (393,939,390 samples, 2.47%)</title><rect x="480.2" y="837" width="34.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="483.22" y="847.5" >[l..</text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="239.4" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="242.42" y="751.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="979.3" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="982.33" y="639.5" ></text> +</g> +<g > +<title>posix_acl_create (10,101,010 samples, 0.06%)</title><rect x="117.7" y="789" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="120.70" y="799.5" ></text> +</g> +<g > +<title>open_last_lookups (90,909,090 samples, 0.57%)</title><rect x="996.0" y="645" width="7.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="998.96" y="655.5" ></text> +</g> +<g > +<title>__ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="117" width="0.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1369.36" y="127.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="750.8" y="773" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="753.79" y="783.5" ></text> +</g> +<g > +<title>git_config_add_backend (60,606,060 samples, 0.38%)</title><rect x="903.1" y="725" width="5.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="906.15" y="735.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1032.24" y="543.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="653.6" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="656.59" y="639.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="368.1" y="677" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="371.13" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="804.2" y="757" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="807.20" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="418.0" y="837" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="421.05" y="847.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="726.3" y="597" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="729.27" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="74.8" y="917" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="77.80" y="927.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="777.9" y="613" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="780.93" y="623.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.13%)</title><rect x="967.9" y="709" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="970.94" y="719.5" ></text> +</g> +<g > +<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="957.4" y="485" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" /> +<text x="960.44" y="495.5" ></text> +</g> +<g > +<title>filename_lookup (60,606,060 samples, 0.38%)</title><rect x="714.9" y="613" width="5.2" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="717.89" y="623.5" ></text> +</g> +<g > +<title>destroy_inode (10,101,010 samples, 0.06%)</title><rect x="374.3" y="661" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="377.26" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="499.5" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="502.48" y="735.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1096.7" y="485" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1099.66" y="495.5" ></text> +</g> +<g > +<title>ext4_find_extent (10,101,010 samples, 0.06%)</title><rect x="1088.8" y="469" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="1091.78" y="479.5" ></text> +</g> +<g > +<title>__fstat64 (30,303,030 samples, 0.19%)</title><rect x="242.9" y="757" width="2.6" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="245.92" y="767.5" ></text> +</g> +<g > +<title>vfs_rename (40,404,040 samples, 0.25%)</title><rect x="846.2" y="677" width="3.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="849.23" y="687.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="990.7" y="773" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="993.71" y="783.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="606.3" y="597" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="609.31" y="607.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="693" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1114.55" y="703.5" ></text> +</g> +<g > +<title>tcp_v4_conn_request (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="325" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="1390.37" y="335.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="27.5" y="725" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="30.51" y="735.5" ></text> +</g> +<g > +<title>__close (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="757" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="1116.30" y="767.5" ></text> +</g> +<g > +<title>from_kprojid (10,101,010 samples, 0.06%)</title><rect x="382.1" y="517" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="385.14" y="527.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="741" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1198.61" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_close (20,202,020 samples, 0.13%)</title><rect x="1015.2" y="741" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1018.23" y="751.5" ></text> +</g> +<g > +<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="700.0" y="581" width="1.8" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="703.00" y="591.5" ></text> +</g> +<g > +<title>filename_lookup (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="677" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1202.11" y="687.5" ></text> +</g> +<g > +<title>process_measurement (10,101,010 samples, 0.06%)</title><rect x="554.6" y="565" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="557.64" y="575.5" ></text> +</g> +<g > +<title>kfree (10,101,010 samples, 0.06%)</title><rect x="450.4" y="533" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="453.44" y="543.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="853.2" y="549" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="856.24" y="559.5" ></text> +</g> +<g > +<title>ip_output (40,404,040 samples, 0.25%)</title><rect x="36.3" y="549" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="39.27" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1262.53" y="719.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (30,303,030 samples, 0.19%)</title><rect x="207.9" y="533" width="2.6" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="210.89" y="543.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="206.1" y="485" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="209.14" y="495.5" ></text> +</g> +<g > +<title>access (30,303,030 samples, 0.19%)</title><rect x="1260.4" y="741" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1263.41" y="751.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="789" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1329.95" y="799.5" ></text> +</g> +<g > +<title>mark_buffer_dirty (20,202,020 samples, 0.13%)</title><rect x="922.4" y="549" width="1.8" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="925.41" y="559.5" ></text> +</g> +<g > +<title>__handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="677" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="1114.55" y="687.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="449.6" y="693" width="1.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="452.57" y="703.5" ></text> +</g> +<g > +<title>git_config_free (10,101,010 samples, 0.06%)</title><rect x="755.2" y="741" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="758.16" y="751.5" ></text> +</g> +<g > +<title>ext4_writepages (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="517" width="5.2" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1102.29" y="527.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="1326.1" y="757" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1329.08" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1108.42" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="530.50" y="767.5" ></text> +</g> +<g > +<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="1068.6" y="629" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="1071.64" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="763.9" y="549" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="766.92" y="559.5" ></text> +</g> +<g > +<title>inode_init_always (30,303,030 samples, 0.19%)</title><rect x="121.2" y="773" width="2.6" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" /> +<text x="124.21" y="783.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="749.9" y="453" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="752.91" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1116.30" y="751.5" ></text> +</g> +<g > +<title>process_backlog (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="501" width="0.9" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" /> +<text x="1348.34" y="511.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="329.6" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="332.61" y="735.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1115.9" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1118.93" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="784.1" y="581" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="787.06" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="475.8" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="478.84" y="671.5" ></text> +</g> +<g > +<title>d_alloc (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="613" width="1.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1019.98" y="623.5" ></text> +</g> +<g > +<title>fdopendir (60,606,060 samples, 0.38%)</title><rect x="240.3" y="773" width="5.2" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" /> +<text x="243.29" y="783.5" ></text> +</g> +<g > +<title>generic_set_encrypted_ci_d_ops (10,101,010 samples, 0.06%)</title><rect x="1081.8" y="629" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="1084.78" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (929,292,920 samples, 5.84%)</title><rect x="991.6" y="821" width="80.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="994.59" y="831.5" >[libgit2...</text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="902.3" y="725" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="905.27" y="735.5" ></text> +</g> +<g > +<title>fscrypt_match_name (10,101,010 samples, 0.06%)</title><rect x="227.2" y="549" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="230.16" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="896.1" y="709" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="899.14" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="785.8" y="677" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="788.81" y="687.5" ></text> +</g> +<g > +<title>__jbd2_journal_file_buffer (10,101,010 samples, 0.06%)</title><rect x="957.4" y="469" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="960.44" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="966.2" y="645" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="969.19" y="655.5" ></text> +</g> +<g > +<title>log_entry_start (90,909,090 samples, 0.57%)</title><rect x="430.3" y="901" width="7.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" /> +<text x="433.30" y="911.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="733.3" y="549" width="0.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="736.27" y="559.5" ></text> +</g> +<g > +<title>__do_wait (10,101,010 samples, 0.06%)</title><rect x="1323.5" y="741" width="0.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="1326.45" y="751.5" ></text> +</g> +<g > +<title>__wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="533" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1014.73" y="543.5" ></text> +</g> +<g > +<title>__poll (60,606,060 samples, 0.38%)</title><rect x="24.0" y="933" width="5.3" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="27.01" y="943.5" ></text> +</g> +<g > +<title>do_brk_flags (10,101,010 samples, 0.06%)</title><rect x="241.2" y="581" width="0.8" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" /> +<text x="244.17" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="859.4" y="709" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="862.37" y="719.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="693" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1259.03" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="482.8" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="485.84" y="735.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="485.5" y="549" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="488.47" y="559.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="757" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1363.23" y="767.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="1116.8" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1119.80" y="639.5" ></text> +</g> +<g > +<title>fscrypt_match_name (10,101,010 samples, 0.06%)</title><rect x="485.5" y="501" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="488.47" y="511.5" ></text> +</g> +<g > +<title>mb_find_extent (10,101,010 samples, 0.06%)</title><rect x="89.7" y="709" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="92.68" y="719.5" ></text> +</g> +<g > +<title>apparmor_file_alloc_security (10,101,010 samples, 0.06%)</title><rect x="454.8" y="501" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="457.82" y="511.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="658.8" y="517" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="661.85" y="527.5" ></text> +</g> +<g > +<title>__sys_connect (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="853" width="4.4" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" /> +<text x="1344.84" y="863.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="757" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1258.15" y="767.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1115.9" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1118.93" y="607.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (90,909,090 samples, 0.57%)</title><rect x="955.7" y="565" width="7.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="958.69" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="451.3" y="757" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="454.32" y="767.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="773" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1329.95" y="783.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="258.7" y="709" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="261.68" y="719.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="533" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1113.67" y="543.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="337.5" y="629" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="340.49" y="639.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="657.1" y="517" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="660.09" y="527.5" ></text> +</g> +<g > +<title>git_index_set_caps (50,505,050 samples, 0.32%)</title><rect x="548.5" y="853" width="4.4" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="551.52" y="863.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="202.6" y="549" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="205.64" y="559.5" ></text> +</g> +<g > +<title>remove (90,909,090 samples, 0.57%)</title><rect x="410.2" y="837" width="7.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="413.16" y="847.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="429.4" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="432.43" y="783.5" ></text> +</g> +<g > +<title>do_wp_page (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="757" width="0.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="1322.07" y="767.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="553.8" y="597" width="0.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="556.77" y="607.5" ></text> +</g> +<g > +<title>all (15,919,191,760 samples, 100%)</title><rect x="10.0" y="1077" width="1380.0" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" /> +<text x="13.00" y="1087.5" ></text> +</g> +<g > +<title>security_file_free (10,101,010 samples, 0.06%)</title><rect x="327.9" y="693" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="330.86" y="703.5" ></text> +</g> +<g > +<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="464.5" y="565" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="467.45" y="575.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="966.2" y="549" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="969.19" y="559.5" ></text> +</g> +<g > +<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="402.3" y="725" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="405.28" y="735.5" ></text> +</g> +<g > +<title>cgroup_fork (10,101,010 samples, 0.06%)</title><rect x="49.4" y="725" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="52.40" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.82%)</title><rect x="460.1" y="789" width="11.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="463.08" y="799.5" ></text> +</g> +<g > +<title>path_lookupat (60,606,060 samples, 0.38%)</title><rect x="714.9" y="597" width="5.2" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="717.89" y="607.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="114.2" y="757" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="117.20" y="767.5" ></text> +</g> +<g > +<title>kfree (10,101,010 samples, 0.06%)</title><rect x="1128.2" y="533" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="1131.19" y="543.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="929.4" y="645" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="932.42" y="655.5" ></text> +</g> +<g > +<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="819.1" y="517" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="822.09" y="527.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1213.1" y="613" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1216.12" y="623.5" ></text> +</g> +<g > +<title>list_lru_del (10,101,010 samples, 0.06%)</title><rect x="786.7" y="581" width="0.9" height="15.0" fill="rgb(0,216,113)" rx="2" ry="2" /> +<text x="789.69" y="591.5" ></text> +</g> +<g > +<title>__sk_free (10,101,010 samples, 0.06%)</title><rect x="40.6" y="661" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="43.65" y="671.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="645" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1030.49" y="655.5" ></text> +</g> +<g > +<title>memcg_account_kmem (10,101,010 samples, 0.06%)</title><rect x="784.9" y="549" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="787.94" y="559.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="581" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="1221.38" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="360.3" y="549" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="363.25" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="418.0" y="805" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="421.05" y="815.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="482.8" y="645" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="485.84" y="655.5" ></text> +</g> +<g > +<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="267.4" y="533" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="270.44" y="543.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (40,404,040 samples, 0.25%)</title><rect x="805.1" y="629" width="3.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="808.08" y="639.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="278.8" y="485" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="281.82" y="495.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="437" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="1366.73" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (70,707,070 samples, 0.44%)</title><rect x="171.1" y="629" width="6.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="174.12" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="911.0" y="757" width="1.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="914.03" y="767.5" ></text> +</g> +<g > +<title>__release_sock (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="725" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="1371.98" y="735.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1086.2" y="773" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1089.15" y="783.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="677" width="2.7" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="1344.84" y="687.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="983.7" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="986.71" y="687.5" ></text> +</g> +<g > +<title>open64 (20,202,020 samples, 0.13%)</title><rect x="706.1" y="709" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="709.13" y="719.5" ></text> +</g> +<g > +<title>ext4_bread (101,010,100 samples, 0.63%)</title><rect x="82.7" y="821" width="8.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="85.68" y="831.5" ></text> +</g> +<g > +<title>__jbd2_journal_file_buffer (10,101,010 samples, 0.06%)</title><rect x="275.3" y="533" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="278.32" y="543.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="186.0" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="189.00" y="511.5" ></text> +</g> +<g > +<title>getenv (10,101,010 samples, 0.06%)</title><rect x="1355.9" y="805" width="0.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" /> +<text x="1358.85" y="815.5" ></text> +</g> +<g > +<title>os_xsave (10,101,010 samples, 0.06%)</title><rect x="932.0" y="357" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="935.04" y="367.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="500.4" y="661" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="503.36" y="671.5" ></text> +</g> +<g > +<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="1160.6" y="581" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="1163.58" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="182.5" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="185.50" y="719.5" ></text> +</g> +<g > +<title>ext4_getblk (70,707,070 samples, 0.44%)</title><rect x="957.4" y="517" width="6.2" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="960.44" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="800.7" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="803.70" y="671.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="974.9" y="693" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="977.95" y="703.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="834.0" y="613" width="0.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="836.97" y="623.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="272.7" y="565" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="275.69" y="575.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="131.7" y="773" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="134.71" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="985.5" y="661" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="988.46" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (212,121,210 samples, 1.33%)</title><rect x="45.0" y="805" width="18.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="48.03" y="815.5" ></text> +</g> +<g > +<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="730.6" y="501" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" /> +<text x="733.65" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="70.4" y="901" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="73.42" y="911.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="749.9" y="469" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="752.91" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="940.8" y="645" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="943.80" y="655.5" ></text> +</g> +<g > +<title>x64_sys_call (70,707,070 samples, 0.44%)</title><rect x="507.4" y="773" width="6.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="510.36" y="783.5" ></text> +</g> +<g > +<title>__close (10,101,010 samples, 0.06%)</title><rect x="1072.1" y="821" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="1075.14" y="831.5" ></text> +</g> +<g > +<title>ext4_inode_is_fast_symlink (10,101,010 samples, 0.06%)</title><rect x="288.5" y="581" width="0.8" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" /> +<text x="291.45" y="591.5" ></text> +</g> +<g > +<title>ext4_evict_inode (272,727,270 samples, 1.71%)</title><rect x="277.9" y="597" width="23.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="280.94" y="607.5" >e..</text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="364.6" y="645" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="367.63" y="655.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="709" width="1.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="1322.95" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (202,020,200 samples, 1.27%)</title><rect x="994.2" y="789" width="17.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="997.21" y="799.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="677" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1332.58" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="436.4" y="837" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="439.43" y="847.5" ></text> +</g> +<g > +<title>obj_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="68.7" y="693" width="0.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" /> +<text x="71.67" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="429.4" y="869" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="432.43" y="879.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="555.89" y="751.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="346.2" y="581" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="349.24" y="591.5" ></text> +</g> +<g > +<title>iterate_dir (20,202,020 samples, 0.13%)</title><rect x="884.8" y="613" width="1.7" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="887.76" y="623.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="629" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="1188.98" y="639.5" ></text> +</g> +<g > +<title>handle_mm_fault (30,303,030 samples, 0.19%)</title><rect x="1313.8" y="821" width="2.6" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1316.82" y="831.5" ></text> +</g> +<g > +<title>inet_accept (20,202,020 samples, 0.13%)</title><rect x="66.0" y="773" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="69.04" y="783.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="462.7" y="613" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="465.70" y="623.5" ></text> +</g> +<g > +<title>__filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="582.7" y="501" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="585.66" y="511.5" ></text> +</g> +<g > +<title>iput (40,404,040 samples, 0.25%)</title><rect x="462.7" y="661" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="465.70" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="546.8" y="677" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="549.76" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (151,515,150 samples, 0.95%)</title><rect x="874.3" y="773" width="13.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="877.25" y="783.5" ></text> +</g> +<g > +<title>iput (70,707,070 samples, 0.44%)</title><rect x="839.2" y="629" width="6.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="842.23" y="639.5" ></text> +</g> +<g > +<title>dput (70,707,070 samples, 0.44%)</title><rect x="839.2" y="677" width="6.2" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="842.23" y="687.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="784.1" y="629" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="787.06" y="639.5" ></text> +</g> +<g > +<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="74.8" y="821" width="1.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="77.80" y="831.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="312.1" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="315.09" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_brk (30,303,030 samples, 0.19%)</title><rect x="398.8" y="693" width="2.6" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="401.78" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="837" width="40.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1276.54" y="847.5" >do_..</text> +</g> +<g > +<title>__close (20,202,020 samples, 0.13%)</title><rect x="518.7" y="821" width="1.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="521.74" y="831.5" ></text> +</g> +<g > +<title>handle_softirqs (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="549" width="1.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1389.50" y="559.5" ></text> +</g> +<g > +<title>tcp_v4_send_synack (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="293" width="0.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="1390.37" y="303.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1006.85" y="591.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (20,202,020 samples, 0.13%)</title><rect x="12.6" y="325" width="1.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="15.63" y="335.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="412.8" y="629" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="415.79" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="544.1" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="547.14" y="799.5" ></text> +</g> +<g > +<title>make_vfsuid (10,101,010 samples, 0.06%)</title><rect x="403.2" y="709" width="0.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="406.16" y="719.5" ></text> +</g> +<g > +<title>call_rcu (10,101,010 samples, 0.06%)</title><rect x="1122.1" y="613" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1125.06" y="623.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="355.9" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="358.88" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="834.0" y="725" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="836.97" y="735.5" ></text> +</g> +<g > +<title>git_config_add_backend (80,808,080 samples, 0.51%)</title><rect x="1247.3" y="821" width="7.0" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1250.27" y="831.5" ></text> +</g> +<g > +<title>git_reference_create (464,646,460 samples, 2.92%)</title><rect x="438.2" y="885" width="40.3" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="441.19" y="895.5" >git..</text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="183.4" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="186.38" y="623.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (101,010,100 samples, 0.63%)</title><rect x="811.2" y="645" width="8.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="814.21" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="407.5" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="410.54" y="607.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="767.4" y="693" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="770.42" y="703.5" ></text> +</g> +<g > +<title>ext4_rename (60,606,060 samples, 0.38%)</title><rect x="929.4" y="661" width="5.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="932.42" y="671.5" ></text> +</g> +<g > +<title>unlock_buffer (20,202,020 samples, 0.13%)</title><rect x="130.0" y="725" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="132.96" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="555.89" y="767.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="974.9" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="977.95" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="858.5" y="773" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="861.49" y="783.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (60,606,060 samples, 0.38%)</title><rect x="1376.9" y="725" width="5.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1379.87" y="735.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1184.2" y="693" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1187.23" y="703.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="389" width="2.7" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="1136.44" y="399.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="450.4" y="549" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="453.44" y="559.5" ></text> +</g> +<g > +<title>mt_free_rcu (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="661" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1363.23" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="451.3" y="725" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="454.32" y="735.5" ></text> +</g> +<g > +<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="588.8" y="501" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="591.79" y="511.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="692.1" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="695.12" y="623.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="462.7" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="465.70" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="853" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1328.20" y="863.5" ></text> +</g> +<g > +<title>ext4_writepages (20,202,020 samples, 0.13%)</title><rect x="822.6" y="549" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="825.59" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="500.4" y="709" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="503.36" y="719.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="741" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1184.60" y="751.5" ></text> +</g> +<g > +<title>wait_for_child (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="885" width="1.7" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="1326.45" y="895.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="309" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1040.99" y="319.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="888.3" y="581" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="891.26" y="591.5" ></text> +</g> +<g > +<title>ext4_fname_free_filename (10,101,010 samples, 0.06%)</title><rect x="470.6" y="645" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" /> +<text x="473.58" y="655.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="287.6" y="549" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="290.58" y="559.5" ></text> +</g> +<g > +<title>do_faccessat (111,111,110 samples, 0.70%)</title><rect x="144.0" y="933" width="9.6" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="146.97" y="943.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="916.3" y="693" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="919.28" y="703.5" ></text> +</g> +<g > +<title>__rq_qos_issue (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="309" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="1037.49" y="319.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="879.5" y="629" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="882.51" y="639.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (40,404,040 samples, 0.25%)</title><rect x="1377.7" y="293" width="3.5" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="1380.74" y="303.5" ></text> +</g> +<g > +<title>ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1344.5" y="709" width="1.7" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1347.47" y="719.5" ></text> +</g> +<g > +<title>libgit_clone (8,121,212,040 samples, 51.02%)</title><rect x="559.9" y="901" width="704.0" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="562.90" y="911.5" >libgit_clone</text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="392.7" y="629" width="0.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" /> +<text x="395.65" y="639.5" ></text> +</g> +<g > +<title>lookup_one_qstr_excl (10,101,010 samples, 0.06%)</title><rect x="1098.4" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1101.41" y="655.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="693.0" y="693" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="695.99" y="703.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (30,303,030 samples, 0.19%)</title><rect x="111.6" y="741" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="114.57" y="751.5" ></text> +</g> +<g > +<title>git_refdb_backend_fs (40,404,040 samples, 0.25%)</title><rect x="888.3" y="757" width="3.5" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="891.26" y="767.5" ></text> +</g> +<g > +<title>ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="12.6" y="629" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="15.63" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="327.0" y="757" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="329.98" y="767.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="948.7" y="549" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="951.68" y="559.5" ></text> +</g> +<g > +<title>memcg_list_lru_alloc (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="533" width="0.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" /> +<text x="1202.99" y="543.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="378.6" y="597" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="381.64" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_poll (60,606,060 samples, 0.38%)</title><rect x="24.0" y="869" width="5.3" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="27.01" y="879.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="389" width="0.9" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1037.49" y="399.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="501.2" y="629" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="504.23" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.63%)</title><rect x="331.4" y="773" width="8.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="334.36" y="783.5" ></text> +</g> +<g > +<title>mnt_put_write_access (10,101,010 samples, 0.06%)</title><rect x="519.6" y="709" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="522.62" y="719.5" ></text> +</g> +<g > +<title>do_renameat2 (171,717,170 samples, 1.08%)</title><rect x="811.2" y="693" width="14.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="814.21" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="805.1" y="693" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="808.08" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="905.8" y="629" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="908.77" y="639.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (20,202,020 samples, 0.13%)</title><rect x="822.6" y="405" width="1.7" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="825.59" y="415.5" ></text> +</g> +<g > +<title>perf_iterate_sb.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="241.2" y="533" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="244.17" y="543.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="366.4" y="709" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="369.38" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="545.9" y="773" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="548.89" y="783.5" ></text> +</g> +<g > +<title>__sk_destruct (10,101,010 samples, 0.06%)</title><rect x="40.6" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="43.65" y="639.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (40,404,040 samples, 0.25%)</title><rect x="248.2" y="629" width="3.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="251.17" y="639.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="213" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1336.96" y="223.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="368.1" y="693" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="371.13" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="908.4" y="757" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="911.40" y="767.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="547.6" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="550.64" y="767.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="946.1" y="629" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="949.05" y="639.5" ></text> +</g> +<g > +<title>process_backlog (40,404,040 samples, 0.25%)</title><rect x="36.3" y="357" width="3.5" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" /> +<text x="39.27" y="367.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="650.1" y="757" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="653.09" y="767.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="693" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1232.76" y="703.5" ></text> +</g> +<g > +<title>signalfd_poll (10,101,010 samples, 0.06%)</title><rect x="28.4" y="821" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="31.39" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="505.6" y="709" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="508.61" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="707.9" y="661" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="710.88" y="671.5" ></text> +</g> +<g > +<title>net_rx_action (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="533" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1389.50" y="543.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="784.9" y="533" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="787.94" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (131,313,130 samples, 0.82%)</title><rect x="1221.0" y="773" width="11.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1224.00" y="783.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1097.5" y="533" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1100.54" y="543.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="709" width="0.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="1258.15" y="719.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="734.1" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="737.15" y="591.5" ></text> +</g> +<g > +<title>_IO_file_write (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="821" width="1.7" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" /> +<text x="1332.58" y="831.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.06%)</title><rect x="637.8" y="629" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="640.83" y="639.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="383.0" y="533" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="386.02" y="543.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="756.0" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="759.04" y="671.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="264.8" y="581" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="267.81" y="591.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="341" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1367.61" y="351.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="878.6" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="881.63" y="655.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="698.2" y="533" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="701.25" y="543.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="549" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1197.73" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="747.3" y="693" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="750.28" y="703.5" ></text> +</g> +<g > +<title>git_checkout_tree (858,585,850 samples, 5.39%)</title><rect x="478.5" y="901" width="74.4" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="481.46" y="911.5" >git_chec..</text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="635.2" y="549" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="638.20" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="680.7" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="683.74" y="799.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (30,303,030 samples, 0.19%)</title><rect x="11.8" y="741" width="2.6" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="14.75" y="751.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="1040.6" y="581" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" /> +<text x="1043.62" y="591.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="725" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1266.03" y="735.5" ></text> +</g> +<g > +<title>__find_get_block (20,202,020 samples, 0.13%)</title><rect x="1159.7" y="613" width="1.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="1162.71" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1226.63" y="687.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="569.5" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="572.53" y="607.5" ></text> +</g> +<g > +<title>cap_inode_need_killpriv (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="517" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="1026.98" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="216.6" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="219.65" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="749.0" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="752.04" y="687.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1048.5" y="645" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1051.50" y="655.5" ></text> +</g> +<g > +<title>walk_component (30,303,030 samples, 0.19%)</title><rect x="717.5" y="581" width="2.6" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="720.51" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="425.1" y="613" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="428.05" y="623.5" ></text> +</g> +<g > +<title>check_stack_object (10,101,010 samples, 0.06%)</title><rect x="940.8" y="501" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="943.80" y="511.5" ></text> +</g> +<g > +<title>__close (10,101,010 samples, 0.06%)</title><rect x="784.9" y="741" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="787.94" y="751.5" ></text> +</g> +<g > +<title>__sbrk (30,303,030 samples, 0.19%)</title><rect x="398.8" y="773" width="2.6" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="401.78" y="783.5" ></text> +</g> +<g > +<title>vfs_mkdir (161,616,160 samples, 1.02%)</title><rect x="78.3" y="885" width="14.0" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="81.30" y="895.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="1229.8" y="613" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1232.76" y="623.5" ></text> +</g> +<g > +<title>git_repository_index (50,505,050 samples, 0.32%)</title><rect x="548.5" y="885" width="4.4" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="551.52" y="895.5" ></text> +</g> +<g > +<title>ext4_unlink (30,303,030 samples, 0.19%)</title><rect x="174.6" y="549" width="2.6" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="177.62" y="559.5" ></text> +</g> +<g > +<title>blk_mq_submit_bio (10,101,010 samples, 0.06%)</title><rect x="792.8" y="405" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="795.82" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (191,919,190 samples, 1.21%)</title><rect x="768.3" y="741" width="16.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="771.30" y="751.5" ></text> +</g> +<g > +<title>brk (10,101,010 samples, 0.06%)</title><rect x="239.4" y="693" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" /> +<text x="242.42" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="713.1" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="716.13" y="687.5" ></text> +</g> +<g > +<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="505.6" y="677" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="508.61" y="687.5" ></text> +</g> +<g > +<title>git_config_snapshot (40,404,040 samples, 0.25%)</title><rect x="981.1" y="757" width="3.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="984.08" y="767.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="518.7" y="773" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="521.74" y="783.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="357.6" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="360.63" y="543.5" ></text> +</g> +<g > +<title>__submit_bio (10,101,010 samples, 0.06%)</title><rect x="466.2" y="485" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="469.21" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="650.1" y="693" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="653.09" y="703.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.06%)</title><rect x="767.4" y="773" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="770.42" y="783.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="711.4" y="597" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="714.38" y="607.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.06%)</title><rect x="192.1" y="645" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="195.13" y="655.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="35.4" y="421" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="38.39" y="431.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1249.9" y="725" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1252.90" y="735.5" ></text> +</g> +<g > +<title>ext4_generic_delete_entry (10,101,010 samples, 0.06%)</title><rect x="404.0" y="661" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="407.04" y="671.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="747.3" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="750.28" y="607.5" ></text> +</g> +<g > +<title>__ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="661" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1348.34" y="671.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="900.5" y="613" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="903.52" y="623.5" ></text> +</g> +<g > +<title>folio_alloc (10,101,010 samples, 0.06%)</title><rect x="732.4" y="517" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="735.40" y="527.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="946.1" y="597" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="949.05" y="607.5" ></text> +</g> +<g > +<title>evict (90,909,090 samples, 0.57%)</title><rect x="1122.9" y="597" width="7.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1125.93" y="607.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="714.9" y="501" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" /> +<text x="717.89" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="548.5" y="693" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="551.52" y="703.5" ></text> +</g> +<g > +<title>git_config_add_backend (60,606,060 samples, 0.38%)</title><rect x="1214.9" y="741" width="5.2" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1217.87" y="751.5" ></text> +</g> +<g > +<title>ext4_dx_find_entry (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="709" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="1267.78" y="719.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1259.03" y="687.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="425.9" y="533" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="428.93" y="543.5" ></text> +</g> +<g > +<title>git_branch_is_checked_out (202,020,200 samples, 1.27%)</title><rect x="750.8" y="821" width="17.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="753.79" y="831.5" ></text> +</g> +<g > +<title>do_syscall_64 (131,313,130 samples, 0.82%)</title><rect x="460.1" y="773" width="11.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="463.08" y="783.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="920.7" y="581" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="923.66" y="591.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="549" width="5.2" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1102.29" y="559.5" ></text> +</g> +<g > +<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="932.0" y="437" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="935.04" y="447.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="474.1" y="645" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="477.09" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="751.7" y="629" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="754.66" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (121,212,120 samples, 0.76%)</title><rect x="614.2" y="709" width="10.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="617.19" y="719.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="654.5" y="469" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="657.47" y="479.5" ></text> +</g> +<g > +<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="397.0" y="581" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="400.03" y="591.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="440.8" y="517" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="443.81" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="850.6" y="805" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="853.61" y="815.5" ></text> +</g> +<g > +<title>x64_sys_call (171,717,170 samples, 1.08%)</title><rect x="196.5" y="661" width="14.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="199.51" y="671.5" ></text> +</g> +<g > +<title>ext4_bread (20,202,020 samples, 0.13%)</title><rect x="270.9" y="581" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="273.94" y="591.5" ></text> +</g> +<g > +<title>__es_find_extent_range (10,101,010 samples, 0.06%)</title><rect x="1047.6" y="597" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="1050.63" y="607.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="857.6" y="805" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="860.61" y="815.5" ></text> +</g> +<g > +<title>ip_local_out (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="629" width="6.1" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1364.98" y="639.5" ></text> +</g> +<g > +<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="535.4" y="597" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="538.38" y="607.5" ></text> +</g> +<g > +<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="549" width="0.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1222.25" y="559.5" ></text> +</g> +<g > +<title>git_repository_config_snapshot (80,808,080 samples, 0.51%)</title><rect x="760.4" y="757" width="7.0" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="763.42" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="768.3" y="725" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="771.30" y="735.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="835.7" y="629" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="838.72" y="639.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1182.5" y="693" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1185.47" y="703.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1014.73" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="894.4" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="897.39" y="735.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="705.3" y="549" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="708.25" y="559.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (50,505,050 samples, 0.32%)</title><rect x="110.7" y="789" width="4.4" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="113.70" y="799.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="1088.8" y="549" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="1091.78" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="1221.0" y="757" width="8.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1224.00" y="767.5" ></text> +</g> +<g > +<title>iput (50,505,050 samples, 0.32%)</title><rect x="177.2" y="565" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="180.25" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="330.5" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="333.48" y="783.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="840.1" y="581" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="843.10" y="591.5" ></text> +</g> +<g > +<title>do_writepages (60,606,060 samples, 0.38%)</title><rect x="791.9" y="533" width="5.3" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="794.94" y="543.5" ></text> +</g> +<g > +<title>wake_up_bit (10,101,010 samples, 0.06%)</title><rect x="230.7" y="517" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="233.66" y="527.5" ></text> +</g> +<g > +<title>walk_component (70,707,070 samples, 0.44%)</title><rect x="1077.4" y="661" width="6.1" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="1080.40" y="671.5" ></text> +</g> +<g > +<title>xas_load (20,202,020 samples, 0.13%)</title><rect x="333.1" y="501" width="1.8" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" /> +<text x="336.11" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="783.2" y="645" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="786.19" y="655.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="205.3" y="549" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="208.27" y="559.5" ></text> +</g> +<g > +<title>xattr_resolve_name (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="501" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="1026.98" y="511.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (30,303,030 samples, 0.19%)</title><rect x="1328.7" y="837" width="2.6" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="1331.71" y="847.5" ></text> +</g> +<g > +<title>mas_wr_store_entry.isra.0 (30,303,030 samples, 0.19%)</title><rect x="1303.3" y="693" width="2.6" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1306.31" y="703.5" ></text> +</g> +<g > +<title>ext4_do_writepages (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="517" width="7.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="1135.56" y="527.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="810.3" y="773" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="813.33" y="783.5" ></text> +</g> +<g > +<title>inet_release (90,909,090 samples, 0.57%)</title><rect x="1369.0" y="773" width="7.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1371.98" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="546.8" y="821" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="549.76" y="831.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="853.2" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="856.24" y="703.5" ></text> +</g> +<g > +<title>tlb_remove_table_rcu (10,101,010 samples, 0.06%)</title><rect x="35.4" y="357" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="38.39" y="367.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="492.5" y="581" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="495.47" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="485.5" y="693" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="488.47" y="703.5" ></text> +</g> +<g > +<title>inode_init_always (10,101,010 samples, 0.06%)</title><rect x="953.9" y="517" width="0.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" /> +<text x="956.93" y="527.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="328.7" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="331.73" y="687.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="664.1" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="667.10" y="623.5" ></text> +</g> +<g > +<title>fstatat64 (40,404,040 samples, 0.25%)</title><rect x="862.9" y="725" width="3.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="865.87" y="735.5" ></text> +</g> +<g > +<title>[libc.so.6] (2,646,464,620 samples, 16.62%)</title><rect x="169.4" y="837" width="229.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="172.37" y="847.5" >[libc.so.6]</text> +</g> +<g > +<title>__close (111,111,110 samples, 0.70%)</title><rect x="32.8" y="869" width="9.6" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="35.77" y="879.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1197.73" y="591.5" ></text> +</g> +<g > +<title>path_lookupat (30,303,030 samples, 0.19%)</title><rect x="969.7" y="581" width="2.6" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="972.70" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="544.1" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="547.14" y="815.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1031.9" y="597" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1034.87" y="607.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="506.5" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="509.48" y="655.5" ></text> +</g> +<g > +<title>mpage_process_page_bufs (10,101,010 samples, 0.06%)</title><rect x="796.3" y="469" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="799.32" y="479.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="597" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="1226.63" y="607.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="656.2" y="565" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="659.22" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="857.6" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="860.61" y="799.5" ></text> +</g> +<g > +<title>mpage_prepare_extent_to_map (10,101,010 samples, 0.06%)</title><rect x="1039.7" y="485" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1042.75" y="495.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="613" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1231.88" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="661" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1208.24" y="671.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="200.9" y="517" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="203.89" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="643.1" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="646.08" y="735.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="562.5" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="565.53" y="751.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1185.1" y="773" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1188.10" y="783.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="180.7" y="309" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="183.75" y="319.5" ></text> +</g> +<g > +<title>mnt_get_write_access (10,101,010 samples, 0.06%)</title><rect x="512.6" y="661" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="515.61" y="671.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1098.79" y="703.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="841.9" y="517" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="844.85" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="904.9" y="581" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="907.90" y="591.5" ></text> +</g> +<g > +<title>ip_rcv (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="373" width="5.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1372.86" y="383.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="853.2" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="856.24" y="735.5" ></text> +</g> +<g > +<title>write (40,404,040 samples, 0.25%)</title><rect x="515.2" y="789" width="3.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="518.24" y="799.5" ></text> +</g> +<g > +<title>__x64_sys_openat (70,707,070 samples, 0.44%)</title><rect x="507.4" y="757" width="6.1" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="510.36" y="767.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="186.0" y="469" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="189.00" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="850.6" y="709" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="853.61" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="809.5" y="757" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="812.45" y="767.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="277" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="1140.82" y="287.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="487.2" y="565" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="490.22" y="575.5" ></text> +</g> +<g > +<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="108.1" y="773" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="111.07" y="783.5" ></text> +</g> +<g > +<title>submit_bio_noacct (40,404,040 samples, 0.25%)</title><rect x="1136.9" y="469" width="3.5" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" /> +<text x="1139.94" y="479.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="728.0" y="613" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="731.02" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (80,808,080 samples, 0.51%)</title><rect x="170.2" y="709" width="7.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="173.24" y="719.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="834.0" y="597" width="0.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="836.97" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="765.7" y="629" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="768.67" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (121,212,120 samples, 0.76%)</title><rect x="629.9" y="693" width="10.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="632.95" y="703.5" ></text> +</g> +<g > +<title>mod_objcg_state (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="613" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="1116.30" y="623.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="664.1" y="565" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="667.10" y="575.5" ></text> +</g> +<g > +<title>dup_user_cpus_ptr (10,101,010 samples, 0.06%)</title><rect x="58.2" y="693" width="0.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="61.16" y="703.5" ></text> +</g> +<g > +<title>open64 (20,202,020 samples, 0.13%)</title><rect x="749.0" y="709" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="752.04" y="719.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="533" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1209.99" y="543.5" ></text> +</g> +<g > +<title>file_update_time (10,101,010 samples, 0.06%)</title><rect x="435.6" y="661" width="0.8" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" /> +<text x="438.56" y="671.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="710.5" y="677" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="713.51" y="687.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="985.5" y="597" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="988.46" y="607.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="749.9" y="437" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="752.91" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="500.4" y="757" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="503.36" y="767.5" ></text> +</g> +<g > +<title>__fput (90,909,090 samples, 0.57%)</title><rect x="1369.0" y="821" width="7.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="1371.98" y="831.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="463.6" y="453" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="466.58" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_write (40,404,040 samples, 0.25%)</title><rect x="805.1" y="677" width="3.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="808.08" y="687.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="797.2" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="800.20" y="559.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="580.0" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="583.04" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="706.1" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="709.13" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="860.2" y="805" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="863.24" y="815.5" ></text> +</g> +<g > +<title>getname (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="645" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="1231.88" y="655.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="440.8" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="443.81" y="671.5" ></text> +</g> +<g > +<title>mas_copy_node.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1277.0" y="693" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="1280.04" y="703.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (80,808,080 samples, 0.51%)</title><rect x="431.2" y="885" width="7.0" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="434.18" y="895.5" ></text> +</g> +<g > +<title>filemap_alloc_folio (10,101,010 samples, 0.06%)</title><rect x="707.9" y="517" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="710.88" y="527.5" ></text> +</g> +<g > +<title>cap_capable (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="581" width="0.8" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" /> +<text x="1258.15" y="591.5" ></text> +</g> +<g > +<title>server_assign_run (131,313,130 samples, 0.82%)</title><rect x="10.9" y="997" width="11.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="13.88" y="1007.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="756.9" y="565" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="759.92" y="575.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="777.9" y="565" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="780.93" y="575.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="645.7" y="645" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="648.71" y="655.5" ></text> +</g> +<g > +<title>__napi_poll (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="437" width="5.2" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1372.86" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="903.1" y="693" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="906.15" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1236.8" y="725" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1239.76" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="767.4" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="770.42" y="751.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="982.8" y="677" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="985.83" y="687.5" ></text> +</g> +<g > +<title>__schedule (30,303,030 samples, 0.19%)</title><rect x="25.8" y="773" width="2.6" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="28.76" y="783.5" ></text> +</g> +<g > +<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="1108.0" y="677" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1111.05" y="687.5" ></text> +</g> +<g > +<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="741.2" y="485" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="744.15" y="495.5" ></text> +</g> +<g > +<title>create_pipe_files (10,101,010 samples, 0.06%)</title><rect x="1322.6" y="789" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" /> +<text x="1325.58" y="799.5" ></text> +</g> +<g > +<title>remove (60,606,060 samples, 0.38%)</title><rect x="321.7" y="773" width="5.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="324.73" y="783.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="594.9" y="741" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="597.92" y="751.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="922.4" y="533" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="925.41" y="543.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="635.2" y="565" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="638.20" y="575.5" ></text> +</g> +<g > +<title>tcp_server_accept (292,929,290 samples, 1.84%)</title><rect x="44.1" y="917" width="25.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="47.15" y="927.5" >t..</text> +</g> +<g > +<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="1200.9" y="565" width="0.8" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="1203.86" y="575.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="517" width="1.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="1345.72" y="527.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="84.4" y="693" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="87.43" y="703.5" ></text> +</g> +<g > +<title>inet6_release (90,909,090 samples, 0.57%)</title><rect x="34.5" y="725" width="7.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" /> +<text x="37.52" y="735.5" ></text> +</g> +<g > +<title>fault_in_readable (10,101,010 samples, 0.06%)</title><rect x="1071.3" y="629" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="1074.27" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="243.8" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="246.79" y="735.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (50,505,050 samples, 0.32%)</title><rect x="770.9" y="549" width="4.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" /> +<text x="773.93" y="559.5" ></text> +</g> +<g > +<title>git_config_add_backend (10,101,010 samples, 0.06%)</title><rect x="759.5" y="741" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="762.54" y="751.5" ></text> +</g> +<g > +<title>__fstat64 (10,101,010 samples, 0.06%)</title><rect x="610.7" y="773" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="613.69" y="783.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="1270.9" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1273.91" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="642.2" y="757" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="645.21" y="767.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="92.3" y="917" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="95.31" y="927.5" ></text> +</g> +<g > +<title>git_worktree_list (10,101,010 samples, 0.06%)</title><rect x="767.4" y="789" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="770.42" y="799.5" ></text> +</g> +<g > +<title>write (40,404,040 samples, 0.25%)</title><rect x="1108.0" y="725" width="3.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1111.05" y="735.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="235.0" y="453" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="238.04" y="463.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="709" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="1363.23" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="936.4" y="597" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="939.42" y="607.5" ></text> +</g> +<g > +<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="1036.2" y="405" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" /> +<text x="1039.24" y="415.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="484.6" y="597" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="487.59" y="607.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="108.1" y="677" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="111.07" y="687.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="857.6" y="661" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="860.61" y="671.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="429.4" y="885" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="432.43" y="895.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="902.3" y="597" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="905.27" y="607.5" ></text> +</g> +<g > +<title>ext4_fname_setup_ci_filename (10,101,010 samples, 0.06%)</title><rect x="1271.8" y="725" width="0.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" /> +<text x="1274.79" y="735.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="1014.73" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="869" width="8.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1371.11" y="879.5" ></text> +</g> +<g > +<title>truncate_cleanup_folio (10,101,010 samples, 0.06%)</title><rect x="661.5" y="517" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="664.47" y="527.5" ></text> +</g> +<g > +<title>xas_find_marked (10,101,010 samples, 0.06%)</title><rect x="672.9" y="469" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="675.86" y="479.5" ></text> +</g> +<g > +<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="123.8" y="805" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="126.83" y="815.5" ></text> +</g> +<g > +<title>__d_alloc (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="597" width="1.7" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" /> +<text x="1019.98" y="607.5" ></text> +</g> +<g > +<title>ip_finish_output2 (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="101" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1369.36" y="111.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="1211.4" y="773" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1214.37" y="783.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="908.4" y="805" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="911.40" y="815.5" ></text> +</g> +<g > +<title>ext4_es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="323.5" y="581" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" /> +<text x="326.48" y="591.5" ></text> +</g> +<g > +<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="629" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="1241.52" y="639.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (30,303,030 samples, 0.19%)</title><rect x="207.9" y="501" width="2.6" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="210.89" y="511.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="64.3" y="837" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="67.29" y="847.5" ></text> +</g> +<g > +<title>git_reference_create (505,050,500 samples, 3.17%)</title><rect x="686.0" y="837" width="43.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="688.99" y="847.5" >git_..</text> +</g> +<g > +<title>git_config_snapshot (80,808,080 samples, 0.51%)</title><rect x="1247.3" y="837" width="7.0" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="1250.27" y="847.5" ></text> +</g> +<g > +<title>remove (303,030,300 samples, 1.90%)</title><rect x="340.1" y="789" width="26.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="343.11" y="799.5" >r..</text> +</g> +<g > +<title>git_refdb_backend_fs (30,303,030 samples, 0.19%)</title><rect x="752.5" y="725" width="2.7" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="755.54" y="735.5" ></text> +</g> +<g > +<title>iterate_dir (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="661" width="2.6" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="1232.76" y="671.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="791.9" y="469" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="794.94" y="479.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="549" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="1196.86" y="559.5" ></text> +</g> +<g > +<title>blk_finish_plug (20,202,020 samples, 0.13%)</title><rect x="665.9" y="501" width="1.7" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="668.85" y="511.5" ></text> +</g> +<g > +<title>__fsnotify_parent (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="469" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1221.38" y="479.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="523.1" y="629" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="526.12" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="484.6" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="487.59" y="735.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="488.1" y="533" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="491.10" y="543.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1190.73" y="703.5" ></text> +</g> +<g > +<title>ext4_evict_inode (30,303,030 samples, 0.19%)</title><rect x="925.9" y="613" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="928.91" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.95%)</title><rect x="1028.4" y="725" width="13.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1031.36" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="732.4" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="735.40" y="719.5" ></text> +</g> +<g > +<title>ext4_free_inodes_count (10,101,010 samples, 0.06%)</title><rect x="1268.3" y="725" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="1271.29" y="735.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="880.4" y="517" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="883.38" y="527.5" ></text> +</g> +<g > +<title>ext4_mb_mark_context (20,202,020 samples, 0.13%)</title><rect x="586.2" y="501" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="589.17" y="511.5" ></text> +</g> +<g > +<title>vfs_statx (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="709" width="8.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1077.77" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1083.5" y="741" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1086.53" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="211.4" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="214.40" y="687.5" ></text> +</g> +<g > +<title>security_inode_permission (10,101,010 samples, 0.06%)</title><rect x="365.5" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="368.51" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="508.2" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="511.24" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="326.1" y="597" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="329.10" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="330.5" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="333.48" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="773" width="1.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="1184.60" y="783.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="989.0" y="533" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="991.96" y="543.5" ></text> +</g> +<g > +<title>gettid (10,101,010 samples, 0.06%)</title><rect x="1327.8" y="885" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="1330.83" y="895.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="869" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="555.89" y="879.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.06%)</title><rect x="960.9" y="421" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="963.94" y="431.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.06%)</title><rect x="834.0" y="661" width="0.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="836.97" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="475.8" y="645" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="478.84" y="655.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="582.7" y="565" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="585.66" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="181.6" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="184.62" y="703.5" ></text> +</g> +<g > +<title>ext4_io_submit (10,101,010 samples, 0.06%)</title><rect x="466.2" y="549" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" /> +<text x="469.21" y="559.5" ></text> +</g> +<g > +<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="725.4" y="517" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="728.39" y="527.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="152.7" y="837" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="155.73" y="847.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="535.4" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="538.38" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1195.11" y="735.5" ></text> +</g> +<g > +<title>mb_find_order_for_block (10,101,010 samples, 0.06%)</title><rect x="590.5" y="469" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="593.55" y="479.5" ></text> +</g> +<g > +<title>git_config_snapshot (111,111,110 samples, 0.70%)</title><rect x="1201.7" y="805" width="9.7" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="1204.74" y="815.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="888.3" y="565" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="891.26" y="575.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="922.4" y="661" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="925.41" y="671.5" ></text> +</g> +<g > +<title>do_faccessat (40,404,040 samples, 0.25%)</title><rect x="536.3" y="661" width="3.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="539.26" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="780.6" y="709" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="783.56" y="719.5" ></text> +</g> +<g > +<title>schedule (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="741" width="1.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="1322.95" y="751.5" ></text> +</g> +<g > +<title>ext4_orphan_del (20,202,020 samples, 0.13%)</title><rect x="378.6" y="645" width="1.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="381.64" y="655.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="733.3" y="501" width="0.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="736.27" y="511.5" ></text> +</g> +<g > +<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="735.9" y="677" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="738.90" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="725" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1259.03" y="735.5" ></text> +</g> +<g > +<title>jsonrpc_request_create_internal (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="917" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="1350.97" y="927.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="453.9" y="725" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="456.95" y="735.5" ></text> +</g> +<g > +<title>jsonrpc_request_create_internal (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="917" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="1392.12" y="927.5" ></text> +</g> +<g > +<title>git_repository__cleanup (121,212,120 samples, 0.76%)</title><rect x="158.9" y="885" width="10.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="161.86" y="895.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1234.1" y="773" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1237.14" y="783.5" ></text> +</g> +<g > +<title>ext4_rename2 (90,909,090 samples, 0.57%)</title><rect x="790.2" y="629" width="7.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="793.19" y="639.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.06%)</title><rect x="365.5" y="773" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="368.51" y="783.5" ></text> +</g> +<g > +<title>down_write (10,101,010 samples, 0.06%)</title><rect x="599.3" y="661" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" /> +<text x="602.30" y="671.5" ></text> +</g> +<g > +<title>fsnotify (10,101,010 samples, 0.06%)</title><rect x="593.2" y="645" width="0.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="596.17" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="951.3" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="954.31" y="543.5" ></text> +</g> +<g > +<title>nd_jump_root (10,101,010 samples, 0.06%)</title><rect x="1197.4" y="613" width="0.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="1200.36" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="23.1" y="901" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="26.13" y="911.5" ></text> +</g> +<g > +<title>walk_component (60,606,060 samples, 0.38%)</title><rect x="146.6" y="869" width="5.3" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="149.60" y="879.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="249.9" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="252.92" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (171,717,170 samples, 1.08%)</title><rect x="811.2" y="741" width="14.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="814.21" y="751.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.25%)</title><rect x="279.7" y="581" width="3.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="282.70" y="591.5" ></text> +</g> +<g > +<title>lookup_dcache (10,101,010 samples, 0.06%)</title><rect x="1098.4" y="629" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="1101.41" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="846.2" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="849.23" y="623.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="907.5" y="581" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="910.53" y="591.5" ></text> +</g> +<g > +<title>realpath (60,606,060 samples, 0.38%)</title><rect x="489.8" y="773" width="5.3" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" /> +<text x="492.85" y="783.5" ></text> +</g> +<g > +<title>ext4_map_blocks (30,303,030 samples, 0.19%)</title><rect x="702.6" y="517" width="2.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="705.63" y="527.5" ></text> +</g> +<g > +<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="757" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1071.64" y="767.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1209.99" y="591.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="677" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1200.36" y="687.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (30,303,030 samples, 0.19%)</title><rect x="1108.9" y="597" width="2.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="1111.92" y="607.5" ></text> +</g> +<g > +<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="756.0" y="597" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="759.04" y="607.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="851.5" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="854.48" y="607.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="805" width="1.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1186.35" y="815.5" ></text> +</g> +<g > +<title>fstatat64 (50,505,050 samples, 0.32%)</title><rect x="216.6" y="757" width="4.4" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="219.65" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="867.2" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="870.25" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="730.6" y="773" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="733.65" y="783.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1115.9" y="581" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="1118.93" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="692.1" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="695.12" y="639.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="423.3" y="693" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="426.30" y="703.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (30,303,030 samples, 0.19%)</title><rect x="207.9" y="517" width="2.6" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="210.89" y="527.5" ></text> +</g> +<g > +<title>__close (10,101,010 samples, 0.06%)</title><rect x="1025.7" y="741" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="1028.74" y="751.5" ></text> +</g> +<g > +<title>folio_unlock (10,101,010 samples, 0.06%)</title><rect x="965.3" y="533" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="968.32" y="543.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list.part.0 (20,202,020 samples, 0.13%)</title><rect x="665.9" y="453" width="1.7" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" /> +<text x="668.85" y="463.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="132.6" y="709" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="135.59" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (111,111,110 samples, 0.70%)</title><rect x="996.0" y="725" width="9.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="998.96" y="735.5" ></text> +</g> +<g > +<title>connect (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="933" width="4.4" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" /> +<text x="1344.84" y="943.5" ></text> +</g> +<g > +<title>__x64_sys_readlink (40,404,040 samples, 0.25%)</title><rect x="491.6" y="693" width="3.5" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" /> +<text x="494.60" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="755.2" y="693" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="758.16" y="703.5" ></text> +</g> +<g > +<title>do_softirq (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="485" width="1.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="1345.72" y="495.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="677" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1022.61" y="687.5" ></text> +</g> +<g > +<title>unlink_cb (626,262,620 samples, 3.93%)</title><rect x="256.9" y="773" width="54.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="259.93" y="783.5" >unlin..</text> +</g> +<g > +<title>__do_softirq (20,202,020 samples, 0.13%)</title><rect x="12.6" y="517" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="15.63" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1108.42" y="655.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="517" width="0.8" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" /> +<text x="1347.47" y="527.5" ></text> +</g> +<g > +<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="677.2" y="565" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="680.23" y="575.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="545.9" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="548.89" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_sendto (40,404,040 samples, 0.25%)</title><rect x="11.8" y="837" width="3.5" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="14.75" y="847.5" ></text> +</g> +<g > +<title>server_listen_thread (565,656,560 samples, 3.55%)</title><rect x="24.0" y="965" width="49.0" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" /> +<text x="27.01" y="975.5" >serv..</text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="362.0" y="485" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="365.01" y="495.5" ></text> +</g> +<g > +<title>git_transport_new (20,202,020 samples, 0.13%)</title><rect x="911.0" y="837" width="1.8" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="914.03" y="847.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="544.1" y="757" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="547.14" y="767.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="412.8" y="645" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="415.79" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="921.5" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="924.54" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="876.9" y="645" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="879.88" y="655.5" ></text> +</g> +<g > +<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="545.9" y="725" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="548.89" y="735.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="146.6" y="837" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="149.60" y="847.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="802.4" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="805.45" y="703.5" ></text> +</g> +<g > +<title>vfs_fstatat (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="725" width="8.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1077.77" y="735.5" ></text> +</g> +<g > +<title>__do_sys_brk (20,202,020 samples, 0.13%)</title><rect x="241.2" y="597" width="1.7" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="244.17" y="607.5" ></text> +</g> +<g > +<title>ext4_truncate (40,404,040 samples, 0.25%)</title><rect x="1125.6" y="565" width="3.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="1128.56" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="677" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="1030.49" y="687.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="749.9" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="752.91" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (141,414,140 samples, 0.89%)</title><rect x="837.5" y="741" width="12.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="840.47" y="751.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="782.3" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="785.31" y="623.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="985.5" y="645" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="988.46" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="74.8" y="949" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="77.80" y="959.5" ></text> +</g> +<g > +<title>mem_cgroup_commit_charge (10,101,010 samples, 0.06%)</title><rect x="582.7" y="469" width="0.8" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" /> +<text x="585.66" y="479.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="373" width="2.7" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1136.44" y="383.5" ></text> +</g> +<g > +<title>cpuset_fork (10,101,010 samples, 0.06%)</title><rect x="51.2" y="693" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="54.15" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="763.9" y="565" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="766.92" y="575.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (10,101,010 samples, 0.06%)</title><rect x="1342.7" y="293" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="1345.72" y="303.5" ></text> +</g> +<g > +<title>crc_pcl (40,404,040 samples, 0.25%)</title><rect x="136.1" y="741" width="3.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="139.09" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="1006.5" y="741" width="5.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1009.47" y="751.5" ></text> +</g> +<g > +<title>sock_alloc_file (20,202,020 samples, 0.13%)</title><rect x="67.8" y="773" width="1.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="70.79" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="915.4" y="789" width="8.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="918.41" y="799.5" ></text> +</g> +<g > +<title>__ip_finish_output (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="581" width="5.2" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1372.86" y="591.5" ></text> +</g> +<g > +<title>__ip_finish_output (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="581" width="2.6" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1336.08" y="591.5" ></text> +</g> +<g > +<title>evict (101,010,100 samples, 0.63%)</title><rect x="201.8" y="581" width="8.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="204.76" y="591.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (70,707,070 samples, 0.44%)</title><rect x="714.0" y="661" width="6.1" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="717.01" y="671.5" ></text> +</g> +<g > +<title>log_entry_start (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="933" width="1.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" /> +<text x="1349.22" y="943.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="152.7" y="853" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="155.73" y="863.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="985.5" y="725" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="988.46" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="728.0" y="597" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="731.02" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="834.0" y="709" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="836.97" y="719.5" ></text> +</g> +<g > +<title>iput (101,010,100 samples, 0.63%)</title><rect x="201.8" y="597" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="204.76" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="752.5" y="565" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="755.54" y="575.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="975.8" y="469" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="978.82" y="479.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.06%)</title><rect x="726.3" y="725" width="0.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="729.27" y="735.5" ></text> +</g> +<g > +<title>get_random_u32 (10,101,010 samples, 0.06%)</title><rect x="509.1" y="629" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="512.11" y="639.5" ></text> +</g> +<g > +<title>mb_mark_used (10,101,010 samples, 0.06%)</title><rect x="589.7" y="469" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="592.67" y="479.5" ></text> +</g> +<g > +<title>__mem_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="968.8" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="971.82" y="495.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="485.5" y="629" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="488.47" y="639.5" ></text> +</g> +<g > +<title>vm_area_free_rcu_cb (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="501" width="0.8" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="1347.47" y="511.5" ></text> +</g> +<g > +<title>submit_bio (10,101,010 samples, 0.06%)</title><rect x="1099.3" y="469" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="1102.29" y="479.5" ></text> +</g> +<g > +<title>ip_queue_xmit (40,404,040 samples, 0.25%)</title><rect x="1384.7" y="741" width="3.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1387.75" y="751.5" ></text> +</g> +<g > +<title>__close_nocancel (20,202,020 samples, 0.13%)</title><rect x="327.0" y="805" width="1.7" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="329.98" y="815.5" ></text> +</g> +<g > +<title>__tcp_close (80,808,080 samples, 0.51%)</title><rect x="1369.0" y="741" width="7.0" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1371.98" y="751.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.06%)</title><rect x="33.6" y="757" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="36.64" y="767.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="964.4" y="453" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="967.44" y="463.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="613" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="1006.85" y="623.5" ></text> +</g> +<g > +<title>ip_build_and_send_pkt (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="277" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="1390.37" y="287.5" ></text> +</g> +<g > +<title>d_move (10,101,010 samples, 0.06%)</title><rect x="1130.8" y="645" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" /> +<text x="1133.81" y="655.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="482.0" y="613" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="484.97" y="623.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="726.3" y="565" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="729.27" y="575.5" ></text> +</g> +<g > +<title>apparmor_file_permission (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="597" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1231.01" y="607.5" ></text> +</g> +<g > +<title>_find_next_zero_bit (10,101,010 samples, 0.06%)</title><rect x="1267.4" y="725" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="1270.41" y="735.5" ></text> +</g> +<g > +<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="135.2" y="757" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="138.22" y="767.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="942.6" y="453" width="0.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" /> +<text x="945.55" y="463.5" ></text> +</g> +<g > +<title>filemap_flush (40,404,040 samples, 0.25%)</title><rect x="930.3" y="629" width="3.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="933.29" y="639.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.06%)</title><rect x="844.5" y="581" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="847.48" y="591.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="780.6" y="645" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="783.56" y="655.5" ></text> +</g> +<g > +<title>lh_table_free (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="821" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1353.60" y="831.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="816.5" y="517" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="819.46" y="527.5" ></text> +</g> +<g > +<title>unlink_cb (191,919,190 samples, 1.21%)</title><rect x="221.0" y="757" width="16.7" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="224.03" y="767.5" ></text> +</g> +<g > +<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="1053.8" y="581" width="0.8" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="1056.76" y="591.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (80,808,080 samples, 0.51%)</title><rect x="585.3" y="533" width="7.0" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="588.29" y="543.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="948.7" y="533" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="951.68" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="750.8" y="613" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="753.79" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (343,434,340 samples, 2.16%)</title><rect x="768.3" y="757" width="29.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="771.30" y="767.5" >[l..</text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="904.9" y="629" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="907.90" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="805.1" y="725" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="808.08" y="735.5" ></text> +</g> +<g > +<title>tcp_stream_alloc_skb (10,101,010 samples, 0.06%)</title><rect x="14.4" y="757" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="17.38" y="767.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="995.1" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="998.09" y="671.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (20,202,020 samples, 0.13%)</title><rect x="822.6" y="629" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="825.59" y="639.5" ></text> +</g> +<g > +<title>filemap_release_folio (10,101,010 samples, 0.06%)</title><rect x="819.1" y="485" width="0.9" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" /> +<text x="822.09" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="645" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="1026.98" y="655.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="263.1" y="549" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="266.06" y="559.5" ></text> +</g> +<g > +<title>readdir64 (131,313,130 samples, 0.82%)</title><rect x="245.5" y="773" width="11.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="248.55" y="783.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="549" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1234.51" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="1254.3" y="821" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1257.28" y="831.5" ></text> +</g> +<g > +<title>fprintf (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="901" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1349.22" y="911.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="92.3" y="821" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="95.31" y="831.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="948.7" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="951.68" y="687.5" ></text> +</g> +<g > +<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="968.8" y="533" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="971.82" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="546.8" y="725" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="549.76" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (50,505,050 samples, 0.32%)</title><rect x="548.5" y="661" width="4.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="551.52" y="671.5" ></text> +</g> +<g > +<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.06%)</title><rect x="819.1" y="453" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="822.09" y="463.5" ></text> +</g> +<g > +<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="536.3" y="693" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="539.26" y="703.5" ></text> +</g> +<g > +<title>do_writepages (20,202,020 samples, 0.13%)</title><rect x="848.0" y="565" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="850.98" y="575.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="338.4" y="565" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="341.36" y="575.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="692.1" y="549" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="695.12" y="559.5" ></text> +</g> +<g > +<title>do_filp_open (40,404,040 samples, 0.25%)</title><rect x="918.0" y="613" width="3.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="921.03" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="693" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1097.04" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="546.8" y="709" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="549.76" y="719.5" ></text> +</g> +<g > +<title>neigh_hh_output (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="549" width="2.6" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="1336.08" y="559.5" ></text> +</g> +<g > +<title>__memcpy (10,101,010 samples, 0.06%)</title><rect x="249.0" y="597" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="252.05" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="770.9" y="661" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="773.93" y="671.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (40,404,040 samples, 0.25%)</title><rect x="386.5" y="629" width="3.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="389.52" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1103.7" y="357" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1106.67" y="367.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="181.6" y="613" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="184.62" y="623.5" ></text> +</g> +<g > +<title>git_attr_cache_flush (40,404,040 samples, 0.25%)</title><rect x="165.9" y="869" width="3.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="168.86" y="879.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (434,343,430 samples, 2.73%)</title><rect x="686.0" y="789" width="37.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="688.99" y="799.5" >[li..</text> +</g> +<g > +<title>[libgit2.so.1.7.2] (464,646,460 samples, 2.92%)</title><rect x="934.7" y="741" width="40.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="937.67" y="751.5" >[li..</text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="808.6" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="811.58" y="671.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="771.8" y="485" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="774.80" y="495.5" ></text> +</g> +<g > +<title>copy_semundo (10,101,010 samples, 0.06%)</title><rect x="52.9" y="709" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="55.91" y="719.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="629" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="1231.01" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="805" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="555.89" y="815.5" ></text> +</g> +<g > +<title>tcp_send_ack (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="693" width="4.4" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" /> +<text x="1380.74" y="703.5" ></text> +</g> +<g > +<title>do_softirq (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="597" width="0.8" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="1347.47" y="607.5" ></text> +</g> +<g > +<title>vfs_fstatat (60,606,060 samples, 0.38%)</title><rect x="315.6" y="693" width="5.3" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="318.60" y="703.5" ></text> +</g> +<g > +<title>pipe_write (10,101,010 samples, 0.06%)</title><rect x="72.2" y="725" width="0.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="75.17" y="735.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="439.9" y="549" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="442.94" y="559.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="439.9" y="581" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="442.94" y="591.5" ></text> +</g> +<g > +<title>out_of_line_wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1014.73" y="559.5" ></text> +</g> +<g > +<title>add_transaction_credits (10,101,010 samples, 0.06%)</title><rect x="278.8" y="533" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="281.82" y="543.5" ></text> +</g> +<g > +<title>put_cpu_partial (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="613" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" /> +<text x="1363.23" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="721.0" y="741" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="724.02" y="751.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="709" width="6.1" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="1364.98" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="773" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1063.76" y="783.5" ></text> +</g> +<g > +<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="1200.0" y="645" width="1.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="1202.99" y="655.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="33.6" y="709" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="36.64" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="888.3" y="677" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="891.26" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="491.6" y="725" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="494.60" y="735.5" ></text> +</g> +<g > +<title>git_repository_free (10,101,010 samples, 0.06%)</title><rect x="990.7" y="869" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="993.71" y="879.5" ></text> +</g> +<g > +<title>ip_local_deliver (20,202,020 samples, 0.13%)</title><rect x="12.6" y="389" width="1.8" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" /> +<text x="15.63" y="399.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="969.7" y="645" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="972.70" y="655.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.06%)</title><rect x="339.2" y="725" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="342.24" y="735.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="482.8" y="613" width="1.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="485.84" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1249.0" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1252.02" y="735.5" ></text> +</g> +<g > +<title>__ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="226.3" y="581" width="1.7" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="229.28" y="591.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="507.4" y="533" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="510.36" y="543.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="794.6" y="405" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="797.57" y="415.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="661" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1322.07" y="671.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (10,101,010 samples, 0.06%)</title><rect x="1272.7" y="741" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1275.66" y="751.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="924.2" y="741" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="927.16" y="751.5" ></text> +</g> +<g > +<title>filemap_flush (101,010,100 samples, 0.63%)</title><rect x="665.0" y="597" width="8.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="667.97" y="607.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="475.8" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="478.84" y="607.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (30,303,030 samples, 0.19%)</title><rect x="1165.0" y="581" width="2.6" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="1167.96" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="680.7" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="683.74" y="767.5" ></text> +</g> +<g > +<title>mb_find_order_for_block (10,101,010 samples, 0.06%)</title><rect x="89.7" y="693" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="92.68" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="946.1" y="661" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="949.05" y="671.5" ></text> +</g> +<g > +<title>process_backlog (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="501" width="1.7" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" /> +<text x="1389.50" y="511.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="886.5" y="645" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="889.51" y="655.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="114.2" y="709" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="117.20" y="719.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="959.2" y="453" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="962.19" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="32.8" y="837" width="9.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="35.77" y="847.5" ></text> +</g> +<g > +<title>git_config_add_backend (20,202,020 samples, 0.13%)</title><rect x="727.1" y="757" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="730.14" y="767.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="469" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1128.56" y="479.5" ></text> +</g> +<g > +<title>alloc_file_pseudo (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="821" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1343.96" y="831.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="969.7" y="677" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="972.70" y="687.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="972.3" y="533" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="975.32" y="543.5" ></text> +</g> +<g > +<title>vfs_statx (40,404,040 samples, 0.25%)</title><rect x="941.7" y="565" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="944.68" y="575.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1270.9" y="677" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1273.91" y="687.5" ></text> +</g> +<g > +<title>__fsnotify_parent (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="629" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1190.73" y="639.5" ></text> +</g> +<g > +<title>ext4_bread (40,404,040 samples, 0.25%)</title><rect x="1044.1" y="645" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1047.12" y="655.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (30,303,030 samples, 0.19%)</title><rect x="805.1" y="581" width="2.6" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="808.08" y="591.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="377.8" y="629" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="380.77" y="639.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="713.1" y="549" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="716.13" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="918.0" y="693" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="921.03" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1211.74" y="687.5" ></text> +</g> +<g > +<title>closedir (10,101,010 samples, 0.06%)</title><rect x="239.4" y="773" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="242.42" y="783.5" ></text> +</g> +<g > +<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="485" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1113.67" y="495.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="364.6" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="367.63" y="703.5" ></text> +</g> +<g > +<title>terminate_walk (10,101,010 samples, 0.06%)</title><rect x="939.0" y="501" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="942.05" y="511.5" ></text> +</g> +<g > +<title>security_d_instantiate (10,101,010 samples, 0.06%)</title><rect x="954.8" y="549" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="957.81" y="559.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="693.0" y="597" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="695.99" y="607.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="492.5" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="495.47" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="883.0" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="886.01" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="241.2" y="661" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="244.17" y="671.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (70,707,070 samples, 0.44%)</title><rect x="293.7" y="517" width="6.1" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" /> +<text x="296.71" y="527.5" ></text> +</g> +<g > +<title>inet_reqsk_alloc (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="293" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" /> +<text x="1348.34" y="303.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="803.3" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="806.32" y="815.5" ></text> +</g> +<g > +<title>_IO_file_write (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="837" width="1.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" /> +<text x="1349.22" y="847.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1013.5" y="741" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1016.48" y="751.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="1212.2" y="661" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1215.25" y="671.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="1353.2" y="821" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="1356.22" y="831.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="918.0" y="549" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="921.03" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="804.2" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="807.20" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="756.0" y="757" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="759.04" y="767.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (50,505,050 samples, 0.32%)</title><rect x="1363.7" y="533" width="4.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="1366.73" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1222.8" y="693" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1225.75" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_close (20,202,020 samples, 0.13%)</title><rect x="868.1" y="645" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="871.12" y="655.5" ></text> +</g> +<g > +<title>ip_finish_output2 (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="549" width="4.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1380.74" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="531.9" y="693" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="534.88" y="703.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="972.3" y="613" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="975.32" y="623.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="595.8" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="598.80" y="655.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="693" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1022.61" y="703.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1143.9" y="677" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1146.95" y="687.5" ></text> +</g> +<g > +<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="592.3" y="533" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="595.30" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="978.5" y="661" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="981.45" y="671.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="1012.6" y="709" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1015.60" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="759.5" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="762.54" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.70%)</title><rect x="530.1" y="757" width="9.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="533.13" y="767.5" ></text> +</g> +<g > +<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="487.2" y="613" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="490.22" y="623.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="198.3" y="533" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="201.26" y="543.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="722.8" y="677" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="725.77" y="687.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1225.4" y="725" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1228.38" y="735.5" ></text> +</g> +<g > +<title>ext4_get_group_info (10,101,010 samples, 0.06%)</title><rect x="115.1" y="805" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="118.08" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="710.5" y="709" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="713.51" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="471.5" y="805" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="474.46" y="815.5" ></text> +</g> +<g > +<title>memcpy@plt (10,101,010 samples, 0.06%)</title><rect x="1252.5" y="725" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="1255.53" y="735.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="131.7" y="741" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="134.71" y="751.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="118.6" y="773" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="121.58" y="783.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="821" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1328.20" y="831.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="808.6" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="811.58" y="783.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="725" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1200.36" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="883.9" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="886.88" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="425.1" y="581" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="428.05" y="591.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="916.3" y="709" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="919.28" y="719.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="341.0" y="581" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="343.99" y="591.5" ></text> +</g> +<g > +<title>unmap_region (10,101,010 samples, 0.06%)</title><rect x="429.4" y="709" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="432.43" y="719.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="741" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1114.55" y="751.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1188.6" y="661" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1191.60" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="693.0" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="695.99" y="671.5" ></text> +</g> +<g > +<title>vfs_mkdir (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="709" width="7.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="1044.50" y="719.5" ></text> +</g> +<g > +<title>do_filp_open (70,707,070 samples, 0.44%)</title><rect x="507.4" y="725" width="6.1" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="510.36" y="735.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="130.0" y="757" width="1.7" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="132.96" y="767.5" ></text> +</g> +<g > +<title>__ext4_new_inode (40,404,040 samples, 0.25%)</title><rect x="78.3" y="853" width="3.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="81.30" y="863.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="1049.4" y="645" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" /> +<text x="1052.38" y="655.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="592.3" y="597" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="595.30" y="607.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="405" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1040.99" y="415.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1197.73" y="783.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="648.3" y="741" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="651.34" y="751.5" ></text> +</g> +<g > +<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="1118.6" y="677" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="1121.55" y="687.5" ></text> +</g> +<g > +<title>inet_stream_connect (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="821" width="12.2" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" /> +<text x="1379.87" y="831.5" ></text> +</g> +<g > +<title>add_transaction_credits (10,101,010 samples, 0.06%)</title><rect x="998.6" y="533" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="1001.59" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="498.6" y="741" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="501.60" y="751.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="807.7" y="581" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="810.70" y="591.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="455.7" y="517" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="458.70" y="527.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="74.8" y="885" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="77.80" y="895.5" ></text> +</g> +<g > +<title>ext4_inode_attach_jinode (10,101,010 samples, 0.06%)</title><rect x="101.1" y="805" width="0.8" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" /> +<text x="104.07" y="815.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="1140.4" y="597" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1143.44" y="607.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="125.6" y="741" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="128.58" y="751.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="901" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1328.20" y="911.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="411.9" y="629" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="414.92" y="639.5" ></text> +</g> +<g > +<title>log_prefix_thread_id (10,101,010 samples, 0.06%)</title><rect x="1327.8" y="901" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1330.83" y="911.5" ></text> +</g> +<g > +<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.06%)</title><rect x="818.2" y="469" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="821.21" y="479.5" ></text> +</g> +<g > +<title>evict (40,404,040 samples, 0.25%)</title><rect x="1028.4" y="581" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1031.36" y="591.5" ></text> +</g> +<g > +<title>dquot_drop (10,101,010 samples, 0.06%)</title><rect x="285.8" y="549" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="288.82" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="888.3" y="725" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="891.26" y="735.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="979.3" y="437" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="982.33" y="447.5" ></text> +</g> +<g > +<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="1212.2" y="645" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1215.25" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="530.1" y="741" width="6.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="533.13" y="751.5" ></text> +</g> +<g > +<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="972.3" y="501" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="975.32" y="511.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="405.8" y="581" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="408.79" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="972.3" y="549" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="975.32" y="559.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="868.1" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="871.12" y="671.5" ></text> +</g> +<g > +<title>ext4_getblk (202,020,200 samples, 1.27%)</title><rect x="1158.8" y="645" width="17.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="1161.83" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="798.9" y="629" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="801.95" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="757" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1198.61" y="767.5" ></text> +</g> +<g > +<title>ext4_es_insert_delayed_block (20,202,020 samples, 0.13%)</title><rect x="806.0" y="517" width="1.7" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" /> +<text x="808.95" y="527.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="581" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="1205.61" y="591.5" ></text> +</g> +<g > +<title>getdents64 (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="741" width="2.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="1232.76" y="751.5" ></text> +</g> +<g > +<title>x64_sys_call (434,343,430 samples, 2.73%)</title><rect x="1143.9" y="773" width="37.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1146.95" y="783.5" >x64..</text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (20,202,020 samples, 0.13%)</title><rect x="665.9" y="373" width="1.7" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="668.85" y="383.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="634.3" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="637.33" y="543.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (20,202,020 samples, 0.13%)</title><rect x="1069.5" y="629" width="1.8" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="1072.52" y="639.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="411.9" y="677" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="414.92" y="687.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="463.6" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="466.58" y="511.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.06%)</title><rect x="35.4" y="533" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" /> +<text x="38.39" y="543.5" ></text> +</g> +<g > +<title>perf_event_init_task (10,101,010 samples, 0.06%)</title><rect x="60.8" y="709" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="63.79" y="719.5" ></text> +</g> +<g > +<title>__radix_tree_lookup (10,101,010 samples, 0.06%)</title><rect x="1324.3" y="709" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1327.33" y="719.5" ></text> +</g> +<g > +<title>__netif_receive_skb (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="405" width="2.6" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1367.61" y="415.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="637.0" y="613" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="639.95" y="623.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="613" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="1261.65" y="623.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="208.8" y="357" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="211.77" y="367.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="868.1" y="581" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="871.12" y="591.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="815.6" y="549" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="818.58" y="559.5" ></text> +</g> +<g > +<title>client_create_thread (232,323,230 samples, 1.46%)</title><rect x="44.1" y="885" width="20.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="47.15" y="895.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="10.9" y="869" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="13.88" y="879.5" ></text> +</g> +<g > +<title>do_eventfd (20,202,020 samples, 0.13%)</title><rect x="64.3" y="805" width="1.7" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="67.29" y="815.5" ></text> +</g> +<g > +<title>link (20,202,020 samples, 0.13%)</title><rect x="458.3" y="805" width="1.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="461.32" y="815.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="904.0" y="597" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="907.02" y="607.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="955.7" y="533" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="958.69" y="543.5" ></text> +</g> +<g > +<title>file_close (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="933" width="8.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="1371.11" y="943.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="1131.7" y="597" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="1134.69" y="607.5" ></text> +</g> +<g > +<title>access (30,303,030 samples, 0.19%)</title><rect x="1211.4" y="757" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1214.37" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="330.5" y="757" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="333.48" y="767.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.06%)</title><rect x="1025.7" y="661" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="1028.74" y="671.5" ></text> +</g> +<g > +<title>d_lookup (10,101,010 samples, 0.06%)</title><rect x="224.5" y="613" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="227.53" y="623.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1339.2" y="885" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1342.21" y="895.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="853.2" y="597" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="856.24" y="607.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="181" width="0.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1369.36" y="191.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="645" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1045.37" y="655.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="988.1" y="629" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="991.08" y="639.5" ></text> +</g> +<g > +<title>user_path_at_empty (30,303,030 samples, 0.19%)</title><rect x="537.1" y="645" width="2.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="540.13" y="655.5" ></text> +</g> +<g > +<title>iterate_dir (80,808,080 samples, 0.51%)</title><rect x="332.2" y="709" width="7.0" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="335.23" y="719.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="842.7" y="469" width="1.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="845.73" y="479.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="373" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="1366.73" y="383.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="423.3" y="821" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="426.30" y="831.5" ></text> +</g> +<g > +<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="505.6" y="613" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="508.61" y="623.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="414.5" y="677" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="417.54" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_access (40,404,040 samples, 0.25%)</title><rect x="897.9" y="677" width="3.5" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="900.89" y="687.5" ></text> +</g> +<g > +<title>git_config_set_string (222,222,220 samples, 1.40%)</title><rect x="831.3" y="837" width="19.3" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="834.35" y="847.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="422.4" y="693" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="425.42" y="703.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="757.8" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="760.79" y="623.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="939.9" y="421" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="942.92" y="431.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="808.6" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="811.58" y="591.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="145.7" y="869" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="148.72" y="879.5" ></text> +</g> +<g > +<title>ext4_do_writepages (60,606,060 samples, 0.38%)</title><rect x="791.9" y="501" width="5.3" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="794.94" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="760.4" y="677" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="763.42" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (303,030,300 samples, 1.90%)</title><rect x="372.5" y="773" width="26.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="375.51" y="783.5" >e..</text> +</g> +<g > +<title>bit_wait_io (10,101,010 samples, 0.06%)</title><rect x="108.1" y="725" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="111.07" y="735.5" ></text> +</g> +<g > +<title>git_config_add_backend (30,303,030 samples, 0.19%)</title><rect x="475.0" y="805" width="2.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="477.96" y="815.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="580.0" y="533" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="583.04" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="896.1" y="613" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="899.14" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="892.6" y="677" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="895.64" y="687.5" ></text> +</g> +<g > +<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="254.3" y="565" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="257.30" y="575.5" ></text> +</g> +<g > +<title>path_parentat (30,303,030 samples, 0.19%)</title><rect x="263.1" y="629" width="2.6" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="266.06" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1211.4" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1214.37" y="735.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1204.4" y="645" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1207.37" y="655.5" ></text> +</g> +<g > +<title>_copy_to_user (10,101,010 samples, 0.06%)</title><rect x="495.1" y="677" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" /> +<text x="498.10" y="687.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="538.0" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="541.01" y="591.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="443.4" y="629" width="1.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="446.44" y="639.5" ></text> +</g> +<g > +<title>unmap_region (30,303,030 samples, 0.19%)</title><rect x="398.8" y="645" width="2.6" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="401.78" y="655.5" ></text> +</g> +<g > +<title>ext4_mkdir (161,616,160 samples, 1.02%)</title><rect x="78.3" y="869" width="14.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="81.30" y="879.5" ></text> +</g> +<g > +<title>ip_local_deliver (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="341" width="4.4" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" /> +<text x="1380.74" y="351.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="725.4" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="728.39" y="639.5" ></text> +</g> +<g > +<title>worker_main (14,252,525,110 samples, 89.53%)</title><rect x="154.5" y="981" width="1235.5" height="15.0" fill="rgb(0,212,96)" rx="2" ry="2" /> +<text x="157.48" y="991.5" >worker_main</text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="648.3" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="651.34" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (444,444,440 samples, 2.79%)</title><rect x="1104.5" y="789" width="38.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1107.54" y="799.5" >[li..</text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="749.9" y="389" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="752.91" y="399.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1190.4" y="757" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1193.36" y="767.5" ></text> +</g> +<g > +<title>common_perm_cond (10,101,010 samples, 0.06%)</title><rect x="835.7" y="613" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" /> +<text x="838.72" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="770.1" y="645" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="773.05" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="866.4" y="805" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="869.37" y="815.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="790.2" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="793.19" y="591.5" ></text> +</g> +<g > +<title>__d_lookup (10,101,010 samples, 0.06%)</title><rect x="662.3" y="613" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="665.35" y="623.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="846.2" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="849.23" y="607.5" ></text> +</g> +<g > +<title>ext4_find_dest_de (10,101,010 samples, 0.06%)</title><rect x="1003.0" y="565" width="0.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="1005.97" y="575.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="504.7" y="677" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="507.73" y="687.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1010.9" y="645" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1013.85" y="655.5" ></text> +</g> +<g > +<title>remove (70,707,070 samples, 0.44%)</title><rect x="423.3" y="853" width="6.1" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="426.30" y="863.5" ></text> +</g> +<g > +<title>x64_sys_call (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="757" width="7.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1044.50" y="767.5" ></text> +</g> +<g > +<title>remove (626,262,620 samples, 3.93%)</title><rect x="256.9" y="757" width="54.3" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="259.93" y="767.5" >remove</text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="842.7" y="421" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="845.73" y="431.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="984.6" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="987.58" y="719.5" ></text> +</g> +<g > +<title>unmap_page_range (20,202,020 samples, 0.13%)</title><rect x="399.7" y="597" width="1.7" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="402.66" y="607.5" ></text> +</g> +<g > +<title>is_vmalloc_addr (10,101,010 samples, 0.06%)</title><rect x="651.0" y="565" width="0.8" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="653.96" y="575.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="585.3" y="501" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="588.29" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="935.5" y="629" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="938.55" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="1087.0" y="741" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1090.03" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="906.6" y="677" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="909.65" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="398.8" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="401.78" y="735.5" ></text> +</g> +<g > +<title>clear_page_erms (10,101,010 samples, 0.06%)</title><rect x="1109.8" y="453" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="1112.80" y="463.5" ></text> +</g> +<g > +<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="180.7" y="437" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="183.75" y="447.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="734.1" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="737.15" y="687.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (40,404,040 samples, 0.25%)</title><rect x="45.9" y="725" width="3.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="48.90" y="735.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="692.1" y="533" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="695.12" y="543.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (40,404,040 samples, 0.25%)</title><rect x="110.7" y="757" width="3.5" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="113.70" y="767.5" ></text> +</g> +<g > +<title>drop_buffers.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="818.2" y="453" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="821.21" y="463.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="721.0" y="629" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="724.02" y="639.5" ></text> +</g> +<g > +<title>__ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="12.6" y="613" width="1.8" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="15.63" y="623.5" ></text> +</g> +<g > +<title>path_openat (30,303,030 samples, 0.19%)</title><rect x="988.1" y="709" width="2.6" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="991.08" y="719.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (101,010,100 samples, 0.63%)</title><rect x="665.0" y="613" width="8.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="667.97" y="623.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="424.2" y="645" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="427.18" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_close (20,202,020 samples, 0.13%)</title><rect x="608.9" y="725" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="611.93" y="735.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1115.1" y="757" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1118.05" y="767.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1029.61" y="671.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="543.3" y="693" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="546.26" y="703.5" ></text> +</g> +<g > +<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="291.1" y="485" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="294.08" y="495.5" ></text> +</g> +<g > +<title>ptep_clear_flush (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="725" width="0.8" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" /> +<text x="1322.07" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1188.6" y="677" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1191.60" y="687.5" ></text> +</g> +<g > +<title>bvec_alloc (10,101,010 samples, 0.06%)</title><rect x="795.4" y="405" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" /> +<text x="798.44" y="415.5" ></text> +</g> +<g > +<title>net_close (111,111,110 samples, 0.70%)</title><rect x="32.8" y="901" width="9.6" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" /> +<text x="35.77" y="911.5" ></text> +</g> +<g > +<title>ext4_orphan_add (30,303,030 samples, 0.19%)</title><rect x="348.9" y="645" width="2.6" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="351.87" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="981.1" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="984.08" y="623.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="1224.5" y="565" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="1227.51" y="575.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="714.9" y="517" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="717.89" y="527.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="392.7" y="597" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="395.65" y="607.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="653.6" y="613" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="656.59" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="531.9" y="645" width="1.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="534.88" y="655.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="92.3" y="949" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="95.31" y="959.5" ></text> +</g> +<g > +<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="181.6" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="184.62" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="654.5" y="565" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="657.47" y="575.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="645" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1097.04" y="655.5" ></text> +</g> +<g > +<title>_compound_head (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="533" width="0.9" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" /> +<text x="1108.42" y="543.5" ></text> +</g> +<g > +<title>kfree (10,101,010 samples, 0.06%)</title><rect x="608.9" y="661" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="611.93" y="671.5" ></text> +</g> +<g > +<title>do_renameat2 (151,515,150 samples, 0.95%)</title><rect x="1028.4" y="661" width="13.1" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="1031.36" y="671.5" ></text> +</g> +<g > +<title>ext4_delete_entry (20,202,020 samples, 0.13%)</title><rect x="404.0" y="677" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="407.04" y="687.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="908.4" y="677" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="911.40" y="687.5" ></text> +</g> +<g > +<title>ext4_add_entry (20,202,020 samples, 0.13%)</title><rect x="1153.6" y="693" width="1.7" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="1156.58" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="850.6" y="789" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="853.61" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1026.11" y="703.5" ></text> +</g> +<g > +<title>obj_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="59.9" y="677" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" /> +<text x="62.91" y="687.5" ></text> +</g> +<g > +<title>ext4_readdir (50,505,050 samples, 0.32%)</title><rect x="616.8" y="677" width="4.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="619.81" y="687.5" ></text> +</g> +<g > +<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="549.4" y="613" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="552.39" y="623.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="597" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1211.74" y="607.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="504.7" y="693" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="507.73" y="703.5" ></text> +</g> +<g > +<title>git_refspec_src_matches (10,101,010 samples, 0.06%)</title><rect x="987.2" y="821" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="990.21" y="831.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1030.49" y="671.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1266.5" y="725" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1269.54" y="735.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="565" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" /> +<text x="1202.99" y="575.5" ></text> +</g> +<g > +<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="35.4" y="437" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="38.39" y="447.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="1088.8" y="533" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="1091.78" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="536.3" y="709" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="539.26" y="719.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="184.3" y="501" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="187.25" y="511.5" ></text> +</g> +<g > +<title>file_exists (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="917" width="2.6" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="1328.20" y="927.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (505,050,500 samples, 3.17%)</title><rect x="934.7" y="757" width="43.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="937.67" y="767.5" >[lib..</text> +</g> +<g > +<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="1248.1" y="757" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1251.15" y="767.5" ></text> +</g> +<g > +<title>_find_next_zero_bit (10,101,010 samples, 0.06%)</title><rect x="1173.7" y="565" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="1176.72" y="575.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.06%)</title><rect x="971.4" y="533" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="974.45" y="543.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="485.5" y="661" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="488.47" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="763.0" y="645" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="766.05" y="655.5" ></text> +</g> +<g > +<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1361.1" y="677" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="1364.10" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="684.2" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="687.24" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="408.4" y="821" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="411.41" y="831.5" ></text> +</g> +<g > +<title>getdents64 (30,303,030 samples, 0.19%)</title><rect x="401.4" y="821" width="2.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="404.41" y="831.5" ></text> +</g> +<g > +<title>tcp_v6_conn_request (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="341" width="0.8" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" /> +<text x="1390.37" y="351.5" ></text> +</g> +<g > +<title>ip_finish_output2 (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="565" width="5.2" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1372.86" y="575.5" ></text> +</g> +<g > +<title>mntput_no_expire (10,101,010 samples, 0.06%)</title><rect x="524.0" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="527.00" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="208.8" y="389" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="211.77" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="762.2" y="677" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="765.17" y="687.5" ></text> +</g> +<g > +<title>__es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="414.5" y="629" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" /> +<text x="417.54" y="639.5" ></text> +</g> +<g > +<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="1031.0" y="453" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1033.99" y="463.5" ></text> +</g> +<g > +<title>fstatat64 (40,404,040 samples, 0.25%)</title><rect x="937.3" y="661" width="3.5" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="940.30" y="671.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="869.9" y="709" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="872.87" y="719.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="508.2" y="597" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="511.24" y="607.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="494.2" y="613" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="497.23" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="504.7" y="709" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="507.73" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (242,424,240 samples, 1.52%)</title><rect x="994.2" y="805" width="21.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="997.21" y="815.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="939.0" y="469" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="942.05" y="479.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="421" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1390.37" y="431.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="805" width="1.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1019.98" y="815.5" ></text> +</g> +<g > +<title>evict (20,202,020 samples, 0.13%)</title><rect x="1063.4" y="693" width="1.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1066.39" y="703.5" ></text> +</g> +<g > +<title>__fput_sync (20,202,020 samples, 0.13%)</title><rect x="237.7" y="693" width="1.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="240.66" y="703.5" ></text> +</g> +<g > +<title>access (40,404,040 samples, 0.25%)</title><rect x="897.9" y="741" width="3.5" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="900.89" y="751.5" ></text> +</g> +<g > +<title>make_pollfds (10,101,010 samples, 0.06%)</title><rect x="43.3" y="933" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="46.27" y="943.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="337.5" y="613" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="340.49" y="623.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="677" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" /> +<text x="1363.23" y="687.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="168.5" y="837" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="171.49" y="847.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="917" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1349.22" y="927.5" ></text> +</g> +<g > +<title>git_config_snapshot (50,505,050 samples, 0.32%)</title><rect x="862.0" y="837" width="4.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="864.99" y="847.5" ></text> +</g> +<g > +<title>do_linkat (20,202,020 samples, 0.13%)</title><rect x="974.9" y="661" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="977.95" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="852.4" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="855.36" y="751.5" ></text> +</g> +<g > +<title>apparmor_file_permission (10,101,010 samples, 0.06%)</title><rect x="623.8" y="661" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="626.82" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="946.1" y="645" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="949.05" y="655.5" ></text> +</g> +<g > +<title>libjson_to_string_internal (10,101,010 samples, 0.06%)</title><rect x="10.9" y="933" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" /> +<text x="13.88" y="943.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1234.51" y="591.5" ></text> +</g> +<g > +<title>inode_io_list_del (10,101,010 samples, 0.06%)</title><rect x="301.6" y="597" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" /> +<text x="304.59" y="607.5" ></text> +</g> +<g > +<title>inet_create.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1340.1" y="805" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="1343.09" y="815.5" ></text> +</g> +<g > +<title>[libc.so.6] (787,878,780 samples, 4.95%)</title><rect x="169.4" y="773" width="68.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="172.37" y="783.5" >[libc.s..</text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="661" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1248.52" y="671.5" ></text> +</g> +<g > +<title>mempool_alloc (10,101,010 samples, 0.06%)</title><rect x="1103.7" y="389" width="0.8" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" /> +<text x="1106.67" y="399.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="721.0" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="724.02" y="623.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="532.8" y="581" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="535.75" y="591.5" ></text> +</g> +<g > +<title>common_perm_cond (10,101,010 samples, 0.06%)</title><rect x="496.9" y="629" width="0.8" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" /> +<text x="499.85" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="778.8" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="781.81" y="687.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="324.4" y="613" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="327.35" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="692.1" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="695.12" y="655.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="80.1" y="821" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="83.05" y="831.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="318.2" y="645" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="321.22" y="655.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="549" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1348.34" y="559.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (40,404,040 samples, 0.25%)</title><rect x="1384.7" y="725" width="3.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1387.75" y="735.5" ></text> +</g> +<g > +<title>ip_local_deliver (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="437" width="0.8" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" /> +<text x="1390.37" y="447.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="944.3" y="469" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" /> +<text x="947.30" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="734.1" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="737.15" y="735.5" ></text> +</g> +<g > +<title>block_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="389.1" y="581" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="392.15" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1356.7" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1359.73" y="783.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.06%)</title><rect x="536.3" y="629" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="539.26" y="639.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1040.6" y="565" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1043.62" y="575.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="507.4" y="581" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="510.36" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="842.7" y="437" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="845.73" y="447.5" ></text> +</g> +<g > +<title>__do_sys_brk (30,303,030 samples, 0.19%)</title><rect x="398.8" y="677" width="2.6" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="401.78" y="687.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="208.8" y="405" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="211.77" y="415.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="965.3" y="549" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="968.32" y="559.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="834.8" y="661" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="837.85" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="727.1" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="730.14" y="751.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="702.6" y="405" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="705.63" y="415.5" ></text> +</g> +<g > +<title>folio_alloc (20,202,020 samples, 0.13%)</title><rect x="1108.9" y="517" width="1.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="1111.92" y="527.5" ></text> +</g> +<g > +<title>notify_change (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="693" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="1014.73" y="703.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="897.0" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="900.02" y="687.5" ></text> +</g> +<g > +<title>shrink_dentry_list (10,101,010 samples, 0.06%)</title><rect x="427.7" y="709" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="430.68" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="853.2" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="856.24" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="328.7" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="331.73" y="703.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="746.4" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="749.41" y="607.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="205.3" y="517" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="208.27" y="527.5" ></text> +</g> +<g > +<title>add_transaction_credits (10,101,010 samples, 0.06%)</title><rect x="254.3" y="549" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="257.30" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="738.5" y="693" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="741.53" y="703.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="80.1" y="805" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="83.05" y="815.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="908.4" y="725" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="911.40" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_close (111,111,110 samples, 0.70%)</title><rect x="32.8" y="805" width="9.6" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="35.77" y="815.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="693.0" y="517" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="695.99" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_write (40,404,040 samples, 0.25%)</title><rect x="1108.0" y="661" width="3.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="1111.05" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (232,323,230 samples, 1.46%)</title><rect x="1021.4" y="757" width="20.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1024.36" y="767.5" ></text> +</g> +<g > +<title>prepare_to_wait_exclusive (10,101,010 samples, 0.06%)</title><rect x="998.6" y="517" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="1001.59" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1086.53" y="703.5" ></text> +</g> +<g > +<title>ksys_write (30,303,030 samples, 0.19%)</title><rect x="539.8" y="709" width="2.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="542.76" y="719.5" ></text> +</g> +<g > +<title>alloc_inode (10,101,010 samples, 0.06%)</title><rect x="953.9" y="533" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="956.93" y="543.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="693" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1248.52" y="703.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="597" width="5.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1102.29" y="607.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="421" width="2.7" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="1136.44" y="431.5" ></text> +</g> +<g > +<title>ext4_release_folio (10,101,010 samples, 0.06%)</title><rect x="187.8" y="453" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="190.75" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="429.4" y="805" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="432.43" y="815.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (20,202,020 samples, 0.13%)</title><rect x="38.0" y="213" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="41.02" y="223.5" ></text> +</g> +<g > +<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1312.9" y="693" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1315.94" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="545.9" y="757" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="548.89" y="767.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.06%)</title><rect x="446.1" y="549" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="449.07" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="725.4" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="728.39" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="868.1" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="871.12" y="687.5" ></text> +</g> +<g > +<title>git_filter_list_stream_buffer (60,606,060 samples, 0.38%)</title><rect x="515.2" y="837" width="5.3" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" /> +<text x="518.24" y="847.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="815.6" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="818.58" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (171,717,170 samples, 1.08%)</title><rect x="196.5" y="677" width="14.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="199.51" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="418.0" y="821" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="421.05" y="831.5" ></text> +</g> +<g > +<title>ext4_find_extent (10,101,010 samples, 0.06%)</title><rect x="1070.4" y="565" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="1073.39" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="758.7" y="693" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="761.67" y="703.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="446.1" y="597" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="449.07" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="725.4" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="728.39" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="886.5" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="889.51" y="703.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="975.8" y="485" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="978.82" y="495.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="956.6" y="501" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="959.56" y="511.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="979.3" y="453" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="982.33" y="463.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="597" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1202.99" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (111,111,110 samples, 0.70%)</title><rect x="925.0" y="741" width="9.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="928.04" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (282,828,280 samples, 1.78%)</title><rect x="341.0" y="741" width="24.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="343.99" y="751.5" >d..</text> +</g> +<g > +<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.06%)</title><rect x="587.0" y="469" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" /> +<text x="590.04" y="479.5" ></text> +</g> +<g > +<title>git_repository_open_ext (131,313,130 samples, 0.82%)</title><rect x="756.0" y="789" width="11.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="759.04" y="799.5" ></text> +</g> +<g > +<title>rm_rf (3,101,010,070 samples, 19.48%)</title><rect x="169.4" y="917" width="268.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="172.37" y="927.5" >rm_rf</text> +</g> +<g > +<title>ksys_write (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="725" width="3.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="1071.64" y="735.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="765.7" y="533" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="768.67" y="543.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="514.4" y="757" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="517.37" y="767.5" ></text> +</g> +<g > +<title>dput (20,202,020 samples, 0.13%)</title><rect x="1096.7" y="645" width="1.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1099.66" y="655.5" ></text> +</g> +<g > +<title>ext4_alloc_inode (40,404,040 samples, 0.25%)</title><rect x="574.8" y="581" width="3.5" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" /> +<text x="577.78" y="591.5" ></text> +</g> +<g > +<title>__sys_accept4 (40,404,040 samples, 0.25%)</title><rect x="66.0" y="805" width="3.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="69.04" y="815.5" ></text> +</g> +<g > +<title>_raw_spin_lock_bh (10,101,010 samples, 0.06%)</title><rect x="39.8" y="677" width="0.8" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" /> +<text x="42.77" y="687.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.13%)</title><rect x="775.3" y="693" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="778.30" y="703.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="967.9" y="613" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="970.94" y="623.5" ></text> +</g> +<g > +<title>ext4_map_blocks (40,404,040 samples, 0.25%)</title><rect x="1044.1" y="613" width="3.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1047.12" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="193.9" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="196.88" y="687.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="857.6" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="860.61" y="703.5" ></text> +</g> +<g > +<title>blk_mq_free_request (10,101,010 samples, 0.06%)</title><rect x="740.3" y="373" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="743.28" y="383.5" ></text> +</g> +<g > +<title>tcp_done (10,101,010 samples, 0.06%)</title><rect x="1373.4" y="213" width="0.8" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="1376.36" y="223.5" ></text> +</g> +<g > +<title>sbitmap_get_shallow (10,101,010 samples, 0.06%)</title><rect x="1136.9" y="341" width="0.9" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="1139.94" y="351.5" ></text> +</g> +<g > +<title>ext4_rename (121,212,120 samples, 0.76%)</title><rect x="1131.7" y="629" width="10.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1134.69" y="639.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="685.1" y="613" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="688.11" y="623.5" ></text> +</g> +<g > +<title>memcg_account_kmem (10,101,010 samples, 0.06%)</title><rect x="59.9" y="661" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="62.91" y="671.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="533.6" y="613" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="536.63" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="852.4" y="789" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="855.36" y="799.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1247.64" y="671.5" ></text> +</g> +<g > +<title>read (30,303,030 samples, 0.19%)</title><rect x="739.4" y="661" width="2.6" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="742.40" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1098.79" y="735.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="604.6" y="565" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="607.56" y="575.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="747.3" y="613" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="750.28" y="623.5" ></text> +</g> +<g > +<title>atime_needs_update (20,202,020 samples, 0.13%)</title><rect x="420.7" y="741" width="1.7" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" /> +<text x="423.67" y="751.5" ></text> +</g> +<g > +<title>mt_free_rcu (10,101,010 samples, 0.06%)</title><rect x="263.1" y="469" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="266.06" y="479.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="542.4" y="821" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="545.39" y="831.5" ></text> +</g> +<g > +<title>shrink_dcache_parent (10,101,010 samples, 0.06%)</title><rect x="363.8" y="661" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="366.76" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="978.5" y="757" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="981.45" y="767.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="440.8" y="485" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="443.81" y="495.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="148.4" y="789" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="151.35" y="799.5" ></text> +</g> +<g > +<title>ip_rcv (20,202,020 samples, 0.13%)</title><rect x="12.6" y="405" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="15.63" y="415.5" ></text> +</g> +<g > +<title>lookup_one_qstr_excl (10,101,010 samples, 0.06%)</title><rect x="224.5" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="227.53" y="639.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="180.7" y="357" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="183.75" y="367.5" ></text> +</g> +<g > +<title>__do_sys_brk (10,101,010 samples, 0.06%)</title><rect x="429.4" y="741" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="432.43" y="751.5" ></text> +</g> +<g > +<title>__find_get_block (20,202,020 samples, 0.13%)</title><rect x="617.7" y="549" width="1.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="620.69" y="559.5" ></text> +</g> +<g > +<title>submit_bio_noacct (10,101,010 samples, 0.06%)</title><rect x="1035.4" y="453" width="0.8" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" /> +<text x="1038.37" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="181.6" y="677" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="184.62" y="687.5" ></text> +</g> +<g > +<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="1200.0" y="581" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" /> +<text x="1202.99" y="591.5" ></text> +</g> +<g > +<title>getdents64 (50,505,050 samples, 0.32%)</title><rect x="418.9" y="853" width="4.4" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="421.92" y="863.5" ></text> +</g> +<g > +<title>do_sys_openat2 (30,303,030 samples, 0.19%)</title><rect x="611.6" y="693" width="2.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="614.56" y="703.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="405.8" y="629" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="408.79" y="639.5" ></text> +</g> +<g > +<title>security_inode_need_killpriv (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="533" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="1026.98" y="543.5" ></text> +</g> +<g > +<title>filemap_get_entry (20,202,020 samples, 0.13%)</title><rect x="333.1" y="517" width="1.8" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" /> +<text x="336.11" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="710.5" y="693" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="713.51" y="703.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.13%)</title><rect x="531.9" y="597" width="1.7" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="534.88" y="607.5" ></text> +</g> +<g > +<title>path_openat (40,404,040 samples, 0.25%)</title><rect x="742.9" y="565" width="3.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="745.91" y="575.5" ></text> +</g> +<g > +<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="948.7" y="469" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" /> +<text x="951.68" y="479.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="726.3" y="677" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="729.27" y="687.5" ></text> +</g> +<g > +<title>ext4_es_remove_extent (20,202,020 samples, 0.13%)</title><rect x="358.5" y="581" width="1.8" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" /> +<text x="361.50" y="591.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1326.1" y="773" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1329.08" y="783.5" ></text> +</g> +<g > +<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="740.3" y="581" width="1.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="743.28" y="591.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1247.64" y="703.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="922.4" y="677" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="925.41" y="687.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="446.1" y="565" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="449.07" y="575.5" ></text> +</g> +<g > +<title>rename (313,131,310 samples, 1.97%)</title><rect x="653.6" y="757" width="27.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="656.59" y="767.5" >r..</text> +</g> +<g > +<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="1236.8" y="757" width="1.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="1239.76" y="767.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="747.3" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="750.28" y="591.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.06%)</title><rect x="1129.9" y="565" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="1132.94" y="575.5" ></text> +</g> +<g > +<title>__close (20,202,020 samples, 0.13%)</title><rect x="31.0" y="885" width="1.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="34.02" y="895.5" ></text> +</g> +<g > +<title>d_flags_for_inode (10,101,010 samples, 0.06%)</title><rect x="605.4" y="597" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="608.43" y="607.5" ></text> +</g> +<g > +<title>ext4_mb_complex_scan_group (20,202,020 samples, 0.13%)</title><rect x="88.8" y="725" width="1.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="91.81" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="66.0" y="837" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="69.04" y="847.5" ></text> +</g> +<g > +<title>link (10,101,010 samples, 0.06%)</title><rect x="809.5" y="773" width="0.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="812.45" y="783.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="511.7" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="514.74" y="623.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="984.6" y="533" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="987.58" y="543.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="741.2" y="421" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="744.15" y="431.5" ></text> +</g> +<g > +<title>fstatat64 (181,818,180 samples, 1.14%)</title><rect x="624.7" y="805" width="15.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="627.70" y="815.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="597" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="1234.51" y="607.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="389" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1140.82" y="399.5" ></text> +</g> +<g > +<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="217.5" y="709" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="220.53" y="719.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1189.5" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1192.48" y="655.5" ></text> +</g> +<g > +<title>git_config_add_backend (30,303,030 samples, 0.19%)</title><rect x="895.3" y="773" width="2.6" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="898.27" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="157.1" y="885" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="160.11" y="895.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1098.79" y="719.5" ></text> +</g> +<g > +<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="1140.4" y="613" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="1143.44" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="862.0" y="789" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="864.99" y="799.5" ></text> +</g> +<g > +<title>_Fork (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="869" width="40.3" height="15.0" fill="rgb(0,237,201)" rx="2" ry="2" /> +<text x="1276.54" y="879.5" >_Fork</text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="514.4" y="709" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="517.37" y="719.5" ></text> +</g> +<g > +<title>__file_remove_privs (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="549" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1026.98" y="559.5" ></text> +</g> +<g > +<title>dput (90,909,090 samples, 0.57%)</title><rect x="654.5" y="661" width="7.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="657.47" y="671.5" ></text> +</g> +<g > +<title>folio_alloc (10,101,010 samples, 0.06%)</title><rect x="701.8" y="453" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="704.75" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="727.1" y="645" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="730.14" y="655.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="421" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1348.34" y="431.5" ></text> +</g> +<g > +<title>__ext4_new_inode (50,505,050 samples, 0.32%)</title><rect x="507.4" y="645" width="4.3" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="510.36" y="655.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="578.3" y="581" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="581.29" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="520.5" y="789" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="523.49" y="799.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="1154.5" y="597" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="1157.45" y="607.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="883.0" y="661" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="886.01" y="671.5" ></text> +</g> +<g > +<title>ext4_rename2 (60,606,060 samples, 0.38%)</title><rect x="820.8" y="661" width="5.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="823.84" y="671.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1169.3" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1172.34" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="789" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1186.35" y="799.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="984.6" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="987.58" y="655.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="229" width="1.7" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="1336.96" y="239.5" ></text> +</g> +<g > +<title>git_reference_foreach_name (202,020,200 samples, 1.27%)</title><rect x="874.3" y="805" width="17.5" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="877.25" y="815.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="884.8" y="581" width="0.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="887.76" y="591.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="942.6" y="469" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="945.55" y="479.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="131.7" y="757" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="134.71" y="767.5" ></text> +</g> +<g > +<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="661" width="1.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="1019.98" y="671.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="517" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="1196.86" y="527.5" ></text> +</g> +<g > +<title>libjson_set_string_const_key (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="885" width="0.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="1350.97" y="895.5" ></text> +</g> +<g > +<title>net_rx_action (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="453" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1336.08" y="463.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="909.3" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="912.28" y="703.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="594.9" y="661" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="597.92" y="671.5" ></text> +</g> +<g > +<title>__ext4_new_inode (40,404,040 samples, 0.25%)</title><rect x="996.8" y="597" width="3.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="999.84" y="607.5" ></text> +</g> +<g > +<title>git_config_open_ondisk (30,303,030 samples, 0.19%)</title><rect x="1083.5" y="821" width="2.7" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" /> +<text x="1086.53" y="831.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="457.4" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="460.45" y="767.5" ></text> +</g> +<g > +<title>__mem_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="582.7" y="485" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="585.66" y="495.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="982.0" y="645" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="984.95" y="655.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="549" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1209.99" y="559.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="916.3" y="597" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="919.28" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="988.1" y="789" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="991.08" y="799.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="883.0" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="886.01" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="985.5" y="773" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="988.46" y="783.5" ></text> +</g> +<g > +<title>tcp_data_queue (10,101,010 samples, 0.06%)</title><rect x="13.5" y="293" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="16.50" y="303.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="73.9" y="981" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="76.92" y="991.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="869.0" y="581" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="872.00" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (70,707,070 samples, 0.44%)</title><rect x="714.0" y="693" width="6.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="717.01" y="703.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="677" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1267.78" y="687.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="156.2" y="757" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="159.23" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="611.6" y="757" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="614.56" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="853" width="40.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1276.54" y="863.5" >ent..</text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="677" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="1231.88" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="439.9" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="442.94" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1086.2" y="789" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1089.15" y="799.5" ></text> +</g> +<g > +<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="385.6" y="533" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="388.65" y="543.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="892.6" y="693" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="895.64" y="703.5" ></text> +</g> +<g > +<title>ext4_mb_prefetch_fini (10,101,010 samples, 0.06%)</title><rect x="1174.6" y="565" width="0.9" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" /> +<text x="1177.59" y="575.5" ></text> +</g> +<g > +<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="96.7" y="837" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="99.69" y="847.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="453.9" y="645" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="456.95" y="655.5" ></text> +</g> +<g > +<title>storvsc_queuecommand (10,101,010 samples, 0.06%)</title><rect x="665.9" y="309" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="668.85" y="319.5" ></text> +</g> +<g > +<title>git_reference_create_matching (585,858,580 samples, 3.68%)</title><rect x="934.7" y="805" width="50.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="937.67" y="815.5" >git_r..</text> +</g> +<g > +<title>getname (10,101,010 samples, 0.06%)</title><rect x="613.3" y="677" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="616.31" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="23.1" y="933" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="26.13" y="943.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (30,303,030 samples, 0.19%)</title><rect x="793.7" y="485" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="796.69" y="495.5" ></text> +</g> +<g > +<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="932.0" y="389" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="935.04" y="399.5" ></text> +</g> +<g > +<title>ext4_dx_add_entry (20,202,020 samples, 0.13%)</title><rect x="1270.0" y="725" width="1.8" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" /> +<text x="1273.04" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="725" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1235.39" y="735.5" ></text> +</g> +<g > +<title>access (111,111,110 samples, 0.70%)</title><rect x="144.0" y="1013" width="9.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="146.97" y="1023.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="92.3" y="997" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="95.31" y="1007.5" ></text> +</g> +<g > +<title>__blk_mq_end_request (10,101,010 samples, 0.06%)</title><rect x="740.3" y="389" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="743.28" y="399.5" ></text> +</g> +<g > +<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="33.6" y="693" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="36.64" y="703.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="506.5" y="629" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="509.48" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="661" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1045.37" y="671.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="108.1" y="613" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="111.07" y="623.5" ></text> +</g> +<g > +<title>_find_next_zero_bit (10,101,010 samples, 0.06%)</title><rect x="960.1" y="437" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="963.06" y="447.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="654.5" y="485" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="657.47" y="495.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (40,404,040 samples, 0.25%)</title><rect x="930.3" y="645" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="933.29" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="552.9" y="773" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="555.89" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1025.7" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1028.74" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="888.3" y="741" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="891.26" y="751.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.06%)</title><rect x="681.6" y="821" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="684.61" y="831.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (30,303,030 samples, 0.19%)</title><rect x="266.6" y="565" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="269.56" y="575.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1123.8" y="517" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1126.81" y="527.5" ></text> +</g> +<g > +<title>__kmalloc (10,101,010 samples, 0.06%)</title><rect x="468.8" y="485" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="471.83" y="495.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="970.6" y="533" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="973.57" y="543.5" ></text> +</g> +<g > +<title>evict (282,828,280 samples, 1.78%)</title><rect x="277.9" y="613" width="24.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="280.94" y="623.5" >e..</text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="326.1" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="329.10" y="623.5" ></text> +</g> +<g > +<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="701.8" y="485" width="0.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="704.75" y="495.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="344.5" y="629" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="347.49" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="760.4" y="725" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="763.42" y="735.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (20,202,020 samples, 0.13%)</title><rect x="665.9" y="389" width="1.7" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="668.85" y="399.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="629" width="4.4" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1380.74" y="639.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="653.6" y="645" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="656.59" y="655.5" ></text> +</g> +<g > +<title>path_init (10,101,010 samples, 0.06%)</title><rect x="1144.8" y="677" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="1147.82" y="687.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="81.8" y="853" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="84.80" y="863.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="398.8" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="401.78" y="751.5" ></text> +</g> +<g > +<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.06%)</title><rect x="90.6" y="725" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="93.56" y="735.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="773" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1235.39" y="783.5" ></text> +</g> +<g > +<title>remove (50,505,050 samples, 0.32%)</title><rect x="404.0" y="821" width="4.4" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="407.04" y="831.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1262.53" y="655.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="770.1" y="581" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="773.05" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.76%)</title><rect x="695.6" y="693" width="10.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="698.62" y="703.5" ></text> +</g> +<g > +<title>lookup_dcache (10,101,010 samples, 0.06%)</title><rect x="662.3" y="645" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="665.35" y="655.5" ></text> +</g> +<g > +<title>ext4_finish_bio (10,101,010 samples, 0.06%)</title><rect x="986.3" y="533" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="989.33" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="967.9" y="645" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="970.94" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (171,717,170 samples, 1.08%)</title><rect x="196.5" y="645" width="14.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="199.51" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="798.1" y="741" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="801.07" y="751.5" ></text> +</g> +<g > +<title>ext4_add_entry (30,303,030 samples, 0.19%)</title><rect x="1270.0" y="741" width="2.7" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="1273.04" y="751.5" ></text> +</g> +<g > +<title>truncate_cleanup_folio (10,101,010 samples, 0.06%)</title><rect x="818.2" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="821.21" y="559.5" ></text> +</g> +<g > +<title>ext4_es_lookup_extent (10,101,010 samples, 0.06%)</title><rect x="1001.2" y="501" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" /> +<text x="1004.22" y="511.5" ></text> +</g> +<g > +<title>__filemap_fdatawrite_range (40,404,040 samples, 0.25%)</title><rect x="466.2" y="629" width="3.5" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="469.21" y="639.5" ></text> +</g> +<g > +<title>git_reference_symbolic_create_matching (404,040,400 samples, 2.54%)</title><rect x="768.3" y="805" width="35.0" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="771.30" y="815.5" >gi..</text> +</g> +<g > +<title>do_symlinkat (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="725" width="2.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1063.76" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="837" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1266.03" y="847.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.06%)</title><rect x="1356.7" y="789" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="1359.73" y="799.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="184.3" y="517" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="187.25" y="527.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="592.3" y="581" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="595.30" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="515.2" y="773" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="518.24" y="783.5" ></text> +</g> +<g > +<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="940.8" y="629" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="943.80" y="639.5" ></text> +</g> +<g > +<title>__do_sys_brk (10,101,010 samples, 0.06%)</title><rect x="328.7" y="645" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="331.73" y="655.5" ></text> +</g> +<g > +<title>ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1344.5" y="741" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1347.47" y="751.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="770.1" y="629" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="773.05" y="639.5" ></text> +</g> +<g > +<title>fsnotify (10,101,010 samples, 0.06%)</title><rect x="103.7" y="853" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="106.69" y="863.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="664.1" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="667.10" y="591.5" ></text> +</g> +<g > +<title>rename (131,313,130 samples, 0.82%)</title><rect x="786.7" y="741" width="11.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="789.69" y="751.5" ></text> +</g> +<g > +<title>inflateEnd (10,101,010 samples, 0.06%)</title><rect x="526.6" y="757" width="0.9" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="529.62" y="767.5" ></text> +</g> +<g > +<title>__es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="841.0" y="533" width="0.9" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" /> +<text x="843.98" y="543.5" ></text> +</g> +<g > +<title>free_rb_tree_fname (10,101,010 samples, 0.06%)</title><rect x="327.0" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="329.98" y="687.5" ></text> +</g> +<g > +<title>__d_alloc (10,101,010 samples, 0.06%)</title><rect x="146.6" y="805" width="0.9" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" /> +<text x="149.60" y="815.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="433.8" y="661" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="436.81" y="671.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (20,202,020 samples, 0.13%)</title><rect x="675.5" y="565" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="678.48" y="575.5" ></text> +</g> +<g > +<title>git_config_free (70,707,070 samples, 0.44%)</title><rect x="159.7" y="853" width="6.2" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="162.73" y="863.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="748.2" y="549" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="751.16" y="559.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="266.6" y="597" width="2.6" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="269.56" y="607.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="1122.9" y="565" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1125.93" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="802.4" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="805.45" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="645" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1261.65" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="965.3" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="968.32" y="671.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (20,202,020 samples, 0.13%)</title><rect x="1229.8" y="629" width="1.7" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="1232.76" y="639.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="851.5" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="854.48" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="168.5" y="821" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="171.49" y="831.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="767.4" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="770.42" y="735.5" ></text> +</g> +<g > +<title>log_entry_start (50,505,050 samples, 0.32%)</title><rect x="555.5" y="901" width="4.4" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" /> +<text x="558.52" y="911.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (20,202,020 samples, 0.13%)</title><rect x="665.9" y="469" width="1.7" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="668.85" y="479.5" ></text> +</g> +<g > +<title>ext4_superblock_csum_set (10,101,010 samples, 0.06%)</title><rect x="176.4" y="501" width="0.8" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" /> +<text x="179.37" y="511.5" ></text> +</g> +<g > +<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="469.7" y="613" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="472.71" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="491.6" y="741" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="494.60" y="751.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="782.3" y="581" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="785.31" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.06%)</title><rect x="722.8" y="693" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="725.77" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (363,636,360 samples, 2.28%)</title><rect x="563.4" y="725" width="31.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="566.40" y="735.5" >do..</text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="189.5" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="192.51" y="527.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="663.2" y="613" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="666.22" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1241.1" y="629" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1244.14" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="691.2" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="694.24" y="655.5" ></text> +</g> +<g > +<title>mod_node_page_state (10,101,010 samples, 0.06%)</title><rect x="263.1" y="373" width="0.8" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="266.06" y="383.5" ></text> +</g> +<g > +<title>ext4_fc_del (10,101,010 samples, 0.06%)</title><rect x="927.7" y="581" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="930.66" y="591.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="741" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1248.52" y="751.5" ></text> +</g> +<g > +<title>__handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="565" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="1108.42" y="575.5" ></text> +</g> +<g > +<title>xa_load (10,101,010 samples, 0.06%)</title><rect x="971.4" y="453" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" /> +<text x="974.45" y="463.5" ></text> +</g> +<g > +<title>lockref_get_not_dead (10,101,010 samples, 0.06%)</title><rect x="944.3" y="453" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="947.30" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1226.63" y="703.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="405" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1130.31" y="415.5" ></text> +</g> +<g > +<title>__block_commit_write (10,101,010 samples, 0.06%)</title><rect x="517.0" y="597" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="519.99" y="607.5" ></text> +</g> +<g > +<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="863.7" y="629" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="866.74" y="639.5" ></text> +</g> +<g > +<title>release_sock (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="773" width="2.7" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1344.84" y="783.5" ></text> +</g> +<g > +<title>ext4_io_submit (10,101,010 samples, 0.06%)</title><rect x="792.8" y="485" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" /> +<text x="795.82" y="495.5" ></text> +</g> +<g > +<title>str2hashbuf_signed (10,101,010 samples, 0.06%)</title><rect x="620.3" y="581" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="623.32" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="507.4" y="549" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="510.36" y="559.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (20,202,020 samples, 0.13%)</title><rect x="416.3" y="661" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="419.29" y="671.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="655.3" y="565" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="658.34" y="575.5" ></text> +</g> +<g > +<title>__dentry_kill (101,010,100 samples, 0.63%)</title><rect x="1122.1" y="645" width="8.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="1125.06" y="655.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="964.4" y="469" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="967.44" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (373,737,370 samples, 2.35%)</title><rect x="562.5" y="773" width="32.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="565.53" y="783.5" >[l..</text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="901" width="8.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1371.11" y="911.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="726.3" y="581" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="729.27" y="591.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="1102.8" y="421" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1105.79" y="431.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="485.5" y="533" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="488.47" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (212,121,210 samples, 1.33%)</title><rect x="45.0" y="821" width="18.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="48.03" y="831.5" ></text> +</g> +<g > +<title>do_softirq (40,404,040 samples, 0.25%)</title><rect x="1363.7" y="501" width="3.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="1366.73" y="511.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="80.1" y="773" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="83.05" y="783.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="203.5" y="549" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="206.52" y="559.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="966.2" y="661" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="969.19" y="671.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="750.8" y="565" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="753.79" y="575.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="373.4" y="629" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="376.39" y="639.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="517" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="1209.99" y="527.5" ></text> +</g> +<g > +<title>down_write (10,101,010 samples, 0.06%)</title><rect x="601.9" y="661" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" /> +<text x="604.93" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="475.8" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="478.84" y="735.5" ></text> +</g> +<g > +<title>__slab_free (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="629" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="1363.23" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="762.2" y="661" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="765.17" y="671.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="84.4" y="677" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="87.43" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1217.00" y="687.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="645.7" y="613" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="648.71" y="623.5" ></text> +</g> +<g > +<title>git_config_iterator_glob_new (20,202,020 samples, 0.13%)</title><rect x="828.7" y="821" width="1.8" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="831.72" y="831.5" ></text> +</g> +<g > +<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="357" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="1366.73" y="367.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="980.2" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="983.20" y="703.5" ></text> +</g> +<g > +<title>ext4_truncate (10,101,010 samples, 0.06%)</title><rect x="1097.5" y="549" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="1100.54" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_close (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="853" width="8.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1371.11" y="863.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="107.2" y="773" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="110.20" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="936.4" y="613" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="939.42" y="623.5" ></text> +</g> +<g > +<title>ext4_writepages (90,909,090 samples, 0.57%)</title><rect x="665.9" y="533" width="7.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="668.85" y="543.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="821.7" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="824.71" y="623.5" ></text> +</g> +<g > +<title>down_read_trylock (10,101,010 samples, 0.06%)</title><rect x="164.1" y="757" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="167.11" y="767.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="764.8" y="453" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" /> +<text x="767.80" y="463.5" ></text> +</g> +<g > +<title>truncate_cleanup_folio (10,101,010 samples, 0.06%)</title><rect x="464.5" y="581" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="467.45" y="591.5" ></text> +</g> +<g > +<title>scsi_dispatch_cmd (20,202,020 samples, 0.13%)</title><rect x="1133.4" y="325" width="1.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="1136.44" y="335.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="585.3" y="517" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="588.29" y="527.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="730.6" y="581" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="733.65" y="591.5" ></text> +</g> +<g > +<title>__dentry_kill (20,202,020 samples, 0.13%)</title><rect x="1096.7" y="629" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="1099.66" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="757.8" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="760.79" y="687.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="546.8" y="661" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="549.76" y="671.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="296.3" y="405" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="299.33" y="415.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1114.2" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1117.18" y="751.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="853" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="1349.22" y="863.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (20,202,020 samples, 0.13%)</title><rect x="703.5" y="469" width="1.8" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="706.50" y="479.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.06%)</title><rect x="638.7" y="661" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="641.71" y="671.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="80.9" y="805" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="83.93" y="815.5" ></text> +</g> +<g > +<title>rwsem_optimistic_spin (10,101,010 samples, 0.06%)</title><rect x="601.9" y="629" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" /> +<text x="604.93" y="639.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="1199.1" y="629" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" /> +<text x="1202.11" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1193.0" y="645" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1195.98" y="655.5" ></text> +</g> +<g > +<title>__ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="250.8" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="253.80" y="591.5" ></text> +</g> +<g > +<title>check_heap_object (10,101,010 samples, 0.06%)</title><rect x="364.6" y="629" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="367.63" y="639.5" ></text> +</g> +<g > +<title>ext4_journal_check_start (10,101,010 samples, 0.06%)</title><rect x="202.6" y="533" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="205.64" y="543.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="525.7" y="549" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="528.75" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="518.7" y="789" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="521.74" y="799.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="241.2" y="629" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="244.17" y="639.5" ></text> +</g> +<g > +<title>git_repository_open_ext (242,424,240 samples, 1.52%)</title><rect x="1242.9" y="869" width="21.0" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="1245.89" y="879.5" ></text> +</g> +<g > +<title>mas_find (10,101,010 samples, 0.06%)</title><rect x="328.7" y="581" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="331.73" y="591.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (10,101,010 samples, 0.06%)</title><rect x="930.3" y="501" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="933.29" y="511.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (70,707,070 samples, 0.44%)</title><rect x="380.4" y="629" width="6.1" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="383.39" y="639.5" ></text> +</g> +<g > +<title>fdopendir (20,202,020 samples, 0.13%)</title><rect x="329.6" y="805" width="1.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" /> +<text x="332.61" y="815.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="1183.4" y="629" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="1186.35" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="504.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="507.73" y="751.5" ></text> +</g> +<g > +<title>git_reference_normalize_name (10,101,010 samples, 0.06%)</title><rect x="872.5" y="789" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="875.50" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="693" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1243.27" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="608.9" y="757" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="611.93" y="767.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="203.5" y="501" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="206.52" y="511.5" ></text> +</g> +<g > +<title>__kmalloc (10,101,010 samples, 0.06%)</title><rect x="249.9" y="581" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="252.92" y="591.5" ></text> +</g> +<g > +<title>__sys_sendto (40,404,040 samples, 0.25%)</title><rect x="11.8" y="821" width="3.5" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="14.75" y="831.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1253.4" y="757" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1256.40" y="767.5" ></text> +</g> +<g > +<title>ip_output (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1348.34" y="703.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="765.7" y="469" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="768.67" y="479.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="228.0" y="549" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="231.03" y="559.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="795.4" y="357" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="798.44" y="367.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1197.73" y="655.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="668.5" y="389" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="671.48" y="399.5" ></text> +</g> +<g > +<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="707.9" y="533" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="710.88" y="543.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="693" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="1261.65" y="703.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="629" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1231.88" y="639.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (80,808,080 samples, 0.51%)</title><rect x="293.7" y="549" width="7.0" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="296.71" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1222.8" y="709" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1225.75" y="719.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="853" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1266.03" y="863.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1356.7" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1359.73" y="767.5" ></text> +</g> +<g > +<title>filename_lookup (40,404,040 samples, 0.25%)</title><rect x="941.7" y="549" width="3.5" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="944.68" y="559.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (20,202,020 samples, 0.13%)</title><rect x="1372.5" y="293" width="1.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1375.49" y="303.5" ></text> +</g> +<g > +<title>git_index_add (121,212,120 samples, 0.76%)</title><rect x="529.3" y="853" width="10.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="532.25" y="863.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.06%)</title><rect x="1196.5" y="677" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="1199.48" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="750.8" y="597" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="753.79" y="607.5" ></text> +</g> +<g > +<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="714.9" y="437" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="717.89" y="447.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="678.1" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="681.11" y="607.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="905.8" y="533" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="908.77" y="543.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="853.2" y="709" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="856.24" y="719.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="175.5" y="517" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="178.49" y="527.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="524.9" y="741" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="527.87" y="751.5" ></text> +</g> +<g > +<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="192.1" y="661" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="195.13" y="671.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="834.8" y="645" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="837.85" y="655.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="1141.3" y="549" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="1144.32" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="802.4" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="805.45" y="671.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="979.3" y="565" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="982.33" y="575.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="645" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1022.61" y="655.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1032.24" y="559.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.06%)</title><rect x="1143.9" y="645" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="1146.95" y="655.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="415.4" y="645" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="418.42" y="655.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="463.6" y="533" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="466.58" y="543.5" ></text> +</g> +<g > +<title>scsi_queue_rq (10,101,010 samples, 0.06%)</title><rect x="822.6" y="357" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="825.59" y="367.5" ></text> +</g> +<g > +<title>__sys_connect (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="853" width="12.2" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" /> +<text x="1379.87" y="863.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="965.3" y="581" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="968.32" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="835.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="838.72" y="767.5" ></text> +</g> +<g > +<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="299.0" y="501" width="0.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="301.96" y="511.5" ></text> +</g> +<g > +<title>ext4_es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="414.5" y="645" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" /> +<text x="417.54" y="655.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="506.5" y="677" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="509.48" y="687.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="496.0" y="693" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="498.98" y="703.5" ></text> +</g> +<g > +<title>pipe_release (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="757" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="1319.45" y="767.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_buffers (40,404,040 samples, 0.25%)</title><rect x="1101.0" y="469" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1104.04" y="479.5" ></text> +</g> +<g > +<title>filemap_get_entry (10,101,010 samples, 0.06%)</title><rect x="591.4" y="453" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" /> +<text x="594.42" y="463.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="726.3" y="613" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="729.27" y="623.5" ></text> +</g> +<g > +<title>sk_destruct (10,101,010 samples, 0.06%)</title><rect x="1376.0" y="709" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="1378.99" y="719.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="484.6" y="613" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="487.59" y="623.5" ></text> +</g> +<g > +<title>__es_delayed_clu (10,101,010 samples, 0.06%)</title><rect x="1164.1" y="597" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="1167.09" y="607.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="964.4" y="485" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="967.44" y="495.5" ></text> +</g> +<g > +<title>ext4_es_delayed_clu (10,101,010 samples, 0.06%)</title><rect x="1161.5" y="613" width="0.8" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" /> +<text x="1164.46" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (313,131,310 samples, 1.97%)</title><rect x="653.6" y="709" width="27.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="656.59" y="719.5" >x..</text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.38%)</title><rect x="315.6" y="757" width="5.3" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="318.60" y="767.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="984.6" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="987.58" y="591.5" ></text> +</g> +<g > +<title>init_file (10,101,010 samples, 0.06%)</title><rect x="918.9" y="565" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="921.91" y="575.5" ></text> +</g> +<g > +<title>storvsc_on_channel_callback (10,101,010 samples, 0.06%)</title><rect x="631.7" y="517" width="0.9" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" /> +<text x="634.70" y="527.5" ></text> +</g> +<g > +<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="613" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="1267.78" y="623.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="254.3" y="581" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="257.30" y="591.5" ></text> +</g> +<g > +<title>mod_objcg_state (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="437" width="0.8" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="1347.47" y="447.5" ></text> +</g> +<g > +<title>getdents64 (10,101,010 samples, 0.06%)</title><rect x="680.7" y="805" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="683.74" y="815.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (40,404,040 samples, 0.25%)</title><rect x="274.4" y="597" width="3.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="277.44" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1087.9" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1090.91" y="719.5" ></text> +</g> +<g > +<title>ksys_read (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="789" width="1.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="1322.95" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="727.1" y="693" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="730.14" y="703.5" ></text> +</g> +<g > +<title>ext4_evict_inode (50,505,050 samples, 0.32%)</title><rect x="411.0" y="693" width="4.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="414.04" y="703.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="942.6" y="437" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="945.55" y="447.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.06%)</title><rect x="926.8" y="485" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="929.79" y="495.5" ></text> +</g> +<g > +<title>__blk_mq_get_tag (10,101,010 samples, 0.06%)</title><rect x="1136.9" y="373" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="1139.94" y="383.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="784.9" y="517" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="787.94" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="777.1" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="780.06" y="687.5" ></text> +</g> +<g > +<title>libjson_set_internal (10,101,010 samples, 0.06%)</title><rect x="1348.8" y="885" width="0.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="1351.85" y="895.5" ></text> +</g> +<g > +<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="613" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" /> +<text x="1241.52" y="623.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="661" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="1267.78" y="671.5" ></text> +</g> +<g > +<title>ext4_free_inode (20,202,020 samples, 0.13%)</title><rect x="177.2" y="517" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="180.25" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (252,525,250 samples, 1.59%)</title><rect x="688.6" y="725" width="21.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="691.62" y="735.5" >[..</text> +</g> +<g > +<title>tcp_stream_alloc_skb (10,101,010 samples, 0.06%)</title><rect x="1336.6" y="725" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="1339.59" y="735.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (20,202,020 samples, 0.13%)</title><rect x="112.4" y="725" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="115.45" y="735.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="629" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1253.77" y="639.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="780.6" y="597" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="783.56" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (282,828,280 samples, 1.78%)</title><rect x="341.0" y="709" width="24.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="343.99" y="719.5" >_..</text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="746.4" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="749.41" y="687.5" ></text> +</g> +<g > +<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="17.9" y="949" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="20.88" y="959.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1123.8" y="549" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1126.81" y="559.5" ></text> +</g> +<g > +<title>submit_bio (10,101,010 samples, 0.06%)</title><rect x="466.2" y="533" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="469.21" y="543.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="940.8" y="533" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="943.80" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="830.5" y="821" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="833.47" y="831.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1029.61" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="661" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1243.27" y="671.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="341.0" y="597" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="343.99" y="607.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="880.4" y="485" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="883.38" y="495.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="939.9" y="485" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="942.92" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="863.7" y="661" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="866.74" y="671.5" ></text> +</g> +<g > +<title>remove (202,020,200 samples, 1.27%)</title><rect x="195.6" y="725" width="17.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="198.63" y="735.5" ></text> +</g> +<g > +<title>neigh_hh_output (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="533" width="4.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="1380.74" y="543.5" ></text> +</g> +<g > +<title>filemap_flush (40,404,040 samples, 0.25%)</title><rect x="466.2" y="645" width="3.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="469.21" y="655.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="439.9" y="533" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="442.94" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="32.8" y="853" width="9.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="35.77" y="863.5" ></text> +</g> +<g > +<title>unlink (60,606,060 samples, 0.38%)</title><rect x="321.7" y="757" width="5.3" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="324.73" y="767.5" ></text> +</g> +<g > +<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="1264.8" y="741" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1267.78" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="552.9" y="725" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="555.89" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1085.3" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1088.28" y="703.5" ></text> +</g> +<g > +<title>jsonrpc_request_send (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="949" width="7.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="1363.23" y="959.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="453.9" y="709" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="456.95" y="719.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="685.1" y="629" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="688.11" y="639.5" ></text> +</g> +<g > +<title>ip_local_deliver (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="357" width="5.2" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" /> +<text x="1372.86" y="367.5" ></text> +</g> +<g > +<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="834.0" y="501" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="836.97" y="511.5" ></text> +</g> +<g > +<title>ext4_orphan_add (10,101,010 samples, 0.06%)</title><rect x="933.8" y="645" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="936.79" y="655.5" ></text> +</g> +<g > +<title>__close (10,101,010 samples, 0.06%)</title><rect x="649.2" y="757" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="652.21" y="767.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="185.1" y="469" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="188.13" y="479.5" ></text> +</g> +<g > +<title>__ext4_new_inode (30,303,030 samples, 0.19%)</title><rect x="952.2" y="565" width="2.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="955.18" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="648.3" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="651.34" y="735.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="749.9" y="517" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="752.91" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="763.9" y="597" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="766.92" y="607.5" ></text> +</g> +<g > +<title>__netif_receive_skb (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="389" width="4.4" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1380.74" y="399.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (50,505,050 samples, 0.32%)</title><rect x="959.2" y="469" width="4.4" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="962.19" y="479.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="747.3" y="661" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="750.28" y="671.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="249.9" y="437" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="252.92" y="447.5" ></text> +</g> +<g > +<title>__ext4_new_inode (20,202,020 samples, 0.13%)</title><rect x="988.1" y="645" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="991.08" y="655.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="663.2" y="517" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="666.22" y="527.5" ></text> +</g> +<g > +<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="579.2" y="565" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="582.16" y="575.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="837" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1322.07" y="847.5" ></text> +</g> +<g > +<title>neigh_hh_output (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="629" width="1.7" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="1389.50" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1216.6" y="629" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1219.62" y="639.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="453" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="1128.56" y="463.5" ></text> +</g> +<g > +<title>insert_inode_locked (10,101,010 samples, 0.06%)</title><rect x="1180.7" y="693" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" /> +<text x="1183.72" y="703.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="453" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="1014.73" y="463.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1234.1" y="709" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1237.14" y="719.5" ></text> +</g> +<g > +<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.06%)</title><rect x="775.3" y="533" width="0.9" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" /> +<text x="778.30" y="543.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="746.4" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="749.41" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_chmod (20,202,020 samples, 0.13%)</title><rect x="1011.7" y="725" width="1.8" height="15.0" fill="rgb(0,237,201)" rx="2" ry="2" /> +<text x="1014.73" y="735.5" ></text> +</g> +<g > +<title>strerror_l (10,101,010 samples, 0.06%)</title><rect x="690.4" y="645" width="0.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="693.37" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="903.1" y="677" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="906.15" y="687.5" ></text> +</g> +<g > +<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="732.4" y="549" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="735.40" y="559.5" ></text> +</g> +<g > +<title>git_revparse_single (30,303,030 samples, 0.19%)</title><rect x="552.9" y="901" width="2.6" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="555.89" y="911.5" ></text> +</g> +<g > +<title>jsonrpc_set_version (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="901" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="1392.12" y="911.5" ></text> +</g> +<g > +<title>vfs_write (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="613" width="3.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1091.78" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="327.0" y="773" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="329.98" y="783.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="782.3" y="549" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="785.31" y="559.5" ></text> +</g> +<g > +<title>tcp_send_fin (70,707,070 samples, 0.44%)</title><rect x="1369.9" y="725" width="6.1" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="1372.86" y="735.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="1036.2" y="421" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1039.24" y="431.5" ></text> +</g> +<g > +<title>file_modified (10,101,010 samples, 0.06%)</title><rect x="540.6" y="645" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="543.63" y="655.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="564.3" y="613" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="567.28" y="623.5" ></text> +</g> +<g > +<title>out_of_line_wait_on_bit (10,101,010 samples, 0.06%)</title><rect x="108.1" y="757" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="111.07" y="767.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="1283.2" y="613" width="0.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="1286.17" y="623.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="504.7" y="661" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="507.73" y="671.5" ></text> +</g> +<g > +<title>vfs_rename (181,818,180 samples, 1.14%)</title><rect x="663.2" y="661" width="15.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="666.22" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="446.9" y="741" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="449.94" y="751.5" ></text> +</g> +<g > +<title>tcp_rcv_established (20,202,020 samples, 0.13%)</title><rect x="12.6" y="309" width="1.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="15.63" y="319.5" ></text> +</g> +<g > +<title>__x64_sys_link (101,010,100 samples, 0.63%)</title><rect x="599.3" y="709" width="8.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="602.30" y="719.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="80.1" y="741" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="83.05" y="751.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="645" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="1014.73" y="655.5" ></text> +</g> +<g > +<title>__folio_put (10,101,010 samples, 0.06%)</title><rect x="1129.9" y="533" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" /> +<text x="1132.94" y="543.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="877.8" y="501" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="880.75" y="511.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="562.5" y="709" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="565.53" y="719.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="469.7" y="629" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="472.71" y="639.5" ></text> +</g> +<g > +<title>mkdir (161,616,160 samples, 1.02%)</title><rect x="949.6" y="693" width="14.0" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" /> +<text x="952.56" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="72.2" y="789" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="75.17" y="799.5" ></text> +</g> +<g > +<title>ksys_write (30,303,030 samples, 0.19%)</title><rect x="433.8" y="709" width="2.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="436.81" y="719.5" ></text> +</g> +<g > +<title>ext4_getblk (40,404,040 samples, 0.25%)</title><rect x="701.8" y="533" width="3.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="704.75" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="486.3" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="489.35" y="703.5" ></text> +</g> +<g > +<title>list_lru_del_obj (10,101,010 samples, 0.06%)</title><rect x="786.7" y="597" width="0.9" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" /> +<text x="789.69" y="607.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1057.3" y="629" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="1060.26" y="639.5" ></text> +</g> +<g > +<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="289.3" y="485" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="292.33" y="495.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (20,202,020 samples, 0.13%)</title><rect x="395.3" y="613" width="1.7" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="398.28" y="623.5" ></text> +</g> +<g > +<title>sk_free (10,101,010 samples, 0.06%)</title><rect x="1376.0" y="741" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" /> +<text x="1378.99" y="751.5" ></text> +</g> +<g > +<title>flush_tlb_mm_range (10,101,010 samples, 0.06%)</title><rect x="398.8" y="613" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" /> +<text x="401.78" y="623.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="670.2" y="469" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="673.23" y="479.5" ></text> +</g> +<g > +<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="653.6" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="656.59" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.82%)</title><rect x="245.5" y="741" width="11.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="248.55" y="751.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="834.0" y="629" width="0.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="836.97" y="639.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="263.1" y="597" width="0.8" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" /> +<text x="266.06" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="677" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1253.77" y="687.5" ></text> +</g> +<g > +<title>unlink (70,707,070 samples, 0.44%)</title><rect x="305.1" y="741" width="6.1" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="308.09" y="751.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="774.4" y="453" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="777.43" y="463.5" ></text> +</g> +<g > +<title>iput (20,202,020 samples, 0.13%)</title><rect x="222.8" y="629" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="225.78" y="639.5" ></text> +</g> +<g > +<title>do_sys_openat2 (30,303,030 samples, 0.19%)</title><rect x="988.1" y="741" width="2.6" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="991.08" y="751.5" ></text> +</g> +<g > +<title>schedule_hrtimeout_range (30,303,030 samples, 0.19%)</title><rect x="25.8" y="821" width="2.6" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="28.76" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="735.9" y="693" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="738.90" y="703.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="667.6" y="485" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="670.60" y="495.5" ></text> +</g> +<g > +<title>ext4_read_inode_bitmap (10,101,010 samples, 0.06%)</title><rect x="119.5" y="805" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="122.45" y="815.5" ></text> +</g> +<g > +<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="86.2" y="725" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="89.18" y="735.5" ></text> +</g> +<g > +<title>tcp_v4_destroy_sock (10,101,010 samples, 0.06%)</title><rect x="1373.4" y="181" width="0.8" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" /> +<text x="1376.36" y="191.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="821.7" y="549" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="824.71" y="559.5" ></text> +</g> +<g > +<title>perf_event_mmap (10,101,010 samples, 0.06%)</title><rect x="241.2" y="565" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="244.17" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (121,212,120 samples, 0.76%)</title><rect x="614.2" y="725" width="10.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="617.19" y="735.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="341" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1140.82" y="351.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="724.5" y="709" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="727.52" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (525,252,520 samples, 3.30%)</title><rect x="259.6" y="725" width="45.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="262.56" y="735.5" >entr..</text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="213" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="1374.61" y="223.5" ></text> +</g> +<g > +<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1017.9" y="565" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="1020.86" y="575.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="663.2" y="597" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="666.22" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="904.0" y="581" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="907.02" y="591.5" ></text> +</g> +<g > +<title>nf_conntrack_in (10,101,010 samples, 0.06%)</title><rect x="1362.9" y="565" width="0.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="1365.86" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.76%)</title><rect x="897.9" y="757" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="900.89" y="767.5" ></text> +</g> +<g > +<title>lock_vma_under_rcu (10,101,010 samples, 0.06%)</title><rect x="164.1" y="773" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" /> +<text x="167.11" y="783.5" ></text> +</g> +<g > +<title>git_config_add_backend (20,202,020 samples, 0.13%)</title><rect x="527.5" y="837" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="530.50" y="847.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="721.9" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="724.89" y="591.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="629" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1030.49" y="639.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="966.2" y="581" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="969.19" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1236.8" y="741" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1239.76" y="751.5" ></text> +</g> +<g > +<title>tzset (10,101,010 samples, 0.06%)</title><rect x="802.4" y="741" width="0.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="805.45" y="751.5" ></text> +</g> +<g > +<title>path_parentat (20,202,020 samples, 0.13%)</title><rect x="460.1" y="693" width="1.7" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="463.08" y="703.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="689.5" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="692.49" y="607.5" ></text> +</g> +<g > +<title>ip_finish_output2 (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="565" width="2.6" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1336.08" y="575.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="975.8" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="978.82" y="527.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="324.4" y="533" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="327.35" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="430.3" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="433.30" y="863.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (40,404,040 samples, 0.25%)</title><rect x="1363.7" y="517" width="3.5" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1366.73" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="821" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="530.50" y="831.5" ></text> +</g> +<g > +<title>vfs_rename (131,313,130 samples, 0.82%)</title><rect x="1130.8" y="661" width="11.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="1133.81" y="671.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.06%)</title><rect x="1075.6" y="661" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1078.65" y="671.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="484.6" y="661" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="487.59" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="495.1" y="757" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="498.10" y="767.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="167.6" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="170.61" y="799.5" ></text> +</g> +<g > +<title>ci_run_git_repo (13,585,858,450 samples, 85.34%)</title><rect x="154.5" y="949" width="1177.7" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="157.48" y="959.5" >ci_run_git_repo</text> +</g> +<g > +<title>ext4_getblk (40,404,040 samples, 0.25%)</title><rect x="1044.1" y="629" width="3.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="1047.12" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1096.7" y="533" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1099.66" y="543.5" ></text> +</g> +<g > +<title>ext4_es_insert_delayed_block (10,101,010 samples, 0.06%)</title><rect x="834.0" y="517" width="0.8" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" /> +<text x="836.97" y="527.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="757" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1332.58" y="767.5" ></text> +</g> +<g > +<title>__ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="661" width="1.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1389.50" y="671.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="383.0" y="549" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="386.02" y="559.5" ></text> +</g> +<g > +<title>vfs_mkdir (111,111,110 samples, 0.70%)</title><rect x="696.5" y="613" width="9.6" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="699.50" y="623.5" ></text> +</g> +<g > +<title>path_put (10,101,010 samples, 0.06%)</title><rect x="496.0" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="498.98" y="671.5" ></text> +</g> +<g > +<title>x64_sys_call (202,020,200 samples, 1.27%)</title><rect x="45.9" y="789" width="17.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="48.90" y="799.5" ></text> +</g> +<g > +<title>do_accept (40,404,040 samples, 0.25%)</title><rect x="66.0" y="789" width="3.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="69.04" y="799.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="735.9" y="629" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="738.90" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="879.5" y="645" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="882.51" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (30,303,030 samples, 0.19%)</title><rect x="1328.7" y="869" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1331.71" y="879.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="528.4" y="629" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="531.38" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="22.3" y="949" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="25.26" y="959.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1249.9" y="709" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1252.90" y="719.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="902.3" y="613" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="905.27" y="623.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="725" width="0.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="1329.95" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.70%)</title><rect x="530.1" y="789" width="9.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="533.13" y="799.5" ></text> +</g> +<g > +<title>atime_needs_update (10,101,010 samples, 0.06%)</title><rect x="253.4" y="645" width="0.9" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" /> +<text x="256.43" y="655.5" ></text> +</g> +<g > +<title>libjson_set_string_const_key (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="885" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="1392.12" y="895.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="17.9" y="933" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="20.88" y="943.5" ></text> +</g> +<g > +<title>ext4_es_lookup_extent (10,101,010 samples, 0.06%)</title><rect x="342.7" y="581" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" /> +<text x="345.74" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="553.8" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="556.77" y="703.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="180.7" y="373" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="183.75" y="383.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (40,404,040 samples, 0.25%)</title><rect x="1044.1" y="597" width="3.5" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="1047.12" y="607.5" ></text> +</g> +<g > +<title>memcg_list_lru_alloc (10,101,010 samples, 0.06%)</title><rect x="633.5" y="533" width="0.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" /> +<text x="636.45" y="543.5" ></text> +</g> +<g > +<title>__blk_mq_free_request (10,101,010 samples, 0.06%)</title><rect x="663.2" y="421" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="666.22" y="431.5" ></text> +</g> +<g > +<title>ip_queue_xmit (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="645" width="4.4" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1380.74" y="655.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (30,303,030 samples, 0.19%)</title><rect x="539.8" y="661" width="2.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="542.76" y="671.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="876.9" y="581" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="879.88" y="591.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="293" width="2.6" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1336.08" y="303.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="657.1" y="501" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="660.09" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="539.8" y="805" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="542.76" y="815.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="408.4" y="853" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="411.41" y="863.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="963.6" y="613" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="966.57" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="784.9" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="787.94" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="727.1" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="730.14" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_rename (313,131,310 samples, 1.97%)</title><rect x="653.6" y="693" width="27.1" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="656.59" y="703.5" >_..</text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="1167.6" y="565" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="1170.59" y="575.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="234.2" y="549" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="237.16" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="747.3" y="645" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="750.28" y="655.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1259.03" y="671.5" ></text> +</g> +<g > +<title>file_modified (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="565" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1026.98" y="575.5" ></text> +</g> +<g > +<title>realloc (20,202,020 samples, 0.13%)</title><rect x="1203.5" y="661" width="1.7" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="1206.49" y="671.5" ></text> +</g> +<g > +<title>do_rmdir (60,606,060 samples, 0.38%)</title><rect x="423.3" y="757" width="5.3" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="426.30" y="767.5" ></text> +</g> +<g > +<title>list_lru_add_obj (10,101,010 samples, 0.06%)</title><rect x="971.4" y="485" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" /> +<text x="974.45" y="495.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list.part.0 (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="453" width="2.7" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" /> +<text x="1136.44" y="463.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="916.3" y="661" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="919.28" y="671.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="580.9" y="565" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="583.91" y="575.5" ></text> +</g> +<g > +<title>ext4_read_inode_bitmap (10,101,010 samples, 0.06%)</title><rect x="80.9" y="837" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="83.93" y="847.5" ></text> +</g> +<g > +<title>memcg_account_kmem (10,101,010 samples, 0.06%)</title><rect x="59.0" y="677" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="62.04" y="687.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="904.0" y="533" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="907.02" y="543.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (40,404,040 samples, 0.25%)</title><rect x="617.7" y="629" width="3.5" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="620.69" y="639.5" ></text> +</g> +<g > +<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="148.4" y="757" width="0.8" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="151.35" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="433.8" y="773" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="436.81" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (50,505,050 samples, 0.32%)</title><rect x="432.1" y="837" width="4.3" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="435.06" y="847.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="661" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1014.73" y="671.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="611.6" y="613" width="0.8" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" /> +<text x="614.56" y="623.5" ></text> +</g> +<g > +<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="650.1" y="645" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="653.09" y="655.5" ></text> +</g> +<g > +<title>__sys_connect_file (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="837" width="12.2" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" /> +<text x="1379.87" y="847.5" ></text> +</g> +<g > +<title>dentry_free (10,101,010 samples, 0.06%)</title><rect x="1122.1" y="629" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1125.06" y="639.5" ></text> +</g> +<g > +<title>do_mkdirat (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="725" width="7.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="1044.50" y="735.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="1242.0" y="581" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1245.02" y="591.5" ></text> +</g> +<g > +<title>hook_file_open (10,101,010 samples, 0.06%)</title><rect x="744.7" y="501" width="0.8" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="747.66" y="511.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="476.7" y="565" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="479.71" y="575.5" ></text> +</g> +<g > +<title>ext4_mkdir (333,333,330 samples, 2.09%)</title><rect x="564.3" y="645" width="28.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="567.28" y="655.5" >ex..</text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="798.9" y="725" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="801.95" y="735.5" ></text> +</g> +<g > +<title>mnt_drop_write (10,101,010 samples, 0.06%)</title><rect x="679.0" y="677" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="681.98" y="687.5" ></text> +</g> +<g > +<title>ext4_delete_entry (40,404,040 samples, 0.25%)</title><rect x="230.7" y="581" width="3.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="233.66" y="591.5" ></text> +</g> +<g > +<title>save_fpregs_to_fpstate (10,101,010 samples, 0.06%)</title><rect x="932.0" y="373" width="0.9" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" /> +<text x="935.04" y="383.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="258.7" y="677" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="261.68" y="687.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (60,606,060 samples, 0.38%)</title><rect x="315.6" y="709" width="5.3" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="318.60" y="719.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="581" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1045.37" y="591.5" ></text> +</g> +<g > +<title>neigh_hh_output (20,202,020 samples, 0.13%)</title><rect x="12.6" y="581" width="1.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="15.63" y="591.5" ></text> +</g> +<g > +<title>ext4_readdir (70,707,070 samples, 0.44%)</title><rect x="247.3" y="661" width="6.1" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="250.30" y="671.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="533.6" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="536.63" y="671.5" ></text> +</g> +<g > +<title>ext4_rename2 (60,606,060 samples, 0.38%)</title><rect x="466.2" y="693" width="5.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="469.21" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="70.4" y="885" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="73.42" y="895.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="249.9" y="517" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="252.92" y="527.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (60,606,060 samples, 0.38%)</title><rect x="667.6" y="501" width="5.3" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="670.60" y="511.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="922.4" y="709" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="925.41" y="719.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="714.9" y="453" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="717.89" y="463.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="757" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1188.98" y="767.5" ></text> +</g> +<g > +<title>lockref_get_not_dead (10,101,010 samples, 0.06%)</title><rect x="809.5" y="613" width="0.8" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="812.45" y="623.5" ></text> +</g> +<g > +<title>wake_up_bit (10,101,010 samples, 0.06%)</title><rect x="825.2" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="828.22" y="607.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="847.1" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="850.11" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="167.6" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="170.61" y="815.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="802.4" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="805.45" y="623.5" ></text> +</g> +<g > +<title>__netif_receive_skb_core.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1386.5" y="453" width="0.9" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" /> +<text x="1389.50" y="463.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="565" width="7.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1135.56" y="575.5" ></text> +</g> +<g > +<title>open_last_lookups (90,909,090 samples, 0.57%)</title><rect x="1050.3" y="677" width="7.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="1053.25" y="687.5" ></text> +</g> +<g > +<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="629" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="1267.78" y="639.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="601.1" y="645" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="604.05" y="655.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="309.5" y="629" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="312.47" y="639.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="451.3" y="709" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="454.32" y="719.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1262.53" y="623.5" ></text> +</g> +<g > +<title>folio_wait_bit (20,202,020 samples, 0.13%)</title><rect x="659.7" y="501" width="1.8" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" /> +<text x="662.72" y="511.5" ></text> +</g> +<g > +<title>ksys_write (40,404,040 samples, 0.25%)</title><rect x="1108.0" y="645" width="3.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="1111.05" y="655.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="677" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1095.28" y="687.5" ></text> +</g> +<g > +<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.06%)</title><rect x="591.4" y="501" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="594.42" y="511.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="487.2" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="490.22" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (333,333,330 samples, 2.09%)</title><rect x="1191.2" y="821" width="28.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1194.23" y="831.5" >[l..</text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="629" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1211.74" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="458.3" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="461.32" y="783.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="286.7" y="565" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="289.70" y="575.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="174.6" y="517" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="177.62" y="527.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="979.3" y="405" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="982.33" y="415.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="661" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="1238.89" y="671.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="709" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1188.98" y="719.5" ></text> +</g> +<g > +<title>__open64_nocancel (30,303,030 samples, 0.19%)</title><rect x="611.6" y="773" width="2.6" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="614.56" y="783.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="905.8" y="661" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="908.77" y="671.5" ></text> +</g> +<g > +<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="789" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="1319.45" y="799.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.06%)</title><rect x="484.6" y="741" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="487.59" y="751.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="123.0" y="741" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="125.96" y="751.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.13%)</title><rect x="765.7" y="661" width="1.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="768.67" y="671.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="853.2" y="613" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="856.24" y="623.5" ></text> +</g> +<g > +<title>ext4_do_writepages (20,202,020 samples, 0.13%)</title><rect x="822.6" y="533" width="1.7" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="825.59" y="543.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="821" width="0.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="1322.07" y="831.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="821.7" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="824.71" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="594.9" y="709" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="597.92" y="719.5" ></text> +</g> +<g > +<title>ext4_rename2 (60,606,060 samples, 0.38%)</title><rect x="929.4" y="677" width="5.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="932.42" y="687.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="235.0" y="517" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="238.04" y="527.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="749.9" y="501" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="752.91" y="511.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="450.4" y="597" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="453.44" y="607.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="181.6" y="661" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="184.62" y="671.5" ></text> +</g> +<g > +<title>memcmp (10,101,010 samples, 0.06%)</title><rect x="1200.9" y="549" width="0.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="1203.86" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_close (20,202,020 samples, 0.13%)</title><rect x="237.7" y="709" width="1.7" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="240.66" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (232,323,230 samples, 1.46%)</title><rect x="1021.4" y="773" width="20.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1024.36" y="783.5" ></text> +</g> +<g > +<title>jbd2_alloc (10,101,010 samples, 0.06%)</title><rect x="926.8" y="517" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="929.79" y="527.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="975.8" y="453" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="978.82" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (2,818,181,790 samples, 17.70%)</title><rect x="559.9" y="869" width="244.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="562.90" y="879.5" >[libgit2.so.1.7.2]</text> +</g> +<g > +<title>ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="677" width="1.7" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1389.50" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (212,121,210 samples, 1.33%)</title><rect x="45.0" y="837" width="18.4" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="48.03" y="847.5" ></text> +</g> +<g > +<title>readdir64 (101,010,100 samples, 0.63%)</title><rect x="331.4" y="805" width="8.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="334.36" y="815.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1024.9" y="725" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="1027.86" y="735.5" ></text> +</g> +<g > +<title>__ip_finish_output (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="117" width="1.7" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1336.96" y="127.5" ></text> +</g> +<g > +<title>__x64_sys_openat (121,212,120 samples, 0.76%)</title><rect x="1049.4" y="741" width="10.5" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="1052.38" y="751.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.06%)</title><rect x="325.2" y="597" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="328.23" y="607.5" ></text> +</g> +<g > +<title>iput (90,909,090 samples, 0.57%)</title><rect x="654.5" y="613" width="7.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="657.47" y="623.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (20,202,020 samples, 0.13%)</title><rect x="848.0" y="629" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="850.98" y="639.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="692.1" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="695.12" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="773" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1247.64" y="783.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="766.5" y="517" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="769.55" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="978.5" y="725" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="981.45" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (787,878,780 samples, 4.95%)</title><rect x="478.5" y="885" width="68.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="481.46" y="895.5" >[libgit..</text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="773" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1186.35" y="783.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="856.7" y="645" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="859.74" y="655.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="697.4" y="549" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="700.37" y="559.5" ></text> +</g> +<g > +<title>git_attr_add_macro (30,303,030 samples, 0.19%)</title><rect x="497.7" y="789" width="2.7" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="500.73" y="799.5" ></text> +</g> +<g > +<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="188.6" y="517" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="191.63" y="527.5" ></text> +</g> +<g > +<title>json_object_new_object (20,202,020 samples, 0.13%)</title><rect x="18.8" y="917" width="1.7" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="21.76" y="927.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1217.00" y="719.5" ></text> +</g> +<g > +<title>ext4_create (424,242,420 samples, 2.66%)</title><rect x="105.4" y="837" width="36.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="108.44" y="847.5" >ext..</text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="219.3" y="597" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="222.28" y="607.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="175.5" y="485" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="178.49" y="495.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1015.2" y="757" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1018.23" y="767.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="200.9" y="485" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="203.89" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="789" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1071.64" y="799.5" ></text> +</g> +<g > +<title>ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1334.0" y="165" width="1.7" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1336.96" y="175.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="437" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="1032.24" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1215.7" y="661" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1218.75" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="908.4" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="911.40" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="852.4" y="773" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="855.36" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="837" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1328.20" y="847.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="929.4" y="597" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="932.42" y="607.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.13%)</title><rect x="765.7" y="565" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="768.67" y="575.5" ></text> +</g> +<g > +<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="249.9" y="405" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="252.92" y="415.5" ></text> +</g> +<g > +<title>do_readlinkat (10,101,010 samples, 0.06%)</title><rect x="757.8" y="645" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="760.79" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="805" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1361.48" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="742.0" y="661" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="745.03" y="671.5" ></text> +</g> +<g > +<title>filemap_flush (20,202,020 samples, 0.13%)</title><rect x="822.6" y="613" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="825.59" y="623.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="748.2" y="581" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="751.16" y="591.5" ></text> +</g> +<g > +<title>ext4_readdir (20,202,020 samples, 0.13%)</title><rect x="880.4" y="581" width="1.7" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="883.38" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="726.3" y="661" width="0.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="729.27" y="671.5" ></text> +</g> +<g > +<title>fprintf (30,303,030 samples, 0.19%)</title><rect x="1328.7" y="885" width="2.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1331.71" y="895.5" ></text> +</g> +<g > +<title>evict (50,505,050 samples, 0.32%)</title><rect x="177.2" y="549" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="180.25" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="770.9" y="677" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="773.93" y="687.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (50,505,050 samples, 0.32%)</title><rect x="701.8" y="581" width="4.3" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="704.75" y="591.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="541.5" y="565" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="544.51" y="575.5" ></text> +</g> +<g > +<title>__fput (20,202,020 samples, 0.13%)</title><rect x="327.0" y="709" width="1.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="329.98" y="719.5" ></text> +</g> +<g > +<title>ext4_clear_inode (20,202,020 samples, 0.13%)</title><rect x="788.4" y="533" width="1.8" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="791.44" y="543.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="693.0" y="565" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="695.99" y="575.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="784.9" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="787.94" y="511.5" ></text> +</g> +<g > +<title>x64_sys_call (90,909,090 samples, 0.57%)</title><rect x="410.2" y="773" width="7.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="413.16" y="783.5" ></text> +</g> +<g > +<title>process_measurement (10,101,010 samples, 0.06%)</title><rect x="749.0" y="549" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="752.04" y="559.5" ></text> +</g> +<g > +<title>ext4_mb_prefetch (20,202,020 samples, 0.13%)</title><rect x="961.8" y="437" width="1.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="964.81" y="447.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="725" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1247.64" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="213.1" y="725" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="216.15" y="735.5" ></text> +</g> +<g > +<title>tcp_time_wait (10,101,010 samples, 0.06%)</title><rect x="38.0" y="165" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="41.02" y="175.5" ></text> +</g> +<g > +<title>__strftime_l (10,101,010 samples, 0.06%)</title><rect x="17.0" y="949" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="20.01" y="959.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="504.7" y="645" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="507.73" y="655.5" ></text> +</g> +<g > +<title>hook_path_unlink (10,101,010 samples, 0.06%)</title><rect x="308.6" y="645" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="311.59" y="655.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (80,808,080 samples, 0.51%)</title><rect x="760.4" y="709" width="7.0" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="763.42" y="719.5" ></text> +</g> +<g > +<title>security_inode_alloc (10,101,010 samples, 0.06%)</title><rect x="989.0" y="581" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="991.96" y="591.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="524.9" y="581" width="0.8" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="527.87" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="682.5" y="805" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="685.49" y="815.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="749.0" y="629" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="752.04" y="639.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="439.9" y="565" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="442.94" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (464,646,460 samples, 2.92%)</title><rect x="640.5" y="789" width="40.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="643.46" y="799.5" >[li..</text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="311.2" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="314.22" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="439.9" y="757" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="442.94" y="767.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="974.9" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="977.95" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="707.9" y="677" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="710.88" y="687.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="535.4" y="613" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="538.38" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (464,646,460 samples, 2.92%)</title><rect x="438.2" y="853" width="40.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="441.19" y="863.5" >[li..</text> +</g> +<g > +<title>filemap_fdatawrite_wbc (40,404,040 samples, 0.25%)</title><rect x="466.2" y="613" width="3.5" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="469.21" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 1.08%)</title><rect x="77.4" y="965" width="14.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="80.42" y="975.5" ></text> +</g> +<g > +<title>ip_queue_xmit (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="661" width="2.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1336.08" y="671.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="318.2" y="613" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="321.22" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="809.5" y="725" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="812.45" y="735.5" ></text> +</g> +<g > +<title>__ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="620.3" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="623.32" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (60,606,060 samples, 0.38%)</title><rect x="423.3" y="789" width="5.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="426.30" y="799.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1211.4" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1214.37" y="751.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1125.6" y="549" width="0.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1128.56" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="685.1" y="693" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="688.11" y="703.5" ></text> +</g> +<g > +<title>do_renameat2 (131,313,130 samples, 0.82%)</title><rect x="460.1" y="725" width="11.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="463.08" y="735.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="717.5" y="517" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="720.51" y="527.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="756.0" y="629" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="759.04" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="901.4" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="904.40" y="687.5" ></text> +</g> +<g > +<title>ext4_read_inode_bitmap (10,101,010 samples, 0.06%)</title><rect x="698.2" y="565" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="701.25" y="575.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1234.1" y="725" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="1237.14" y="735.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="789" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1198.61" y="799.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="446.1" y="661" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="449.07" y="671.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="249.9" y="421" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="252.92" y="431.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="566.9" y="613" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="569.90" y="623.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="772.7" y="437" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="775.68" y="447.5" ></text> +</g> +<g > +<title>ext4_create (20,202,020 samples, 0.13%)</title><rect x="988.1" y="661" width="1.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="991.08" y="671.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="338.4" y="581" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="341.36" y="591.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="523.1" y="645" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="526.12" y="655.5" ></text> +</g> +<g > +<title>open64 (131,313,130 samples, 0.82%)</title><rect x="1049.4" y="805" width="11.4" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="1052.38" y="815.5" ></text> +</g> +<g > +<title>scsi_done (10,101,010 samples, 0.06%)</title><rect x="631.7" y="485" width="0.9" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" /> +<text x="634.70" y="495.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="979.3" y="421" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="982.33" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="789" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1243.27" y="799.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="613" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1209.99" y="623.5" ></text> +</g> +<g > +<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="91.4" y="757" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="94.43" y="767.5" ></text> +</g> +<g > +<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="298.1" y="453" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="301.08" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="755.2" y="757" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="758.16" y="767.5" ></text> +</g> +<g > +<title>git_repository_config_snapshot (121,212,120 samples, 0.76%)</title><rect x="897.9" y="789" width="10.5" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="900.89" y="799.5" ></text> +</g> +<g > +<title>atime_needs_update (10,101,010 samples, 0.06%)</title><rect x="885.6" y="581" width="0.9" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" /> +<text x="888.63" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="888.3" y="597" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="891.26" y="607.5" ></text> +</g> +<g > +<title>ip_local_out (50,505,050 samples, 0.32%)</title><rect x="35.4" y="565" width="4.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="38.39" y="575.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1054.6" y="613" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1057.63" y="623.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="1094.9" y="549" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="1097.91" y="559.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="511.7" y="629" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="514.74" y="639.5" ></text> +</g> +<g > +<title>__dcgettext (10,101,010 samples, 0.06%)</title><rect x="690.4" y="629" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="693.37" y="639.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1112.4" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1115.42" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="892.6" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="895.64" y="767.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (10,101,010 samples, 0.06%)</title><rect x="508.2" y="629" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="511.24" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="530.50" y="783.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="1270.0" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1273.04" y="703.5" ></text> +</g> +<g > +<title>hook_file_alloc_security (10,101,010 samples, 0.06%)</title><rect x="918.9" y="549" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="921.91" y="559.5" ></text> +</g> +<g > +<title>mntput_no_expire (10,101,010 samples, 0.06%)</title><rect x="370.8" y="661" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="373.76" y="671.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="940.8" y="565" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="943.80" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="805" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="551.52" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="315.6" y="773" width="5.3" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="318.60" y="783.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="867.2" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="870.25" y="575.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="911.9" y="693" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="914.90" y="703.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="12.6" y="565" width="1.8" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="15.63" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.70%)</title><rect x="1201.7" y="741" width="9.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1204.74" y="751.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="1322.6" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1325.58" y="735.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="156.2" y="821" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="159.23" y="831.5" ></text> +</g> +<g > +<title>tcp_conn_request (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="309" width="0.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="1390.37" y="319.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="910.2" y="773" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="913.15" y="783.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="570.4" y="549" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="573.41" y="559.5" ></text> +</g> +<g > +<title>__fput_sync (90,909,090 samples, 0.57%)</title><rect x="1369.0" y="837" width="7.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="1371.98" y="847.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="980.2" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="983.20" y="671.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1122.9" y="501" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1125.93" y="511.5" ></text> +</g> +<g > +<title>new_inode (10,101,010 samples, 0.06%)</title><rect x="773.6" y="501" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="776.55" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (424,242,420 samples, 2.66%)</title><rect x="686.9" y="773" width="36.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="689.87" y="783.5" >[li..</text> +</g> +<g > +<title>ip_output (20,202,020 samples, 0.13%)</title><rect x="12.6" y="645" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="15.63" y="655.5" ></text> +</g> +<g > +<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="732.4" y="581" width="1.7" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="735.40" y="591.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="397.0" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="400.03" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="177.2" y="645" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="180.25" y="655.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="74.8" y="901" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="77.80" y="911.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="485.5" y="613" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="488.47" y="623.5" ></text> +</g> +<g > +<title>remove (90,909,090 samples, 0.57%)</title><rect x="184.3" y="709" width="7.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="187.25" y="719.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="774.4" y="469" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="777.43" y="479.5" ></text> +</g> +<g > +<title>blkcg_set_ioprio (10,101,010 samples, 0.06%)</title><rect x="1136.1" y="469" width="0.8" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" /> +<text x="1139.07" y="479.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1321.7" y="837" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1324.70" y="847.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="789" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1202.11" y="799.5" ></text> +</g> +<g > +<title>net_rx_action (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1348.34" y="543.5" ></text> +</g> +<g > +<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="1065.1" y="613" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="1068.14" y="623.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="293" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="1040.99" y="303.5" ></text> +</g> +<g > +<title>sbitmap_queue_get_shallow (10,101,010 samples, 0.06%)</title><rect x="1136.9" y="357" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="1139.94" y="367.5" ></text> +</g> +<g > +<title>do_syscall_64 (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="901" width="12.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1379.87" y="911.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="407.5" y="613" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="410.54" y="623.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="693" width="3.5" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="1071.64" y="703.5" ></text> +</g> +<g > +<title>mark_buffer_dirty (10,101,010 samples, 0.06%)</title><rect x="541.5" y="581" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="544.51" y="591.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (10,101,010 samples, 0.06%)</title><rect x="817.3" y="565" width="0.9" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="820.34" y="575.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="1165.0" y="549" width="2.6" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1167.96" y="559.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (30,303,030 samples, 0.19%)</title><rect x="702.6" y="485" width="2.7" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="705.63" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.06%)</title><rect x="965.3" y="629" width="0.9" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="968.32" y="639.5" ></text> +</g> +<g > +<title>ext4_evict_inode (131,313,130 samples, 0.82%)</title><rect x="352.4" y="629" width="11.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="355.37" y="639.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="948.7" y="501" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="951.68" y="511.5" ></text> +</g> +<g > +<title>vfs_statx (30,303,030 samples, 0.19%)</title><rect x="969.7" y="613" width="2.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="972.70" y="623.5" ></text> +</g> +<g > +<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="544.1" y="741" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="547.14" y="751.5" ></text> +</g> +<g > +<title>neigh_hh_output (50,505,050 samples, 0.32%)</title><rect x="1363.7" y="549" width="4.4" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="1366.73" y="559.5" ></text> +</g> +<g > +<title>readlink (50,505,050 samples, 0.32%)</title><rect x="490.7" y="757" width="4.4" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="493.72" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (505,050,500 samples, 3.17%)</title><rect x="934.7" y="773" width="43.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="937.67" y="783.5" >[lib..</text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="821" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1247.64" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="1104.5" y="757" width="8.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1107.54" y="767.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="830.5" y="773" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="833.47" y="783.5" ></text> +</g> +<g > +<title>inode_set_flags (10,101,010 samples, 0.06%)</title><rect x="510.0" y="629" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="512.99" y="639.5" ></text> +</g> +<g > +<title>init_file (10,101,010 samples, 0.06%)</title><rect x="877.8" y="533" width="0.8" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="880.75" y="543.5" ></text> +</g> +<g > +<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="824.3" y="629" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="827.34" y="639.5" ></text> +</g> +<g > +<title>filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="968.8" y="517" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="971.82" y="527.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (50,505,050 samples, 0.32%)</title><rect x="555.5" y="885" width="4.4" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="558.52" y="895.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="611.6" y="645" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="614.56" y="655.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="955.7" y="421" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="958.69" y="431.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="725" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1262.53" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (121,212,120 samples, 0.76%)</title><rect x="614.2" y="741" width="10.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="617.19" y="751.5" ></text> +</g> +<g > +<title>git_config_snapshot (30,303,030 samples, 0.19%)</title><rect x="475.0" y="821" width="2.6" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="477.96" y="831.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="953.1" y="549" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="956.06" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="728.9" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="731.90" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="474.1" y="677" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="477.09" y="687.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="507.4" y="565" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="510.36" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_rename (171,717,170 samples, 1.08%)</title><rect x="811.2" y="709" width="14.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="814.21" y="719.5" ></text> +</g> +<g > +<title>readdir64 (10,101,010 samples, 0.06%)</title><rect x="680.7" y="821" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="683.74" y="831.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="834.0" y="581" width="0.8" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="836.97" y="591.5" ></text> +</g> +<g > +<title>git_refdb_open (40,404,040 samples, 0.25%)</title><rect x="888.3" y="773" width="3.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="891.26" y="783.5" ></text> +</g> +<g > +<title>open64 (111,111,110 samples, 0.70%)</title><rect x="996.0" y="773" width="9.6" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="998.96" y="783.5" ></text> +</g> +<g > +<title>loopback_xmit (10,101,010 samples, 0.06%)</title><rect x="1367.2" y="501" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1370.23" y="511.5" ></text> +</g> +<g > +<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.06%)</title><rect x="1177.2" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1180.22" y="639.5" ></text> +</g> +<g > +<title>__alloc_pages (20,202,020 samples, 0.13%)</title><rect x="1007.3" y="533" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="1010.35" y="543.5" ></text> +</g> +<g > +<title>__alloc_skb (20,202,020 samples, 0.13%)</title><rect x="1364.6" y="213" width="1.8" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="1367.61" y="223.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (313,131,310 samples, 1.97%)</title><rect x="686.9" y="741" width="27.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="689.87" y="751.5" >[..</text> +</g> +<g > +<title>filemap_fdatawrite_wbc (20,202,020 samples, 0.13%)</title><rect x="822.6" y="581" width="1.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="825.59" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="798.9" y="645" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="801.95" y="655.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="276.2" y="581" width="1.7" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="279.19" y="591.5" ></text> +</g> +<g > +<title>obj_cgroup_uncharge (10,101,010 samples, 0.06%)</title><rect x="784.9" y="597" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="787.94" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="834.0" y="693" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="836.97" y="703.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1213.1" y="581" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="1216.12" y="591.5" ></text> +</g> +<g > +<title>__ext4_link (20,202,020 samples, 0.13%)</title><rect x="974.9" y="613" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="977.95" y="623.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="546.8" y="549" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="549.76" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="769.2" y="645" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="772.18" y="655.5" ></text> +</g> +<g > +<title>dev_hard_start_xmit (10,101,010 samples, 0.06%)</title><rect x="1367.2" y="517" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="1370.23" y="527.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="693" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1019.98" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="798.1" y="709" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="801.07" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (101,010,100 samples, 0.63%)</title><rect x="599.3" y="725" width="8.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="602.30" y="735.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1097.5" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1100.54" y="511.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.06%)</title><rect x="791.1" y="437" width="0.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="794.07" y="447.5" ></text> +</g> +<g > +<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="506.5" y="661" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="509.48" y="671.5" ></text> +</g> +<g > +<title>__call_rcu_common.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="302.5" y="549" width="1.7" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="305.46" y="559.5" ></text> +</g> +<g > +<title>fault_in_iov_iter_readable (10,101,010 samples, 0.06%)</title><rect x="539.8" y="645" width="0.8" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" /> +<text x="542.76" y="655.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (20,202,020 samples, 0.13%)</title><rect x="12.6" y="357" width="1.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="15.63" y="367.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (20,202,020 samples, 0.13%)</title><rect x="186.9" y="533" width="1.7" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="189.88" y="543.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="228.9" y="501" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="231.91" y="511.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="775.3" y="565" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="778.30" y="575.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="74.8" y="805" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="77.80" y="815.5" ></text> +</g> +<g > +<title>process_backlog (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="405" width="4.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" /> +<text x="1380.74" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (1,414,141,400 samples, 8.88%)</title><rect x="559.9" y="837" width="122.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="562.90" y="847.5" >[libgit2.so.1.7..</text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="758.7" y="725" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="761.67" y="735.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="816.5" y="533" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="819.46" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="993.3" y="773" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="996.34" y="783.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="979.3" y="645" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="982.33" y="655.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="656.2" y="517" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="659.22" y="527.5" ></text> +</g> +<g > +<title>__check_heap_object (10,101,010 samples, 0.06%)</title><rect x="1182.5" y="645" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="1185.47" y="655.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="534.5" y="613" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="537.51" y="623.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="805" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1022.61" y="815.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="537.1" y="613" width="1.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="540.13" y="623.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="344.5" y="645" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="347.49" y="655.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="900.5" y="597" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="903.52" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1086.53" y="735.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1360.2" y="597" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1363.23" y="607.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="264.8" y="565" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="267.81" y="575.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="524.9" y="645" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="527.87" y="655.5" ></text> +</g> +<g > +<title>errseq_check (10,101,010 samples, 0.06%)</title><rect x="567.8" y="597" width="0.9" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" /> +<text x="570.78" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="439.9" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="442.94" y="655.5" ></text> +</g> +<g > +<title>ext4_es_free_extent (20,202,020 samples, 0.13%)</title><rect x="358.5" y="549" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" /> +<text x="361.50" y="559.5" ></text> +</g> +<g > +<title>copy_p4d_range (131,313,130 samples, 0.82%)</title><rect x="1282.3" y="693" width="11.4" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="1285.30" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.57%)</title><rect x="1096.7" y="725" width="7.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1099.66" y="735.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="958.3" y="421" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="961.31" y="431.5" ></text> +</g> +<g > +<title>__fsnotify_parent (10,101,010 samples, 0.06%)</title><rect x="904.0" y="517" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="907.02" y="527.5" ></text> +</g> +<g > +<title>do_mkdirat (353,535,350 samples, 2.22%)</title><rect x="563.4" y="677" width="30.6" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="566.40" y="687.5" >do..</text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="581" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="1026.98" y="591.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="325" width="2.6" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="1367.61" y="335.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="409.3" y="725" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="412.29" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1260.4" y="693" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1263.41" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="730.6" y="661" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="733.65" y="671.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="667.6" y="469" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="670.60" y="479.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="244.7" y="725" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="247.67" y="735.5" ></text> +</g> +<g > +<title>scsi_dma_unmap (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="549" width="0.9" height="15.0" fill="rgb(0,220,126)" rx="2" ry="2" /> +<text x="1371.98" y="559.5" ></text> +</g> +<g > +<title>memcg_list_lru_alloc (10,101,010 samples, 0.06%)</title><rect x="1017.9" y="549" width="0.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" /> +<text x="1020.86" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="749.0" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="752.04" y="703.5" ></text> +</g> +<g > +<title>generic_perform_write (30,303,030 samples, 0.19%)</title><rect x="707.9" y="565" width="2.6" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="710.88" y="575.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="645" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1210.87" y="655.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1168.5" y="533" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1171.46" y="543.5" ></text> +</g> +<g > +<title>nf_hook_slow (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="677" width="1.8" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" /> +<text x="1387.75" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1220.1" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1223.13" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="613" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="755.54" y="623.5" ></text> +</g> +<g > +<title>map_id_up (10,101,010 samples, 0.06%)</title><rect x="381.3" y="485" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="384.27" y="495.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (30,303,030 samples, 0.19%)</title><rect x="1133.4" y="469" width="2.7" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="1136.44" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1092.3" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1095.28" y="703.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="711.4" y="613" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="714.38" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="425.1" y="597" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="428.05" y="607.5" ></text> +</g> +<g > +<title>lockref_get (10,101,010 samples, 0.06%)</title><rect x="215.8" y="597" width="0.8" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" /> +<text x="218.77" y="607.5" ></text> +</g> +<g > +<title>mas_wr_end_piv (10,101,010 samples, 0.06%)</title><rect x="1302.4" y="693" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="1305.44" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="837" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1326.45" y="847.5" ></text> +</g> +<g > +<title>getdents64 (101,010,100 samples, 0.63%)</title><rect x="331.4" y="789" width="8.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="334.36" y="799.5" ></text> +</g> +<g > +<title>ext4_release_file (10,101,010 samples, 0.06%)</title><rect x="1016.1" y="709" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="1019.10" y="719.5" ></text> +</g> +<g > +<title>inc_rlimit_ucounts (10,101,010 samples, 0.06%)</title><rect x="52.0" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="55.03" y="703.5" ></text> +</g> +<g > +<title>map_id_range_down (10,101,010 samples, 0.06%)</title><rect x="1151.0" y="661" width="0.8" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="1153.95" y="671.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (161,616,160 samples, 1.02%)</title><rect x="1162.3" y="613" width="14.0" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="1165.34" y="623.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="777.9" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="780.93" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="783.2" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="786.19" y="559.5" ></text> +</g> +<g > +<title>gettid (20,202,020 samples, 0.13%)</title><rect x="69.5" y="917" width="1.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="72.54" y="927.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (30,303,030 samples, 0.19%)</title><rect x="1172.8" y="581" width="2.7" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="1175.84" y="591.5" ></text> +</g> +<g > +<title>cgroup_post_fork (20,202,020 samples, 0.13%)</title><rect x="50.3" y="709" width="1.7" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="53.28" y="719.5" ></text> +</g> +<g > +<title>alloc_file (10,101,010 samples, 0.06%)</title><rect x="1322.6" y="757" width="0.9" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" /> +<text x="1325.58" y="767.5" ></text> +</g> +<g > +<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="752.5" y="501" width="2.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="755.54" y="511.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="167.6" y="821" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="170.61" y="831.5" ></text> +</g> +<g > +<title>__mem_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="1006.5" y="549" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1009.47" y="559.5" ></text> +</g> +<g > +<title>ext4_lookup (40,404,040 samples, 0.25%)</title><rect x="147.5" y="837" width="3.5" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="150.47" y="847.5" ></text> +</g> +<g > +<title>ext4_orphan_add (10,101,010 samples, 0.06%)</title><rect x="176.4" y="517" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="179.37" y="527.5" ></text> +</g> +<g > +<title>__fput_sync (20,202,020 samples, 0.13%)</title><rect x="518.7" y="741" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="521.74" y="751.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (50,505,050 samples, 0.32%)</title><rect x="461.8" y="677" width="4.4" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="464.83" y="687.5" ></text> +</g> +<g > +<title>brk (10,101,010 samples, 0.06%)</title><rect x="328.7" y="725" width="0.9" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" /> +<text x="331.73" y="735.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (20,202,020 samples, 0.13%)</title><rect x="822.6" y="389" width="1.7" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="825.59" y="399.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="911.0" y="789" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="914.03" y="799.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="365.5" y="661" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="368.51" y="671.5" ></text> +</g> +<g > +<title>lh_table_lookup_entry_w_hash (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="821" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="1392.12" y="831.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="710.5" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="713.51" y="623.5" ></text> +</g> +<g > +<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="730.6" y="565" width="1.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="733.65" y="575.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="469" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="1347.47" y="479.5" ></text> +</g> +<g > +<title>process_output_dump (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="949" width="1.8" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" /> +<text x="1349.22" y="959.5" ></text> +</g> +<g > +<title>ext4_link (60,606,060 samples, 0.38%)</title><rect x="602.8" y="661" width="5.3" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="605.80" y="671.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="955.7" y="453" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="958.69" y="463.5" ></text> +</g> +<g > +<title>filename_lookup (30,303,030 samples, 0.19%)</title><rect x="752.5" y="469" width="2.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="755.54" y="479.5" ></text> +</g> +<g > +<title>path_openat (40,404,040 samples, 0.25%)</title><rect x="918.0" y="597" width="3.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="921.03" y="607.5" ></text> +</g> +<g > +<title>sk_free (10,101,010 samples, 0.06%)</title><rect x="40.6" y="677" width="0.9" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" /> +<text x="43.65" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="858.5" y="789" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="861.49" y="799.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (10,101,010 samples, 0.06%)</title><rect x="1237.6" y="629" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="1240.64" y="639.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="258.7" y="693" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="261.68" y="703.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="165" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1375.49" y="175.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="538.0" y="565" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="541.01" y="575.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (10,101,010 samples, 0.06%)</title><rect x="35.4" y="469" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="38.39" y="479.5" ></text> +</g> +<g > +<title>filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="1006.5" y="581" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="1009.47" y="591.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="248.2" y="533" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="251.17" y="543.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="784.1" y="549" width="0.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="787.06" y="559.5" ></text> +</g> +<g > +<title>ext4_setent (10,101,010 samples, 0.06%)</title><rect x="678.1" y="613" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="681.11" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (30,303,030 samples, 0.19%)</title><rect x="1328.7" y="853" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1331.71" y="863.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="458.3" y="789" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="461.32" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="489.0" y="741" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="491.97" y="751.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.06%)</title><rect x="776.2" y="533" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="779.18" y="543.5" ></text> +</g> +<g > +<title>__do_sys_newfstat (10,101,010 samples, 0.06%)</title><rect x="610.7" y="693" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="613.69" y="703.5" ></text> +</g> +<g > +<title>ext4_bread_batch (30,303,030 samples, 0.19%)</title><rect x="341.0" y="629" width="2.6" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" /> +<text x="343.99" y="639.5" ></text> +</g> +<g > +<title>vfs_fstatat (50,505,050 samples, 0.32%)</title><rect x="940.8" y="581" width="4.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="943.80" y="591.5" ></text> +</g> +<g > +<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="1131.7" y="581" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="1134.69" y="591.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (10,101,010 samples, 0.06%)</title><rect x="72.2" y="869" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="75.17" y="879.5" ></text> +</g> +<g > +<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="680.7" y="709" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="683.74" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="902.3" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="905.27" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_connect (141,414,140 samples, 0.89%)</title><rect x="1376.9" y="869" width="12.2" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="1379.87" y="879.5" ></text> +</g> +<g > +<title>stop_this_handle (10,101,010 samples, 0.06%)</title><rect x="344.5" y="613" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="347.49" y="623.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="338.4" y="549" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="341.36" y="559.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="1354.1" y="805" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="1357.10" y="815.5" ></text> +</g> +<g > +<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="453" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="1130.31" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="486.3" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="489.35" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_close (20,202,020 samples, 0.13%)</title><rect x="518.7" y="757" width="1.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="521.74" y="767.5" ></text> +</g> +<g > +<title>__destroy_inode (10,101,010 samples, 0.06%)</title><rect x="925.0" y="597" width="0.9" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" /> +<text x="928.04" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (40,404,040 samples, 0.25%)</title><rect x="937.3" y="597" width="3.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="940.30" y="607.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="219.3" y="613" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="222.28" y="623.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1100.2" y="389" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1103.16" y="399.5" ></text> +</g> +<g > +<title>pcre2_compile_8 (20,202,020 samples, 0.13%)</title><rect x="828.7" y="789" width="1.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="831.72" y="799.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="469" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="1014.73" y="479.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="722.8" y="709" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="725.77" y="719.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="445.2" y="741" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="448.19" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="1073.9" y="805" width="9.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1076.90" y="815.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="600.2" y="661" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="603.18" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="916.3" y="757" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="919.28" y="767.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.06%)</title><rect x="440.8" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="443.81" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1247.64" y="815.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="525.7" y="581" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="528.75" y="591.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="547.6" y="725" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="550.64" y="735.5" ></text> +</g> +<g > +<title>__memset (30,303,030 samples, 0.19%)</title><rect x="1306.8" y="693" width="2.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1309.81" y="703.5" ></text> +</g> +<g > +<title>__netif_rx (10,101,010 samples, 0.06%)</title><rect x="1367.2" y="485" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="1370.23" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="994.2" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="997.21" y="783.5" ></text> +</g> +<g > +<title>x64_sys_call (141,414,140 samples, 0.89%)</title><rect x="837.5" y="725" width="12.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="840.47" y="735.5" ></text> +</g> +<g > +<title>bio_alloc_bioset (10,101,010 samples, 0.06%)</title><rect x="795.4" y="421" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="798.44" y="431.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="110.7" y="725" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="113.70" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="821" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="741.53" y="831.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="204.4" y="437" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="207.39" y="447.5" ></text> +</g> +<g > +<title>srso_alias_return_thunk (10,101,010 samples, 0.06%)</title><rect x="1202.6" y="549" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="1205.61" y="559.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="661" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1329.95" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="329.6" y="789" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="332.61" y="799.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="580.0" y="549" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="583.04" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.76%)</title><rect x="855.9" y="853" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="858.86" y="863.5" ></text> +</g> +<g > +<title>__close (10,101,010 samples, 0.06%)</title><rect x="20.5" y="933" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="23.51" y="943.5" ></text> +</g> +<g > +<title>_raw_write_lock_bh (10,101,010 samples, 0.06%)</title><rect x="66.0" y="757" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="69.04" y="767.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="261" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="1140.82" y="271.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="181.6" y="645" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="184.62" y="655.5" ></text> +</g> +<g > +<title>__close (10,101,010 samples, 0.06%)</title><rect x="457.4" y="805" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="460.45" y="815.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="673.7" y="565" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="676.73" y="575.5" ></text> +</g> +<g > +<title>__newlocale (10,101,010 samples, 0.06%)</title><rect x="1355.9" y="821" width="0.8" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" /> +<text x="1358.85" y="831.5" ></text> +</g> +<g > +<title>json_tokener_parse_verbose (50,505,050 samples, 0.32%)</title><rect x="1353.2" y="853" width="4.4" height="15.0" fill="rgb(0,214,101)" rx="2" ry="2" /> +<text x="1356.22" y="863.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="738.5" y="677" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="741.53" y="687.5" ></text> +</g> +<g > +<title>alloc_file (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="805" width="0.8" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" /> +<text x="1343.96" y="815.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="81.8" y="821" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="84.80" y="831.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="645" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1006.85" y="655.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="383.9" y="453" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="386.90" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_getcwd (10,101,010 samples, 0.06%)</title><rect x="158.0" y="837" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="160.98" y="847.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="986.3" y="629" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="989.33" y="639.5" ></text> +</g> +<g > +<title>tasklet_action_common.isra.0 (10,101,010 samples, 0.06%)</title><rect x="631.7" y="549" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="634.70" y="559.5" ></text> +</g> +<g > +<title>jsonrpc_request_recv (101,010,100 samples, 0.63%)</title><rect x="1351.5" y="901" width="8.7" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="1354.47" y="911.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1146.6" y="661" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="1149.57" y="671.5" ></text> +</g> +<g > +<title>__close (20,202,020 samples, 0.13%)</title><rect x="1015.2" y="805" width="1.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="1018.23" y="815.5" ></text> +</g> +<g > +<title>git_signature_default (40,404,040 samples, 0.25%)</title><rect x="981.1" y="773" width="3.5" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="984.08" y="783.5" ></text> +</g> +<g > +<title>__do_softirq (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="469" width="4.4" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1380.74" y="479.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="446.1" y="645" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="449.07" y="655.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="542.4" y="773" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="545.39" y="783.5" ></text> +</g> +<g > +<title>cfree (40,404,040 samples, 0.25%)</title><rect x="160.6" y="805" width="3.5" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="163.61" y="815.5" ></text> +</g> +<g > +<title>ext4_free_blocks (30,303,030 samples, 0.19%)</title><rect x="383.9" y="565" width="2.6" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="386.90" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (171,717,170 samples, 1.08%)</title><rect x="625.6" y="773" width="14.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="628.57" y="783.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="1181.6" y="677" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="1184.60" y="687.5" ></text> +</g> +<g > +<title>vfs_link (20,202,020 samples, 0.13%)</title><rect x="974.9" y="645" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="977.95" y="655.5" ></text> +</g> +<g > +<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="271.8" y="533" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="274.81" y="543.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="360.3" y="533" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="363.25" y="543.5" ></text> +</g> +<g > +<title>tcp_v6_conn_request (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="341" width="0.9" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" /> +<text x="1348.34" y="351.5" ></text> +</g> +<g > +<title>wbt_wait (10,101,010 samples, 0.06%)</title><rect x="1139.6" y="405" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1142.57" y="415.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="876.9" y="661" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="879.88" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (30,303,030 samples, 0.19%)</title><rect x="161.5" y="789" width="2.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="164.48" y="799.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="732.4" y="661" width="1.7" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="735.40" y="671.5" ></text> +</g> +<g > +<title>git_reference_symbolic_create (101,010,100 samples, 0.63%)</title><rect x="729.8" y="837" width="8.7" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="732.77" y="847.5" ></text> +</g> +<g > +<title>unlink_cb (70,707,070 samples, 0.44%)</title><rect x="423.3" y="869" width="6.1" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="426.30" y="879.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="645" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1239.76" y="655.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="394.4" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="397.40" y="607.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (50,505,050 samples, 0.32%)</title><rect x="616.8" y="661" width="4.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="619.81" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="805" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1349.22" y="815.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="948.7" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="951.68" y="655.5" ></text> +</g> +<g > +<title>handle_softirqs (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="469" width="5.2" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1372.86" y="479.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="1361.1" y="693" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="1364.10" y="703.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="714.0" y="597" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="717.01" y="607.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="200.9" y="501" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="203.89" y="511.5" ></text> +</g> +<g > +<title>init_file (10,101,010 samples, 0.06%)</title><rect x="454.8" y="517" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="457.82" y="527.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="601.1" y="677" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="604.05" y="687.5" ></text> +</g> +<g > +<title>init_file (10,101,010 samples, 0.06%)</title><rect x="181.6" y="597" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="184.62" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="322.6" y="709" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="325.60" y="719.5" ></text> +</g> +<g > +<title>blk_finish_plug (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="485" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="1037.49" y="495.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.06%)</title><rect x="784.9" y="645" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="787.94" y="655.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (20,202,020 samples, 0.13%)</title><rect x="732.4" y="565" width="1.7" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="735.40" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="487.2" y="725" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="490.22" y="735.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="94.9" y="917" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="97.94" y="927.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="81.8" y="789" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="84.80" y="799.5" ></text> +</g> +<g > +<title>ext4_rename2 (171,717,170 samples, 1.08%)</title><rect x="664.1" y="645" width="14.9" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="667.10" y="655.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="693" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1371.98" y="703.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="125.6" y="805" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="128.58" y="815.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="174.6" y="501" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="177.62" y="511.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="296.3" y="421" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="299.33" y="431.5" ></text> +</g> +<g > +<title>scsi_dispatch_cmd (10,101,010 samples, 0.06%)</title><rect x="930.3" y="357" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="933.29" y="367.5" ></text> +</g> +<g > +<title>git_odb_read_header (40,404,040 samples, 0.25%)</title><rect x="471.5" y="837" width="3.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="474.46" y="847.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="421" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="1040.99" y="431.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="292.8" y="501" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="295.83" y="511.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="183.4" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="186.38" y="607.5" ></text> +</g> +<g > +<title>evict (50,505,050 samples, 0.32%)</title><rect x="184.3" y="581" width="4.3" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="187.25" y="591.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="348.0" y="629" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" /> +<text x="350.99" y="639.5" ></text> +</g> +<g > +<title>folio_wait_bit_common (20,202,020 samples, 0.13%)</title><rect x="659.7" y="485" width="1.8" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="662.72" y="495.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="200.9" y="469" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="203.89" y="479.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.06%)</title><rect x="971.4" y="517" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="974.45" y="527.5" ></text> +</g> +<g > +<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="510.9" y="629" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="513.86" y="639.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="309" width="2.6" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="1367.61" y="319.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="835.7" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="838.72" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (464,646,460 samples, 2.92%)</title><rect x="640.5" y="773" width="40.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="643.46" y="783.5" >[li..</text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="447.8" y="677" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="450.82" y="687.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="629" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1097.04" y="639.5" ></text> +</g> +<g > +<title>__dd_dispatch_request (10,101,010 samples, 0.06%)</title><rect x="823.5" y="357" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="826.46" y="367.5" ></text> +</g> +<g > +<title>getdents64 (20,202,020 samples, 0.13%)</title><rect x="505.6" y="773" width="1.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="508.61" y="783.5" ></text> +</g> +<g > +<title>__es_remove_extent (20,202,020 samples, 0.13%)</title><rect x="788.4" y="501" width="1.8" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" /> +<text x="791.44" y="511.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="483.7" y="597" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="486.72" y="607.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="955.7" y="469" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="958.69" y="479.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (40,404,040 samples, 0.25%)</title><rect x="87.9" y="741" width="3.5" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="90.93" y="751.5" ></text> +</g> +<g > +<title>destroy_inode (10,101,010 samples, 0.06%)</title><rect x="925.0" y="613" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="928.04" y="623.5" ></text> +</g> +<g > +<title>client_destroy_handler (151,515,150 samples, 0.95%)</title><rect x="29.3" y="933" width="13.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="32.26" y="943.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="215.8" y="645" width="0.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="218.77" y="655.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="876.0" y="693" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="879.00" y="703.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="882.1" y="709" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="885.13" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (60,606,060 samples, 0.38%)</title><rect x="315.6" y="741" width="5.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="318.60" y="751.5" ></text> +</g> +<g > +<title>blk_finish_plug (20,202,020 samples, 0.13%)</title><rect x="822.6" y="517" width="1.7" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="825.59" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="500.4" y="741" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="503.36" y="751.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.06%)</title><rect x="865.5" y="533" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="868.49" y="543.5" ></text> +</g> +<g > +<title>git_config_snapshot (20,202,020 samples, 0.13%)</title><rect x="527.5" y="853" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="530.50" y="863.5" ></text> +</g> +<g > +<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="453" width="0.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1347.47" y="463.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="558.1" y="709" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="561.15" y="719.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="782.3" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="785.31" y="607.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="469" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1040.99" y="479.5" ></text> +</g> +<g > +<title>inet6_sendmsg (40,404,040 samples, 0.25%)</title><rect x="11.8" y="805" width="3.5" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="14.75" y="815.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="864.6" y="549" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="867.62" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="980.2" y="677" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="983.20" y="687.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="817.3" y="437" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="820.34" y="447.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="1156.2" y="661" width="2.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1159.21" y="671.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="732.4" y="645" width="1.7" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="735.40" y="655.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1147.4" y="565" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1150.45" y="575.5" ></text> +</g> +<g > +<title>ip_finish_output2 (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="645" width="1.7" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1389.50" y="655.5" ></text> +</g> +<g > +<title>mb_update_avg_fragment_size (10,101,010 samples, 0.06%)</title><rect x="589.7" y="453" width="0.8" height="15.0" fill="rgb(0,233,180)" rx="2" ry="2" /> +<text x="592.67" y="463.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="645" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="1188.98" y="655.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.06%)</title><rect x="629.1" y="693" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="632.07" y="703.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="1383.9" y="757" width="0.8" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="1386.87" y="767.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="757.8" y="629" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="760.79" y="639.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="366.4" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="369.38" y="623.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="677" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="1026.11" y="687.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="1057.3" y="581" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1060.26" y="591.5" ></text> +</g> +<g > +<title>filemap_get_entry (10,101,010 samples, 0.06%)</title><rect x="1068.6" y="613" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" /> +<text x="1071.64" y="623.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="850.6" y="725" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="853.61" y="735.5" ></text> +</g> +<g > +<title>__block_commit_write (10,101,010 samples, 0.06%)</title><rect x="807.7" y="549" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="810.70" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="404.0" y="773" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="407.04" y="783.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="608.9" y="741" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="611.93" y="751.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="986.3" y="677" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="989.33" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (585,858,580 samples, 3.68%)</title><rect x="934.7" y="789" width="50.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="937.67" y="799.5" >[libg..</text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="356.8" y="565" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="359.75" y="575.5" ></text> +</g> +<g > +<title>skb_do_copy_data_nocache (10,101,010 samples, 0.06%)</title><rect x="1361.1" y="725" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" /> +<text x="1364.10" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="727.1" y="629" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="730.14" y="639.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (30,303,030 samples, 0.19%)</title><rect x="1165.0" y="517" width="2.6" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1167.96" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1222.8" y="661" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1225.75" y="671.5" ></text> +</g> +<g > +<title>git_config_set_string (202,020,200 samples, 1.27%)</title><rect x="1087.0" y="805" width="17.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="1090.03" y="815.5" ></text> +</g> +<g > +<title>lookup_one_qstr_excl (20,202,020 samples, 0.13%)</title><rect x="1264.8" y="757" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1267.78" y="767.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="857.6" y="725" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="860.61" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="783.2" y="629" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="786.19" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="555.5" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="558.52" y="863.5" ></text> +</g> +<g > +<title>alloc_file_pseudo (10,101,010 samples, 0.06%)</title><rect x="1321.7" y="789" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1324.70" y="799.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="615.9" y="645" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="618.94" y="655.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1141.3" y="581" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="1144.32" y="591.5" ></text> +</g> +<g > +<title>find_group_orlov (10,101,010 samples, 0.06%)</title><rect x="1149.2" y="677" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="1152.20" y="687.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="222.8" y="581" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="225.78" y="591.5" ></text> +</g> +<g > +<title>ext4_htree_store_dirent (10,101,010 samples, 0.06%)</title><rect x="249.9" y="597" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="252.92" y="607.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="357.6" y="565" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="360.63" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="784.9" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="787.94" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="966.2" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="969.19" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="936.4" y="645" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="939.42" y="655.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.13%)</title><rect x="1273.5" y="757" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1276.54" y="767.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.06%)</title><rect x="91.4" y="805" width="0.9" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="94.43" y="815.5" ></text> +</g> +<g > +<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="633.5" y="549" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="636.45" y="559.5" ></text> +</g> +<g > +<title>do_rmdir (505,050,500 samples, 3.17%)</title><rect x="261.3" y="661" width="43.8" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="264.31" y="671.5" >do_r..</text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="727.1" y="709" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="730.14" y="719.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="393.5" y="645" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="396.53" y="655.5" ></text> +</g> +<g > +<title>ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="326.1" y="645" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="329.10" y="655.5" ></text> +</g> +<g > +<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="220.2" y="629" width="0.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="223.15" y="639.5" ></text> +</g> +<g > +<title>tcp_write_xmit (70,707,070 samples, 0.44%)</title><rect x="1362.0" y="693" width="6.1" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1364.98" y="703.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="966.2" y="565" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="969.19" y="575.5" ></text> +</g> +<g > +<title>path_parentat (20,202,020 samples, 0.13%)</title><rect x="1143.9" y="693" width="1.8" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="1146.95" y="703.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="728.0" y="581" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="731.02" y="591.5" ></text> +</g> +<g > +<title>__ext4_new_inode (40,404,040 samples, 0.25%)</title><rect x="770.9" y="517" width="3.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="773.93" y="527.5" ></text> +</g> +<g > +<title>insert_inode_locked (20,202,020 samples, 0.13%)</title><rect x="572.2" y="613" width="1.7" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" /> +<text x="575.16" y="623.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="130.0" y="773" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="132.96" y="783.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="524.9" y="693" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="527.87" y="703.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (20,202,020 samples, 0.13%)</title><rect x="1372.5" y="277" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1375.49" y="287.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="155.4" y="805" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="158.36" y="815.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="263.1" y="453" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="266.06" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="713.1" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="716.13" y="719.5" ></text> +</g> +<g > +<title>submit_bio (50,505,050 samples, 0.32%)</title><rect x="1136.1" y="485" width="4.3" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="1139.07" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="741" width="7.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1044.50" y="751.5" ></text> +</g> +<g > +<title>ext4_release_folio (10,101,010 samples, 0.06%)</title><rect x="389.1" y="549" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="392.15" y="559.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="274.4" y="565" width="1.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="277.44" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="758.7" y="709" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="761.67" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="547.6" y="741" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="550.64" y="751.5" ></text> +</g> +<g > +<title>inet_sendmsg (80,808,080 samples, 0.51%)</title><rect x="1361.1" y="773" width="7.0" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" /> +<text x="1364.10" y="783.5" ></text> +</g> +<g > +<title>ext4_clear_inode (20,202,020 samples, 0.13%)</title><rect x="284.9" y="565" width="1.8" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="287.95" y="575.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.06%)</title><rect x="464.5" y="597" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="467.45" y="607.5" ></text> +</g> +<g > +<title>iput (90,909,090 samples, 0.57%)</title><rect x="1122.9" y="613" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1125.93" y="623.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="757" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1195.11" y="767.5" ></text> +</g> +<g > +<title>percpu_counter_add_batch (10,101,010 samples, 0.06%)</title><rect x="342.7" y="565" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="345.74" y="575.5" ></text> +</g> +<g > +<title>kmalloc_reserve (10,101,010 samples, 0.06%)</title><rect x="1336.6" y="693" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="1339.59" y="703.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="909.3" y="677" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="912.28" y="687.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="840.1" y="549" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="843.10" y="559.5" ></text> +</g> +<g > +<title>ext4_generic_delete_entry (10,101,010 samples, 0.06%)</title><rect x="545.9" y="661" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="548.89" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="862.0" y="757" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="864.99" y="767.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="597" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="1108.42" y="607.5" ></text> +</g> +<g > +<title>__ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="505.6" y="597" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="508.61" y="607.5" ></text> +</g> +<g > +<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="580.9" y="581" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="583.91" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (444,444,440 samples, 2.79%)</title><rect x="1104.5" y="805" width="38.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1107.54" y="815.5" >[li..</text> +</g> +<g > +<title>inet_csk_route_child_sock (10,101,010 samples, 0.06%)</title><rect x="1377.7" y="229" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1380.74" y="239.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="1247.3" y="789" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1250.27" y="799.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="1083.5" y="581" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="1086.53" y="591.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="709" width="2.6" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="1336.08" y="719.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="629" width="0.8" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1210.87" y="639.5" ></text> +</g> +<g > +<title>xas_descend (10,101,010 samples, 0.06%)</title><rect x="1160.6" y="533" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1163.58" y="543.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="740.3" y="501" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="743.28" y="511.5" ></text> +</g> +<g > +<title>copy_creds (10,101,010 samples, 0.06%)</title><rect x="52.0" y="709" width="0.9" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="55.03" y="719.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1208.7" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1211.74" y="671.5" ></text> +</g> +<g > +<title>fault_in_iov_iter_readable (10,101,010 samples, 0.06%)</title><rect x="1071.3" y="645" width="0.8" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" /> +<text x="1074.27" y="655.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1197.73" y="687.5" ></text> +</g> +<g > +<title>__close (10,101,010 samples, 0.06%)</title><rect x="1187.7" y="741" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="1190.73" y="751.5" ></text> +</g> +<g > +<title>ext4_orphan_add (30,303,030 samples, 0.19%)</title><rect x="675.5" y="613" width="2.6" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="678.48" y="623.5" ></text> +</g> +<g > +<title>security_inode_need_killpriv (10,101,010 samples, 0.06%)</title><rect x="515.2" y="613" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="518.24" y="623.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="995.1" y="741" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="998.09" y="751.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (20,202,020 samples, 0.13%)</title><rect x="842.7" y="517" width="1.8" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" /> +<text x="845.73" y="527.5" ></text> +</g> +<g > +<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="960.9" y="373" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" /> +<text x="963.94" y="383.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="874.3" y="757" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="877.25" y="767.5" ></text> +</g> +<g > +<title>vm_area_dup (90,909,090 samples, 0.57%)</title><rect x="1305.9" y="709" width="7.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="1308.94" y="719.5" ></text> +</g> +<g > +<title>block_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="819.1" y="501" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="822.09" y="511.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="357.6" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="360.63" y="591.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="440.8" y="549" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="443.81" y="559.5" ></text> +</g> +<g > +<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="817.3" y="453" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="820.34" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="418.0" y="853" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="421.05" y="863.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.25%)</title><rect x="380.4" y="565" width="3.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="383.39" y="575.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="677" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1248.52" y="687.5" ></text> +</g> +<g > +<title>server_wait_for_action (20,202,020 samples, 0.13%)</title><rect x="22.3" y="997" width="1.7" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="25.26" y="1007.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="208.8" y="309" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="211.77" y="319.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="645" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="1241.52" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="475.0" y="741" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="477.96" y="751.5" ></text> +</g> +<g > +<title>ip_finish_output2 (20,202,020 samples, 0.13%)</title><rect x="12.6" y="597" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="15.63" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="443.4" y="661" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="446.44" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="903.1" y="629" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="906.15" y="639.5" ></text> +</g> +<g > +<title>do_writepages (20,202,020 samples, 0.13%)</title><rect x="822.6" y="565" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="825.59" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_rename (242,424,240 samples, 1.52%)</title><rect x="1121.2" y="693" width="21.0" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="1124.18" y="703.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="661" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="1241.52" y="671.5" ></text> +</g> +<g > +<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="693.0" y="533" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="695.99" y="543.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1100.2" y="437" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1103.16" y="447.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="346.2" y="597" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="349.24" y="607.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="149.2" y="805" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="152.23" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="891.8" y="789" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="894.76" y="799.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="581" width="0.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="1196.86" y="591.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="698.2" y="549" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="701.25" y="559.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.19%)</title><rect x="1378.6" y="245" width="2.6" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1381.62" y="255.5" ></text> +</g> +<g > +<title>inet_release (80,808,080 samples, 0.51%)</title><rect x="34.5" y="709" width="7.0" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="37.52" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="888.3" y="661" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="891.26" y="671.5" ></text> +</g> +<g > +<title>security_file_alloc (10,101,010 samples, 0.06%)</title><rect x="877.8" y="517" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="880.75" y="527.5" ></text> +</g> +<g > +<title>ext4_rename (40,404,040 samples, 0.25%)</title><rect x="846.2" y="645" width="3.5" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="849.23" y="655.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.19%)</title><rect x="630.8" y="645" width="2.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="633.82" y="655.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="68.7" y="725" width="0.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="71.67" y="735.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_node (20,202,020 samples, 0.13%)</title><rect x="59.0" y="693" width="1.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="62.04" y="703.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="546.8" y="485" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="549.76" y="495.5" ></text> +</g> +<g > +<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="667.6" y="405" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="670.60" y="415.5" ></text> +</g> +<g > +<title>x64_sys_call (90,909,090 samples, 0.57%)</title><rect x="184.3" y="645" width="7.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="187.25" y="655.5" ></text> +</g> +<g > +<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="658.0" y="453" width="0.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="660.97" y="463.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (20,202,020 samples, 0.13%)</title><rect x="700.0" y="565" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="703.00" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="498.6" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="501.60" y="767.5" ></text> +</g> +<g > +<title>rmqueue (10,101,010 samples, 0.06%)</title><rect x="1008.2" y="501" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1011.22" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="475.0" y="773" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="477.96" y="783.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="700.0" y="549" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="703.00" y="559.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="450.4" y="581" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="453.44" y="591.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.06%)</title><rect x="779.7" y="581" width="0.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="782.68" y="591.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1262.2" y="613" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1265.16" y="623.5" ></text> +</g> +<g > +<title>do_linkat (10,101,010 samples, 0.06%)</title><rect x="785.8" y="661" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="788.81" y="671.5" ></text> +</g> +<g > +<title>__fsnotify_parent (10,101,010 samples, 0.06%)</title><rect x="764.8" y="437" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="767.80" y="447.5" ></text> +</g> +<g > +<title>xa_load (10,101,010 samples, 0.06%)</title><rect x="1080.0" y="533" width="0.9" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" /> +<text x="1083.03" y="543.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="463.6" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="466.58" y="527.5" ></text> +</g> +<g > +<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="1160.6" y="549" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" /> +<text x="1163.58" y="559.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.06%)</title><rect x="1224.5" y="581" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="1227.51" y="591.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="734.1" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="737.15" y="623.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (20,202,020 samples, 0.13%)</title><rect x="493.4" y="629" width="1.7" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="496.35" y="639.5" ></text> +</g> +<g > +<title>git_reference_symbolic_create (404,040,400 samples, 2.54%)</title><rect x="768.3" y="821" width="35.0" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="771.30" y="831.5" >gi..</text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1234.1" y="757" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1237.14" y="767.5" ></text> +</g> +<g > +<title>ip_output (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="149" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1369.36" y="159.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (20,202,020 samples, 0.13%)</title><rect x="274.4" y="581" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="277.44" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (313,131,310 samples, 1.97%)</title><rect x="480.2" y="805" width="27.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="483.22" y="815.5" >[..</text> +</g> +<g > +<title>do_syscall_64 (101,010,100 samples, 0.63%)</title><rect x="331.4" y="757" width="8.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="334.36" y="767.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="904.9" y="565" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="907.90" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="821" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="551.52" y="831.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="882.1" y="613" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="885.13" y="623.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="942.6" y="501" width="0.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="945.55" y="511.5" ></text> +</g> +<g > +<title>git_config_add_backend (20,202,020 samples, 0.13%)</title><rect x="850.6" y="821" width="1.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="853.61" y="831.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1000.3" y="533" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1003.34" y="543.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.06%)</title><rect x="859.4" y="661" width="0.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="862.37" y="671.5" ></text> +</g> +<g > +<title>filename_lookup (101,010,100 samples, 0.63%)</title><rect x="1074.8" y="693" width="8.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1077.77" y="703.5" ></text> +</g> +<g > +<title>path_init (10,101,010 samples, 0.06%)</title><rect x="262.2" y="629" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="265.18" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (10,101,010 samples, 0.06%)</title><rect x="193.9" y="661" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="196.88" y="671.5" ></text> +</g> +<g > +<title>net_send_buf (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="917" width="6.1" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="1335.21" y="927.5" ></text> +</g> +<g > +<title>inode_set_ctime_current (10,101,010 samples, 0.06%)</title><rect x="300.7" y="565" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="303.71" y="575.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="846.2" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="849.23" y="591.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1029.61" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1030.49" y="719.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="835.7" y="677" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="838.72" y="687.5" ></text> +</g> +<g > +<title>tcp_data_queue (20,202,020 samples, 0.13%)</title><rect x="38.0" y="197" width="1.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="41.02" y="207.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="932.0" y="501" width="1.8" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="935.04" y="511.5" ></text> +</g> +<g > +<title>tcp_check_req (10,101,010 samples, 0.06%)</title><rect x="1377.7" y="277" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="1380.74" y="287.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="899.6" y="549" width="0.9" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="902.64" y="559.5" ></text> +</g> +<g > +<title>git_reference_dwim (30,303,030 samples, 0.19%)</title><rect x="552.9" y="853" width="2.6" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="555.89" y="863.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="851.5" y="677" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="854.48" y="687.5" ></text> +</g> +<g > +<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="1325.2" y="805" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1328.20" y="815.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="635.2" y="581" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" /> +<text x="638.20" y="591.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1182.5" y="677" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="1185.47" y="687.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="482.0" y="693" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="484.97" y="703.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.06%)</title><rect x="665.9" y="357" width="0.8" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="668.85" y="367.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="1146.6" y="613" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="1149.57" y="623.5" ></text> +</g> +<g > +<title>ext4_discard_preallocations (10,101,010 samples, 0.06%)</title><rect x="406.7" y="613" width="0.8" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="409.66" y="623.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="613.3" y="645" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="616.31" y="655.5" ></text> +</g> +<g > +<title>getname_flags (40,404,040 samples, 0.25%)</title><rect x="625.6" y="693" width="3.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="628.57" y="703.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="709" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1371.98" y="719.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="710.5" y="645" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="713.51" y="655.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="273.6" y="501" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="276.57" y="511.5" ></text> +</g> +<g > +<title>shrink_dentry_list (20,202,020 samples, 0.13%)</title><rect x="302.5" y="613" width="1.7" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="305.46" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="489.0" y="693" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="491.97" y="703.5" ></text> +</g> +<g > +<title>unmap_vmas (20,202,020 samples, 0.13%)</title><rect x="399.7" y="629" width="1.7" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" /> +<text x="402.66" y="639.5" ></text> +</g> +<g > +<title>ext4_unlink (20,202,020 samples, 0.13%)</title><rect x="1065.1" y="693" width="1.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1068.14" y="703.5" ></text> +</g> +<g > +<title>ext4_find_dest_de (10,101,010 samples, 0.06%)</title><rect x="1002.1" y="549" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="1005.09" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="539.8" y="837" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="542.76" y="847.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1244.6" y="677" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1247.64" y="687.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="440.8" y="629" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="443.81" y="639.5" ></text> +</g> +<g > +<title>ext4_da_update_reserve_space (10,101,010 samples, 0.06%)</title><rect x="468.0" y="501" width="0.8" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" /> +<text x="470.96" y="511.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.06%)</title><rect x="516.1" y="613" width="0.9" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="519.12" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="166.7" y="837" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="169.74" y="847.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="717.5" y="533" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="720.51" y="543.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="657.1" y="485" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="660.09" y="495.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="612.4" y="645" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="615.44" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.13%)</title><rect x="749.0" y="645" width="1.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="752.04" y="655.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="629" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1222.25" y="639.5" ></text> +</g> +<g > +<title>set_close_on_exec (10,101,010 samples, 0.06%)</title><rect x="329.6" y="677" width="0.9" height="15.0" fill="rgb(0,215,109)" rx="2" ry="2" /> +<text x="332.61" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="643.1" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="646.08" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="649.2" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="652.21" y="719.5" ></text> +</g> +<g > +<title>xa_load (10,101,010 samples, 0.06%)</title><rect x="1017.9" y="533" width="0.8" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" /> +<text x="1020.86" y="543.5" ></text> +</g> +<g > +<title>__ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="1230.6" y="565" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="1233.63" y="575.5" ></text> +</g> +<g > +<title>ext4_lookup (20,202,020 samples, 0.13%)</title><rect x="717.5" y="549" width="1.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="720.51" y="559.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (20,202,020 samples, 0.13%)</title><rect x="606.3" y="613" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="609.31" y="623.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (40,404,040 samples, 0.25%)</title><rect x="658.8" y="565" width="3.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="661.85" y="575.5" ></text> +</g> +<g > +<title>do_sys_openat2 (30,303,030 samples, 0.19%)</title><rect x="453.9" y="581" width="2.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="456.95" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="479.3" y="853" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="482.34" y="863.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (40,404,040 samples, 0.25%)</title><rect x="1006.5" y="613" width="3.5" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="1009.47" y="623.5" ></text> +</g> +<g > +<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="791.1" y="533" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="794.07" y="543.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="922.4" y="645" width="1.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="925.41" y="655.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="1115.9" y="661" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1118.93" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1353.2" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1356.22" y="815.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (20,202,020 samples, 0.13%)</title><rect x="12.6" y="549" width="1.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="15.63" y="559.5" ></text> +</g> +<g > +<title>ext4_find_extent (10,101,010 samples, 0.06%)</title><rect x="468.8" y="501" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="471.83" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="750.8" y="629" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="753.79" y="639.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="565" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="1197.73" y="575.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="629" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1217.00" y="639.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="581" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="1239.76" y="591.5" ></text> +</g> +<g > +<title>lockref_get_not_dead (10,101,010 samples, 0.06%)</title><rect x="197.4" y="533" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="200.39" y="543.5" ></text> +</g> +<g > +<title>netif_rx_internal (10,101,010 samples, 0.06%)</title><rect x="1367.2" y="469" width="0.9" height="15.0" fill="rgb(0,198,33)" rx="2" ry="2" /> +<text x="1370.23" y="479.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="758.7" y="677" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="761.67" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="885" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1352.72" y="895.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="681.6" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="684.61" y="815.5" ></text> +</g> +<g > +<title>mas_next_slot (10,101,010 samples, 0.06%)</title><rect x="1301.6" y="693" width="0.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" /> +<text x="1304.56" y="703.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="348.9" y="613" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="351.87" y="623.5" ></text> +</g> +<g > +<title>__kmalloc (10,101,010 samples, 0.06%)</title><rect x="881.3" y="501" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="884.26" y="511.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="613" width="7.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1135.56" y="623.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="171.1" y="469" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="174.12" y="479.5" ></text> +</g> +<g > +<title>__blk_flush_plug (20,202,020 samples, 0.13%)</title><rect x="665.9" y="485" width="1.7" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="668.85" y="495.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="773" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1266.03" y="783.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (10,101,010 samples, 0.06%)</title><rect x="680.7" y="677" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="683.74" y="687.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="629.1" y="677" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="632.07" y="687.5" ></text> +</g> +<g > +<title>do_wait (10,101,010 samples, 0.06%)</title><rect x="1323.5" y="757" width="0.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="1326.45" y="767.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="890.0" y="533" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="893.01" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (212,121,210 samples, 1.33%)</title><rect x="831.3" y="789" width="18.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="834.35" y="799.5" ></text> +</g> +<g > +<title>submit_bio (10,101,010 samples, 0.06%)</title><rect x="1035.4" y="469" width="0.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="1038.37" y="479.5" ></text> +</g> +<g > +<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="582.7" y="533" width="0.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="585.66" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="1228.0" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="1231.01" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1195.11" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="892.6" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="895.64" y="783.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="924.2" y="757" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="927.16" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (151,515,150 samples, 0.95%)</title><rect x="1028.4" y="709" width="13.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1031.36" y="719.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="405" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1221.38" y="415.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.06%)</title><rect x="474.1" y="741" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="477.09" y="751.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.06%)</title><rect x="439.9" y="597" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="442.94" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="520.5" y="773" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="523.49" y="783.5" ></text> +</g> +<g > +<title>vfs_write (30,303,030 samples, 0.19%)</title><rect x="1108.9" y="629" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1111.92" y="639.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.06%)</title><rect x="367.3" y="709" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="370.26" y="719.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="863.7" y="613" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="866.74" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="1214.9" y="677" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1217.87" y="687.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1093.2" y="597" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1096.16" y="607.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.19%)</title><rect x="353.2" y="597" width="2.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="356.25" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="966.2" y="693" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="969.19" y="703.5" ></text> +</g> +<g > +<title>git_signature_now (10,101,010 samples, 0.06%)</title><rect x="728.9" y="789" width="0.9" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" /> +<text x="731.90" y="799.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1096.7" y="517" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1099.66" y="527.5" ></text> +</g> +<g > +<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="817.3" y="469" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="820.34" y="479.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="446.9" y="773" width="2.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="449.94" y="783.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="918.0" y="517" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="921.03" y="527.5" ></text> +</g> +<g > +<title>tcp_v4_syn_recv_sock (10,101,010 samples, 0.06%)</title><rect x="1377.7" y="245" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1380.74" y="255.5" ></text> +</g> +<g > +<title>storvsc_do_io (10,101,010 samples, 0.06%)</title><rect x="930.3" y="325" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="933.29" y="335.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="975.8" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="978.82" y="575.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (20,202,020 samples, 0.13%)</title><rect x="822.6" y="421" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="825.59" y="431.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1115.9" y="709" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1118.93" y="719.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="748.2" y="597" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="751.16" y="607.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="158.0" y="805" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="160.98" y="815.5" ></text> +</g> +<g > +<title>filemap_alloc_folio (10,101,010 samples, 0.06%)</title><rect x="732.4" y="533" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="735.40" y="543.5" ></text> +</g> +<g > +<title>_copy_to_user (10,101,010 samples, 0.06%)</title><rect x="501.2" y="565" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" /> +<text x="504.23" y="575.5" ></text> +</g> +<g > +<title>alloc_pages_mpol (10,101,010 samples, 0.06%)</title><rect x="791.1" y="469" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="794.07" y="479.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="613" width="0.8" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="1322.07" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="73.9" y="965" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="76.92" y="975.5" ></text> +</g> +<g > +<title>x64_sys_call (171,717,170 samples, 1.08%)</title><rect x="625.6" y="757" width="14.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="628.57" y="767.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="939.9" y="453" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="942.92" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="908.4" y="741" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="911.40" y="751.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (20,202,020 samples, 0.13%)</title><rect x="179.9" y="485" width="1.7" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="182.87" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1117.7" y="741" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1120.68" y="751.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="1043.2" y="677" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="1046.25" y="687.5" ></text> +</g> +<g > +<title>__d_alloc (20,202,020 samples, 0.13%)</title><rect x="1050.3" y="613" width="1.7" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" /> +<text x="1053.25" y="623.5" ></text> +</g> +<g > +<title>free_pgtables (10,101,010 samples, 0.06%)</title><rect x="328.7" y="597" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="331.73" y="607.5" ></text> +</g> +<g > +<title>ext4_inode_table (10,101,010 samples, 0.06%)</title><rect x="396.2" y="597" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="399.15" y="607.5" ></text> +</g> +<g > +<title>__vfs_getxattr (10,101,010 samples, 0.06%)</title><rect x="515.2" y="581" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="518.24" y="591.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="543.3" y="725" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="546.26" y="735.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="1010.0" y="613" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1012.97" y="623.5" ></text> +</g> +<g > +<title>link (30,303,030 samples, 0.19%)</title><rect x="720.1" y="757" width="2.7" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="723.14" y="767.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.06%)</title><rect x="880.4" y="501" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="883.38" y="511.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="74.8" y="981" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="77.80" y="991.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="777.1" y="693" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="780.06" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1209.99" y="639.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="152.7" y="869" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="155.73" y="879.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="646.6" y="501" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="649.59" y="511.5" ></text> +</g> +<g > +<title>vfs_statx (60,606,060 samples, 0.38%)</title><rect x="714.9" y="629" width="5.2" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="717.89" y="639.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="693" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1322.07" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="560.8" y="789" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="563.77" y="799.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.06%)</title><rect x="1031.0" y="501" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="1033.99" y="511.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="546.8" y="629" width="0.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="549.76" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="725" width="0.8" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="1258.15" y="735.5" ></text> +</g> +<g > +<title>__filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="1006.5" y="565" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="1009.47" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="500.4" y="677" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="503.36" y="687.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="988.1" y="613" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="991.08" y="623.5" ></text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="149" width="0.9" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1375.49" y="159.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="263.1" y="581" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="266.06" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="453.9" y="741" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="456.95" y="751.5" ></text> +</g> +<g > +<title>git_remote_update_tips (898,989,890 samples, 5.65%)</title><rect x="912.8" y="853" width="77.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="915.78" y="863.5" >git_remot..</text> +</g> +<g > +<title>ext4_read_block_bitmap (10,101,010 samples, 0.06%)</title><rect x="1172.0" y="549" width="0.8" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" /> +<text x="1174.97" y="559.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="806.0" y="533" width="1.7" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="808.95" y="543.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.13%)</title><rect x="1329.6" y="805" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1332.58" y="815.5" ></text> +</g> +<g > +<title>cfree (30,303,030 samples, 0.19%)</title><rect x="398.8" y="821" width="2.6" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="401.78" y="831.5" ></text> +</g> +<g > +<title>mas_wr_walk (20,202,020 samples, 0.13%)</title><rect x="1304.2" y="677" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1307.19" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="985.5" y="789" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="988.46" y="799.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="416.3" y="677" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="419.29" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_read (20,202,020 samples, 0.13%)</title><rect x="533.6" y="645" width="1.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="536.63" y="655.5" ></text> +</g> +<g > +<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="515.2" y="741" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="518.24" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="1341.8" y="901" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1344.84" y="911.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="1043.2" y="645" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" /> +<text x="1046.25" y="655.5" ></text> +</g> +<g > +<title>inode_set_ctime_current (10,101,010 samples, 0.06%)</title><rect x="1066.0" y="677" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="1069.02" y="687.5" ></text> +</g> +<g > +<title>ext4_add_nondir (40,404,040 samples, 0.25%)</title><rect x="1000.3" y="597" width="3.5" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="1003.34" y="607.5" ></text> +</g> +<g > +<title>do_unlinkat (90,909,090 samples, 0.57%)</title><rect x="410.2" y="741" width="7.8" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="413.16" y="751.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="748.2" y="517" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="751.16" y="527.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="677" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1195.11" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (60,606,060 samples, 0.38%)</title><rect x="366.4" y="757" width="5.2" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="369.38" y="767.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="691.2" y="597" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="694.24" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="739.4" y="645" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="742.40" y="655.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="523.1" y="613" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="526.12" y="623.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="770.1" y="533" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="773.05" y="543.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="958.3" y="389" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="961.31" y="399.5" ></text> +</g> +<g > +<title>filemap_alloc_folio (10,101,010 samples, 0.06%)</title><rect x="805.1" y="549" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="808.08" y="559.5" ></text> +</g> +<g > +<title>dd_bio_merge (10,101,010 samples, 0.06%)</title><rect x="1138.7" y="389" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="1141.69" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="850.6" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="853.61" y="751.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="451.3" y="741" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="454.32" y="751.5" ></text> +</g> +<g > +<title>filemap_add_folio (10,101,010 samples, 0.06%)</title><rect x="582.7" y="517" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="585.66" y="527.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="228.0" y="565" width="1.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="231.03" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="885" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1349.22" y="895.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="322.6" y="725" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="325.60" y="735.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.19%)</title><rect x="37.1" y="261" width="2.7" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="40.14" y="271.5" ></text> +</g> +<g > +<title>do_poll.constprop.0 (50,505,050 samples, 0.32%)</title><rect x="24.9" y="837" width="4.4" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="27.89" y="847.5" ></text> +</g> +<g > +<title>getdents64 (10,101,010 samples, 0.06%)</title><rect x="859.4" y="741" width="0.8" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="862.37" y="751.5" ></text> +</g> +<g > +<title>unlink_cb (50,505,050 samples, 0.32%)</title><rect x="177.2" y="709" width="4.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="180.25" y="719.5" ></text> +</g> +<g > +<title>dev_hard_start_xmit (10,101,010 samples, 0.06%)</title><rect x="1334.8" y="53" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="1337.84" y="63.5" ></text> +</g> +<g > +<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="620.3" y="613" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="623.32" y="623.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.06%)</title><rect x="72.2" y="837" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="75.17" y="847.5" ></text> +</g> +<g > +<title>ip_rcv (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="373" width="2.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1336.08" y="383.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (40,404,040 samples, 0.25%)</title><rect x="1328.7" y="901" width="3.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1331.71" y="911.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="654.5" y="501" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="657.47" y="511.5" ></text> +</g> +<g > +<title>nf_nat_ipv4_local_fn (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="661" width="1.8" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" /> +<text x="1387.75" y="671.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (20,202,020 samples, 0.13%)</title><rect x="449.6" y="661" width="1.7" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="452.57" y="671.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="1045.0" y="549" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="1048.00" y="559.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="693" width="0.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="1347.47" y="703.5" ></text> +</g> +<g > +<title>net_rx_action (20,202,020 samples, 0.13%)</title><rect x="12.6" y="485" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="15.63" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="594.9" y="757" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="597.92" y="767.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1251.6" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1254.65" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="453.9" y="773" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="456.95" y="783.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="515.2" y="549" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="518.24" y="559.5" ></text> +</g> +<g > +<title>link (121,212,120 samples, 0.76%)</title><rect x="597.6" y="773" width="10.5" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="600.55" y="783.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="392.7" y="645" width="0.8" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="395.65" y="655.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="157.1" y="853" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="160.11" y="863.5" ></text> +</g> +<g > +<title>getname (10,101,010 samples, 0.06%)</title><rect x="985.5" y="629" width="0.8" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="988.46" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="453.9" y="629" width="2.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="456.95" y="639.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (20,202,020 samples, 0.13%)</title><rect x="337.5" y="645" width="1.7" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="340.49" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="564.3" y="597" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="567.28" y="607.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="533" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1234.51" y="543.5" ></text> +</g> +<g > +<title>generic_perform_write (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="661" width="3.5" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="1071.64" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1238.89" y="751.5" ></text> +</g> +<g > +<title>unlink_cb (313,131,310 samples, 1.97%)</title><rect x="371.6" y="821" width="27.2" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="374.64" y="831.5" >u..</text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="249.9" y="453" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="252.92" y="463.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="453" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1366.73" y="463.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="714.9" y="533" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="717.89" y="543.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="951.3" y="565" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="954.31" y="575.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="725.4" y="581" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="728.39" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="362.0" y="533" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="365.01" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1115.1" y="725" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1118.05" y="735.5" ></text> +</g> +<g > +<title>sock_def_readable (10,101,010 samples, 0.06%)</title><rect x="13.5" y="261" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="16.50" y="271.5" ></text> +</g> +<g > +<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="511.7" y="565" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="514.74" y="575.5" ></text> +</g> +<g > +<title>git_repository_config_snapshot (101,010,100 samples, 0.63%)</title><rect x="1254.3" y="837" width="8.7" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="1257.28" y="847.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="629" width="0.8" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="1261.65" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="192.1" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="195.13" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="650.1" y="709" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="653.09" y="719.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="851.5" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="854.48" y="639.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="749.9" y="485" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="752.91" y="495.5" ></text> +</g> +<g > +<title>readlink (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="773" width="1.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="1200.36" y="783.5" ></text> +</g> +<g > +<title>dup_task_struct (70,707,070 samples, 0.44%)</title><rect x="54.7" y="709" width="6.1" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="57.66" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1030.49" y="703.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="533" width="0.8" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" /> +<text x="1196.86" y="543.5" ></text> +</g> +<g > +<title>list_lru_add (10,101,010 samples, 0.06%)</title><rect x="971.4" y="469" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="974.45" y="479.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="853.2" y="533" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="856.24" y="543.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="395.3" y="597" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="398.28" y="607.5" ></text> +</g> +<g > +<title>vfs_mkdir (414,141,410 samples, 2.60%)</title><rect x="1145.7" y="725" width="35.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="1148.70" y="735.5" >vfs..</text> +</g> +<g > +<title>ext4_free_blocks (10,101,010 samples, 0.06%)</title><rect x="817.3" y="501" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="820.34" y="511.5" ></text> +</g> +<g > +<title>file_modified (10,101,010 samples, 0.06%)</title><rect x="779.7" y="565" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="782.68" y="575.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.06%)</title><rect x="1158.8" y="613" width="0.9" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="1161.83" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (242,424,240 samples, 1.52%)</title><rect x="1121.2" y="741" width="21.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1124.18" y="751.5" ></text> +</g> +<g > +<title>__do_softirq (40,404,040 samples, 0.25%)</title><rect x="1363.7" y="485" width="3.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1366.73" y="495.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.06%)</title><rect x="535.4" y="629" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="538.38" y="639.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="894.4" y="693" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="897.39" y="703.5" ></text> +</g> +<g > +<title>dput (101,010,100 samples, 0.63%)</title><rect x="1122.1" y="661" width="8.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1125.06" y="671.5" ></text> +</g> +<g > +<title>libjson_recv (90,909,090 samples, 0.57%)</title><rect x="1352.3" y="885" width="7.9" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" /> +<text x="1355.35" y="895.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1035.4" y="421" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1038.37" y="431.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="380.4" y="533" width="2.6" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="383.39" y="543.5" ></text> +</g> +<g > +<title>vfs_write (40,404,040 samples, 0.25%)</title><rect x="515.2" y="693" width="3.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="518.24" y="703.5" ></text> +</g> +<g > +<title>dup_mm.constprop.0 (434,343,430 samples, 2.73%)</title><rect x="1276.2" y="741" width="37.6" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="1279.17" y="751.5" >dup..</text> +</g> +<g > +<title>__open64_nocancel (20,202,020 samples, 0.13%)</title><rect x="876.9" y="677" width="1.7" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="879.88" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="810.3" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="813.33" y="767.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="735.0" y="741" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="738.03" y="751.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="710.5" y="725" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="713.51" y="735.5" ></text> +</g> +<g > +<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="535.4" y="645" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="538.38" y="655.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="356.8" y="533" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="359.75" y="543.5" ></text> +</g> +<g > +<title>storvsc_on_io_completion (10,101,010 samples, 0.06%)</title><rect x="631.7" y="501" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="634.70" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1260.4" y="709" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1263.41" y="719.5" ></text> +</g> +<g > +<title>dquot_alloc_inode (10,101,010 samples, 0.06%)</title><rect x="79.2" y="837" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="82.18" y="847.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (20,202,020 samples, 0.13%)</title><rect x="665.9" y="405" width="1.7" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="668.85" y="415.5" ></text> +</g> +<g > +<title>__fput (111,111,110 samples, 0.70%)</title><rect x="32.8" y="773" width="9.6" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="35.77" y="783.5" ></text> +</g> +<g > +<title>obj_cgroup_uncharge (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="693" width="0.9" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="1319.45" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="763.0" y="629" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="766.05" y="639.5" ></text> +</g> +<g > +<title>dentry_free (10,101,010 samples, 0.06%)</title><rect x="33.6" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="36.64" y="735.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="725.4" y="613" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="728.39" y="623.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="440.8" y="597" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="443.81" y="607.5" ></text> +</g> +<g > +<title>ext4_xattr_security_get (10,101,010 samples, 0.06%)</title><rect x="779.7" y="485" width="0.9" height="15.0" fill="rgb(0,204,59)" rx="2" ry="2" /> +<text x="782.68" y="495.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="488.1" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="491.10" y="591.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (30,303,030 samples, 0.19%)</title><rect x="383.9" y="581" width="2.6" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" /> +<text x="386.90" y="591.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1041.5" y="661" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1044.50" y="671.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="443.4" y="565" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" /> +<text x="446.44" y="575.5" ></text> +</g> +<g > +<title>blk_mq_get_tag (10,101,010 samples, 0.06%)</title><rect x="1136.9" y="389" width="0.9" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="1139.94" y="399.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="215.8" y="661" width="0.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="218.77" y="671.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="839.2" y="533" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="842.23" y="543.5" ></text> +</g> +<g > +<title>ext4_inode_block_valid (10,101,010 samples, 0.06%)</title><rect x="299.8" y="533" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="302.84" y="543.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.06%)</title><rect x="538.9" y="629" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="541.88" y="639.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="980.2" y="565" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="983.20" y="575.5" ></text> +</g> +<g > +<title>__napi_poll (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="421" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1345.72" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="888.3" y="693" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="891.26" y="703.5" ></text> +</g> +<g > +<title>unlink (20,202,020 samples, 0.13%)</title><rect x="211.4" y="709" width="1.7" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="214.40" y="719.5" ></text> +</g> +<g > +<title>handle_pte_fault (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="517" width="0.9" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="1220.50" y="527.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="774.4" y="501" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="777.43" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1353.2" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1356.22" y="799.5" ></text> +</g> +<g > +<title>ext4_mkdir (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="693" width="7.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1044.50" y="703.5" ></text> +</g> +<g > +<title>open64 (30,303,030 samples, 0.19%)</title><rect x="453.9" y="661" width="2.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="456.95" y="671.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="72.2" y="741" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="75.17" y="751.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="437" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="1130.31" y="447.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="726.3" y="629" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="729.27" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="757" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="741.53" y="767.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (20,202,020 samples, 0.13%)</title><rect x="657.1" y="549" width="1.7" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="660.09" y="559.5" ></text> +</g> +<g > +<title>do_rmdir (161,616,160 samples, 1.02%)</title><rect x="197.4" y="629" width="14.0" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="200.39" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="789" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1361.48" y="799.5" ></text> +</g> +<g > +<title>ip_local_out (20,202,020 samples, 0.13%)</title><rect x="12.6" y="661" width="1.8" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="15.63" y="671.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="867.2" y="597" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="870.25" y="607.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="1154.5" y="677" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1157.45" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (2,868,686,840 samples, 18.02%)</title><rect x="169.4" y="869" width="248.6" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="172.37" y="879.5" >[libc.so.6]</text> +</g> +<g > +<title>vfs_rmdir (60,606,060 samples, 0.38%)</title><rect x="423.3" y="741" width="5.3" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="426.30" y="751.5" ></text> +</g> +<g > +<title>git_config_free (10,101,010 samples, 0.06%)</title><rect x="830.5" y="837" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="833.47" y="847.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="354.1" y="565" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="357.12" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="153.6" y="965" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="156.60" y="975.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="1013.5" y="789" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1016.48" y="799.5" ></text> +</g> +<g > +<title>tcp_recvmsg (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="677" width="1.7" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1361.48" y="687.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="114.2" y="741" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="117.20" y="751.5" ></text> +</g> +<g > +<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="604.6" y="533" width="0.8" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="607.56" y="543.5" ></text> +</g> +<g > +<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="310.3" y="645" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="313.34" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="645" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1222.25" y="655.5" ></text> +</g> +<g > +<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="569.5" y="549" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" /> +<text x="572.53" y="559.5" ></text> +</g> +<g > +<title>scsi_queue_rq (20,202,020 samples, 0.13%)</title><rect x="1133.4" y="341" width="1.8" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1136.44" y="351.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (222,222,220 samples, 1.40%)</title><rect x="915.4" y="805" width="19.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="918.41" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 1.08%)</title><rect x="625.6" y="789" width="14.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="628.57" y="799.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="661" width="2.7" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1344.84" y="671.5" ></text> +</g> +<g > +<title>unlink_cb (50,505,050 samples, 0.32%)</title><rect x="404.0" y="837" width="4.4" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="407.04" y="847.5" ></text> +</g> +<g > +<title>ext4_truncate (30,303,030 samples, 0.19%)</title><rect x="425.1" y="677" width="2.6" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="428.05" y="687.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="208.8" y="341" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="211.77" y="351.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1270.0" y="677" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="1273.04" y="687.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="412.8" y="597" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="415.79" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="23.1" y="885" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="26.13" y="895.5" ></text> +</g> +<g > +<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="986.3" y="565" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" /> +<text x="989.33" y="575.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="911.9" y="677" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="914.90" y="687.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (10,101,010 samples, 0.06%)</title><rect x="505.6" y="645" width="0.9" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="508.61" y="655.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="725" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1114.55" y="735.5" ></text> +</g> +<g > +<title>set_cpus_allowed_ptr (10,101,010 samples, 0.06%)</title><rect x="51.2" y="677" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="54.15" y="687.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="597" width="0.8" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="1261.65" y="607.5" ></text> +</g> +<g > +<title>printbuf_memappend (10,101,010 samples, 0.06%)</title><rect x="1356.7" y="821" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1359.73" y="831.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.06%)</title><rect x="730.6" y="533" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="733.65" y="543.5" ></text> +</g> +<g > +<title>ext4_bread (202,020,200 samples, 1.27%)</title><rect x="1158.8" y="661" width="17.5" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1161.83" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.57%)</title><rect x="410.2" y="805" width="7.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="413.16" y="815.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="383.9" y="501" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="386.90" y="511.5" ></text> +</g> +<g > +<title>ext4_release_dir (10,101,010 samples, 0.06%)</title><rect x="608.9" y="677" width="0.9" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="611.93" y="687.5" ></text> +</g> +<g > +<title>ip_finish_output (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="581" width="4.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1380.74" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="858.5" y="725" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="861.49" y="735.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="87.1" y="725" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="90.06" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="709" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1243.27" y="719.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="28.4" y="789" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="31.39" y="799.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="296.3" y="437" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="299.33" y="447.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (50,505,050 samples, 0.32%)</title><rect x="247.3" y="645" width="4.4" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="250.30" y="655.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="1153.6" y="677" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="1156.58" y="687.5" ></text> +</g> +<g > +<title>libjson_free (10,101,010 samples, 0.06%)</title><rect x="1350.6" y="885" width="0.9" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="1353.60" y="895.5" ></text> +</g> +<g > +<title>__ext4_new_inode (40,404,040 samples, 0.25%)</title><rect x="1266.5" y="741" width="3.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1269.54" y="751.5" ></text> +</g> +<g > +<title>net_close (10,101,010 samples, 0.06%)</title><rect x="20.5" y="965" width="0.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" /> +<text x="23.51" y="975.5" ></text> +</g> +<g > +<title>__d_add (10,101,010 samples, 0.06%)</title><rect x="1327.0" y="677" width="0.8" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="1329.95" y="687.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="1197.4" y="645" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1200.36" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="1186.9" y="789" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1189.85" y="799.5" ></text> +</g> +<g > +<title>wp_page_copy (10,101,010 samples, 0.06%)</title><rect x="1314.7" y="757" width="0.9" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="1317.70" y="767.5" ></text> +</g> +<g > +<title>__ip_finish_output (50,505,050 samples, 0.32%)</title><rect x="1363.7" y="581" width="4.4" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="1366.73" y="591.5" ></text> +</g> +<g > +<title>__default_morecore (20,202,020 samples, 0.13%)</title><rect x="241.2" y="709" width="1.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="244.17" y="719.5" ></text> +</g> +<g > +<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="677" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="1116.30" y="687.5" ></text> +</g> +<g > +<title>json_tokener_parse_ex (30,303,030 samples, 0.19%)</title><rect x="1355.0" y="837" width="2.6" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1357.97" y="847.5" ></text> +</g> +<g > +<title>ext4_rename2 (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="629" width="5.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="1102.29" y="639.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="693" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="1267.78" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="785.8" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="788.81" y="735.5" ></text> +</g> +<g > +<title>ext4_mb_clear_bb (40,404,040 samples, 0.25%)</title><rect x="295.5" y="485" width="3.5" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="298.46" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="739.4" y="629" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="742.40" y="639.5" ></text> +</g> +<g > +<title>fprintf (10,101,010 samples, 0.06%)</title><rect x="430.3" y="869" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="433.30" y="879.5" ></text> +</g> +<g > +<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="725" width="1.7" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="1186.35" y="735.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="501.2" y="597" width="2.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="504.23" y="607.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="758.7" y="661" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="761.67" y="671.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="341" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="1037.49" y="351.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1019.6" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1022.61" y="783.5" ></text> +</g> +<g > +<title>apparmor_file_permission (10,101,010 samples, 0.06%)</title><rect x="615.1" y="677" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="618.06" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="735.9" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="738.90" y="719.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="629" width="1.8" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="1226.63" y="639.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.06%)</title><rect x="180.7" y="389" width="0.9" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="183.75" y="399.5" ></text> +</g> +<g > +<title>geteuid (10,101,010 samples, 0.06%)</title><rect x="910.2" y="805" width="0.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="913.15" y="815.5" ></text> +</g> +<g > +<title>__memset (20,202,020 samples, 0.13%)</title><rect x="708.8" y="517" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="711.76" y="527.5" ></text> +</g> +<g > +<title>do_sys_poll (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="853" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="1352.72" y="863.5" ></text> +</g> +<g > +<title>nd_jump_root (10,101,010 samples, 0.06%)</title><rect x="1076.5" y="645" width="0.9" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="1079.52" y="655.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="890.9" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="893.89" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="243.8" y="741" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="246.79" y="751.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="485" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="1014.73" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="850.6" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="853.61" y="703.5" ></text> +</g> +<g > +<title>lookup_one_qstr_excl (10,101,010 samples, 0.06%)</title><rect x="845.4" y="677" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="848.36" y="687.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_lru (30,303,030 samples, 0.19%)</title><rect x="575.7" y="565" width="2.6" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" /> +<text x="578.66" y="575.5" ></text> +</g> +<g > +<title>generic_perform_write (50,505,050 samples, 0.32%)</title><rect x="1006.5" y="629" width="4.4" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="1009.47" y="639.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="482.8" y="661" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="485.84" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="642.2" y="741" width="5.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="645.21" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="482.0" y="629" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="484.97" y="639.5" ></text> +</g> +<g > +<title>tcp_data_ready (10,101,010 samples, 0.06%)</title><rect x="13.5" y="277" width="0.9" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" /> +<text x="16.50" y="287.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="536.3" y="725" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="539.26" y="735.5" ></text> +</g> +<g > +<title>ext4_add_nondir (10,101,010 samples, 0.06%)</title><rect x="1055.5" y="629" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="1058.51" y="639.5" ></text> +</g> +<g > +<title>__memcg_slab_pre_alloc_hook (20,202,020 samples, 0.13%)</title><rect x="1079.1" y="565" width="1.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="1082.15" y="575.5" ></text> +</g> +<g > +<title>ext4_orphan_add (20,202,020 samples, 0.13%)</title><rect x="200.0" y="581" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="203.01" y="591.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="482.0" y="565" width="0.8" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="484.97" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="757" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1235.39" y="767.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="693" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1235.39" y="703.5" ></text> +</g> +<g > +<title>copy_page_range (131,313,130 samples, 0.82%)</title><rect x="1282.3" y="709" width="11.4" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="1285.30" y="719.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="208.8" y="373" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="211.77" y="383.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="782.3" y="533" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="785.31" y="543.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1264.8" y="725" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="1267.78" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="1229.8" y="709" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1232.76" y="719.5" ></text> +</g> +<g > +<title>filemap_get_entry (10,101,010 samples, 0.06%)</title><rect x="248.2" y="485" width="0.8" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" /> +<text x="251.17" y="495.5" ></text> +</g> +<g > +<title>alloc_pages_mpol (10,101,010 samples, 0.06%)</title><rect x="805.1" y="517" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="808.08" y="527.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="323.5" y="613" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="326.48" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (444,444,440 samples, 2.79%)</title><rect x="1143.1" y="789" width="38.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1146.07" y="799.5" >do_..</text> +</g> +<g > +<title>__x64_sys_unlink (60,606,060 samples, 0.38%)</title><rect x="306.0" y="677" width="5.2" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="308.96" y="687.5" ></text> +</g> +<g > +<title>__fput_sync (111,111,110 samples, 0.70%)</title><rect x="32.8" y="789" width="9.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="35.77" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="916.3" y="773" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="919.28" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1209.6" y="709" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1212.62" y="719.5" ></text> +</g> +<g > +<title>bdev_getblk (20,202,020 samples, 0.13%)</title><rect x="617.7" y="565" width="1.7" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="620.69" y="575.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="437" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1221.38" y="447.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (90,909,090 samples, 0.57%)</title><rect x="410.2" y="757" width="7.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="413.16" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (303,030,300 samples, 1.90%)</title><rect x="804.2" y="837" width="26.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="807.20" y="847.5" >[..</text> +</g> +<g > +<title>git_config_add_file_ondisk (80,808,080 samples, 0.51%)</title><rect x="901.4" y="741" width="7.0" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="904.40" y="751.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="713.1" y="581" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="716.13" y="591.5" ></text> +</g> +<g > +<title>ip_rcv_finish_core.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1343.6" y="341" width="0.9" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" /> +<text x="1346.59" y="351.5" ></text> +</g> +<g > +<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="906.6" y="613" width="1.8" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="909.65" y="623.5" ></text> +</g> +<g > +<title>xas_load (10,101,010 samples, 0.06%)</title><rect x="248.2" y="469" width="0.8" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" /> +<text x="251.17" y="479.5" ></text> +</g> +<g > +<title>ext4_evict_inode (90,909,090 samples, 0.57%)</title><rect x="202.6" y="565" width="7.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="205.64" y="575.5" ></text> +</g> +<g > +<title>filemap_flush (60,606,060 samples, 0.38%)</title><rect x="791.9" y="581" width="5.3" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="794.94" y="591.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="453" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1221.38" y="463.5" ></text> +</g> +<g > +<title>nft_update_chain_stats (10,101,010 samples, 0.06%)</title><rect x="35.4" y="485" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="38.39" y="495.5" ></text> +</g> +<g > +<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="341.9" y="581" width="0.8" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="344.87" y="591.5" ></text> +</g> +<g > +<title>ext4_mb_complex_scan_group (20,202,020 samples, 0.13%)</title><rect x="589.7" y="501" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="592.67" y="511.5" ></text> +</g> +<g > +<title>radix_tree_lookup (10,101,010 samples, 0.06%)</title><rect x="1324.3" y="725" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="1327.33" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (131,313,130 samples, 0.82%)</title><rect x="245.5" y="725" width="11.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="248.55" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="505.6" y="725" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="508.61" y="735.5" ></text> +</g> +<g > +<title>git_signature_free (10,101,010 samples, 0.06%)</title><rect x="158.9" y="837" width="0.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="161.86" y="847.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="404.0" y="789" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="407.04" y="799.5" ></text> +</g> +<g > +<title>walk_component (20,202,020 samples, 0.13%)</title><rect x="714.9" y="565" width="1.7" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="717.89" y="575.5" ></text> +</g> +<g > +<title>unlink_cb (303,030,300 samples, 1.90%)</title><rect x="340.1" y="805" width="26.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="343.11" y="815.5" >u..</text> +</g> +<g > +<title>ext4_ext_rm_leaf (20,202,020 samples, 0.13%)</title><rect x="179.9" y="469" width="1.7" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="182.87" y="479.5" ></text> +</g> +<g > +<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="1127.3" y="469" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1130.31" y="479.5" ></text> +</g> +<g > +<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="926.8" y="533" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="929.79" y="543.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.06%)</title><rect x="1223.6" y="581" width="0.9" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="1226.63" y="591.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.06%)</title><rect x="916.3" y="517" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="919.28" y="527.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="549" width="0.8" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" /> +<text x="1253.77" y="559.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="315.6" y="629" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="318.60" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="789" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1349.22" y="799.5" ></text> +</g> +<g > +<title>do_syscall_64 (131,313,130 samples, 0.82%)</title><rect x="786.7" y="709" width="11.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="789.69" y="719.5" ></text> +</g> +<g > +<title>balance_dirty_pages_ratelimited_flags (10,101,010 samples, 0.06%)</title><rect x="775.3" y="517" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="778.30" y="527.5" ></text> +</g> +<g > +<title>mas_find (10,101,010 samples, 0.06%)</title><rect x="242.0" y="581" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="245.04" y="591.5" ></text> +</g> +<g > +<title>ext4_mkdir (80,808,080 samples, 0.51%)</title><rect x="1266.5" y="757" width="7.0" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1269.54" y="767.5" ></text> +</g> +<g > +<title>git_error_set (10,101,010 samples, 0.06%)</title><rect x="862.0" y="709" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="864.99" y="719.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="1124.7" y="565" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="1127.68" y="575.5" ></text> +</g> +<g > +<title>ext4_read_block_bitmap (10,101,010 samples, 0.06%)</title><rect x="587.0" y="485" width="0.9" height="15.0" fill="rgb(0,239,208)" rx="2" ry="2" /> +<text x="590.04" y="495.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="824.3" y="581" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="827.34" y="591.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1270.9" y="645" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1273.91" y="655.5" ></text> +</g> +<g > +<title>vfs_write (40,404,040 samples, 0.25%)</title><rect x="1068.6" y="709" width="3.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1071.64" y="719.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="969.7" y="725" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="972.70" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="855.9" y="805" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="858.86" y="815.5" ></text> +</g> +<g > +<title>block_write_end (10,101,010 samples, 0.06%)</title><rect x="517.0" y="613" width="0.9" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" /> +<text x="519.99" y="623.5" ></text> +</g> +<g > +<title>readlink (10,101,010 samples, 0.06%)</title><rect x="757.8" y="725" width="0.9" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="760.79" y="735.5" ></text> +</g> +<g > +<title>filename_lookup (30,303,030 samples, 0.19%)</title><rect x="897.9" y="629" width="2.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="900.89" y="639.5" ></text> +</g> +<g > +<title>rename (151,515,150 samples, 0.95%)</title><rect x="836.6" y="773" width="13.1" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="839.60" y="783.5" ></text> +</g> +<g > +<title>__folio_batch_release (10,101,010 samples, 0.06%)</title><rect x="658.8" y="533" width="0.9" height="15.0" fill="rgb(0,193,14)" rx="2" ry="2" /> +<text x="661.85" y="543.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (40,404,040 samples, 0.25%)</title><rect x="658.8" y="549" width="3.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="661.85" y="559.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="709" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1116.30" y="719.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="925.9" y="597" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="928.91" y="607.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="565" width="0.8" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" /> +<text x="1239.76" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (151,515,150 samples, 0.95%)</title><rect x="1028.4" y="693" width="13.1" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1031.36" y="703.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.06%)</title><rect x="751.7" y="645" width="0.8" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="754.66" y="655.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="263.1" y="485" width="0.8" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" /> +<text x="266.06" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.76%)</title><rect x="897.9" y="773" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="900.89" y="783.5" ></text> +</g> +<g > +<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="932.0" y="453" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="935.04" y="463.5" ></text> +</g> +<g > +<title>vfs_mkdir (141,414,140 samples, 0.89%)</title><rect x="951.3" y="597" width="12.3" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="954.31" y="607.5" ></text> +</g> +<g > +<title>ext4_setent (10,101,010 samples, 0.06%)</title><rect x="1040.6" y="597" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="1043.62" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="486.3" y="741" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="489.35" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="869" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1349.22" y="879.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="505.6" y="661" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="508.61" y="671.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="685.1" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="688.11" y="671.5" ></text> +</g> +<g > +<title>ext4_ext_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="437" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1040.99" y="447.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="1114.2" y="757" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="1117.18" y="767.5" ></text> +</g> +<g > +<title>ipv4_conntrack_local (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="101" width="0.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="1375.49" y="111.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="471.5" y="757" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="474.46" y="767.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.13%)</title><rect x="778.8" y="709" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="781.81" y="719.5" ></text> +</g> +<g > +<title>client_create (252,525,250 samples, 1.59%)</title><rect x="44.1" y="901" width="21.9" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="47.15" y="911.5" >c..</text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="853.2" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="856.24" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="1221.0" y="741" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1224.00" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1256.0" y="709" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1259.03" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="750.8" y="709" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="753.79" y="719.5" ></text> +</g> +<g > +<title>__mod_lruvec_state (10,101,010 samples, 0.06%)</title><rect x="400.5" y="517" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="403.53" y="527.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="539.8" y="741" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="542.76" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="501.2" y="661" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="504.23" y="671.5" ></text> +</g> +<g > +<title>ext4_es_can_be_merged.isra.0 (10,101,010 samples, 0.06%)</title><rect x="806.8" y="501" width="0.9" height="15.0" fill="rgb(0,227,159)" rx="2" ry="2" /> +<text x="809.83" y="511.5" ></text> +</g> +<g > +<title>request_create_new_worker (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="949" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="1392.12" y="959.5" ></text> +</g> +<g > +<title>__x64_sys_access (111,111,110 samples, 0.70%)</title><rect x="144.0" y="949" width="9.6" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="146.97" y="959.5" ></text> +</g> +<g > +<title>ip_output (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="613" width="5.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1372.86" y="623.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1123.8" y="533" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="1126.81" y="543.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.06%)</title><rect x="402.3" y="677" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="405.28" y="687.5" ></text> +</g> +<g > +<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="737.7" y="661" width="0.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="740.65" y="671.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1129.1" y="565" width="0.8" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1132.06" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="979.3" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="982.33" y="671.5" ></text> +</g> +<g > +<title>__memcg_slab_free_hook (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="709" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="1319.45" y="719.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="355.0" y="549" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="358.00" y="559.5" ></text> +</g> +<g > +<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="710.5" y="629" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="713.51" y="639.5" ></text> +</g> +<g > +<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="1043.2" y="613" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="1046.25" y="623.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.06%)</title><rect x="269.2" y="565" width="0.9" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" /> +<text x="272.19" y="575.5" ></text> +</g> +<g > +<title>git_reference_list (202,020,200 samples, 1.27%)</title><rect x="874.3" y="821" width="17.5" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="877.25" y="831.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="613" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="1188.98" y="623.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="966.2" y="597" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="969.19" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="750.8" y="581" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="753.79" y="591.5" ></text> +</g> +<g > +<title>do_vmi_align_munmap (30,303,030 samples, 0.19%)</title><rect x="398.8" y="661" width="2.6" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" /> +<text x="401.78" y="671.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (20,202,020 samples, 0.13%)</title><rect x="880.4" y="533" width="1.7" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="883.38" y="543.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="595.8" y="661" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="598.80" y="671.5" ></text> +</g> +<g > +<title>ksys_write (30,303,030 samples, 0.19%)</title><rect x="707.9" y="629" width="2.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="710.88" y="639.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="580.9" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="583.91" y="559.5" ></text> +</g> +<g > +<title>git_refdb_open (40,404,040 samples, 0.25%)</title><rect x="1239.4" y="821" width="3.5" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="1242.39" y="831.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="482.0" y="581" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="484.97" y="591.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="495.1" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="498.10" y="703.5" ></text> +</g> +<g > +<title>inode_init_always (10,101,010 samples, 0.06%)</title><rect x="989.0" y="597" width="0.8" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" /> +<text x="991.96" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="214.0" y="725" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="217.02" y="735.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="629" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1026.11" y="639.5" ></text> +</g> +<g > +<title>__block_commit_write (10,101,010 samples, 0.06%)</title><rect x="541.5" y="597" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="544.51" y="607.5" ></text> +</g> +<g > +<title>__fdget_pos (10,101,010 samples, 0.06%)</title><rect x="614.2" y="693" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="617.19" y="703.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="855.0" y="741" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="857.99" y="751.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="734.1" y="645" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="737.15" y="655.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="732.4" y="485" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="735.40" y="495.5" ></text> +</g> +<g > +<title>ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="469.7" y="661" width="1.8" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="472.71" y="671.5" ></text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.06%)</title><rect x="211.4" y="629" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="214.40" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (515,151,510 samples, 3.24%)</title><rect x="866.4" y="837" width="44.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="869.37" y="847.5" >[lib..</text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="770.1" y="677" width="0.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="773.05" y="687.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="889.1" y="533" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="892.14" y="543.5" ></text> +</g> +<g > +<title>jsonrpc_request_set_param_int (20,202,020 samples, 0.13%)</title><rect x="18.8" y="965" width="1.7" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="21.76" y="975.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="268.3" y="517" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="271.31" y="527.5" ></text> +</g> +<g > +<title>ext4_readdir (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="677" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="1239.76" y="687.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="597" width="0.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1348.34" y="607.5" ></text> +</g> +<g > +<title>ipv4_conntrack_local (20,202,020 samples, 0.13%)</title><rect x="1362.0" y="581" width="1.7" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="1364.98" y="591.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="156.2" y="789" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="159.23" y="799.5" ></text> +</g> +<g > +<title>do_renameat2 (242,424,240 samples, 1.52%)</title><rect x="1121.2" y="677" width="21.0" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="1124.18" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="192.1" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="195.13" y="687.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="979.3" y="389" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="982.33" y="399.5" ></text> +</g> +<g > +<title>path_init (10,101,010 samples, 0.06%)</title><rect x="1197.4" y="629" width="0.8" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="1200.36" y="639.5" ></text> +</g> +<g > +<title>do_writepages (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="533" width="6.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1037.49" y="543.5" ></text> +</g> +<g > +<title>free_page_and_swap_cache (10,101,010 samples, 0.06%)</title><rect x="35.4" y="341" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="38.39" y="351.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (50,505,050 samples, 0.32%)</title><rect x="1006.5" y="645" width="4.4" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="1009.47" y="655.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="663.2" y="501" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="666.22" y="511.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (20,202,020 samples, 0.13%)</title><rect x="806.0" y="549" width="1.7" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="808.95" y="559.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="597" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1209.99" y="607.5" ></text> +</g> +<g > +<title>find_lock_entries (20,202,020 samples, 0.13%)</title><rect x="387.4" y="613" width="1.7" height="15.0" fill="rgb(0,209,81)" rx="2" ry="2" /> +<text x="390.40" y="623.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="846.2" y="565" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="849.23" y="575.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1266.5" y="709" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1269.54" y="719.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="856.7" y="613" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="859.74" y="623.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (20,202,020 samples, 0.13%)</title><rect x="228.0" y="533" width="1.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="231.03" y="543.5" ></text> +</g> +<g > +<title>bio_endio (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="341" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" /> +<text x="1366.73" y="351.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="426.8" y="549" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="429.80" y="559.5" ></text> +</g> +<g > +<title>__pmd_alloc (10,101,010 samples, 0.06%)</title><rect x="1283.2" y="677" width="0.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" /> +<text x="1286.17" y="687.5" ></text> +</g> +<g > +<title>ext4_readdir (50,505,050 samples, 0.32%)</title><rect x="332.2" y="693" width="4.4" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="335.23" y="703.5" ></text> +</g> +<g > +<title>sd_uninit_command (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="245" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="1140.82" y="255.5" ></text> +</g> +<g > +<title>truncate_inode_partial_folio (30,303,030 samples, 0.19%)</title><rect x="659.7" y="533" width="2.6" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="662.72" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="741" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1200.36" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1316.4" y="837" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1319.45" y="847.5" ></text> +</g> +<g > +<title>do_writepages (40,404,040 samples, 0.25%)</title><rect x="930.3" y="581" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="933.29" y="591.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="892.6" y="629" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="895.64" y="639.5" ></text> +</g> +<g > +<title>ext4_truncate (20,202,020 samples, 0.13%)</title><rect x="657.1" y="565" width="1.7" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="660.09" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (60,606,060 samples, 0.38%)</title><rect x="24.0" y="885" width="5.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="27.01" y="895.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1009.1" y="565" width="0.9" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="1012.10" y="575.5" ></text> +</g> +<g > +<title>readdir64 (10,101,010 samples, 0.06%)</title><rect x="859.4" y="757" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="862.37" y="767.5" ></text> +</g> +<g > +<title>__check_heap_object (10,101,010 samples, 0.06%)</title><rect x="905.8" y="453" width="0.8" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="908.77" y="463.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="289.3" y="533" width="2.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="292.33" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="903.1" y="613" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="906.15" y="623.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="546.8" y="613" width="0.8" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="549.76" y="623.5" ></text> +</g> +<g > +<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="805.1" y="565" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="808.08" y="575.5" ></text> +</g> +<g > +<title>path_put (10,101,010 samples, 0.06%)</title><rect x="370.8" y="693" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="373.76" y="703.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="424.2" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="427.18" y="671.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="476.7" y="549" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="479.71" y="559.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="448.7" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="451.69" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="367.3" y="693" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="370.26" y="703.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.06%)</title><rect x="791.1" y="485" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="794.07" y="495.5" ></text> +</g> +<g > +<title>ext4_evict_inode (90,909,090 samples, 0.57%)</title><rect x="654.5" y="581" width="7.8" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="657.47" y="591.5" ></text> +</g> +<g > +<title>_IO_file_write (10,101,010 samples, 0.06%)</title><rect x="72.2" y="853" width="0.8" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" /> +<text x="75.17" y="863.5" ></text> +</g> +<g > +<title>__close (10,101,010 samples, 0.06%)</title><rect x="535.4" y="725" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="538.38" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="775.3" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="778.30" y="671.5" ></text> +</g> +<g > +<title>mem_cgroup_uncharge_skmem (10,101,010 samples, 0.06%)</title><rect x="1359.4" y="613" width="0.8" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="1362.35" y="623.5" ></text> +</g> +<g > +<title>rmdir (50,505,050 samples, 0.32%)</title><rect x="177.2" y="677" width="4.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="180.25" y="687.5" ></text> +</g> +<g > +<title>vfs_rename (70,707,070 samples, 0.44%)</title><rect x="928.5" y="693" width="6.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="931.54" y="703.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="204.4" y="453" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="207.39" y="463.5" ></text> +</g> +<g > +<title>__close (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="677" width="0.8" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="1222.25" y="687.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1037.1" y="453" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1040.12" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="978.5" y="693" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="981.45" y="703.5" ></text> +</g> +<g > +<title>git_index_write (80,808,080 samples, 0.51%)</title><rect x="539.8" y="869" width="7.0" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" /> +<text x="542.76" y="879.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (50,505,050 samples, 0.32%)</title><rect x="322.6" y="693" width="4.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="325.60" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_pipe2 (20,202,020 samples, 0.13%)</title><rect x="1321.7" y="821" width="1.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="1324.70" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="684.2" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="687.24" y="751.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="327.9" y="677" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="330.86" y="687.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="114.2" y="773" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="117.20" y="783.5" ></text> +</g> +<g > +<title>ext4_match (10,101,010 samples, 0.06%)</title><rect x="1080.9" y="581" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="1083.90" y="591.5" ></text> +</g> +<g > +<title>unlink_cb (90,909,090 samples, 0.57%)</title><rect x="184.3" y="725" width="7.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="187.25" y="735.5" ></text> +</g> +<g > +<title>dput (50,505,050 samples, 0.32%)</title><rect x="1028.4" y="645" width="4.3" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1031.36" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="895.3" y="741" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="898.27" y="751.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="730.6" y="517" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="733.65" y="527.5" ></text> +</g> +<g > +<title>vfs_mkdir (343,434,340 samples, 2.16%)</title><rect x="564.3" y="661" width="29.7" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="567.28" y="671.5" >vf..</text> +</g> +<g > +<title>__ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="693" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="1387.75" y="703.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="815.6" y="565" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="818.58" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="216.6" y="725" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="219.65" y="735.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="579.2" y="581" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="582.16" y="591.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="805" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1188.98" y="815.5" ></text> +</g> +<g > +<title>kernel_clone (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="773" width="40.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1276.54" y="783.5" >ker..</text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="778.8" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="781.81" y="671.5" ></text> +</g> +<g > +<title>ext4_map_blocks (30,303,030 samples, 0.19%)</title><rect x="467.1" y="533" width="2.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="470.08" y="543.5" ></text> +</g> +<g > +<title>do_sys_openat2 (555,555,550 samples, 3.49%)</title><rect x="95.8" y="917" width="48.2" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="98.81" y="927.5" >do_s..</text> +</g> +<g > +<title>__x64_sys_write (30,303,030 samples, 0.19%)</title><rect x="539.8" y="725" width="2.6" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="542.76" y="735.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="447.8" y="645" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="450.82" y="655.5" ></text> +</g> +<g > +<title>process_backlog (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="405" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" /> +<text x="1345.72" y="415.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="80.1" y="757" width="0.8" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="83.05" y="767.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (50,505,050 samples, 0.32%)</title><rect x="35.4" y="613" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="38.39" y="623.5" ></text> +</g> +<g > +<title>ext4_empty_dir (30,303,030 samples, 0.19%)</title><rect x="270.1" y="613" width="2.6" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="273.06" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1022.2" y="725" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1025.23" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="736.8" y="709" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="739.78" y="719.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.06%)</title><rect x="890.0" y="517" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="893.01" y="527.5" ></text> +</g> +<g > +<title>delete_from_page_cache_batch (20,202,020 samples, 0.13%)</title><rect x="172.9" y="485" width="1.7" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="175.87" y="495.5" ></text> +</g> +<g > +<title>libjson_has (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="821" width="0.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="1354.47" y="831.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="180.7" y="341" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="183.75" y="351.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="990.7" y="805" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="993.71" y="815.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="610.7" y="741" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="613.69" y="751.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.06%)</title><rect x="921.5" y="693" width="0.9" height="15.0" fill="rgb(0,236,193)" rx="2" ry="2" /> +<text x="924.54" y="703.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="203.5" y="517" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="206.52" y="527.5" ></text> +</g> +<g > +<title>ext4_rmdir (40,404,040 samples, 0.25%)</title><rect x="198.3" y="597" width="3.5" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="201.26" y="607.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.06%)</title><rect x="1233.3" y="597" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="1236.26" y="607.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="734.1" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="737.15" y="671.5" ></text> +</g> +<g > +<title>__ext4_check_dir_entry (10,101,010 samples, 0.06%)</title><rect x="233.3" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="236.29" y="559.5" ></text> +</g> +<g > +<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="394.4" y="581" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" /> +<text x="397.40" y="591.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="1231.5" y="645" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="1234.51" y="655.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="608.1" y="773" width="0.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="611.06" y="783.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="834.8" y="613" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="837.85" y="623.5" ></text> +</g> +<g > +<title>__mod_node_page_state (10,101,010 samples, 0.06%)</title><rect x="400.5" y="501" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="403.53" y="511.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="677" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="1238.89" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="784.9" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="787.94" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="878.6" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="881.63" y="671.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1045.0" y="533" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1048.00" y="543.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="734.1" y="629" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="737.15" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="442.6" y="661" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="445.56" y="671.5" ></text> +</g> +<g > +<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="548.5" y="677" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="551.52" y="687.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="629" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1045.37" y="639.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="198.3" y="565" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="201.26" y="575.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="974.1" y="453" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="977.07" y="463.5" ></text> +</g> +<g > +<title>ext4_rename2 (40,404,040 samples, 0.25%)</title><rect x="846.2" y="661" width="3.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="849.23" y="671.5" ></text> +</g> +<g > +<title>tasklet_action (10,101,010 samples, 0.06%)</title><rect x="631.7" y="565" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="634.70" y="575.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.06%)</title><rect x="1372.5" y="197" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1375.49" y="207.5" ></text> +</g> +<g > +<title>x64_sys_call (50,505,050 samples, 0.32%)</title><rect x="177.2" y="629" width="4.4" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="180.25" y="639.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="631.7" y="581" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="634.70" y="591.5" ></text> +</g> +<g > +<title>ext4_truncate (50,505,050 samples, 0.32%)</title><rect x="206.1" y="549" width="4.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="209.14" y="559.5" ></text> +</g> +<g > +<title>filemap_flush (90,909,090 samples, 0.57%)</title><rect x="1132.6" y="597" width="7.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="1135.56" y="607.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="1066.9" y="677" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1069.89" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (10,101,010 samples, 0.06%)</title><rect x="859.4" y="677" width="0.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="862.37" y="687.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="182.5" y="725" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="185.50" y="735.5" ></text> +</g> +<g > +<title>ext4_mkdir (111,111,110 samples, 0.70%)</title><rect x="696.5" y="597" width="9.6" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="699.50" y="607.5" ></text> +</g> +<g > +<title>git_config_add_backend (60,606,060 samples, 0.38%)</title><rect x="1257.8" y="773" width="5.2" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1260.78" y="783.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="972.3" y="565" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="975.32" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="524.0" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="527.00" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_gettid (10,101,010 samples, 0.06%)</title><rect x="70.4" y="869" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="73.42" y="879.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="408.4" y="773" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="411.41" y="783.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="787.6" y="533" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="790.56" y="543.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1371.98" y="671.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.06%)</title><rect x="428.6" y="837" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="431.55" y="847.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="741" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1202.11" y="751.5" ></text> +</g> +<g > +<title>__alloc_skb (10,101,010 samples, 0.06%)</title><rect x="1388.2" y="741" width="0.9" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="1391.25" y="751.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="984.6" y="549" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="987.58" y="559.5" ></text> +</g> +<g > +<title>ip_local_deliver (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="437" width="0.9" height="15.0" fill="rgb(0,215,106)" rx="2" ry="2" /> +<text x="1348.34" y="447.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="448.7" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="451.69" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (282,828,280 samples, 1.78%)</title><rect x="341.0" y="725" width="24.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="343.99" y="735.5" >x..</text> +</g> +<g > +<title>ipv4_conntrack_local (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="245" width="0.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="1390.37" y="255.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="926.8" y="581" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="929.79" y="591.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.06%)</title><rect x="816.5" y="581" width="0.8" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="819.46" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="837" width="6.1" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1335.21" y="847.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="422.4" y="725" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="425.42" y="735.5" ></text> +</g> +<g > +<title>tcp_write_xmit (30,303,030 samples, 0.19%)</title><rect x="11.8" y="725" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="14.75" y="735.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="341" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1040.99" y="351.5" ></text> +</g> +<g > +<title>srso_alias_return_thunk (10,101,010 samples, 0.06%)</title><rect x="12.6" y="293" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="15.63" y="303.5" ></text> +</g> +<g > +<title>__task_pid_nr_ns (10,101,010 samples, 0.06%)</title><rect x="241.2" y="469" width="0.8" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="244.17" y="479.5" ></text> +</g> +<g > +<title>ext4_evict_inode (30,303,030 samples, 0.19%)</title><rect x="462.7" y="629" width="2.6" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="465.70" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1014.4" y="677" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1017.35" y="687.5" ></text> +</g> +<g > +<title>tcp_rearm_rto (10,101,010 samples, 0.06%)</title><rect x="1376.9" y="693" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="1379.87" y="703.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="867.2" y="693" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="870.25" y="703.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (40,404,040 samples, 0.25%)</title><rect x="432.9" y="821" width="3.5" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="435.93" y="831.5" ></text> +</g> +<g > +<title>d_lru_del (10,101,010 samples, 0.06%)</title><rect x="786.7" y="613" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="789.69" y="623.5" ></text> +</g> +<g > +<title>path_openat (545,454,540 samples, 3.43%)</title><rect x="95.8" y="885" width="47.3" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="98.81" y="895.5" >path..</text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.06%)</title><rect x="1237.6" y="677" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="1240.64" y="687.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="172.0" y="453" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="174.99" y="463.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="309" width="2.6" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="1336.08" y="319.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="898.8" y="597" width="1.7" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="901.77" y="607.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.06%)</title><rect x="713.1" y="629" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="716.13" y="639.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="373" width="0.8" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1390.37" y="383.5" ></text> +</g> +<g > +<title>jsonrpc_check_version (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="869" width="0.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="1354.47" y="879.5" ></text> +</g> +<g > +<title>libjson_get (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="837" width="0.8" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" /> +<text x="1354.47" y="847.5" ></text> +</g> +<g > +<title>[libc.so.6] (2,999,999,970 samples, 18.85%)</title><rect x="169.4" y="885" width="260.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="172.37" y="895.5" >[libc.so.6]</text> +</g> +<g > +<title>snprintf (10,101,010 samples, 0.06%)</title><rect x="1331.3" y="885" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="1334.33" y="895.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="633.5" y="597" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="636.45" y="607.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (30,303,030 samples, 0.19%)</title><rect x="1310.3" y="693" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1313.32" y="703.5" ></text> +</g> +<g > +<title>__dentry_kill (70,707,070 samples, 0.44%)</title><rect x="839.2" y="661" width="6.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="842.23" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1241.1" y="613" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1244.14" y="623.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="108.1" y="645" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="111.07" y="655.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.06%)</title><rect x="1129.9" y="549" width="0.9" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="1132.94" y="559.5" ></text> +</g> +<g > +<title>ext4_mb_clear_bb (10,101,010 samples, 0.06%)</title><rect x="658.0" y="469" width="0.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="660.97" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="835.7" y="709" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="838.72" y="719.5" ></text> +</g> +<g > +<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="717.5" y="565" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="720.51" y="575.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="580.0" y="581" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="583.04" y="591.5" ></text> +</g> +<g > +<title>generic_update_time (10,101,010 samples, 0.06%)</title><rect x="435.6" y="645" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="438.56" y="655.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list.part.0 (10,101,010 samples, 0.06%)</title><rect x="930.3" y="485" width="0.9" height="15.0" fill="rgb(0,209,83)" rx="2" ry="2" /> +<text x="933.29" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1029.61" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="154.5" y="901" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="157.48" y="911.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="1235.9" y="693" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="1238.89" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="749.0" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="752.04" y="671.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="645" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1209.99" y="655.5" ></text> +</g> +<g > +<title>alloc_user_cpus_ptr (10,101,010 samples, 0.06%)</title><rect x="58.2" y="677" width="0.8" height="15.0" fill="rgb(0,220,127)" rx="2" ry="2" /> +<text x="61.16" y="687.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="189.5" y="549" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="192.51" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="165.9" y="853" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="168.86" y="863.5" ></text> +</g> +<g > +<title>inet_recvmsg (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="693" width="1.7" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="1361.48" y="703.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="725.4" y="549" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="728.39" y="559.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.06%)</title><rect x="123.0" y="725" width="0.8" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="125.96" y="735.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="405" width="0.9" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="1037.49" y="415.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="379.5" y="613" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="382.52" y="623.5" ></text> +</g> +<g > +<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="924.2" y="677" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="927.16" y="687.5" ></text> +</g> +<g > +<title>net_send_part (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="885" width="7.9" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" /> +<text x="1363.23" y="895.5" ></text> +</g> +<g > +<title>path_put (20,202,020 samples, 0.13%)</title><rect x="1260.4" y="645" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1263.41" y="655.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (10,101,010 samples, 0.06%)</title><rect x="1031.0" y="517" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="1033.99" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="520.5" y="805" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="523.49" y="815.5" ></text> +</g> +<g > +<title>x64_sys_call (60,606,060 samples, 0.38%)</title><rect x="366.4" y="773" width="5.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="369.38" y="783.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="863.7" y="581" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="866.74" y="591.5" ></text> +</g> +<g > +<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="187.8" y="501" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="190.75" y="511.5" ></text> +</g> +<g > +<title>scsi_queue_rq (10,101,010 samples, 0.06%)</title><rect x="1034.5" y="325" width="0.9" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1037.49" y="335.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="484.6" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="487.59" y="719.5" ></text> +</g> +<g > +<title>json_object_object_add_ex (10,101,010 samples, 0.06%)</title><rect x="1348.8" y="869" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="1351.85" y="879.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="442.6" y="677" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="445.56" y="687.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="859.4" y="693" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="862.37" y="703.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (40,404,040 samples, 0.25%)</title><rect x="386.5" y="645" width="3.5" height="15.0" fill="rgb(0,200,42)" rx="2" ry="2" /> +<text x="389.52" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="475.8" y="693" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="478.84" y="703.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="692.1" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="695.12" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1100.2" y="405" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1103.16" y="415.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="995.1" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="998.09" y="687.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="847.1" y="565" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="850.11" y="575.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_lru (30,303,030 samples, 0.19%)</title><rect x="1078.3" y="581" width="2.6" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" /> +<text x="1081.27" y="591.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="324.4" y="597" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="327.35" y="607.5" ></text> +</g> +<g > +<title>vfs_fstatat (40,404,040 samples, 0.25%)</title><rect x="549.4" y="629" width="3.5" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="552.39" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="31.9" y="837" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="34.89" y="847.5" ></text> +</g> +<g > +<title>mktime (10,101,010 samples, 0.06%)</title><rect x="802.4" y="757" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="805.45" y="767.5" ></text> +</g> +<g > +<title>ext4_rename (171,717,170 samples, 1.08%)</title><rect x="664.1" y="629" width="14.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="667.10" y="639.5" ></text> +</g> +<g > +<title>d_lru_add (10,101,010 samples, 0.06%)</title><rect x="719.3" y="549" width="0.8" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="722.26" y="559.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="228.9" y="517" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="231.91" y="527.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="222.8" y="565" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="225.78" y="575.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.06%)</title><rect x="201.8" y="565" width="0.8" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" /> +<text x="204.76" y="575.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="219.3" y="645" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="222.28" y="655.5" ></text> +</g> +<g > +<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.06%)</title><rect x="960.9" y="437" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="963.94" y="447.5" ></text> +</g> +<g > +<title>ima_file_check (10,101,010 samples, 0.06%)</title><rect x="749.0" y="565" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" /> +<text x="752.04" y="575.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1094.9" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1097.91" y="623.5" ></text> +</g> +<g > +<title>libjson_send (50,505,050 samples, 0.32%)</title><rect x="10.9" y="965" width="4.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="13.88" y="975.5" ></text> +</g> +<g > +<title>brk (20,202,020 samples, 0.13%)</title><rect x="241.2" y="677" width="1.7" height="15.0" fill="rgb(0,237,200)" rx="2" ry="2" /> +<text x="244.17" y="687.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="549" width="6.1" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="1037.49" y="559.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1036.2" y="437" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1039.24" y="447.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="741.2" y="469" width="0.8" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="744.15" y="479.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1193.9" y="501" width="0.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1196.86" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="780.6" y="661" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="783.56" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="158.0" y="885" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="160.98" y="895.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="985.5" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="988.46" y="719.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1122.9" y="485" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1125.93" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (404,040,400 samples, 2.54%)</title><rect x="768.3" y="789" width="35.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="771.30" y="799.5" >[l..</text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.06%)</title><rect x="1048.5" y="661" width="0.9" height="15.0" fill="rgb(0,208,77)" rx="2" ry="2" /> +<text x="1051.50" y="671.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="631.7" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="634.70" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="1201.7" y="725" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1204.74" y="735.5" ></text> +</g> +<g > +<title>__next_zones_zonelist (10,101,010 samples, 0.06%)</title><rect x="1007.3" y="517" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="1010.35" y="527.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="455.7" y="533" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="458.70" y="543.5" ></text> +</g> +<g > +<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="597" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1217.00" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="432.1" y="821" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="435.06" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="769.2" y="677" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="772.18" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="531.9" y="677" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="534.88" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="693" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1195.11" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="211.4" y="661" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="214.40" y="671.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.06%)</title><rect x="896.1" y="581" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="899.14" y="591.5" ></text> +</g> +<g > +<title>vm_area_free_rcu_cb (10,101,010 samples, 0.06%)</title><rect x="918.0" y="437" width="0.9" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="921.03" y="447.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="266.6" y="533" width="0.8" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="269.56" y="543.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="254.3" y="597" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="257.30" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="211.4" y="693" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="214.40" y="703.5" ></text> +</g> +<g > +<title>shrink_dentry_list (10,101,010 samples, 0.06%)</title><rect x="304.2" y="629" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="307.21" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="816.5" y="565" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="819.46" y="575.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="813.0" y="565" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="815.96" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="821" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1361.48" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (252,525,250 samples, 1.59%)</title><rect x="804.2" y="789" width="21.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="807.20" y="799.5" >[..</text> +</g> +<g > +<title>ext4_map_blocks (30,303,030 samples, 0.19%)</title><rect x="669.4" y="485" width="2.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="672.35" y="495.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.06%)</title><rect x="856.7" y="725" width="0.9" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="859.74" y="735.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="771.8" y="501" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="774.80" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (131,313,130 samples, 0.82%)</title><rect x="245.5" y="693" width="11.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="248.55" y="703.5" ></text> +</g> +<g > +<title>tcp_write_xmit (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="693" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1336.08" y="703.5" ></text> +</g> +<g > +<title>__napi_poll (20,202,020 samples, 0.13%)</title><rect x="12.6" y="469" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="15.63" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="896.1" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="899.14" y="735.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="870.7" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="873.75" y="639.5" ></text> +</g> +<g > +<title>tcp_child_process (10,101,010 samples, 0.06%)</title><rect x="1342.7" y="277" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="1345.72" y="287.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1256.0" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1259.03" y="623.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="409.3" y="709" width="0.9" height="15.0" fill="rgb(0,193,15)" rx="2" ry="2" /> +<text x="412.29" y="719.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1197.73" y="703.5" ></text> +</g> +<g > +<title>ext4_rename (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="613" width="5.2" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1102.29" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1323.5" y="853" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1326.45" y="863.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="482.0" y="597" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="484.97" y="607.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="656.2" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="659.22" y="543.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="706.1" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="709.13" y="671.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="377.8" y="613" width="0.8" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="380.77" y="623.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="1047.6" y="645" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1050.63" y="655.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.06%)</title><rect x="944.3" y="485" width="0.9" height="15.0" fill="rgb(0,226,155)" rx="2" ry="2" /> +<text x="947.30" y="495.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1209.6" y="725" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1212.62" y="735.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (40,404,040 samples, 0.25%)</title><rect x="805.1" y="613" width="3.5" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="808.08" y="623.5" ></text> +</g> +<g > +<title>ext4_map_blocks (171,717,170 samples, 1.08%)</title><rect x="1161.5" y="629" width="14.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1164.46" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="732.4" y="677" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="735.40" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="996.0" y="757" width="9.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="998.96" y="767.5" ></text> +</g> +<g > +<title>tcp_rcv_established (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="277" width="2.6" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="1367.61" y="287.5" ></text> +</g> +<g > +<title>__filemap_fdatawrite_range (60,606,060 samples, 0.38%)</title><rect x="791.9" y="565" width="5.3" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="794.94" y="575.5" ></text> +</g> +<g > +<title>sock_alloc_file (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="837" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="1343.96" y="847.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1111.5" y="709" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="1114.55" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1194.7" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1197.73" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="677" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1029.61" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_write (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="645" width="3.5" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="1091.78" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="20.5" y="901" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="23.51" y="911.5" ></text> +</g> +<g > +<title>release_pages (10,101,010 samples, 0.06%)</title><rect x="429.4" y="645" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="432.43" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="191.3" y="517" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="194.26" y="527.5" ></text> +</g> +<g > +<title>shrink_dcache_parent (10,101,010 samples, 0.06%)</title><rect x="210.5" y="597" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="213.52" y="607.5" ></text> +</g> +<g > +<title>capable_wrt_inode_uidgid (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="597" width="0.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" /> +<text x="1258.15" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (50,505,050 samples, 0.32%)</title><rect x="418.9" y="789" width="4.4" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="421.92" y="799.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="884.8" y="629" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="887.76" y="639.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="790.2" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="793.19" y="575.5" ></text> +</g> +<g > +<title>__getblk_slow (10,101,010 samples, 0.06%)</title><rect x="701.8" y="501" width="0.8" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="704.75" y="511.5" ></text> +</g> +<g > +<title>ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="545.9" y="709" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="548.89" y="719.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="366.4" y="693" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="369.38" y="703.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="168.5" y="773" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="171.49" y="783.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="902.3" y="645" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="905.27" y="655.5" ></text> +</g> +<g > +<title>ksys_write (40,404,040 samples, 0.25%)</title><rect x="805.1" y="661" width="3.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="808.08" y="671.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="791.1" y="581" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="794.07" y="591.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.06%)</title><rect x="552.9" y="709" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="555.89" y="719.5" ></text> +</g> +<g > +<title>nf_conntrack_handle_packet (10,101,010 samples, 0.06%)</title><rect x="1362.9" y="549" width="0.8" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" /> +<text x="1365.86" y="559.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="1080.9" y="613" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="1083.90" y="623.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="531.9" y="613" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="534.88" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="974.9" y="725" width="2.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="977.95" y="735.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="702.6" y="389" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="705.63" y="399.5" ></text> +</g> +<g > +<title>mem_cgroup_commit_charge (10,101,010 samples, 0.06%)</title><rect x="1006.5" y="533" width="0.8" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" /> +<text x="1009.47" y="543.5" ></text> +</g> +<g > +<title>insert_inode_locked (10,101,010 samples, 0.06%)</title><rect x="120.3" y="805" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" /> +<text x="123.33" y="815.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="986.3" y="741" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="989.33" y="751.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (30,303,030 samples, 0.19%)</title><rect x="1108.9" y="565" width="2.6" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="1111.92" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="1257.8" y="757" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1260.78" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (40,404,040 samples, 0.25%)</title><rect x="217.5" y="693" width="3.5" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="220.53" y="703.5" ></text> +</g> +<g > +<title>tcp_recvmsg_locked (20,202,020 samples, 0.13%)</title><rect x="1358.5" y="661" width="1.7" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="1361.48" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.32%)</title><rect x="418.9" y="821" width="4.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="421.92" y="831.5" ></text> +</g> +<g > +<title>obj_cgroup_uncharge_pages (10,101,010 samples, 0.06%)</title><rect x="784.9" y="565" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="787.94" y="575.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="824.3" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="827.34" y="607.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="813.8" y="581" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="816.83" y="591.5" ></text> +</g> +<g > +<title>apparmor_path_rename.part.0 (10,101,010 samples, 0.06%)</title><rect x="820.0" y="645" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="822.96" y="655.5" ></text> +</g> +<g > +<title>libjson_set_string_internal (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="869" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="1350.97" y="879.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="726.3" y="709" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="729.27" y="719.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (30,303,030 samples, 0.19%)</title><rect x="787.6" y="613" width="2.6" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="790.56" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="548.5" y="869" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="551.52" y="879.5" ></text> +</g> +<g > +<title>ext4_truncate (10,101,010 samples, 0.06%)</title><rect x="407.5" y="645" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="410.54" y="655.5" ></text> +</g> +<g > +<title>tcp_sendmsg_locked (80,808,080 samples, 0.51%)</title><rect x="1361.1" y="741" width="7.0" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" /> +<text x="1364.10" y="751.5" ></text> +</g> +<g > +<title>__ext4_new_inode (30,303,030 samples, 0.19%)</title><rect x="696.5" y="581" width="2.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="699.50" y="591.5" ></text> +</g> +<g > +<title>do_wp_page (20,202,020 samples, 0.13%)</title><rect x="1313.8" y="773" width="1.8" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="1316.82" y="783.5" ></text> +</g> +<g > +<title>tcp_ack (10,101,010 samples, 0.06%)</title><rect x="1369.0" y="677" width="0.9" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="1371.98" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="834.8" y="741" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="837.85" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="993.3" y="805" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="996.34" y="815.5" ></text> +</g> +<g > +<title>link (10,101,010 samples, 0.06%)</title><rect x="924.2" y="789" width="0.8" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="927.16" y="799.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="883.9" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="886.88" y="687.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="364.6" y="661" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="367.63" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="689.5" y="661" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="692.49" y="671.5" ></text> +</g> +<g > +<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="1083.5" y="549" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="1086.53" y="559.5" ></text> +</g> +<g > +<title>sock_rfree (10,101,010 samples, 0.06%)</title><rect x="1359.4" y="645" width="0.8" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" /> +<text x="1362.35" y="655.5" ></text> +</g> +<g > +<title>ext4_truncate (80,808,080 samples, 0.51%)</title><rect x="356.8" y="613" width="7.0" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="359.75" y="623.5" ></text> +</g> +<g > +<title>ext4_unlink (121,212,120 samples, 0.76%)</title><rect x="226.3" y="613" width="10.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="229.28" y="623.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1113.3" y="645" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="1116.30" y="655.5" ></text> +</g> +<g > +<title>__ext4_find_entry (20,202,020 samples, 0.13%)</title><rect x="148.4" y="821" width="1.7" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="151.35" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="757" width="1.8" height="15.0" fill="rgb(0,231,173)" rx="2" ry="2" /> +<text x="1349.22" y="767.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1183.4" y="661" width="0.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1186.35" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="518.7" y="805" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="521.74" y="815.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="511.7" y="581" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="514.74" y="591.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="550.3" y="517" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="553.27" y="527.5" ></text> +</g> +<g > +<title>vfs_unlink (30,303,030 samples, 0.19%)</title><rect x="174.6" y="565" width="2.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="177.62" y="575.5" ></text> +</g> +<g > +<title>free_pages_and_swap_cache (10,101,010 samples, 0.06%)</title><rect x="429.4" y="661" width="0.9" height="15.0" fill="rgb(0,207,75)" rx="2" ry="2" /> +<text x="432.43" y="671.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="864.6" y="613" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="867.62" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="154.5" y="869" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="157.48" y="879.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.06%)</title><rect x="714.9" y="549" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="717.89" y="559.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.19%)</title><rect x="394.4" y="645" width="2.6" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="397.40" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1011.7" y="757" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1014.73" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="482.8" y="709" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="485.84" y="719.5" ></text> +</g> +<g > +<title>xfrm_lookup_route (10,101,010 samples, 0.06%)</title><rect x="1377.7" y="213" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1380.74" y="223.5" ></text> +</g> +<g > +<title>vfs_link (70,707,070 samples, 0.44%)</title><rect x="601.9" y="677" width="6.2" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="604.93" y="687.5" ></text> +</g> +<g > +<title>__filemap_fdatawrite_range (20,202,020 samples, 0.13%)</title><rect x="822.6" y="597" width="1.7" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="825.59" y="607.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="485.5" y="597" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="488.47" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (565,656,560 samples, 3.55%)</title><rect x="24.0" y="1013" width="49.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="27.01" y="1023.5" >[lib..</text> +</g> +<g > +<title>git_object_lookup_prefix (20,202,020 samples, 0.13%)</title><rect x="546.8" y="869" width="1.7" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="549.76" y="879.5" ></text> +</g> +<g > +<title>nf_nat_inet_fn (20,202,020 samples, 0.13%)</title><rect x="1384.7" y="645" width="1.8" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="1387.75" y="655.5" ></text> +</g> +<g > +<title>dentry_free (20,202,020 samples, 0.13%)</title><rect x="302.5" y="581" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="305.46" y="591.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="549" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="1221.38" y="559.5" ></text> +</g> +<g > +<title>__filemap_get_folio (20,202,020 samples, 0.13%)</title><rect x="1108.9" y="549" width="1.8" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="1111.92" y="559.5" ></text> +</g> +<g > +<title>fsnotify (10,101,010 samples, 0.06%)</title><rect x="544.1" y="709" width="0.9" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="547.14" y="719.5" ></text> +</g> +<g > +<title>do_mkdirat (121,212,120 samples, 0.76%)</title><rect x="695.6" y="629" width="10.5" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="698.62" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (515,151,510 samples, 3.24%)</title><rect x="260.4" y="693" width="44.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="263.43" y="703.5" >x64_..</text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="551.1" y="597" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="554.14" y="607.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="546.8" y="581" width="0.8" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="549.76" y="591.5" ></text> +</g> +<g > +<title>__filename_parentat (20,202,020 samples, 0.13%)</title><rect x="1143.9" y="709" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1146.95" y="719.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="563.4" y="629" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="566.40" y="639.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="263.9" y="613" width="1.8" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="266.93" y="623.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="412.8" y="613" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="415.79" y="623.5" ></text> +</g> +<g > +<title>worker_destroy (10,101,010 samples, 0.06%)</title><rect x="20.5" y="981" width="0.9" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" /> +<text x="23.51" y="991.5" ></text> +</g> +<g > +<title>ext4_add_nondir (10,101,010 samples, 0.06%)</title><rect x="511.7" y="645" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="514.74" y="655.5" ></text> +</g> +<g > +<title>ext4_map_blocks (20,202,020 samples, 0.13%)</title><rect x="932.0" y="517" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="935.04" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="527.5" y="805" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="530.50" y="815.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="235.0" y="485" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="238.04" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (121,212,120 samples, 0.76%)</title><rect x="529.3" y="837" width="10.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="532.25" y="847.5" ></text> +</g> +<g > +<title>do_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="565" width="0.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="1014.73" y="575.5" ></text> +</g> +<g > +<title>mntput (10,101,010 samples, 0.06%)</title><rect x="370.8" y="677" width="0.8" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="373.76" y="687.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1147.4" y="581" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1150.45" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="524.0" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="527.00" y="735.5" ></text> +</g> +<g > +<title>ext4_invalidate_folio (10,101,010 samples, 0.06%)</title><rect x="389.1" y="597" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="392.15" y="607.5" ></text> +</g> +<g > +<title>get_rsvd (10,101,010 samples, 0.06%)</title><rect x="841.0" y="517" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="843.98" y="527.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="206.1" y="469" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="209.14" y="479.5" ></text> +</g> +<g > +<title>git_odb_read_header (30,303,030 samples, 0.19%)</title><rect x="978.5" y="773" width="2.6" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="981.45" y="783.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1228.9" y="741" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="1231.88" y="751.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="714.9" y="469" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="717.89" y="479.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.06%)</title><rect x="1236.8" y="597" width="0.8" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="1239.76" y="607.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="955.7" y="501" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="958.69" y="511.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="356.8" y="581" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="359.75" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="984.6" y="677" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="987.58" y="687.5" ></text> +</g> +<g > +<title>count_rsvd.isra.0 (10,101,010 samples, 0.06%)</title><rect x="323.5" y="549" width="0.9" height="15.0" fill="rgb(0,236,194)" rx="2" ry="2" /> +<text x="326.48" y="559.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="1224.5" y="549" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" /> +<text x="1227.51" y="559.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1041.5" y="645" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1044.50" y="655.5" ></text> +</g> +<g > +<title>mod_timer (10,101,010 samples, 0.06%)</title><rect x="38.0" y="133" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="41.02" y="143.5" ></text> +</g> +<g > +<title>git_object_lookup_prefix (80,808,080 samples, 0.51%)</title><rect x="520.5" y="837" width="7.0" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="523.49" y="847.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="531.9" y="629" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="534.88" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="556.4" y="821" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="559.40" y="831.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1192.1" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1195.11" y="639.5" ></text> +</g> +<g > +<title>d_lookup (10,101,010 samples, 0.06%)</title><rect x="104.6" y="837" width="0.8" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="107.57" y="847.5" ></text> +</g> +<g > +<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.06%)</title><rect x="702.6" y="421" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" /> +<text x="705.63" y="431.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.38%)</title><rect x="306.0" y="725" width="5.2" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="308.96" y="735.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="1158.0" y="597" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="1160.96" y="607.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="948.7" y="581" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="951.68" y="591.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.06%)</title><rect x="731.5" y="517" width="0.9" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="734.52" y="527.5" ></text> +</g> +<g > +<title>__dentry_kill (101,010,100 samples, 0.63%)</title><rect x="811.2" y="661" width="8.8" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="814.21" y="671.5" ></text> +</g> +<g > +<title>do_sys_openat2 (101,010,100 samples, 0.63%)</title><rect x="996.0" y="693" width="8.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="998.96" y="703.5" ></text> +</g> +<g > +<title>wait_transaction_locked (10,101,010 samples, 0.06%)</title><rect x="278.8" y="517" width="0.9" height="15.0" fill="rgb(0,217,113)" rx="2" ry="2" /> +<text x="281.82" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (202,020,200 samples, 1.27%)</title><rect x="1221.0" y="789" width="17.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1224.00" y="799.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.70%)</title><rect x="598.4" y="757" width="9.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="601.43" y="767.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="629" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1235.39" y="639.5" ></text> +</g> +<g > +<title>ext4_ext_insert_extent (10,101,010 samples, 0.06%)</title><rect x="958.3" y="469" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="961.31" y="479.5" ></text> +</g> +<g > +<title>vfs_open (20,202,020 samples, 0.13%)</title><rect x="100.2" y="853" width="1.7" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="103.19" y="863.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (30,303,030 samples, 0.19%)</title><rect x="707.9" y="581" width="2.6" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="710.88" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (232,323,230 samples, 1.46%)</title><rect x="1242.9" y="853" width="20.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1245.89" y="863.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1029.2" y="517" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1032.24" y="527.5" ></text> +</g> +<g > +<title>link (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="741" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="1098.79" y="751.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1045.0" y="565" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1048.00" y="575.5" ></text> +</g> +<g > +<title>should_failslab.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="335.7" y="661" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="338.74" y="671.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="948.7" y="485" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="951.68" y="495.5" ></text> +</g> +<g > +<title>apparmor_file_alloc_security (10,101,010 samples, 0.06%)</title><rect x="1341.0" y="741" width="0.8" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="1343.96" y="751.5" ></text> +</g> +<g > +<title>path_openat (111,111,110 samples, 0.70%)</title><rect x="1049.4" y="693" width="9.6" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="1052.38" y="703.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="984.6" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="987.58" y="575.5" ></text> +</g> +<g > +<title>iterate_dir (20,202,020 samples, 0.13%)</title><rect x="505.6" y="693" width="1.8" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="508.61" y="703.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="980.2" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="983.20" y="607.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="597" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1045.37" y="607.5" ></text> +</g> +<g > +<title>net_rx_action (40,404,040 samples, 0.25%)</title><rect x="36.3" y="389" width="3.5" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="39.27" y="399.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="651.8" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="654.84" y="639.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="821.7" y="597" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="824.71" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="539.8" y="853" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="542.76" y="863.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.13%)</title><rect x="645.7" y="725" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="648.71" y="735.5" ></text> +</g> +<g > +<title>__filename_parentat (20,202,020 samples, 0.13%)</title><rect x="460.1" y="709" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="463.08" y="719.5" ></text> +</g> +<g > +<title>__find_get_block_slow (10,101,010 samples, 0.06%)</title><rect x="1160.6" y="597" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="1163.58" y="607.5" ></text> +</g> +<g > +<title>blk_mq_sched_try_merge (10,101,010 samples, 0.06%)</title><rect x="466.2" y="405" width="0.9" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" /> +<text x="469.21" y="415.5" ></text> +</g> +<g > +<title>stat64 (10,101,010 samples, 0.06%)</title><rect x="871.6" y="709" width="0.9" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="874.62" y="719.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="597" width="0.9" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="1026.11" y="607.5" ></text> +</g> +<g > +<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="306.8" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="309.84" y="655.5" ></text> +</g> +<g > +<title>net_close (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="949" width="8.8" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" /> +<text x="1371.11" y="959.5" ></text> +</g> +<g > +<title>__d_instantiate (10,101,010 samples, 0.06%)</title><rect x="126.5" y="789" width="0.8" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="129.46" y="799.5" ></text> +</g> +<g > +<title>ext4_file_open (10,101,010 samples, 0.06%)</title><rect x="101.1" y="821" width="0.8" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="104.07" y="831.5" ></text> +</g> +<g > +<title>x64_sys_call (151,515,150 samples, 0.95%)</title><rect x="950.4" y="645" width="13.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="953.43" y="655.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1095.8" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1098.79" y="655.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.06%)</title><rect x="1088.8" y="517" width="0.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1091.78" y="527.5" ></text> +</g> +<g > +<title>vfs_fstatat (20,202,020 samples, 0.13%)</title><rect x="502.1" y="581" width="1.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="505.11" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (60,606,060 samples, 0.38%)</title><rect x="306.0" y="693" width="5.2" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="308.96" y="703.5" ></text> +</g> +<g > +<title>__block_commit_write (10,101,010 samples, 0.06%)</title><rect x="646.6" y="533" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="649.59" y="543.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1193.0" y="581" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="1195.98" y="591.5" ></text> +</g> +<g > +<title>alloc_empty_file (20,202,020 samples, 0.13%)</title><rect x="918.0" y="581" width="1.8" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="921.03" y="591.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="791.1" y="549" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="794.07" y="559.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (171,717,170 samples, 1.08%)</title><rect x="625.6" y="725" width="14.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="628.57" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="834.8" y="725" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="837.85" y="735.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="492.5" y="597" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="495.47" y="607.5" ></text> +</g> +<g > +<title>__memset (20,202,020 samples, 0.13%)</title><rect x="231.5" y="565" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="234.54" y="575.5" ></text> +</g> +<g > +<title>__brelse (10,101,010 samples, 0.06%)</title><rect x="1145.7" y="693" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" /> +<text x="1148.70" y="703.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="580.9" y="533" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="583.91" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="769.2" y="709" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="772.18" y="719.5" ></text> +</g> +<g > +<title>evict (70,707,070 samples, 0.44%)</title><rect x="839.2" y="613" width="6.2" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="842.23" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="990.7" y="789" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="993.71" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="453.9" y="757" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="456.95" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="911.0" y="805" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="914.03" y="815.5" ></text> +</g> +<g > +<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="745.5" y="501" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="748.53" y="511.5" ></text> +</g> +<g > +<title>__netif_receive_skb (20,202,020 samples, 0.13%)</title><rect x="12.6" y="437" width="1.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="15.63" y="447.5" ></text> +</g> +<g > +<title>ext4_bread (111,111,110 samples, 0.70%)</title><rect x="582.7" y="597" width="9.6" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="585.66" y="607.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="697.4" y="565" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="700.37" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="730.6" y="741" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="733.65" y="751.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="85.3" y="741" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="88.30" y="751.5" ></text> +</g> +<g > +<title>release_sock (70,707,070 samples, 0.44%)</title><rect x="1376.9" y="773" width="6.1" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1379.87" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (60,606,060 samples, 0.38%)</title><rect x="1214.9" y="693" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1217.87" y="703.5" ></text> +</g> +<g > +<title>sock_put (10,101,010 samples, 0.06%)</title><rect x="1371.6" y="293" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="1374.61" y="303.5" ></text> +</g> +<g > +<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="272.7" y="533" width="1.7" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="275.69" y="543.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="725" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1188.98" y="735.5" ></text> +</g> +<g > +<title>tcp_sendmsg (80,808,080 samples, 0.51%)</title><rect x="1361.1" y="757" width="7.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1364.10" y="767.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="835.7" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="838.72" y="703.5" ></text> +</g> +<g > +<title>git_config_add_backend (50,505,050 samples, 0.32%)</title><rect x="862.0" y="821" width="4.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="864.99" y="831.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="320.0" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="322.97" y="671.5" ></text> +</g> +<g > +<title>nft_update_chain_stats (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="629" width="0.8" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="1347.47" y="639.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="882.1" y="629" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="885.13" y="639.5" ></text> +</g> +<g > +<title>fstatat64 (60,606,060 samples, 0.38%)</title><rect x="366.4" y="821" width="5.2" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="369.38" y="831.5" ></text> +</g> +<g > +<title>anon_vma_fork (50,505,050 samples, 0.32%)</title><rect x="1277.9" y="709" width="4.4" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" /> +<text x="1280.92" y="719.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.06%)</title><rect x="1080.9" y="629" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1083.90" y="639.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="1336.6" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1339.59" y="687.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="198.3" y="549" width="0.8" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="201.26" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="760.4" y="629" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="763.42" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.32%)</title><rect x="940.8" y="661" width="4.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="943.80" y="671.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="974.9" y="597" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="977.95" y="607.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="592.3" y="517" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="595.30" y="527.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="732.4" y="597" width="1.7" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="735.40" y="607.5" ></text> +</g> +<g > +<title>ext4_evict_inode (50,505,050 samples, 0.32%)</title><rect x="184.3" y="565" width="4.3" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="187.25" y="575.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="10.9" y="853" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="13.88" y="863.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="249.9" y="485" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="252.92" y="495.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="775.3" y="645" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="778.30" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1246.4" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1249.40" y="799.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (10,101,010 samples, 0.06%)</title><rect x="80.1" y="837" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="83.05" y="847.5" ></text> +</g> +<g > +<title>file_close_fd (10,101,010 samples, 0.06%)</title><rect x="20.5" y="869" width="0.9" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" /> +<text x="23.51" y="879.5" ></text> +</g> +<g > +<title>ext4_append (90,909,090 samples, 0.57%)</title><rect x="955.7" y="549" width="7.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="958.69" y="559.5" ></text> +</g> +<g > +<title>rcu_report_qs_rdp (10,101,010 samples, 0.06%)</title><rect x="235.0" y="437" width="0.9" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="238.04" y="447.5" ></text> +</g> +<g > +<title>ext4_add_nondir (171,717,170 samples, 1.08%)</title><rect x="125.6" y="821" width="14.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="128.58" y="831.5" ></text> +</g> +<g > +<title>ip_local_out (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="613" width="4.4" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1380.74" y="623.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="863.7" y="677" width="2.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="866.74" y="687.5" ></text> +</g> +<g > +<title>do_writepages (60,606,060 samples, 0.38%)</title><rect x="1099.3" y="533" width="5.2" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1102.29" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="482.0" y="709" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="484.97" y="719.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.06%)</title><rect x="970.6" y="517" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="973.57" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="860.2" y="821" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="863.24" y="831.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1193.0" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1195.98" y="607.5" ></text> +</g> +<g > +<title>open64 (20,202,020 samples, 0.13%)</title><rect x="1083.5" y="709" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="1086.53" y="719.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="790.2" y="597" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="793.19" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="903.1" y="645" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="906.15" y="655.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (30,303,030 samples, 0.19%)</title><rect x="425.1" y="645" width="2.6" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="428.05" y="655.5" ></text> +</g> +<g > +<title>touch_atime (40,404,040 samples, 0.25%)</title><rect x="253.4" y="661" width="3.5" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="256.43" y="671.5" ></text> +</g> +<g > +<title>iput (50,505,050 samples, 0.32%)</title><rect x="184.3" y="597" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="187.25" y="607.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1270.9" y="693" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1273.91" y="703.5" ></text> +</g> +<g > +<title>open64 (40,404,040 samples, 0.25%)</title><rect x="918.0" y="709" width="3.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="921.03" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1181.6" y="789" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1184.60" y="799.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (70,707,070 samples, 0.44%)</title><rect x="357.6" y="597" width="6.2" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="360.63" y="607.5" ></text> +</g> +<g > +<title>ext4_inode_csum (20,202,020 samples, 0.13%)</title><rect x="112.4" y="709" width="1.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="115.45" y="719.5" ></text> +</g> +<g > +<title>security_d_instantiate (10,101,010 samples, 0.06%)</title><rect x="127.3" y="789" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="130.34" y="799.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="547.6" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="550.64" y="799.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="487.2" y="757" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="490.22" y="767.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="809.5" y="661" width="0.8" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="812.45" y="671.5" ></text> +</g> +<g > +<title>jsonrpc_request_from_json (10,101,010 samples, 0.06%)</title><rect x="1351.5" y="885" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1354.47" y="895.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="159.7" y="821" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="162.73" y="831.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.13%)</title><rect x="1346.2" y="821" width="1.8" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1349.22" y="831.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="661" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1261.65" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (90,909,090 samples, 0.57%)</title><rect x="866.4" y="821" width="7.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="869.37" y="831.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.06%)</title><rect x="343.6" y="629" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="346.62" y="639.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="757.8" y="581" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="760.79" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (40,404,040 samples, 0.25%)</title><rect x="937.3" y="613" width="3.5" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="940.30" y="623.5" ></text> +</g> +<g > +<title>ext4_add_entry (30,303,030 samples, 0.19%)</title><rect x="1001.2" y="581" width="2.6" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="1004.22" y="591.5" ></text> +</g> +<g > +<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="209.6" y="437" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="212.64" y="447.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (10,101,010 samples, 0.06%)</title><rect x="1237.6" y="645" width="0.9" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="1240.64" y="655.5" ></text> +</g> +<g > +<title>nft_do_chain (10,101,010 samples, 0.06%)</title><rect x="35.4" y="501" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="38.39" y="511.5" ></text> +</g> +<g > +<title>ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="12.6" y="693" width="1.8" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="15.63" y="703.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (30,303,030 samples, 0.19%)</title><rect x="1341.8" y="725" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1344.84" y="735.5" ></text> +</g> +<g > +<title>link (10,101,010 samples, 0.06%)</title><rect x="652.7" y="757" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="655.72" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.63%)</title><rect x="1264.8" y="853" width="8.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1267.78" y="863.5" ></text> +</g> +<g > +<title>alloc_file_pseudo (10,101,010 samples, 0.06%)</title><rect x="1322.6" y="773" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1325.58" y="783.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (20,202,020 samples, 0.13%)</title><rect x="793.7" y="453" width="1.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="796.69" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1321.7" y="853" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1324.70" y="863.5" ></text> +</g> +<g > +<title>insert_inode_locked (10,101,010 samples, 0.06%)</title><rect x="1150.1" y="677" width="0.9" height="15.0" fill="rgb(0,202,54)" rx="2" ry="2" /> +<text x="1153.08" y="687.5" ></text> +</g> +<g > +<title>get_current_fs_domain (10,101,010 samples, 0.06%)</title><rect x="919.8" y="501" width="0.9" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" /> +<text x="922.78" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="963.6" y="677" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="966.57" y="687.5" ></text> +</g> +<g > +<title>handle_softirqs (40,404,040 samples, 0.25%)</title><rect x="1363.7" y="469" width="3.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1366.73" y="479.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="876.0" y="677" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="879.00" y="687.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="757.8" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="760.79" y="607.5" ></text> +</g> +<g > +<title>__dentry_kill (40,404,040 samples, 0.25%)</title><rect x="925.0" y="677" width="3.5" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="928.04" y="687.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="357" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1348.34" y="367.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="681.6" y="789" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="684.61" y="799.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="896.1" y="597" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="899.14" y="607.5" ></text> +</g> +<g > +<title>__es_remove_extent (20,202,020 samples, 0.13%)</title><rect x="358.5" y="565" width="1.8" height="15.0" fill="rgb(0,234,186)" rx="2" ry="2" /> +<text x="361.50" y="575.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="1038.0" y="325" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1040.99" y="335.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="613" width="0.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1253.77" y="623.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="405" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="1366.73" y="415.5" ></text> +</g> +<g > +<title>tcp_v4_connect (20,202,020 samples, 0.13%)</title><rect x="1344.5" y="789" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1347.47" y="799.5" ></text> +</g> +<g > +<title>ext4_getblk (111,111,110 samples, 0.70%)</title><rect x="582.7" y="581" width="9.6" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="585.66" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1258.7" y="677" width="0.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1261.65" y="687.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="482.8" y="741" width="1.8" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="485.84" y="751.5" ></text> +</g> +<g > +<title>getname (10,101,010 samples, 0.06%)</title><rect x="904.9" y="549" width="0.9" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="907.90" y="559.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="219.3" y="629" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="222.28" y="639.5" ></text> +</g> +<g > +<title>do_faccessat (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="725" width="1.7" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="1019.98" y="735.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (10,101,010 samples, 0.06%)</title><rect x="817.3" y="549" width="0.9" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="820.34" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (505,050,500 samples, 3.17%)</title><rect x="686.0" y="805" width="43.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="688.99" y="815.5" >[lib..</text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="855.9" y="821" width="4.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="858.86" y="831.5" ></text> +</g> +<g > +<title>copy_process (141,414,140 samples, 0.89%)</title><rect x="50.3" y="725" width="12.2" height="15.0" fill="rgb(0,218,119)" rx="2" ry="2" /> +<text x="53.28" y="735.5" ></text> +</g> +<g > +<title>ext4_es_remove_extent (10,101,010 samples, 0.06%)</title><rect x="1030.1" y="517" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" /> +<text x="1033.11" y="527.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="966.2" y="709" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="969.19" y="719.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="651.8" y="645" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="654.84" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_socket (20,202,020 samples, 0.13%)</title><rect x="1340.1" y="869" width="1.7" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1343.09" y="879.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="1219.3" y="565" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="1222.25" y="575.5" ></text> +</g> +<g > +<title>__ip_local_out (20,202,020 samples, 0.13%)</title><rect x="1362.0" y="613" width="1.7" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="1364.98" y="623.5" ></text> +</g> +<g > +<title>user_path_at_empty (30,303,030 samples, 0.19%)</title><rect x="154.5" y="837" width="2.6" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="157.48" y="847.5" ></text> +</g> +<g > +<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="563.4" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="566.40" y="655.5" ></text> +</g> +<g > +<title>__lookup_slow (20,202,020 samples, 0.13%)</title><rect x="487.2" y="597" width="1.8" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="490.22" y="607.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.06%)</title><rect x="1207.9" y="613" width="0.8" height="15.0" fill="rgb(0,213,98)" rx="2" ry="2" /> +<text x="1210.87" y="623.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.3.0] (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="853" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1350.97" y="863.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (20,202,020 samples, 0.13%)</title><rect x="12.6" y="709" width="1.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="15.63" y="719.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="20.5" y="885" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="23.51" y="895.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1106.3" y="693" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1109.29" y="703.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1214.0" y="661" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1217.00" y="671.5" ></text> +</g> +<g > +<title>filename_create (10,101,010 samples, 0.06%)</title><rect x="950.4" y="597" width="0.9" height="15.0" fill="rgb(0,196,29)" rx="2" ry="2" /> +<text x="953.43" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="608.9" y="773" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="611.93" y="783.5" ></text> +</g> +<g > +<title>atime_needs_update (10,101,010 samples, 0.06%)</title><rect x="439.9" y="517" width="0.9" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" /> +<text x="442.94" y="527.5" ></text> +</g> +<g > +<title>__schedule (20,202,020 samples, 0.13%)</title><rect x="1319.9" y="725" width="1.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="1322.95" y="735.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1001.2" y="533" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="1004.22" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="1183.4" y="741" width="1.7" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="1186.35" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (111,111,110 samples, 0.70%)</title><rect x="530.1" y="773" width="9.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="533.13" y="783.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="932.0" y="405" width="0.9" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="935.04" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1108.42" y="719.5" ></text> +</g> +<g > +<title>path_init (10,101,010 samples, 0.06%)</title><rect x="154.5" y="805" width="0.9" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="157.48" y="815.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="365.5" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="368.51" y="735.5" ></text> +</g> +<g > +<title>apparmor_inode_unlink (10,101,010 samples, 0.06%)</title><rect x="390.9" y="677" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="393.90" y="687.5" ></text> +</g> +<g > +<title>__libc_calloc (20,202,020 samples, 0.13%)</title><rect x="18.8" y="885" width="1.7" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="21.76" y="895.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1192.1" y="773" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1195.11" y="783.5" ></text> +</g> +<g > +<title>begin_current_label_crit_section (10,101,010 samples, 0.06%)</title><rect x="820.0" y="629" width="0.8" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="822.96" y="639.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (20,202,020 samples, 0.13%)</title><rect x="558.1" y="821" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="561.15" y="831.5" ></text> +</g> +<g > +<title>inet_create (10,101,010 samples, 0.06%)</title><rect x="1340.1" y="821" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="1343.09" y="831.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="92.3" y="981" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="95.31" y="991.5" ></text> +</g> +<g > +<title>dput (40,404,040 samples, 0.25%)</title><rect x="925.0" y="693" width="3.5" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="928.04" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="533.6" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="536.63" y="687.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="1232.4" y="645" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1235.39" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_symlink (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="741" width="2.6" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="1063.76" y="751.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.06%)</title><rect x="1082.7" y="645" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1085.65" y="655.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="916.3" y="629" width="1.7" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="919.28" y="639.5" ></text> +</g> +<g > +<title>ext4_read_inode_bitmap (10,101,010 samples, 0.06%)</title><rect x="223.7" y="581" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="226.65" y="591.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="749.9" y="421" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="752.91" y="431.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.06%)</title><rect x="219.3" y="565" width="0.9" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" /> +<text x="222.28" y="575.5" ></text> +</g> +<g > +<title>security_path_rename (10,101,010 samples, 0.06%)</title><rect x="820.0" y="677" width="0.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="822.96" y="687.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.06%)</title><rect x="904.0" y="629" width="0.9" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="907.02" y="639.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="422.4" y="677" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="425.42" y="687.5" ></text> +</g> +<g > +<title>pthread_rwlock_wrlock (10,101,010 samples, 0.06%)</title><rect x="693.9" y="693" width="0.8" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="696.87" y="703.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="603.7" y="629" width="1.7" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="606.68" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="982.8" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="985.83" y="671.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="821" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1248.52" y="831.5" ></text> +</g> +<g > +<title>do_linkat (20,202,020 samples, 0.13%)</title><rect x="721.0" y="677" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="724.02" y="687.5" ></text> +</g> +<g > +<title>inet_hash_connect (10,101,010 samples, 0.06%)</title><rect x="1383.9" y="773" width="0.8" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="1386.87" y="783.5" ></text> +</g> +<g > +<title>tcp_close (90,909,090 samples, 0.57%)</title><rect x="1369.0" y="757" width="7.9" height="15.0" fill="rgb(0,222,138)" rx="2" ry="2" /> +<text x="1371.98" y="767.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="569.5" y="581" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="572.53" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="1027.5" y="725" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1030.49" y="735.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="405.8" y="565" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="408.79" y="575.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum (10,101,010 samples, 0.06%)</title><rect x="839.2" y="549" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="842.23" y="559.5" ></text> +</g> +<g > +<title>link (10,101,010 samples, 0.06%)</title><rect x="735.9" y="757" width="0.9" height="15.0" fill="rgb(0,220,129)" rx="2" ry="2" /> +<text x="738.90" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="867.2" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="870.25" y="671.5" ></text> +</g> +<g > +<title>__get_free_pages (10,101,010 samples, 0.06%)</title><rect x="791.1" y="501" width="0.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="794.07" y="511.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.06%)</title><rect x="1217.5" y="549" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1220.50" y="559.5" ></text> +</g> +<g > +<title>open_last_lookups (50,505,050 samples, 0.32%)</title><rect x="770.9" y="565" width="4.4" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="773.93" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1206.1" y="661" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1209.12" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="193.0" y="693" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="196.01" y="703.5" ></text> +</g> +<g > +<title>do_sys_openat2 (40,404,040 samples, 0.25%)</title><rect x="918.0" y="629" width="3.5" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="921.03" y="639.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="570.4" y="533" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="573.41" y="543.5" ></text> +</g> +<g > +<title>kernel_fpu_begin_mask (10,101,010 samples, 0.06%)</title><rect x="118.6" y="757" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="121.58" y="767.5" ></text> +</g> +<g > +<title>nft_do_chain (10,101,010 samples, 0.06%)</title><rect x="1344.5" y="645" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="1347.47" y="655.5" ></text> +</g> +<g > +<title>ima_file_check (10,101,010 samples, 0.06%)</title><rect x="554.6" y="581" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" /> +<text x="557.64" y="591.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1115.9" y="677" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1118.93" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="867.2" y="629" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="870.25" y="639.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.06%)</title><rect x="926.8" y="453" width="0.9" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="929.79" y="463.5" ></text> +</g> +<g > +<title>tcp_send_ack (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="245" width="2.6" height="15.0" fill="rgb(0,199,40)" rx="2" ry="2" /> +<text x="1367.61" y="255.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="783.2" y="661" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="786.19" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="710.5" y="661" width="2.6" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="713.51" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="181.6" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="184.62" y="719.5" ></text> +</g> +<g > +<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="775.3" y="549" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="778.30" y="559.5" ></text> +</g> +<g > +<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="502.1" y="565" width="1.8" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="505.11" y="575.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="352.4" y="613" width="0.8" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="355.37" y="623.5" ></text> +</g> +<g > +<title>filp_flush (10,101,010 samples, 0.06%)</title><rect x="418.0" y="789" width="0.9" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" /> +<text x="421.05" y="799.5" ></text> +</g> +<g > +<title>d_flags_for_inode (10,101,010 samples, 0.06%)</title><rect x="126.5" y="773" width="0.8" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="129.46" y="783.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1223.6" y="661" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1226.63" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="1087.9" y="725" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1090.91" y="735.5" ></text> +</g> +<g > +<title>storvsc_do_io (10,101,010 samples, 0.06%)</title><rect x="1134.3" y="293" width="0.9" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="1137.31" y="303.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="651.0" y="581" width="0.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="653.96" y="591.5" ></text> +</g> +<g > +<title>__jbd2_journal_file_buffer (10,101,010 samples, 0.06%)</title><rect x="511.7" y="549" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="514.74" y="559.5" ></text> +</g> +<g > +<title>anon_vma_interval_tree_insert (10,101,010 samples, 0.06%)</title><rect x="1279.7" y="677" width="0.8" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1282.67" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (40,404,040 samples, 0.25%)</title><rect x="723.6" y="773" width="3.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="726.64" y="783.5" ></text> +</g> +<g > +<title>perf_event_mmap_output (10,101,010 samples, 0.06%)</title><rect x="241.2" y="501" width="0.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="244.17" y="511.5" ></text> +</g> +<g > +<title>submit_bio_noacct_nocheck (10,101,010 samples, 0.06%)</title><rect x="1099.3" y="437" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1102.29" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="985.5" y="805" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="988.46" y="815.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="533" width="2.6" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="1336.08" y="543.5" ></text> +</g> +<g > +<title>ext4_fname_setup_ci_filename (10,101,010 samples, 0.06%)</title><rect x="1265.7" y="725" width="0.8" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" /> +<text x="1268.66" y="735.5" ></text> +</g> +<g > +<title>do_mkdirat (434,343,430 samples, 2.73%)</title><rect x="1143.9" y="741" width="37.7" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="1146.95" y="751.5" >do_..</text> +</g> +<g > +<title>__lookup_slow (40,404,040 samples, 0.25%)</title><rect x="633.5" y="629" width="3.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="636.45" y="639.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="368.1" y="661" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="371.13" y="671.5" ></text> +</g> +<g > +<title>ext4_create (20,202,020 samples, 0.13%)</title><rect x="963.6" y="533" width="1.7" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="966.57" y="543.5" ></text> +</g> +<g > +<title>process_execute_and_capture (595,959,590 samples, 3.74%)</title><rect x="1273.5" y="901" width="51.7" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="1276.54" y="911.5" >proce..</text> +</g> +<g > +<title>iput (20,202,020 samples, 0.13%)</title><rect x="1096.7" y="597" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1099.66" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="495.1" y="773" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="498.10" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="759.5" y="677" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="762.54" y="687.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.06%)</title><rect x="474.1" y="661" width="0.9" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="477.09" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (202,020,200 samples, 1.27%)</title><rect x="1087.0" y="773" width="17.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1090.03" y="783.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="395.3" y="565" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="398.28" y="575.5" ></text> +</g> +<g > +<title>clear_page_erms (10,101,010 samples, 0.06%)</title><rect x="791.1" y="421" width="0.8" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="794.07" y="431.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="1055.5" y="613" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1058.51" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="562.5" y="757" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="565.53" y="767.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1023.1" y="661" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1026.11" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="879.5" y="661" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="882.51" y="671.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="507.4" y="597" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="510.36" y="607.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="183.4" y="629" width="0.9" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="186.38" y="639.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (10,101,010 samples, 0.06%)</title><rect x="1387.4" y="357" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1390.37" y="367.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.06%)</title><rect x="107.2" y="821" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="110.20" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (60,606,060 samples, 0.38%)</title><rect x="315.6" y="725" width="5.3" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="318.60" y="735.5" ></text> +</g> +<g > +<title>malloc (20,202,020 samples, 0.13%)</title><rect x="644.0" y="725" width="1.7" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="646.96" y="735.5" ></text> +</g> +<g > +<title>__vfs_getxattr (10,101,010 samples, 0.06%)</title><rect x="779.7" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="782.68" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (90,909,090 samples, 0.57%)</title><rect x="184.3" y="661" width="7.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="187.25" y="671.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="444.3" y="597" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="447.31" y="607.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="98.4" y="853" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="101.44" y="863.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.06%)</title><rect x="338.4" y="517" width="0.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="341.36" y="527.5" ></text> +</g> +<g > +<title>opendir (10,101,010 samples, 0.06%)</title><rect x="858.5" y="757" width="0.9" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" /> +<text x="861.49" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="886.5" y="661" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="889.51" y="671.5" ></text> +</g> +<g > +<title>folio_alloc (10,101,010 samples, 0.06%)</title><rect x="805.1" y="533" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="808.08" y="543.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="517" width="5.2" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1372.86" y="527.5" ></text> +</g> +<g > +<title>do_readlinkat (40,404,040 samples, 0.25%)</title><rect x="491.6" y="677" width="3.5" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="494.60" y="687.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.06%)</title><rect x="883.9" y="613" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="886.88" y="623.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.13%)</title><rect x="846.2" y="629" width="1.8" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="849.23" y="639.5" ></text> +</g> +<g > +<title>__d_instantiate (10,101,010 samples, 0.06%)</title><rect x="605.4" y="613" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="608.43" y="623.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="721.9" y="613" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="724.89" y="623.5" ></text> +</g> +<g > +<title>rmdir (50,505,050 samples, 0.32%)</title><rect x="404.0" y="805" width="4.4" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="407.04" y="815.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="514.4" y="805" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="517.37" y="815.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.19%)</title><rect x="266.6" y="581" width="2.6" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="269.56" y="591.5" ></text> +</g> +<g > +<title>__legitimize_mnt (10,101,010 samples, 0.06%)</title><rect x="368.1" y="629" width="0.9" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" /> +<text x="371.13" y="639.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="734.1" y="597" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="737.15" y="607.5" ></text> +</g> +<g > +<title>do_sys_openat2 (50,505,050 samples, 0.32%)</title><rect x="742.0" y="597" width="4.4" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="745.03" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="237.7" y="725" width="1.7" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="240.66" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="689.5" y="629" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="692.49" y="639.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="927.7" y="597" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="930.66" y="607.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.06%)</title><rect x="541.5" y="645" width="0.9" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="544.51" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="535.4" y="709" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="538.38" y="719.5" ></text> +</g> +<g > +<title>do_open (50,505,050 samples, 0.32%)</title><rect x="97.6" y="869" width="4.3" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="100.56" y="879.5" ></text> +</g> +<g > +<title>handle_pte_fault (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="773" width="0.8" height="15.0" fill="rgb(0,202,52)" rx="2" ry="2" /> +<text x="1322.07" y="783.5" ></text> +</g> +<g > +<title>fsnotify_find_mark (10,101,010 samples, 0.06%)</title><rect x="418.0" y="757" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" /> +<text x="421.05" y="767.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="611.6" y="725" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="614.56" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="866.4" y="725" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="869.37" y="735.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="772.7" y="469" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="775.68" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1263.0" y="821" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1266.03" y="831.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="678.1" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="681.11" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="524.9" y="725" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="527.87" y="735.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="638.7" y="645" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="641.71" y="655.5" ></text> +</g> +<g > +<title>__dquot_initialize (10,101,010 samples, 0.06%)</title><rect x="1052.9" y="597" width="0.9" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" /> +<text x="1055.88" y="607.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (20,202,020 samples, 0.13%)</title><rect x="617.7" y="613" width="1.7" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="620.69" y="623.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.06%)</title><rect x="517.0" y="629" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="519.99" y="639.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (30,303,030 samples, 0.19%)</title><rect x="1083.5" y="805" width="2.7" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="1086.53" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="682.5" y="821" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="685.49" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="546.8" y="837" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="549.76" y="847.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="672.0" y="437" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="674.98" y="447.5" ></text> +</g> +<g > +<title>ext4_alloc_inode (10,101,010 samples, 0.06%)</title><rect x="773.6" y="469" width="0.8" height="15.0" fill="rgb(0,225,148)" rx="2" ry="2" /> +<text x="776.55" y="479.5" ></text> +</g> +<g > +<title>__ext4_new_inode (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="677" width="0.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1045.37" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="1026.6" y="709" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1029.61" y="719.5" ></text> +</g> +<g > +<title>inode_init_always (10,101,010 samples, 0.06%)</title><rect x="1152.7" y="645" width="0.9" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" /> +<text x="1155.70" y="655.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.06%)</title><rect x="1043.2" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1046.25" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (70,707,070 samples, 0.44%)</title><rect x="866.4" y="757" width="6.1" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="869.37" y="767.5" ></text> +</g> +<g > +<title>nf_nat_ipv4_fn (10,101,010 samples, 0.06%)</title><rect x="1374.2" y="325" width="0.9" height="15.0" fill="rgb(0,231,176)" rx="2" ry="2" /> +<text x="1377.24" y="335.5" ></text> +</g> +<g > +<title>bdev_getblk (10,101,010 samples, 0.06%)</title><rect x="587.0" y="453" width="0.9" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="590.04" y="463.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="975.8" y="533" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="978.82" y="543.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.06%)</title><rect x="546.8" y="597" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="549.76" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="888.3" y="709" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="891.26" y="719.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.06%)</title><rect x="35.4" y="373" width="0.9" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" /> +<text x="38.39" y="383.5" ></text> +</g> +<g > +<title>ext4_free_blocks (50,505,050 samples, 0.32%)</title><rect x="294.6" y="501" width="4.4" height="15.0" fill="rgb(0,236,195)" rx="2" ry="2" /> +<text x="297.58" y="511.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="897.9" y="613" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="900.89" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="972.3" y="597" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="975.32" y="607.5" ></text> +</g> +<g > +<title>git_config_set_string (10,101,010 samples, 0.06%)</title><rect x="153.6" y="997" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="156.60" y="1007.5" ></text> +</g> +<g > +<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="1014.4" y="661" width="0.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="1017.35" y="671.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="882.1" y="597" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="885.13" y="607.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="740.3" y="549" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="743.28" y="559.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.06%)</title><rect x="197.4" y="597" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="200.39" y="607.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="496.0" y="645" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="498.98" y="655.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.19%)</title><rect x="969.7" y="565" width="2.6" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="972.70" y="575.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="1363.7" y="389" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="1366.73" y="399.5" ></text> +</g> +<g > +<title>alloc_inode (30,303,030 samples, 0.19%)</title><rect x="121.2" y="789" width="2.6" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="124.21" y="799.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="1011.7" y="741" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1014.73" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_sendto (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="805" width="7.9" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="1363.23" y="815.5" ></text> +</g> +<g > +<title>__sys_sendto (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="789" width="6.1" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="1335.21" y="799.5" ></text> +</g> +<g > +<title>do_syscall_64 (111,111,110 samples, 0.70%)</title><rect x="1073.9" y="789" width="9.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1076.90" y="799.5" ></text> +</g> +<g > +<title>ci_cleanup_git_repo (3,222,222,190 samples, 20.24%)</title><rect x="158.9" y="933" width="279.3" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="161.86" y="943.5" >ci_cleanup_git_repo</text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="685.1" y="645" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="688.11" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="934.7" y="693" width="12.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="937.67" y="703.5" ></text> +</g> +<g > +<title>folio_alloc (10,101,010 samples, 0.06%)</title><rect x="707.9" y="501" width="0.9" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="710.88" y="511.5" ></text> +</g> +<g > +<title>_raw_spin_lock_bh (10,101,010 samples, 0.06%)</title><rect x="1332.2" y="725" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" /> +<text x="1335.21" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (171,717,170 samples, 1.08%)</title><rect x="77.4" y="933" width="14.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="80.42" y="943.5" ></text> +</g> +<g > +<title>get_unused_fd_flags (10,101,010 samples, 0.06%)</title><rect x="1059.0" y="709" width="0.9" height="15.0" fill="rgb(0,230,169)" rx="2" ry="2" /> +<text x="1062.01" y="719.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="834.0" y="533" width="0.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="836.97" y="543.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="341" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1336.08" y="351.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="749.9" y="597" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="752.91" y="607.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.06%)</title><rect x="740.3" y="405" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="743.28" y="415.5" ></text> +</g> +<g > +<title>ext4_rename (60,606,060 samples, 0.38%)</title><rect x="466.2" y="677" width="5.3" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="469.21" y="687.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="1100.2" y="453" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="1103.16" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="1087.9" y="693" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1090.91" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="442.6" y="693" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="445.56" y="703.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="12.6" y="677" width="1.8" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="15.63" y="687.5" ></text> +</g> +<g > +<title>zap_pte_range (20,202,020 samples, 0.13%)</title><rect x="399.7" y="565" width="1.7" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="402.66" y="575.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1024.0" y="661" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1026.98" y="671.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="1011.7" y="613" width="0.9" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="1014.73" y="623.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="735.9" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="738.90" y="671.5" ></text> +</g> +<g > +<title>path_init (20,202,020 samples, 0.13%)</title><rect x="892.6" y="581" width="1.8" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="895.64" y="591.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.13%)</title><rect x="876.9" y="597" width="1.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="879.88" y="607.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="712.3" y="549" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="715.26" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="1015.2" y="773" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1018.23" y="783.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1043.2" y="629" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1046.25" y="639.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="741" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1258.15" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (151,515,150 samples, 0.95%)</title><rect x="950.4" y="661" width="13.2" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="953.43" y="671.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="1232.4" y="597" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="1235.39" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="756.0" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="759.04" y="751.5" ></text> +</g> +<g > +<title>evict (101,010,100 samples, 0.63%)</title><rect x="811.2" y="613" width="8.8" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="814.21" y="623.5" ></text> +</g> +<g > +<title>symlink (30,303,030 samples, 0.19%)</title><rect x="1060.8" y="805" width="2.6" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="1063.76" y="815.5" ></text> +</g> +<g > +<title>git_config_free (20,202,020 samples, 0.13%)</title><rect x="860.2" y="837" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="863.24" y="847.5" ></text> +</g> +<g > +<title>security_file_open (10,101,010 samples, 0.06%)</title><rect x="1049.4" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="1052.38" y="639.5" ></text> +</g> +<g > +<title>__sk_free (10,101,010 samples, 0.06%)</title><rect x="1376.0" y="725" width="0.9" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="1378.99" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="1187.7" y="757" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1190.73" y="767.5" ></text> +</g> +<g > +<title>do_open (30,303,030 samples, 0.19%)</title><rect x="743.8" y="549" width="2.6" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="746.78" y="559.5" ></text> +</g> +<g > +<title>evict (40,404,040 samples, 0.25%)</title><rect x="925.0" y="629" width="3.5" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="928.04" y="639.5" ></text> +</g> +<g > +<title>_copy_to_user (10,101,010 samples, 0.06%)</title><rect x="442.6" y="613" width="0.8" height="15.0" fill="rgb(0,191,7)" rx="2" ry="2" /> +<text x="445.56" y="623.5" ></text> +</g> +<g > +<title>filemap_flush (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="581" width="6.1" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="1037.49" y="591.5" ></text> +</g> +<g > +<title>truncate_inode_partial_folio (10,101,010 samples, 0.06%)</title><rect x="819.1" y="549" width="0.9" height="15.0" fill="rgb(0,225,149)" rx="2" ry="2" /> +<text x="822.09" y="559.5" ></text> +</g> +<g > +<title>__open64_nocancel (10,101,010 samples, 0.06%)</title><rect x="504.7" y="773" width="0.9" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="507.73" y="783.5" ></text> +</g> +<g > +<title>libjson_to_string (10,101,010 samples, 0.06%)</title><rect x="10.9" y="949" width="0.9" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" /> +<text x="13.88" y="959.5" ></text> +</g> +<g > +<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="457.4" y="725" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="460.45" y="735.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="534.5" y="597" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="537.51" y="607.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="910.2" y="757" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="913.15" y="767.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1119.4" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1122.43" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1205.2" y="613" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1208.24" y="623.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="378.6" y="613" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="381.64" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="730.6" y="645" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="733.65" y="655.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="645" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1322.07" y="655.5" ></text> +</g> +<g > +<title>vfs_open (20,202,020 samples, 0.13%)</title><rect x="744.7" y="533" width="1.7" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="747.66" y="543.5" ></text> +</g> +<g > +<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="287.6" y="565" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="290.58" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="995.1" y="757" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="998.09" y="767.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1186.0" y="693" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1188.98" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="443.4" y="677" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="446.44" y="687.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (50,505,050 samples, 0.32%)</title><rect x="1028.4" y="613" width="4.3" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="1031.36" y="623.5" ></text> +</g> +<g > +<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="773.6" y="453" width="0.8" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="776.55" y="463.5" ></text> +</g> +<g > +<title>x64_sys_call (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="757" width="2.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1202.11" y="767.5" ></text> +</g> +<g > +<title>readdir64 (30,303,030 samples, 0.19%)</title><rect x="879.5" y="693" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="882.51" y="703.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.13%)</title><rect x="778.8" y="629" width="1.8" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="781.81" y="639.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="463.6" y="485" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="466.58" y="495.5" ></text> +</g> +<g > +<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.06%)</title><rect x="1053.8" y="613" width="0.8" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="1056.76" y="623.5" ></text> +</g> +<g > +<title>path_lookupat (90,909,090 samples, 0.57%)</title><rect x="630.8" y="661" width="7.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="633.82" y="671.5" ></text> +</g> +<g > +<title>generic_perform_write (20,202,020 samples, 0.13%)</title><rect x="645.7" y="581" width="1.8" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="648.71" y="591.5" ></text> +</g> +<g > +<title>__sys_sendto (90,909,090 samples, 0.57%)</title><rect x="1360.2" y="789" width="7.9" height="15.0" fill="rgb(0,221,133)" rx="2" ry="2" /> +<text x="1363.23" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="759.5" y="661" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="762.54" y="671.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="1266.5" y="693" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="1269.54" y="703.5" ></text> +</g> +<g > +<title>jsonrpc_notification_create (10,101,010 samples, 0.06%)</title><rect x="1348.0" y="933" width="0.8" height="15.0" fill="rgb(0,195,24)" rx="2" ry="2" /> +<text x="1350.97" y="943.5" ></text> +</g> +<g > +<title>do_syscall_64 (101,010,100 samples, 0.63%)</title><rect x="1368.1" y="885" width="8.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1371.11" y="895.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="765.7" y="501" width="0.8" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="768.67" y="511.5" ></text> +</g> +<g > +<title>x64_sys_call (464,646,460 samples, 2.92%)</title><rect x="1273.5" y="821" width="40.3" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1276.54" y="831.5" >x64..</text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="677" width="0.8" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="1322.07" y="687.5" ></text> +</g> +<g > +<title>ksys_write (40,404,040 samples, 0.25%)</title><rect x="515.2" y="709" width="3.5" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="518.24" y="719.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="677" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="1108.42" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1185.1" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1188.10" y="767.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="613" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="1221.38" y="623.5" ></text> +</g> +<g > +<title>mpage_submit_folio (30,303,030 samples, 0.19%)</title><rect x="1101.9" y="453" width="2.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1104.92" y="463.5" ></text> +</g> +<g > +<title>obj_cgroup_charge (10,101,010 samples, 0.06%)</title><rect x="834.8" y="597" width="0.9" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" /> +<text x="837.85" y="607.5" ></text> +</g> +<g > +<title>__strftime_l (10,101,010 samples, 0.06%)</title><rect x="555.5" y="869" width="0.9" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="558.52" y="879.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.06%)</title><rect x="1367.2" y="453" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1370.23" y="463.5" ></text> +</g> +<g > +<title>__libc_fork (494,949,490 samples, 3.11%)</title><rect x="1273.5" y="885" width="42.9" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" /> +<text x="1276.54" y="895.5" >__li..</text> +</g> +<g > +<title>ext4_bread (20,202,020 samples, 0.13%)</title><rect x="617.7" y="597" width="1.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="620.69" y="607.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.06%)</title><rect x="1259.5" y="581" width="0.9" height="15.0" fill="rgb(0,233,181)" rx="2" ry="2" /> +<text x="1262.53" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="777.1" y="645" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="780.06" y="655.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.13%)</title><rect x="1115.9" y="645" width="1.8" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1118.93" y="655.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.06%)</title><rect x="580.0" y="565" width="0.9" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="583.04" y="575.5" ></text> +</g> +<g > +<title>d_alloc_parallel (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="629" width="1.7" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="1019.98" y="639.5" ></text> +</g> +<g > +<title>do_poll.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1349.7" y="837" width="0.9" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="1352.72" y="847.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="501" width="0.9" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" /> +<text x="1221.38" y="511.5" ></text> +</g> +<g > +<title>ext4_sb_block_valid (10,101,010 samples, 0.06%)</title><rect x="587.9" y="501" width="0.9" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="590.92" y="511.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.06%)</title><rect x="713.1" y="613" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="716.13" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="850.6" y="773" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="853.61" y="783.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1207.0" y="565" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1209.99" y="575.5" ></text> +</g> +<g > +<title>ip_finish_output2 (50,505,050 samples, 0.32%)</title><rect x="1363.7" y="565" width="4.4" height="15.0" fill="rgb(0,204,61)" rx="2" ry="2" /> +<text x="1366.73" y="575.5" ></text> +</g> +<g > +<title>crc_pcl (10,101,010 samples, 0.06%)</title><rect x="348.0" y="597" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="350.99" y="607.5" ></text> +</g> +<g > +<title>folio_remove_rmap_ptes (20,202,020 samples, 0.13%)</title><rect x="399.7" y="549" width="1.7" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="402.66" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="1260.4" y="725" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1263.41" y="735.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (20,202,020 samples, 0.13%)</title><rect x="1386.5" y="597" width="1.7" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1389.50" y="607.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="1195.6" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="1198.61" y="671.5" ></text> +</g> +<g > +<title>net_send_part (40,404,040 samples, 0.25%)</title><rect x="11.8" y="917" width="3.5" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" /> +<text x="14.75" y="927.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.06%)</title><rect x="35.4" y="549" width="0.9" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="38.39" y="559.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="1042.4" y="613" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1045.37" y="623.5" ></text> +</g> +<g > +<title>ext4_create (80,808,080 samples, 0.51%)</title><rect x="996.8" y="613" width="7.0" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="999.84" y="623.5" ></text> +</g> +<g > +<title>process_backlog (20,202,020 samples, 0.13%)</title><rect x="12.6" y="453" width="1.8" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" /> +<text x="15.63" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="684.2" y="789" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="687.24" y="799.5" ></text> +</g> +<g > +<title>x64_sys_call (111,111,110 samples, 0.70%)</title><rect x="32.8" y="821" width="9.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="35.77" y="831.5" ></text> +</g> +<g > +<title>nf_conntrack_put (10,101,010 samples, 0.06%)</title><rect x="1370.7" y="293" width="0.9" height="15.0" fill="rgb(0,202,50)" rx="2" ry="2" /> +<text x="1373.74" y="303.5" ></text> +</g> +<g > +<title>ext4_add_nondir (10,101,010 samples, 0.06%)</title><rect x="774.4" y="517" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="777.43" y="527.5" ></text> +</g> +<g > +<title>do_faccessat (40,404,040 samples, 0.25%)</title><rect x="897.9" y="661" width="3.5" height="15.0" fill="rgb(0,193,12)" rx="2" ry="2" /> +<text x="900.89" y="671.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="356.8" y="517" width="0.8" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="359.75" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.06%)</title><rect x="439.9" y="629" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="442.94" y="639.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="985.5" y="565" width="0.8" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="988.46" y="575.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="778.8" y="613" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="781.81" y="623.5" ></text> +</g> +<g > +<title>__netif_receive_skb (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="405" width="2.6" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="1336.08" y="415.5" ></text> +</g> +<g > +<title>__filemap_get_folio (10,101,010 samples, 0.06%)</title><rect x="645.7" y="549" width="0.9" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="648.71" y="559.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.06%)</title><rect x="146.6" y="821" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="149.60" y="831.5" ></text> +</g> +<g > +<title>mpage_submit_folio (10,101,010 samples, 0.06%)</title><rect x="795.4" y="453" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="798.44" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (212,121,210 samples, 1.33%)</title><rect x="73.9" y="997" width="18.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="76.92" y="1007.5" ></text> +</g> +<g > +<title>submit_bio_wait_endio (10,101,010 samples, 0.06%)</title><rect x="1238.5" y="597" width="0.9" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="1241.52" y="607.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="1003.8" y="629" width="0.9" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="1006.85" y="639.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.06%)</title><rect x="235.0" y="501" width="0.9" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="238.04" y="511.5" ></text> +</g> +<g > +<title>open64 (20,202,020 samples, 0.13%)</title><rect x="945.2" y="677" width="1.7" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="948.18" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="684.2" y="805" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="687.24" y="815.5" ></text> +</g> +<g > +<title>ext4_append (50,505,050 samples, 0.32%)</title><rect x="1044.1" y="661" width="4.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1047.12" y="671.5" ></text> +</g> +<g > +<title>lookup_one_qstr_excl (10,101,010 samples, 0.06%)</title><rect x="662.3" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="665.35" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.19%)</title><rect x="780.6" y="693" width="2.6" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="783.56" y="703.5" ></text> +</g> +<g > +<title>git_signature_default (20,202,020 samples, 0.13%)</title><rect x="727.1" y="789" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="730.14" y="799.5" ></text> +</g> +<g > +<title>__ext4_new_inode (70,707,070 samples, 0.44%)</title><rect x="1147.4" y="693" width="6.2" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1150.45" y="703.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="381.3" y="517" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="384.27" y="527.5" ></text> +</g> +<g > +<title>fsnotify (10,101,010 samples, 0.06%)</title><rect x="996.0" y="629" width="0.8" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="998.96" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="473.2" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="476.21" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="545.0" y="789" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="548.01" y="799.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="722.8" y="725" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="725.77" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="539.8" y="821" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="542.76" y="831.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="558.1" y="741" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="561.15" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (161,616,160 samples, 1.02%)</title><rect x="10.0" y="1029" width="14.0" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="13.00" y="1039.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="436.4" y="853" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="439.43" y="863.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="484.6" y="437" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="487.59" y="447.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.06%)</title><rect x="484.6" y="453" width="0.9" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="487.59" y="463.5" ></text> +</g> +<g > +<title>ext4_es_lookup_extent (10,101,010 samples, 0.06%)</title><rect x="705.3" y="533" width="0.8" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" /> +<text x="708.25" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_openat (30,303,030 samples, 0.19%)</title><rect x="311.2" y="741" width="2.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="314.22" y="751.5" ></text> +</g> +<g > +<title>path_lookupat (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="661" width="2.6" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1202.11" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="856.7" y="789" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="859.74" y="799.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="899.6" y="581" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="902.64" y="591.5" ></text> +</g> +<g > +<title>x64_sys_call (20,202,020 samples, 0.13%)</title><rect x="730.6" y="677" width="1.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="733.65" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (50,505,050 samples, 0.32%)</title><rect x="831.3" y="773" width="4.4" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="834.35" y="783.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="92.3" y="853" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="95.31" y="863.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (50,505,050 samples, 0.32%)</title><rect x="404.0" y="741" width="4.4" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="407.04" y="751.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="501" width="4.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="1380.74" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="641.3" y="757" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="644.33" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="936.4" y="565" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="939.42" y="575.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1105.4" y="629" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1108.42" y="639.5" ></text> +</g> +<g > +<title>start_this_handle (10,101,010 samples, 0.06%)</title><rect x="278.8" y="549" width="0.9" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="281.82" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (20,202,020 samples, 0.13%)</title><rect x="1236.8" y="693" width="1.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1239.76" y="703.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (20,202,020 samples, 0.13%)</title><rect x="1344.5" y="725" width="1.7" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="1347.47" y="735.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="734.1" y="693" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="737.15" y="703.5" ></text> +</g> +<g > +<title>half_md4_transform.isra.0 (10,101,010 samples, 0.06%)</title><rect x="250.8" y="565" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="253.80" y="575.5" ></text> +</g> +<g > +<title>ext4_bio_write_folio (10,101,010 samples, 0.06%)</title><rect x="672.0" y="453" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="674.98" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.82%)</title><rect x="1049.4" y="789" width="11.4" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1052.38" y="799.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.06%)</title><rect x="883.9" y="581" width="0.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="886.88" y="591.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.06%)</title><rect x="406.7" y="645" width="0.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="409.66" y="655.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (20,202,020 samples, 0.13%)</title><rect x="1165.8" y="453" width="1.8" height="15.0" fill="rgb(0,197,30)" rx="2" ry="2" /> +<text x="1168.84" y="463.5" ></text> +</g> +<g > +<title>__ext4_check_dir_entry (10,101,010 samples, 0.06%)</title><rect x="680.7" y="645" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="683.74" y="655.5" ></text> +</g> +<g > +<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="591.4" y="421" width="0.9" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="594.42" y="431.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (30,303,030 samples, 0.19%)</title><rect x="25.8" y="757" width="2.6" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="28.76" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="428.6" y="805" width="0.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="431.55" y="815.5" ></text> +</g> +<g > +<title>ext4_bread (30,303,030 samples, 0.19%)</title><rect x="332.2" y="613" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="335.23" y="623.5" ></text> +</g> +<g > +<title>do_vmi_align_munmap (10,101,010 samples, 0.06%)</title><rect x="429.4" y="725" width="0.9" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" /> +<text x="432.43" y="735.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.06%)</title><rect x="1189.5" y="629" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="1192.48" y="639.5" ></text> +</g> +<g > +<title>vfs_getattr_nosec (10,101,010 samples, 0.06%)</title><rect x="453.1" y="661" width="0.8" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="456.07" y="671.5" ></text> +</g> +<g > +<title>new_inode (10,101,010 samples, 0.06%)</title><rect x="953.9" y="549" width="0.9" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="956.93" y="559.5" ></text> +</g> +<g > +<title>git_odb_backend_pack (20,202,020 samples, 0.13%)</title><rect x="858.5" y="805" width="1.7" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="861.49" y="815.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.06%)</title><rect x="1169.3" y="501" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1172.34" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1197.4" y="757" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1200.36" y="767.5" ></text> +</g> +<g > +<title>__memcg_slab_pre_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="577.4" y="549" width="0.9" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="580.41" y="559.5" ></text> +</g> +<g > +<title>__mem_cgroup_uncharge (10,101,010 samples, 0.06%)</title><rect x="35.4" y="309" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="38.39" y="319.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="972.3" y="693" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="975.32" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.57%)</title><rect x="1041.5" y="789" width="7.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1044.50" y="799.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="911.9" y="709" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="914.90" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="1094.0" y="725" width="1.8" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1097.04" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_access (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="741" width="1.7" height="15.0" fill="rgb(0,222,136)" rx="2" ry="2" /> +<text x="1019.98" y="751.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.06%)</title><rect x="1299.8" y="693" width="0.9" height="15.0" fill="rgb(0,202,53)" rx="2" ry="2" /> +<text x="1302.81" y="703.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (30,303,030 samples, 0.19%)</title><rect x="1170.2" y="581" width="2.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1173.22" y="591.5" ></text> +</g> +<g > +<title>rwsem_spin_on_owner (10,101,010 samples, 0.06%)</title><rect x="601.9" y="613" width="0.9" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" /> +<text x="604.93" y="623.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="654.5" y="533" width="0.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="657.47" y="543.5" ></text> +</g> +<g > +<title>srso_alias_safe_ret (10,101,010 samples, 0.06%)</title><rect x="459.2" y="741" width="0.9" height="15.0" fill="rgb(0,227,155)" rx="2" ry="2" /> +<text x="462.20" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="489.0" y="725" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="491.97" y="735.5" ></text> +</g> +<g > +<title>do_linkat (101,010,100 samples, 0.63%)</title><rect x="599.3" y="693" width="8.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="602.30" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="934.7" y="661" width="1.7" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="937.67" y="671.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.06%)</title><rect x="488.1" y="517" width="0.9" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="491.10" y="527.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="650.1" y="677" width="2.6" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="653.09" y="687.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.06%)</title><rect x="986.3" y="613" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="989.33" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.06%)</title><rect x="458.3" y="741" width="0.9" height="15.0" fill="rgb(0,238,204)" rx="2" ry="2" /> +<text x="461.32" y="751.5" ></text> +</g> +<g > +<title>__folio_start_writeback (10,101,010 samples, 0.06%)</title><rect x="1101.9" y="421" width="0.9" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" /> +<text x="1104.92" y="431.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1255.2" y="677" width="0.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1258.15" y="687.5" ></text> +</g> +<g > +<title>walk_component (30,303,030 samples, 0.19%)</title><rect x="969.7" y="549" width="2.6" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="972.70" y="559.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="878.6" y="677" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="881.63" y="687.5" ></text> +</g> +<g > +<title>ext4_map_blocks (60,606,060 samples, 0.38%)</title><rect x="958.3" y="501" width="5.3" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="961.31" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="769.2" y="693" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="772.18" y="703.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.13%)</title><rect x="611.6" y="677" width="1.7" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="614.56" y="687.5" ></text> +</g> +<g > +<title>ext4_mb_use_best_found (10,101,010 samples, 0.06%)</title><rect x="589.7" y="485" width="0.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="592.67" y="495.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="1192.1" y="581" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="1195.11" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="724.5" y="725" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="727.52" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="752.5" y="629" width="2.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="755.54" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.13%)</title><rect x="272.7" y="597" width="1.7" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="275.69" y="607.5" ></text> +</g> +<g > +<title>open64 (20,202,020 samples, 0.13%)</title><rect x="443.4" y="725" width="1.8" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="446.44" y="735.5" ></text> +</g> +<g > +<title>readdir64 (20,202,020 samples, 0.13%)</title><rect x="193.0" y="741" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="196.01" y="751.5" ></text> +</g> +<g > +<title>ext4_append (131,313,130 samples, 0.82%)</title><rect x="581.8" y="613" width="11.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="584.79" y="623.5" ></text> +</g> +<g > +<title>vfs_unlink (10,101,010 samples, 0.06%)</title><rect x="428.6" y="741" width="0.8" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="431.55" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="1195.6" y="725" width="1.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1198.61" y="735.5" ></text> +</g> +<g > +<title>exc_page_fault (20,202,020 samples, 0.13%)</title><rect x="162.4" y="757" width="1.7" height="15.0" fill="rgb(0,197,32)" rx="2" ry="2" /> +<text x="165.36" y="767.5" ></text> +</g> +<g > +<title>dput (50,505,050 samples, 0.32%)</title><rect x="461.8" y="709" width="4.4" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="464.83" y="719.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.13%)</title><rect x="730.6" y="597" width="1.8" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="733.65" y="607.5" ></text> +</g> +<g > +<title>chdir (30,303,030 samples, 0.19%)</title><rect x="154.5" y="917" width="2.6" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="157.48" y="927.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="1218.4" y="661" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="1221.38" y="671.5" ></text> +</g> +<g > +<title>getname_flags (20,202,020 samples, 0.13%)</title><rect x="493.4" y="645" width="1.7" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="496.35" y="655.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1146.6" y="645" width="0.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1149.57" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="606.3" y="565" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="609.31" y="575.5" ></text> +</g> +<g > +<title>neigh_hh_output (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="549" width="5.2" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="1372.86" y="559.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.06%)</title><rect x="821.7" y="629" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="824.71" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (80,808,080 samples, 0.51%)</title><rect x="1247.3" y="805" width="7.0" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1250.27" y="815.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="272.7" y="581" width="1.7" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="275.69" y="591.5" ></text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="835.7" y="773" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="838.72" y="783.5" ></text> +</g> +<g > +<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="608.9" y="709" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="611.93" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.06%)</title><rect x="504.7" y="757" width="0.9" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="507.73" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="439.9" y="709" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="442.94" y="719.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="108.1" y="789" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="111.07" y="799.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted (10,101,010 samples, 0.06%)</title><rect x="1266.5" y="661" width="0.9" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="1269.54" y="671.5" ></text> +</g> +<g > +<title>git_config_add_backend (50,505,050 samples, 0.32%)</title><rect x="500.4" y="773" width="4.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="503.36" y="783.5" ></text> +</g> +<g > +<title>iput (30,303,030 samples, 0.19%)</title><rect x="405.8" y="693" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="408.79" y="703.5" ></text> +</g> +<g > +<title>net_send (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="901" width="6.1" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="1335.21" y="911.5" ></text> +</g> +<g > +<title>ip_rcv (50,505,050 samples, 0.32%)</title><rect x="1377.7" y="357" width="4.4" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1380.74" y="367.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.06%)</title><rect x="1065.1" y="629" width="0.9" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1068.14" y="639.5" ></text> +</g> +<g > +<title>ip_finish_output (50,505,050 samples, 0.32%)</title><rect x="1363.7" y="597" width="4.4" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1366.73" y="607.5" ></text> +</g> +<g > +<title>ext4_generic_delete_entry (10,101,010 samples, 0.06%)</title><rect x="233.3" y="565" width="0.9" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="236.29" y="575.5" ></text> +</g> +<g > +<title>ext4_init_acl (10,101,010 samples, 0.06%)</title><rect x="117.7" y="805" width="0.9" height="15.0" fill="rgb(0,227,159)" rx="2" ry="2" /> +<text x="120.70" y="815.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="1240.3" y="677" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="1243.27" y="687.5" ></text> +</g> +<g > +<title>bvec_alloc (10,101,010 samples, 0.06%)</title><rect x="1103.7" y="405" width="0.8" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" /> +<text x="1106.67" y="415.5" ></text> +</g> +<g > +<title>ext4_writepages (20,202,020 samples, 0.13%)</title><rect x="848.0" y="549" width="1.7" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="850.98" y="559.5" ></text> +</g> +<g > +<title>__memcg_slab_post_alloc_hook (10,101,010 samples, 0.06%)</title><rect x="576.5" y="549" width="0.9" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="579.54" y="559.5" ></text> +</g> +<g > +<title>open64 (10,101,010 samples, 0.06%)</title><rect x="691.2" y="677" width="0.9" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="694.24" y="687.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.06%)</title><rect x="31.9" y="789" width="0.9" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="34.89" y="799.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.06%)</title><rect x="979.3" y="517" width="0.9" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="982.33" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="429.4" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="432.43" y="799.5" ></text> +</g> +<g > +<title>__fput_sync (10,101,010 samples, 0.06%)</title><rect x="524.0" y="661" width="0.9" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="527.00" y="671.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.06%)</title><rect x="42.4" y="917" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="45.40" y="927.5" ></text> +</g> +<g > +<title>git_repository_open_ext (333,333,330 samples, 2.09%)</title><rect x="1191.2" y="837" width="28.9" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="1194.23" y="847.5" >gi..</text> +</g> +<g > +<title>truncate_inode_pages_range (20,202,020 samples, 0.13%)</title><rect x="818.2" y="565" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="821.21" y="575.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="185.1" y="501" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="188.13" y="511.5" ></text> +</g> +<g > +<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="91.4" y="773" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="94.43" y="783.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="1141.3" y="565" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1144.32" y="575.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.06%)</title><rect x="989.8" y="677" width="0.9" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="992.84" y="687.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="191.3" y="501" width="0.8" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="194.26" y="511.5" ></text> +</g> +<g > +<title>scsi_dispatch_cmd (10,101,010 samples, 0.06%)</title><rect x="822.6" y="341" width="0.9" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="825.59" y="351.5" ></text> +</g> +<g > +<title>events_to_string (10,101,010 samples, 0.06%)</title><rect x="42.4" y="933" width="0.9" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="45.40" y="943.5" ></text> +</g> +<g > +<title>ext4_claim_free_clusters (10,101,010 samples, 0.06%)</title><rect x="86.2" y="741" width="0.9" height="15.0" fill="rgb(0,231,172)" rx="2" ry="2" /> +<text x="89.18" y="751.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.06%)</title><rect x="474.1" y="613" width="0.9" height="15.0" fill="rgb(0,207,71)" rx="2" ry="2" /> +<text x="477.09" y="623.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.06%)</title><rect x="1192.1" y="645" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1195.11" y="655.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (20,202,020 samples, 0.13%)</title><rect x="1069.5" y="597" width="1.8" height="15.0" fill="rgb(0,232,176)" rx="2" ry="2" /> +<text x="1072.52" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="757" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1248.52" y="767.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.06%)</title><rect x="230.7" y="549" width="0.8" height="15.0" fill="rgb(0,231,175)" rx="2" ry="2" /> +<text x="233.66" y="559.5" ></text> +</g> +<g > +<title>ext4_evict_inode (90,909,090 samples, 0.57%)</title><rect x="812.1" y="597" width="7.9" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="815.08" y="607.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="1227.1" y="597" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="1230.13" y="607.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.06%)</title><rect x="767.4" y="677" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="770.42" y="687.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="366.4" y="645" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="369.38" y="655.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="483.7" y="565" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="486.72" y="575.5" ></text> +</g> +<g > +<title>vfs_write (40,404,040 samples, 0.25%)</title><rect x="805.1" y="645" width="3.5" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="808.08" y="655.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.06%)</title><rect x="1181.6" y="693" width="0.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1184.60" y="703.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (20,202,020 samples, 0.13%)</title><rect x="922.4" y="629" width="1.8" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="925.41" y="639.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.13%)</title><rect x="645.7" y="629" width="1.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="648.71" y="639.5" ></text> +</g> +<g > +<title>process_backlog (60,606,060 samples, 0.38%)</title><rect x="1369.9" y="421" width="5.2" height="15.0" fill="rgb(0,209,82)" rx="2" ry="2" /> +<text x="1372.86" y="431.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (40,404,040 samples, 0.25%)</title><rect x="925.0" y="661" width="3.5" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="928.04" y="671.5" ></text> +</g> +<g > +<title>truncate_cleanup_folio (10,101,010 samples, 0.06%)</title><rect x="389.1" y="613" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="392.15" y="623.5" ></text> +</g> +<g > +<title>__send (40,404,040 samples, 0.25%)</title><rect x="11.8" y="901" width="3.5" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="14.75" y="911.5" ></text> +</g> +<g > +<title>ip_rcv (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="373" width="2.6" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1367.61" y="383.5" ></text> +</g> +<g > +<title>rcu_all_qs (10,101,010 samples, 0.06%)</title><rect x="179.9" y="421" width="0.8" height="15.0" fill="rgb(0,194,19)" rx="2" ry="2" /> +<text x="182.87" y="431.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (30,303,030 samples, 0.19%)</title><rect x="179.0" y="501" width="2.6" height="15.0" fill="rgb(0,211,88)" rx="2" ry="2" /> +<text x="182.00" y="511.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.13%)</title><rect x="1017.0" y="677" width="1.7" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="1019.98" y="687.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="612.4" y="629" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="615.44" y="639.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.06%)</title><rect x="905.8" y="501" width="0.8" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="908.77" y="511.5" ></text> +</g> +<g > +<title>do_renameat2 (292,929,290 samples, 1.84%)</title><rect x="653.6" y="677" width="25.4" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="656.59" y="687.5" >d..</text> +</g> +<g > +<title>__libc_start_main (565,656,560 samples, 3.55%)</title><rect x="24.0" y="1029" width="49.0" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="27.01" y="1039.5" >__li..</text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.06%)</title><rect x="975.8" y="597" width="0.9" height="15.0" fill="rgb(0,209,80)" rx="2" ry="2" /> +<text x="978.82" y="607.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.06%)</title><rect x="930.3" y="421" width="0.9" height="15.0" fill="rgb(0,217,115)" rx="2" ry="2" /> +<text x="933.29" y="431.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.06%)</title><rect x="537.1" y="597" width="0.9" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="540.13" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="850.6" y="757" width="1.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="853.61" y="767.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="783.2" y="533" width="0.9" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="786.19" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.19%)</title><rect x="752.5" y="533" width="2.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="755.54" y="543.5" ></text> +</g> +<g > +<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="1230.6" y="581" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="1233.63" y="591.5" ></text> +</g> +<g > +<title>vfs_write (30,303,030 samples, 0.19%)</title><rect x="539.8" y="693" width="2.6" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="542.76" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_openat (30,303,030 samples, 0.19%)</title><rect x="988.1" y="757" width="2.6" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="991.08" y="767.5" ></text> +</g> +<g > +<title>ext4_evict_inode (50,505,050 samples, 0.32%)</title><rect x="177.2" y="533" width="4.4" height="15.0" fill="rgb(0,222,134)" rx="2" ry="2" /> +<text x="180.25" y="543.5" ></text> +</g> +<g > +<title>ext4_ext_determine_insert_hole (10,101,010 samples, 0.06%)</title><rect x="91.4" y="789" width="0.9" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="94.43" y="799.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.06%)</title><rect x="364.6" y="613" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="367.63" y="623.5" ></text> +</g> +<g > +<title>__alloc_pages (20,202,020 samples, 0.13%)</title><rect x="1108.9" y="485" width="1.8" height="15.0" fill="rgb(0,218,118)" rx="2" ry="2" /> +<text x="1111.92" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="1108.0" y="709" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1111.05" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.06%)</title><rect x="691.2" y="613" width="0.9" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="694.24" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="606.3" y="581" width="0.9" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="609.31" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1214.9" y="661" width="0.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1217.87" y="671.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="485.5" y="677" width="0.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="488.47" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.13%)</title><rect x="760.4" y="645" width="1.8" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="763.42" y="655.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.06%)</title><rect x="1227.1" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="1230.13" y="623.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="383.9" y="469" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="386.90" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (50,505,050 samples, 0.32%)</title><rect x="1063.4" y="741" width="4.4" height="15.0" fill="rgb(0,222,135)" rx="2" ry="2" /> +<text x="1066.39" y="751.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.06%)</title><rect x="813.0" y="581" width="0.8" height="15.0" fill="rgb(0,207,74)" rx="2" ry="2" /> +<text x="815.96" y="591.5" ></text> +</g> +<g > +<title>mpage_submit_folio (10,101,010 samples, 0.06%)</title><rect x="672.0" y="469" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="674.98" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (101,010,100 samples, 0.63%)</title><rect x="738.5" y="709" width="8.8" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="741.53" y="719.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="325" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1140.82" y="335.5" ></text> +</g> +<g > +<title>ext4_free_inode (20,202,020 samples, 0.13%)</title><rect x="788.4" y="549" width="1.8" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="791.44" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="978.5" y="709" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="981.45" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.13%)</title><rect x="449.6" y="757" width="1.7" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="452.57" y="767.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.06%)</title><rect x="91.4" y="821" width="0.9" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="94.43" y="831.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.06%)</title><rect x="974.9" y="517" width="0.9" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="977.95" y="527.5" ></text> +</g> +<g > +<title>__kmalloc_node (10,101,010 samples, 0.06%)</title><rect x="58.2" y="661" width="0.8" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" /> +<text x="61.16" y="671.5" ></text> +</g> +<g > +<title>security_inode_free (10,101,010 samples, 0.06%)</title><rect x="351.5" y="597" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="354.50" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="475.8" y="677" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="478.84" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="713.1" y="693" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="716.13" y="703.5" ></text> +</g> +<g > +<title>__vm_area_free (10,101,010 samples, 0.06%)</title><rect x="918.0" y="421" width="0.9" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" /> +<text x="921.03" y="431.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (70,707,070 samples, 0.44%)</title><rect x="714.0" y="677" width="6.1" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="717.01" y="687.5" ></text> +</g> +<g > +<title>free_unref_page_commit (10,101,010 samples, 0.06%)</title><rect x="1129.9" y="517" width="0.9" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="1132.94" y="527.5" ></text> +</g> +<g > +<title>filemap_get_pages (10,101,010 samples, 0.06%)</title><rect x="534.5" y="549" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="537.51" y="559.5" ></text> +</g> +<g > +<title>git_config_snapshot (20,202,020 samples, 0.13%)</title><rect x="727.1" y="773" width="1.8" height="15.0" fill="rgb(0,223,141)" rx="2" ry="2" /> +<text x="730.14" y="783.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.06%)</title><rect x="1245.5" y="629" width="0.9" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1248.52" y="639.5" ></text> +</g> +<g > +<title>xas_start (10,101,010 samples, 0.06%)</title><rect x="1017.9" y="517" width="0.8" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="1020.86" y="527.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="475.8" y="629" width="1.8" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="478.84" y="639.5" ></text> +</g> +<g > +<title>__ext4_unlink (10,101,010 samples, 0.06%)</title><rect x="545.9" y="693" width="0.9" height="15.0" fill="rgb(0,200,43)" rx="2" ry="2" /> +<text x="548.89" y="703.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_lru (10,101,010 samples, 0.06%)</title><rect x="730.6" y="485" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" /> +<text x="733.65" y="495.5" ></text> +</g> +<g > +<title>git_signature_now (10,101,010 samples, 0.06%)</title><rect x="477.6" y="837" width="0.9" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" /> +<text x="480.59" y="847.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="692.1" y="661" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="695.12" y="671.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.06%)</title><rect x="31.9" y="773" width="0.9" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="34.89" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.19%)</title><rect x="539.8" y="773" width="2.6" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="542.76" y="783.5" ></text> +</g> +<g > +<title>security_inode_getattr (20,202,020 samples, 0.13%)</title><rect x="316.5" y="677" width="1.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="319.47" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="693" width="3.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1091.78" y="703.5" ></text> +</g> +<g > +<title>__do_softirq (10,101,010 samples, 0.06%)</title><rect x="1345.3" y="565" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1348.34" y="575.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="838.4" y="629" width="0.8" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="841.35" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.06%)</title><rect x="348.9" y="629" width="0.8" height="15.0" fill="rgb(0,211,92)" rx="2" ry="2" /> +<text x="351.87" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (282,828,280 samples, 1.78%)</title><rect x="341.0" y="757" width="24.5" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="343.99" y="767.5" >e..</text> +</g> +<g > +<title>fstatat64 (10,101,010 samples, 0.06%)</title><rect x="746.4" y="693" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="749.41" y="703.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.06%)</title><rect x="1001.2" y="565" width="0.9" height="15.0" fill="rgb(0,230,168)" rx="2" ry="2" /> +<text x="1004.22" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="721.0" y="725" width="1.8" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="724.02" y="735.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="1249.0" y="709" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1252.02" y="719.5" ></text> +</g> +<g > +<title>vfs_fstatat (30,303,030 samples, 0.19%)</title><rect x="1199.1" y="709" width="2.6" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="1202.11" y="719.5" ></text> +</g> +<g > +<title>handle_softirqs (10,101,010 samples, 0.06%)</title><rect x="263.1" y="533" width="0.8" height="15.0" fill="rgb(0,223,142)" rx="2" ry="2" /> +<text x="266.06" y="543.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.06%)</title><rect x="1057.3" y="613" width="0.8" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="1060.26" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="1104.5" y="741" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="1107.54" y="751.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="1200.9" y="581" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1203.86" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.13%)</title><rect x="524.9" y="677" width="1.7" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="527.87" y="687.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="492.5" y="629" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="495.47" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.44%)</title><rect x="1332.2" y="853" width="6.1" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="1335.21" y="863.5" ></text> +</g> +<g > +<title>ip_rcv (20,202,020 samples, 0.13%)</title><rect x="1342.7" y="357" width="1.8" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="1345.72" y="367.5" ></text> +</g> +<g > +<title>sk_destruct (10,101,010 samples, 0.06%)</title><rect x="40.6" y="645" width="0.9" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="43.65" y="655.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (30,303,030 samples, 0.19%)</title><rect x="361.1" y="565" width="2.7" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="364.13" y="575.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (60,606,060 samples, 0.38%)</title><rect x="791.9" y="549" width="5.3" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="794.94" y="559.5" ></text> +</g> +<g > +<title>__memset (10,101,010 samples, 0.06%)</title><rect x="1195.6" y="645" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="1198.61" y="655.5" ></text> +</g> +<g > +<title>do_sys_poll (50,505,050 samples, 0.32%)</title><rect x="24.9" y="853" width="4.4" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="27.89" y="863.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum_set (10,101,010 samples, 0.06%)</title><rect x="658.0" y="437" width="0.8" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="660.97" y="447.5" ></text> +</g> +<g > +<title>cfree (10,101,010 samples, 0.06%)</title><rect x="849.7" y="789" width="0.9" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="852.73" y="799.5" ></text> +</g> +<g > +<title>current_obj_cgroup (10,101,010 samples, 0.06%)</title><rect x="918.0" y="565" width="0.9" height="15.0" fill="rgb(0,218,117)" rx="2" ry="2" /> +<text x="921.03" y="575.5" ></text> +</g> +<g > +<title>balance_dirty_pages_ratelimited_flags (10,101,010 samples, 0.06%)</title><rect x="967.9" y="533" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="970.94" y="543.5" ></text> +</g> +<g > +<title>__es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="1110.7" y="453" width="0.8" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="1113.67" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_openat (30,303,030 samples, 0.19%)</title><rect x="453.9" y="597" width="2.7" height="15.0" fill="rgb(0,236,196)" rx="2" ry="2" /> +<text x="456.95" y="607.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.06%)</title><rect x="735.9" y="645" width="0.9" height="15.0" fill="rgb(0,235,190)" rx="2" ry="2" /> +<text x="738.90" y="655.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.06%)</title><rect x="1080.9" y="597" width="0.9" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1083.90" y="607.5" ></text> +</g> +<g > +<title>server_wait (20,202,020 samples, 0.13%)</title><rect x="22.3" y="981" width="1.7" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="25.26" y="991.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.06%)</title><rect x="269.2" y="613" width="0.9" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="272.19" y="623.5" ></text> +</g> +<g > +<title>tcp_fin (10,101,010 samples, 0.06%)</title><rect x="38.0" y="181" width="0.9" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="41.02" y="191.5" ></text> +</g> +<g > +<title>aa_inet_msg_perm (10,101,010 samples, 0.06%)</title><rect x="1337.5" y="741" width="0.8" height="15.0" fill="rgb(0,234,187)" rx="2" ry="2" /> +<text x="1340.46" y="751.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.06%)</title><rect x="749.0" y="613" width="0.9" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="752.04" y="623.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.06%)</title><rect x="919.8" y="565" width="0.9" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="922.78" y="575.5" ></text> +</g> +<g > +<title>__napi_poll (30,303,030 samples, 0.19%)</title><rect x="1364.6" y="437" width="2.6" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="1367.61" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (10,101,010 samples, 0.06%)</title><rect x="798.9" y="661" width="0.9" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="801.95" y="671.5" ></text> +</g> +<g > +<title>event_loop_run (121,212,120 samples, 0.76%)</title><rect x="1349.7" y="949" width="10.5" height="15.0" fill="rgb(0,235,193)" rx="2" ry="2" /> +<text x="1352.72" y="959.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (30,303,030 samples, 0.19%)</title><rect x="972.3" y="645" width="2.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="975.32" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.13%)</title><rect x="700.0" y="517" width="1.8" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="703.00" y="527.5" ></text> +</g> +<g > +<title>anon_inode_getfile (20,202,020 samples, 0.13%)</title><rect x="64.3" y="789" width="1.7" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" /> +<text x="67.29" y="799.5" ></text> +</g> +<g > +<title>__submit_bio (10,101,010 samples, 0.06%)</title><rect x="792.8" y="421" width="0.9" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="795.82" y="431.5" ></text> +</g> +<g > +<title>ext4fs_dirhash (10,101,010 samples, 0.06%)</title><rect x="250.8" y="597" width="0.9" height="15.0" fill="rgb(0,196,26)" rx="2" ry="2" /> +<text x="253.80" y="607.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.06%)</title><rect x="315.6" y="661" width="0.9" height="15.0" fill="rgb(0,192,9)" rx="2" ry="2" /> +<text x="318.60" y="671.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.06%)</title><rect x="986.3" y="661" width="0.9" height="15.0" fill="rgb(0,201,47)" rx="2" ry="2" /> +<text x="989.33" y="671.5" ></text> +</g> +<g > +<title>storvsc_queuecommand (20,202,020 samples, 0.13%)</title><rect x="1133.4" y="309" width="1.8" height="15.0" fill="rgb(0,199,41)" rx="2" ry="2" /> +<text x="1136.44" y="319.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (20,202,020 samples, 0.13%)</title><rect x="675.5" y="581" width="1.7" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="678.48" y="591.5" ></text> +</g> +<g > +<title>fstatat64 (30,303,030 samples, 0.19%)</title><rect x="780.6" y="725" width="2.6" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="783.56" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="746.4" y="629" width="0.9" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="749.41" y="639.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.06%)</title><rect x="1270.9" y="661" width="0.9" height="15.0" fill="rgb(0,234,188)" rx="2" ry="2" /> +<text x="1273.91" y="671.5" ></text> +</g> +<g > +<title>git_repository_config_snapshot (101,010,100 samples, 0.63%)</title><rect x="1211.4" y="805" width="8.7" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="1214.37" y="815.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.06%)</title><rect x="1192.1" y="597" width="0.9" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1195.11" y="607.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.06%)</title><rect x="546.8" y="501" width="0.8" height="15.0" fill="rgb(0,219,124)" rx="2" ry="2" /> +<text x="549.76" y="511.5" ></text> +</g> +<g > +<title>git_reference_name_to_id (40,404,040 samples, 0.25%)</title><rect x="453.9" y="789" width="3.5" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="456.95" y="799.5" ></text> +</g> +<g > +<title>ip_local_out (30,303,030 samples, 0.19%)</title><rect x="1333.1" y="629" width="2.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1336.08" y="639.5" ></text> +</g> +<g > +<title>vfs_fstatat (10,101,010 samples, 0.06%)</title><rect x="514.4" y="741" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="517.37" y="751.5" ></text> +</g> +<g > +<title>fstatat64 (20,202,020 samples, 0.13%)</title><rect x="747.3" y="709" width="1.7" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="750.28" y="719.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.06%)</title><rect x="781.4" y="549" width="0.9" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="784.43" y="559.5" ></text> +</g> +<g > +<title>memcg_charge_kernel_stack.part.0 (20,202,020 samples, 0.13%)</title><rect x="56.4" y="677" width="1.8" height="15.0" fill="rgb(0,219,121)" rx="2" ry="2" /> +<text x="59.41" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.13%)</title><rect x="736.8" y="725" width="1.7" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="739.78" y="735.5" ></text> +</g> +<g > +<title>scsi_dec_host_busy (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="549" width="0.8" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" /> +<text x="1322.07" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.06%)</title><rect x="803.3" y="789" width="0.9" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="806.32" y="799.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.06%)</title><rect x="528.4" y="693" width="0.9" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="531.38" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.06%)</title><rect x="1250.8" y="661" width="0.8" height="15.0" fill="rgb(0,231,174)" rx="2" ry="2" /> +<text x="1253.77" y="671.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.06%)</title><rect x="663.2" y="549" width="0.9" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="666.22" y="559.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="985.5" y="677" width="0.8" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="988.46" y="687.5" ></text> +</g> +<g > +<title>ext4_fill_raw_inode (10,101,010 samples, 0.06%)</title><rect x="425.9" y="565" width="0.9" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="428.93" y="575.5" ></text> +</g> +<g > +<title>git_reference_normalize_name (10,101,010 samples, 0.06%)</title><rect x="456.6" y="757" width="0.8" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="459.57" y="767.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.06%)</title><rect x="657.1" y="469" width="0.9" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="660.09" y="479.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.06%)</title><rect x="799.8" y="661" width="0.9" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="802.82" y="671.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (50,505,050 samples, 0.32%)</title><rect x="35.4" y="645" width="4.4" height="15.0" fill="rgb(0,215,107)" rx="2" ry="2" /> +<text x="38.39" y="655.5" ></text> +</g> +<g > +<title>write (40,404,040 samples, 0.25%)</title><rect x="1088.8" y="709" width="3.5" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="1091.78" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (20,202,020 samples, 0.13%)</title><rect x="783.2" y="693" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="786.19" y="703.5" ></text> +</g> +<g > +<title>jsonrpc_request_create_params (10,101,010 samples, 0.06%)</title><rect x="1348.8" y="917" width="0.9" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="1351.85" y="927.5" ></text> +</g> +<g > +<title>libjson_set_string_internal (10,101,010 samples, 0.06%)</title><rect x="1389.1" y="869" width="0.9" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="1392.12" y="879.5" ></text> +</g> +<g > +<title>blk_update_request (10,101,010 samples, 0.06%)</title><rect x="986.3" y="581" width="0.9" height="15.0" fill="rgb(0,226,151)" rx="2" ry="2" /> +<text x="989.33" y="591.5" ></text> +</g> +<g > +<title>io_schedule (20,202,020 samples, 0.13%)</title><rect x="659.7" y="469" width="1.8" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="662.72" y="479.5" ></text> +</g> +<g > +<title>ext4_do_writepages (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="501" width="6.1" height="15.0" fill="rgb(0,199,38)" rx="2" ry="2" /> +<text x="1037.49" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.25%)</title><rect x="1108.0" y="693" width="3.5" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="1111.05" y="703.5" ></text> +</g> +<g > +<title>ext4_mb_mark_context (10,101,010 samples, 0.06%)</title><rect x="671.1" y="421" width="0.9" height="15.0" fill="rgb(0,205,65)" rx="2" ry="2" /> +<text x="674.10" y="431.5" ></text> +</g> +<g > +<title>iput (60,606,060 samples, 0.38%)</title><rect x="410.2" y="725" width="5.2" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="413.16" y="735.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.06%)</title><rect x="853.2" y="581" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="856.24" y="591.5" ></text> +</g> +<g > +<title>ext4_es_insert_extent (10,101,010 samples, 0.06%)</title><rect x="467.1" y="517" width="0.9" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="470.08" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (141,414,140 samples, 0.89%)</title><rect x="738.5" y="789" width="12.3" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="741.53" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.7.2] (696,969,690 samples, 4.38%)</title><rect x="479.3" y="869" width="60.5" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="482.34" y="879.5" >[libgi..</text> +</g> +<g > +<title>dd_has_work (10,101,010 samples, 0.06%)</title><rect x="1135.2" y="357" width="0.9" height="15.0" fill="rgb(0,224,144)" rx="2" ry="2" /> +<text x="1138.19" y="367.5" ></text> +</g> +<g > +<title>__filename_parentat (10,101,010 samples, 0.06%)</title><rect x="260.4" y="661" width="0.9" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="263.43" y="671.5" ></text> +</g> +<g > +<title>opendir (30,303,030 samples, 0.19%)</title><rect x="876.9" y="693" width="2.6" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" /> +<text x="879.88" y="703.5" ></text> +</g> +<g > +<title>x64_sys_call (10,101,010 samples, 0.06%)</title><rect x="808.6" y="725" width="0.9" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="811.58" y="735.5" ></text> +</g> +<g > +<title>__file_remove_privs (10,101,010 samples, 0.06%)</title><rect x="515.2" y="629" width="0.9" height="15.0" fill="rgb(0,238,203)" rx="2" ry="2" /> +<text x="518.24" y="639.5" ></text> +</g> +<g > +<title>iput (20,202,020 samples, 0.13%)</title><rect x="1063.4" y="709" width="1.7" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1066.39" y="719.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.06%)</title><rect x="1137.8" y="293" width="0.9" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="1140.82" y="303.5" ></text> +</g> +<g > +<title>evict (50,505,050 samples, 0.32%)</title><rect x="411.0" y="709" width="4.4" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="414.04" y="719.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.06%)</title><rect x="482.8" y="597" width="0.9" height="15.0" fill="rgb(0,210,87)" rx="2" ry="2" /> +<text x="485.84" y="607.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.06%)</title><rect x="882.1" y="549" width="0.9" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="885.13" y="559.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.06%)</title><rect x="411.9" y="661" width="0.9" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="414.92" y="671.5" ></text> +</g> +<g > +<title>ext4_add_nondir (10,101,010 samples, 0.06%)</title><rect x="964.4" y="517" width="0.9" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="967.44" y="527.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.06%)</title><rect x="1319.1" y="853" width="0.8" height="15.0" fill="rgb(0,210,85)" rx="2" ry="2" /> +<text x="1322.07" y="863.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.06%)</title><rect x="941.7" y="517" width="0.9" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="944.68" y="527.5" ></text> +</g> +<g > +<title>select_collect (10,101,010 samples, 0.06%)</title><rect x="210.5" y="565" width="0.9" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" /> +<text x="213.52" y="575.5" ></text> +</g> +<g > +<title>ip_finish_output (10,101,010 samples, 0.06%)</title><rect x="1366.4" y="133" width="0.8" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1369.36" y="143.5" ></text> +</g> +<g > +<title>ext4_writepages (70,707,070 samples, 0.44%)</title><rect x="1034.5" y="517" width="6.1" height="15.0" fill="rgb(0,225,150)" rx="2" ry="2" /> +<text x="1037.49" y="527.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.06%)</title><rect x="108.1" y="693" width="0.8" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="111.07" y="703.5" ></text> +</g> +<g > +<title>do_rmdir (50,505,050 samples, 0.32%)</title><rect x="404.0" y="725" width="4.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="407.04" y="735.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.06%)</title><rect x="765.7" y="485" width="0.8" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="768.67" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.06%)</title><rect x="524.0" y="677" width="0.9" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="527.00" y="687.5" ></text> +</g> +</g> +</svg> |