diff options
Diffstat (limited to '')
-rw-r--r-- | flame_graphs/flame_graph_output_long.svg | 24093 | ||||
-rw-r--r-- | flame_graphs/flame_graph_output_simple.svg | 23157 |
2 files changed, 47250 insertions, 0 deletions
diff --git a/flame_graphs/flame_graph_output_long.svg b/flame_graphs/flame_graph_output_long.svg new file mode 100644 index 0000000..d07576e --- /dev/null +++ b/flame_graphs/flame_graph_output_long.svg @@ -0,0 +1,24093 @@ +<?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="1062" onload="init(evt)" viewBox="0 0 1400 1062" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> +<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> +<!-- NOTES: --> +<defs> + <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > + <stop stop-color="#eef2ee" offset="5%" /> + <stop stop-color="#e0ffe0" offset="95%" /> + </linearGradient> +</defs> +<style type="text/css"> + text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); } + #search, #ignorecase { opacity:0.1; cursor:pointer; } + #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; } + #subtitle { text-anchor:middle; font-color:rgb(160,160,160); } + #title { text-anchor:middle; font-size:17px} + #unzoom { cursor:pointer; } + #frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; } + .hide { display:none; } + .parent { opacity:0.5; } +</style> +<script type="text/ecmascript"> +<![CDATA[ + "use strict"; + var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn; + function init(evt) { + details = document.getElementById("details").firstChild; + searchbtn = document.getElementById("search"); + ignorecaseBtn = document.getElementById("ignorecase"); + unzoombtn = document.getElementById("unzoom"); + matchedtxt = document.getElementById("matched"); + svg = document.getElementsByTagName("svg")[0]; + searching = 0; + currentSearchTerm = null; + + // use GET parameters to restore a flamegraphs state. + var params = get_params(); + if (params.x && params.y) + zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]'))); + if (params.s) search(params.s); + } + + // event listeners + window.addEventListener("click", function(e) { + var target = find_group(e.target); + if (target) { + if (target.nodeName == "a") { + if (e.ctrlKey === false) return; + e.preventDefault(); + } + if (target.classList.contains("parent")) unzoom(true); + zoom(target); + if (!document.querySelector('.parent')) { + // we have basically done a clearzoom so clear the url + var params = get_params(); + if (params.x) delete params.x; + if (params.y) delete params.y; + history.replaceState(null, null, parse_params(params)); + unzoombtn.classList.add("hide"); + return; + } + + // set parameters for zoom state + var el = target.querySelector("rect"); + if (el && el.attributes && el.attributes.y && el.attributes._orig_x) { + var params = get_params() + params.x = el.attributes._orig_x.value; + params.y = el.attributes.y.value; + history.replaceState(null, null, parse_params(params)); + } + } + else if (e.target.id == "unzoom") clearzoom(); + else if (e.target.id == "search") search_prompt(); + else if (e.target.id == "ignorecase") toggle_ignorecase(); + }, false) + + // mouse-over for info + // show + window.addEventListener("mouseover", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = "Function: " + g_to_text(target); + }, false) + + // clear + window.addEventListener("mouseout", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = ' '; + }, false) + + // ctrl-F for search + // ctrl-I to toggle case-sensitive search + window.addEventListener("keydown",function (e) { + if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { + e.preventDefault(); + search_prompt(); + } + else if (e.ctrlKey && e.keyCode === 73) { + e.preventDefault(); + toggle_ignorecase(); + } + }, false) + + // functions + function get_params() { + var params = {}; + var paramsarr = window.location.search.substr(1).split('&'); + for (var i = 0; i < paramsarr.length; ++i) { + var tmp = paramsarr[i].split("="); + if (!tmp[0] || !tmp[1]) continue; + params[tmp[0]] = decodeURIComponent(tmp[1]); + } + return params; + } + function parse_params(params) { + var uri = "?"; + for (var key in params) { + uri += key + '=' + encodeURIComponent(params[key]) + '&'; + } + if (uri.slice(-1) == "&") + uri = uri.substring(0, uri.length - 1); + if (uri == '?') + uri = window.location.href.split('?')[0]; + return uri; + } + function find_child(node, selector) { + var children = node.querySelectorAll(selector); + if (children.length) return children[0]; + } + function find_group(node) { + var parent = node.parentElement; + if (!parent) return; + if (parent.id == "frames") return node; + return find_group(parent); + } + function orig_save(e, attr, val) { + if (e.attributes["_orig_" + attr] != undefined) return; + if (e.attributes[attr] == undefined) return; + if (val == undefined) val = e.attributes[attr].value; + e.setAttribute("_orig_" + attr, val); + } + function orig_load(e, attr) { + if (e.attributes["_orig_"+attr] == undefined) return; + e.attributes[attr].value = e.attributes["_orig_" + attr].value; + e.removeAttribute("_orig_"+attr); + } + function g_to_text(e) { + var text = find_child(e, "title").firstChild.nodeValue; + return (text) + } + function g_to_func(e) { + var func = g_to_text(e); + // if there's any manipulation we want to do to the function + // name before it's searched, do it here before returning. + return (func); + } + function update_text(e) { + var r = find_child(e, "rect"); + var t = find_child(e, "text"); + var w = parseFloat(r.attributes.width.value) -3; + var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); + t.attributes.x.value = parseFloat(r.attributes.x.value) + 3; + + // Smaller than this size won't fit anything + if (w < 2 * 12 * 0.59) { + t.textContent = ""; + return; + } + + t.textContent = txt; + var sl = t.getSubStringLength(0, txt.length); + // check if only whitespace or if we can fit the entire string into width w + if (/^ *$/.test(txt) || sl < w) + return; + + // this isn't perfect, but gives a good starting point + // and avoids calling getSubStringLength too often + var start = Math.floor((w/sl) * txt.length); + for (var x = start; x > 0; x = x-2) { + if (t.getSubStringLength(0, x + 2) <= w) { + t.textContent = txt.substring(0, x) + ".."; + return; + } + } + t.textContent = ""; + } + + // zoom + function zoom_reset(e) { + if (e.attributes != undefined) { + orig_load(e, "x"); + orig_load(e, "width"); + } + if (e.childNodes == undefined) return; + for (var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_reset(c[i]); + } + } + function zoom_child(e, x, ratio) { + if (e.attributes != undefined) { + if (e.attributes.x != undefined) { + orig_save(e, "x"); + e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10; + if (e.tagName == "text") + e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3; + } + if (e.attributes.width != undefined) { + orig_save(e, "width"); + e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio; + } + } + + if (e.childNodes == undefined) return; + for (var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_child(c[i], x - 10, ratio); + } + } + function zoom_parent(e) { + if (e.attributes) { + if (e.attributes.x != undefined) { + orig_save(e, "x"); + e.attributes.x.value = 10; + } + if (e.attributes.width != undefined) { + orig_save(e, "width"); + e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2); + } + } + if (e.childNodes == undefined) return; + for (var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_parent(c[i]); + } + } + function zoom(node) { + var attr = find_child(node, "rect").attributes; + var width = parseFloat(attr.width.value); + var xmin = parseFloat(attr.x.value); + var xmax = parseFloat(xmin + width); + var ymin = parseFloat(attr.y.value); + var ratio = (svg.width.baseVal.value - 2 * 10) / width; + + // XXX: Workaround for JavaScript float issues (fix me) + var fudge = 0.0001; + + unzoombtn.classList.remove("hide"); + + var el = document.getElementById("frames").children; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var a = find_child(e, "rect").attributes; + var ex = parseFloat(a.x.value); + var ew = parseFloat(a.width.value); + var upstack; + // Is it an ancestor + if (0 == 0) { + upstack = parseFloat(a.y.value) > ymin; + } else { + upstack = parseFloat(a.y.value) < ymin; + } + if (upstack) { + // Direct ancestor + if (ex <= xmin && (ex+ew+fudge) >= xmax) { + e.classList.add("parent"); + zoom_parent(e); + update_text(e); + } + // not in current path + else + e.classList.add("hide"); + } + // Children maybe + else { + // no common path + if (ex < xmin || ex + fudge >= xmax) { + e.classList.add("hide"); + } + else { + zoom_child(e, xmin, ratio); + update_text(e); + } + } + } + search(); + } + function unzoom(dont_update_text) { + unzoombtn.classList.add("hide"); + var el = document.getElementById("frames").children; + for(var i = 0; i < el.length; i++) { + el[i].classList.remove("parent"); + el[i].classList.remove("hide"); + zoom_reset(el[i]); + if(!dont_update_text) update_text(el[i]); + } + search(); + } + function clearzoom() { + unzoom(); + + // remove zoom state + var params = get_params(); + if (params.x) delete params.x; + if (params.y) delete params.y; + history.replaceState(null, null, parse_params(params)); + } + + // search + function toggle_ignorecase() { + ignorecase = !ignorecase; + if (ignorecase) { + ignorecaseBtn.classList.add("show"); + } else { + ignorecaseBtn.classList.remove("show"); + } + reset_search(); + search(); + } + function reset_search() { + var el = document.querySelectorAll("#frames rect"); + for (var i = 0; i < el.length; i++) { + orig_load(el[i], "fill") + } + var params = get_params(); + delete params.s; + history.replaceState(null, null, parse_params(params)); + } + function search_prompt() { + if (!searching) { + var term = prompt("Enter a search term (regexp " + + "allowed, eg: ^ext4_)" + + (ignorecase ? ", ignoring case" : "") + + "\nPress Ctrl-i to toggle case sensitivity", ""); + if (term != null) search(term); + } else { + reset_search(); + searching = 0; + currentSearchTerm = null; + searchbtn.classList.remove("show"); + searchbtn.firstChild.nodeValue = "Search" + matchedtxt.classList.add("hide"); + matchedtxt.firstChild.nodeValue = "" + } + } + function search(term) { + if (term) currentSearchTerm = term; + + var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : ''); + var el = document.getElementById("frames").children; + var matches = new Object(); + var maxwidth = 0; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var func = g_to_func(e); + var rect = find_child(e, "rect"); + if (func == null || rect == null) + continue; + + // Save max width. Only works as we have a root frame + var w = parseFloat(rect.attributes.width.value); + if (w > maxwidth) + maxwidth = w; + + if (func.match(re)) { + // highlight + var x = parseFloat(rect.attributes.x.value); + orig_save(rect, "fill"); + rect.attributes.fill.value = "rgb(230,0,230)"; + + // remember matches + if (matches[x] == undefined) { + matches[x] = w; + } else { + if (w > matches[x]) { + // overwrite with parent + matches[x] = w; + } + } + searching = 1; + } + } + if (!searching) + return; + var params = get_params(); + params.s = currentSearchTerm; + history.replaceState(null, null, parse_params(params)); + + searchbtn.classList.add("show"); + searchbtn.firstChild.nodeValue = "Reset Search"; + + // calculate percent matched, excluding vertical overlap + var count = 0; + var lastx = -1; + var lastw = 0; + var keys = Array(); + for (k in matches) { + if (matches.hasOwnProperty(k)) + keys.push(k); + } + // sort the matched frames by their x location + // ascending, then width descending + keys.sort(function(a, b){ + return a - b; + }); + // Step through frames saving only the biggest bottom-up frames + // thanks to the sort order. This relies on the tree property + // where children are always smaller than their parents. + var fudge = 0.0001; // JavaScript floating point + for (var k in keys) { + var x = parseFloat(keys[k]); + var w = matches[keys[k]]; + if (x >= lastx + lastw - fudge) { + count += w; + lastx = x; + lastw = w; + } + } + // display matched percent + matchedtxt.classList.remove("hide"); + var pct = 100 * count / maxwidth; + if (pct != 100) pct = pct.toFixed(1) + matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; + } +]]> +</script> +<rect x="0.0" y="0" width="1400.0" height="1062.0" fill="url(#background)" /> +<text id="title" x="700.00" y="24" >Flame Graph</text> +<text id="details" x="10.00" y="1045" > </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="1045" > </text> +<g id="frames"> +<g > +<title>ext4_es_lookup_extent (10,101,010 samples, 0.04%)</title><rect x="250.9" y="501" width="0.5" height="15.0" fill="rgb(0,218,116)" rx="2" ry="2" /> +<text x="253.88" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="473.2" y="677" width="1.6" height="15.0" fill="rgb(0,232,31)" rx="2" ry="2" /> +<text x="476.18" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="368.7" y="645" width="0.5" height="15.0" fill="rgb(0,204,208)" rx="2" ry="2" /> +<text x="371.66" y="655.5" ></text> +</g> +<g > +<title>wait_on_page_bit_common (10,101,010 samples, 0.04%)</title><rect x="332.6" y="453" width="0.5" height="15.0" fill="rgb(0,191,182)" rx="2" ry="2" /> +<text x="335.58" y="463.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="132.6" y="469" width="0.5" height="15.0" fill="rgb(0,239,178)" rx="2" ry="2" /> +<text x="135.56" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="287.0" y="533" width="1.0" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="289.96" y="543.5" ></text> +</g> +<g > +<title>futex_wait_setup (40,404,040 samples, 0.15%)</title><rect x="30.2" y="725" width="2.1" height="15.0" fill="rgb(0,200,118)" rx="2" ry="2" /> +<text x="33.16" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="407.4" y="677" width="1.1" height="15.0" fill="rgb(0,194,39)" rx="2" ry="2" /> +<text x="410.39" y="687.5" ></text> +</g> +<g > +<title>do_wp_page (10,101,010 samples, 0.04%)</title><rect x="534.2" y="693" width="0.5" height="15.0" fill="rgb(0,198,77)" rx="2" ry="2" /> +<text x="537.20" y="703.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="483.8" y="581" width="0.5" height="15.0" fill="rgb(0,227,149)" rx="2" ry="2" /> +<text x="486.79" y="591.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (20,202,020 samples, 0.08%)</title><rect x="372.4" y="485" width="1.0" height="15.0" fill="rgb(0,234,167)" rx="2" ry="2" /> +<text x="375.38" y="495.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (10,101,010 samples, 0.04%)</title><rect x="437.1" y="469" width="0.5" height="15.0" fill="rgb(0,214,143)" rx="2" ry="2" /> +<text x="440.10" y="479.5" ></text> +</g> +<g > +<title>iterate_dir (101,010,100 samples, 0.38%)</title><rect x="248.8" y="645" width="5.3" height="15.0" fill="rgb(0,193,110)" rx="2" ry="2" /> +<text x="251.75" y="655.5" ></text> +</g> +<g > +<title>schedule_hrtimeout_range (50,505,050 samples, 0.19%)</title><rect x="27.0" y="773" width="2.6" height="15.0" fill="rgb(0,238,127)" rx="2" ry="2" /> +<text x="29.98" y="783.5" ></text> +</g> +<g > +<title>unlink (40,404,040 samples, 0.15%)</title><rect x="161.7" y="709" width="2.2" height="15.0" fill="rgb(0,208,191)" rx="2" ry="2" /> +<text x="164.74" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="364.9" y="725" width="1.1" height="15.0" fill="rgb(0,239,185)" rx="2" ry="2" /> +<text x="367.95" y="735.5" ></text> +</g> +<g > +<title>vm_normal_page (10,101,010 samples, 0.04%)</title><rect x="522.0" y="613" width="0.5" height="15.0" fill="rgb(0,221,72)" rx="2" ry="2" /> +<text x="525.00" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.04%)</title><rect x="219.0" y="661" width="0.6" height="15.0" fill="rgb(0,201,153)" rx="2" ry="2" /> +<text x="222.04" y="671.5" ></text> +</g> +<g > +<title>ip_finish_output (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="549" width="1.6" height="15.0" fill="rgb(0,200,134)" rx="2" ry="2" /> +<text x="1371.78" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (131,313,130 samples, 0.50%)</title><rect x="934.8" y="725" width="6.9" height="15.0" fill="rgb(0,226,114)" rx="2" ry="2" /> +<text x="937.78" y="735.5" ></text> +</g> +<g > +<title>schedule (50,505,050 samples, 0.19%)</title><rect x="27.0" y="741" width="2.6" height="15.0" fill="rgb(0,197,165)" rx="2" ry="2" /> +<text x="29.98" y="751.5" ></text> +</g> +<g > +<title>path_openat (30,303,030 samples, 0.12%)</title><rect x="245.0" y="613" width="1.6" height="15.0" fill="rgb(0,225,121)" rx="2" ry="2" /> +<text x="248.04" y="623.5" ></text> +</g> +<g > +<title>str2hashbuf_signed (10,101,010 samples, 0.04%)</title><rect x="123.0" y="533" width="0.5" height="15.0" fill="rgb(0,200,119)" rx="2" ry="2" /> +<text x="126.01" y="543.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="497.1" y="693" width="0.5" height="15.0" fill="rgb(0,190,92)" rx="2" ry="2" /> +<text x="500.06" y="703.5" ></text> +</g> +<g > +<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="201.0" y="453" width="0.5" height="15.0" fill="rgb(0,221,95)" rx="2" ry="2" /> +<text x="204.00" y="463.5" ></text> +</g> +<g > +<title>skb_do_copy_data_nocache (141,414,140 samples, 0.54%)</title><rect x="1356.6" y="661" width="7.4" height="15.0" fill="rgb(0,209,176)" rx="2" ry="2" /> +<text x="1359.57" y="671.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="154.8" y="517" width="0.6" height="15.0" fill="rgb(0,222,93)" rx="2" ry="2" /> +<text x="157.84" y="527.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="230.2" y="533" width="0.5" height="15.0" fill="rgb(0,197,7)" rx="2" ry="2" /> +<text x="233.18" y="543.5" ></text> +</g> +<g > +<title>opendir (20,202,020 samples, 0.08%)</title><rect x="350.1" y="613" width="1.1" height="15.0" fill="rgb(0,211,67)" rx="2" ry="2" /> +<text x="353.09" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (10,101,010 samples, 0.04%)</title><rect x="277.4" y="693" width="0.5" height="15.0" fill="rgb(0,239,23)" rx="2" ry="2" /> +<text x="280.40" y="703.5" ></text> +</g> +<g > +<title>mkdir (101,010,100 samples, 0.38%)</title><rect x="54.6" y="917" width="5.3" height="15.0" fill="rgb(0,195,138)" rx="2" ry="2" /> +<text x="57.57" y="927.5" ></text> +</g> +<g > +<title>new_sync_write (60,606,060 samples, 0.23%)</title><rect x="423.8" y="645" width="3.2" height="15.0" fill="rgb(0,220,115)" rx="2" ry="2" /> +<text x="426.84" y="655.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="194.6" y="549" width="0.6" height="15.0" fill="rgb(0,208,110)" rx="2" ry="2" /> +<text x="197.64" y="559.5" ></text> +</g> +<g > +<title>json_object_put (10,101,010 samples, 0.04%)</title><rect x="934.2" y="805" width="0.6" height="15.0" fill="rgb(0,214,17)" rx="2" ry="2" /> +<text x="937.24" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (353,535,350 samples, 1.35%)</title><rect x="224.9" y="725" width="18.5" height="15.0" fill="rgb(0,226,136)" rx="2" ry="2" /> +<text x="227.88" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="216.9" y="741" width="0.6" height="15.0" fill="rgb(0,191,177)" rx="2" ry="2" /> +<text x="219.92" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="468.9" y="725" width="0.6" height="15.0" fill="rgb(0,217,6)" rx="2" ry="2" /> +<text x="471.94" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="218.0" y="741" width="2.6" height="15.0" fill="rgb(0,238,11)" rx="2" ry="2" /> +<text x="220.98" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (80,808,080 samples, 0.31%)</title><rect x="433.9" y="645" width="4.3" height="15.0" fill="rgb(0,218,36)" rx="2" ry="2" /> +<text x="436.92" y="655.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (20,202,020 samples, 0.08%)</title><rect x="303.9" y="453" width="1.1" height="15.0" fill="rgb(0,192,179)" rx="2" ry="2" /> +<text x="306.93" y="463.5" ></text> +</g> +<g > +<title>git_repository_open_ext (151,515,150 samples, 0.58%)</title><rect x="471.6" y="773" width="8.0" height="15.0" fill="rgb(0,214,156)" rx="2" ry="2" /> +<text x="474.59" y="783.5" ></text> +</g> +<g > +<title>delete_from_page_cache (10,101,010 samples, 0.04%)</title><rect x="270.5" y="469" width="0.5" height="15.0" fill="rgb(0,238,137)" rx="2" ry="2" /> +<text x="273.51" y="479.5" ></text> +</g> +<g > +<title>sock_sendmsg (50,505,050 samples, 0.19%)</title><rect x="1379.4" y="725" width="2.6" height="15.0" fill="rgb(0,196,109)" rx="2" ry="2" /> +<text x="1382.39" y="735.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="116.6" y="581" width="0.6" height="15.0" fill="rgb(0,226,168)" rx="2" ry="2" /> +<text x="119.64" y="591.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (181,818,180 samples, 0.69%)</title><rect x="888.6" y="837" width="9.6" height="15.0" fill="rgb(0,211,149)" rx="2" ry="2" /> +<text x="891.62" y="847.5" ></text> +</g> +<g > +<title>[libc.so.6] (24,888,888,640 samples, 94.73%)</title><rect x="82.7" y="949" width="1307.3" height="15.0" fill="rgb(0,209,177)" rx="2" ry="2" /> +<text x="85.69" y="959.5" >[libc.so.6]</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="346.4" y="661" width="0.5" height="15.0" fill="rgb(0,202,113)" rx="2" ry="2" /> +<text x="349.38" y="671.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="231.2" y="469" width="0.6" height="15.0" fill="rgb(0,195,178)" rx="2" ry="2" /> +<text x="234.25" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (131,313,130 samples, 0.50%)</title><rect x="934.8" y="741" width="6.9" height="15.0" fill="rgb(0,227,3)" rx="2" ry="2" /> +<text x="937.78" y="751.5" ></text> +</g> +<g > +<title>ext4_evict_inode (40,404,040 samples, 0.15%)</title><rect x="433.9" y="501" width="2.1" height="15.0" fill="rgb(0,214,78)" rx="2" ry="2" /> +<text x="436.92" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="279.0" y="677" width="0.5" height="15.0" fill="rgb(0,224,91)" rx="2" ry="2" /> +<text x="282.00" y="687.5" ></text> +</g> +<g > +<title>schedule_hrtimeout_range_clock (50,505,050 samples, 0.19%)</title><rect x="27.0" y="757" width="2.6" height="15.0" fill="rgb(0,219,27)" rx="2" ry="2" /> +<text x="29.98" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="263.1" y="677" width="3.2" height="15.0" fill="rgb(0,207,58)" rx="2" ry="2" /> +<text x="266.08" y="687.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.04%)</title><rect x="181.4" y="773" width="0.5" height="15.0" fill="rgb(0,213,70)" rx="2" ry="2" /> +<text x="184.37" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="116.1" y="645" width="0.5" height="15.0" fill="rgb(0,225,5)" rx="2" ry="2" /> +<text x="119.11" y="655.5" ></text> +</g> +<g > +<title>ext4_inode_csum (20,202,020 samples, 0.08%)</title><rect x="231.2" y="485" width="1.1" height="15.0" fill="rgb(0,207,194)" rx="2" ry="2" /> +<text x="234.25" y="495.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (20,202,020 samples, 0.08%)</title><rect x="1382.6" y="821" width="1.0" height="15.0" fill="rgb(0,231,201)" rx="2" ry="2" /> +<text x="1385.57" y="831.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.04%)</title><rect x="103.9" y="501" width="0.5" height="15.0" fill="rgb(0,214,145)" rx="2" ry="2" /> +<text x="106.91" y="511.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.04%)</title><rect x="413.8" y="469" width="0.5" height="15.0" fill="rgb(0,222,82)" rx="2" ry="2" /> +<text x="416.76" y="479.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="491.8" y="773" width="0.5" height="15.0" fill="rgb(0,203,122)" rx="2" ry="2" /> +<text x="494.75" y="783.5" ></text> +</g> +<g > +<title>security_file_permission (10,101,010 samples, 0.04%)</title><rect x="253.5" y="629" width="0.6" height="15.0" fill="rgb(0,213,13)" rx="2" ry="2" /> +<text x="256.53" y="639.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="597.3" y="725" width="0.6" height="15.0" fill="rgb(0,234,13)" rx="2" ry="2" /> +<text x="600.34" y="735.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.04%)</title><rect x="216.4" y="645" width="0.5" height="15.0" fill="rgb(0,200,169)" rx="2" ry="2" /> +<text x="219.39" y="655.5" ></text> +</g> +<g > +<title>unlink_cb (40,404,040 samples, 0.15%)</title><rect x="146.9" y="725" width="2.1" height="15.0" fill="rgb(0,209,106)" rx="2" ry="2" /> +<text x="149.89" y="735.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="55.1" y="725" width="0.5" height="15.0" fill="rgb(0,200,181)" rx="2" ry="2" /> +<text x="58.10" y="735.5" ></text> +</g> +<g > +<title>file_update_time (10,101,010 samples, 0.04%)</title><rect x="1383.1" y="661" width="0.5" height="15.0" fill="rgb(0,210,2)" rx="2" ry="2" /> +<text x="1386.10" y="671.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.04%)</title><rect x="156.4" y="565" width="0.6" height="15.0" fill="rgb(0,234,84)" rx="2" ry="2" /> +<text x="159.44" y="575.5" ></text> +</g> +<g > +<title>git_signature_default (40,404,040 samples, 0.15%)</title><rect x="401.0" y="709" width="2.1" height="15.0" fill="rgb(0,194,197)" rx="2" ry="2" /> +<text x="404.03" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="194.1" y="709" width="3.2" height="15.0" fill="rgb(0,191,24)" rx="2" ry="2" /> +<text x="197.11" y="719.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="157.0" y="549" width="0.5" height="15.0" fill="rgb(0,230,79)" rx="2" ry="2" /> +<text x="159.97" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="288.5" y="709" width="0.6" height="15.0" fill="rgb(0,191,42)" rx="2" ry="2" /> +<text x="291.55" y="719.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="281.6" y="533" width="0.6" height="15.0" fill="rgb(0,232,172)" rx="2" ry="2" /> +<text x="284.65" y="543.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="482.2" y="693" width="0.5" height="15.0" fill="rgb(0,234,27)" rx="2" ry="2" /> +<text x="485.20" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="347.4" y="645" width="1.1" height="15.0" fill="rgb(0,203,186)" rx="2" ry="2" /> +<text x="350.44" y="655.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.08%)</title><rect x="420.7" y="597" width="1.0" height="15.0" fill="rgb(0,202,25)" rx="2" ry="2" /> +<text x="423.66" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_link (20,202,020 samples, 0.08%)</title><rect x="396.3" y="629" width="1.0" height="15.0" fill="rgb(0,196,133)" rx="2" ry="2" /> +<text x="399.25" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_getcwd (10,101,010 samples, 0.04%)</title><rect x="603.2" y="805" width="0.5" height="15.0" fill="rgb(0,207,63)" rx="2" ry="2" /> +<text x="606.17" y="815.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.04%)</title><rect x="400.5" y="421" width="0.5" height="15.0" fill="rgb(0,225,157)" rx="2" ry="2" /> +<text x="403.50" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="297.0" y="629" width="2.7" height="15.0" fill="rgb(0,208,175)" rx="2" ry="2" /> +<text x="300.04" y="639.5" ></text> +</g> +<g > +<title>ext4_es_remove_extent (10,101,010 samples, 0.04%)</title><rect x="135.7" y="501" width="0.6" height="15.0" fill="rgb(0,226,114)" rx="2" ry="2" /> +<text x="138.74" y="511.5" ></text> +</g> +<g > +<title>_raw_spin_trylock (10,101,010 samples, 0.04%)</title><rect x="166.5" y="581" width="0.5" height="15.0" fill="rgb(0,239,180)" rx="2" ry="2" /> +<text x="169.52" y="591.5" ></text> +</g> +<g > +<title>security_inode_alloc (10,101,010 samples, 0.04%)</title><rect x="418.5" y="565" width="0.6" height="15.0" fill="rgb(0,233,189)" rx="2" ry="2" /> +<text x="421.54" y="575.5" ></text> +</g> +<g > +<title>ext4_orphan_add (10,101,010 samples, 0.04%)</title><rect x="92.2" y="501" width="0.6" height="15.0" fill="rgb(0,218,146)" rx="2" ry="2" /> +<text x="95.24" y="511.5" ></text> +</g> +<g > +<title>ext4_rename (80,808,080 samples, 0.31%)</title><rect x="272.1" y="581" width="4.2" height="15.0" fill="rgb(0,204,0)" rx="2" ry="2" /> +<text x="275.10" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="289.6" y="629" width="1.6" height="15.0" fill="rgb(0,233,170)" rx="2" ry="2" /> +<text x="292.61" y="639.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="10.0" y="837" width="0.5" height="15.0" fill="rgb(0,193,116)" rx="2" ry="2" /> +<text x="13.00" y="847.5" ></text> +</g> +<g > +<title>jsonrpc_request_create_internal (10,101,010 samples, 0.04%)</title><rect x="899.8" y="853" width="0.5" height="15.0" fill="rgb(0,222,57)" rx="2" ry="2" /> +<text x="902.76" y="863.5" ></text> +</g> +<g > +<title>ip_local_out (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="581" width="1.6" height="15.0" fill="rgb(0,206,178)" rx="2" ry="2" /> +<text x="1371.78" y="591.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="243.4" y="677" width="0.6" height="15.0" fill="rgb(0,219,162)" rx="2" ry="2" /> +<text x="246.45" y="687.5" ></text> +</g> +<g > +<title>__getblk_gfp (20,202,020 samples, 0.08%)</title><rect x="138.9" y="405" width="1.1" height="15.0" fill="rgb(0,231,15)" rx="2" ry="2" /> +<text x="141.93" y="415.5" ></text> +</g> +<g > +<title>_IO_file_write (10,101,010 samples, 0.04%)</title><rect x="14.8" y="837" width="0.5" height="15.0" fill="rgb(0,208,49)" rx="2" ry="2" /> +<text x="17.78" y="847.5" ></text> +</g> +<g > +<title>remove (70,707,070 samples, 0.27%)</title><rect x="89.1" y="645" width="3.7" height="15.0" fill="rgb(0,207,72)" rx="2" ry="2" /> +<text x="92.05" y="655.5" ></text> +</g> +<g > +<title>grab_cache_page_write_begin (10,101,010 samples, 0.04%)</title><rect x="407.9" y="533" width="0.6" height="15.0" fill="rgb(0,224,25)" rx="2" ry="2" /> +<text x="410.92" y="543.5" ></text> +</g> +<g > +<title>vfs_write (60,606,060 samples, 0.23%)</title><rect x="423.8" y="661" width="3.2" height="15.0" fill="rgb(0,230,132)" rx="2" ry="2" /> +<text x="426.84" y="671.5" ></text> +</g> +<g > +<title>vfs_read (979,797,970 samples, 3.73%)</title><rect x="539.5" y="725" width="51.5" height="15.0" fill="rgb(0,222,121)" rx="2" ry="2" /> +<text x="542.50" y="735.5" >vfs_r..</text> +</g> +<g > +<title>__fput (20,202,020 samples, 0.08%)</title><rect x="259.4" y="629" width="1.0" height="15.0" fill="rgb(0,238,152)" rx="2" ry="2" /> +<text x="262.37" y="639.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.04%)</title><rect x="352.7" y="501" width="0.6" height="15.0" fill="rgb(0,234,56)" rx="2" ry="2" /> +<text x="355.75" y="511.5" ></text> +</g> +<g > +<title>inet_create.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="1372.5" y="757" width="0.5" height="15.0" fill="rgb(0,198,180)" rx="2" ry="2" /> +<text x="1375.49" y="767.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="137.3" y="389" width="0.6" height="15.0" fill="rgb(0,236,190)" rx="2" ry="2" /> +<text x="140.34" y="399.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (7,535,353,460 samples, 28.68%)</title><rect x="942.7" y="821" width="395.8" height="15.0" fill="rgb(0,220,131)" rx="2" ry="2" /> +<text x="945.73" y="831.5" >[libjson-c.so.5.1.0]</text> +</g> +<g > +<title>blk_mq_sched_insert_requests (20,202,020 samples, 0.08%)</title><rect x="273.7" y="437" width="1.1" height="15.0" fill="rgb(0,228,121)" rx="2" ry="2" /> +<text x="276.69" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="509.3" y="757" width="0.5" height="15.0" fill="rgb(0,204,42)" rx="2" ry="2" /> +<text x="512.26" y="767.5" ></text> +</g> +<g > +<title>__find_get_block_slow (20,202,020 samples, 0.08%)</title><rect x="120.9" y="469" width="1.0" height="15.0" fill="rgb(0,224,39)" rx="2" ry="2" /> +<text x="123.89" y="479.5" ></text> +</g> +<g > +<title>rmdir (30,303,030 samples, 0.12%)</title><rect x="179.3" y="773" width="1.5" height="15.0" fill="rgb(0,236,98)" rx="2" ry="2" /> +<text x="182.25" y="783.5" ></text> +</g> +<g > +<title>ext4_create (30,303,030 samples, 0.12%)</title><rect x="377.2" y="613" width="1.5" height="15.0" fill="rgb(0,230,81)" rx="2" ry="2" /> +<text x="380.15" y="623.5" ></text> +</g> +<g > +<title>file_modified (10,101,010 samples, 0.04%)</title><rect x="392.0" y="501" width="0.5" height="15.0" fill="rgb(0,237,58)" rx="2" ry="2" /> +<text x="395.01" y="511.5" ></text> +</g> +<g > +<title>bio_alloc_bioset (10,101,010 samples, 0.04%)</title><rect x="452.5" y="421" width="0.5" height="15.0" fill="rgb(0,203,35)" rx="2" ry="2" /> +<text x="455.49" y="431.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="116.1" y="613" width="0.5" height="15.0" fill="rgb(0,192,204)" rx="2" ry="2" /> +<text x="119.11" y="623.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.08%)</title><rect x="407.4" y="629" width="1.1" height="15.0" fill="rgb(0,207,147)" rx="2" ry="2" /> +<text x="410.39" y="639.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.04%)</title><rect x="169.7" y="677" width="0.5" height="15.0" fill="rgb(0,195,192)" rx="2" ry="2" /> +<text x="172.70" y="687.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="473.7" y="501" width="0.5" height="15.0" fill="rgb(0,237,53)" rx="2" ry="2" /> +<text x="476.71" y="511.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.08%)</title><rect x="127.8" y="533" width="1.0" height="15.0" fill="rgb(0,196,49)" rx="2" ry="2" /> +<text x="130.79" y="543.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (30,303,030 samples, 0.12%)</title><rect x="1379.9" y="613" width="1.6" height="15.0" fill="rgb(0,196,94)" rx="2" ry="2" /> +<text x="1382.92" y="623.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="116.1" y="677" width="0.5" height="15.0" fill="rgb(0,226,203)" rx="2" ry="2" /> +<text x="119.11" y="687.5" ></text> +</g> +<g > +<title>ext4_lock_group (10,101,010 samples, 0.04%)</title><rect x="269.4" y="405" width="0.6" height="15.0" fill="rgb(0,196,196)" rx="2" ry="2" /> +<text x="272.45" y="415.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (80,808,080 samples, 0.31%)</title><rect x="254.1" y="693" width="4.2" height="15.0" fill="rgb(0,210,63)" rx="2" ry="2" /> +<text x="257.06" y="703.5" ></text> +</g> +<g > +<title>from_kuid_munged (10,101,010 samples, 0.04%)</title><rect x="267.9" y="597" width="0.5" height="15.0" fill="rgb(0,197,173)" rx="2" ry="2" /> +<text x="270.85" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (373,737,370 samples, 1.42%)</title><rect x="510.3" y="773" width="19.7" height="15.0" fill="rgb(0,192,20)" rx="2" ry="2" /> +<text x="513.32" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="392.0" y="629" width="1.6" height="15.0" fill="rgb(0,196,106)" rx="2" ry="2" /> +<text x="395.01" y="639.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="597.3" y="741" width="0.6" height="15.0" fill="rgb(0,193,58)" rx="2" ry="2" /> +<text x="600.34" y="751.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="325" width="0.5" height="15.0" fill="rgb(0,236,136)" rx="2" ry="2" /> +<text x="1388.76" y="335.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="58.3" y="661" width="0.5" height="15.0" fill="rgb(0,234,130)" rx="2" ry="2" /> +<text x="61.28" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_sendto (575,757,570 samples, 2.19%)</title><rect x="1338.5" y="757" width="30.3" height="15.0" fill="rgb(0,207,36)" rx="2" ry="2" /> +<text x="1341.54" y="767.5" >__..</text> +</g> +<g > +<title>charge_memcg (10,101,010 samples, 0.04%)</title><rect x="76.3" y="709" width="0.6" height="15.0" fill="rgb(0,222,144)" rx="2" ry="2" /> +<text x="79.32" y="719.5" ></text> +</g> +<g > +<title>__do_sys_brk (10,101,010 samples, 0.04%)</title><rect x="930.0" y="661" width="0.5" height="15.0" fill="rgb(0,239,29)" rx="2" ry="2" /> +<text x="933.00" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (80,808,080 samples, 0.31%)</title><rect x="112.4" y="693" width="4.2" height="15.0" fill="rgb(0,213,171)" rx="2" ry="2" /> +<text x="115.40" y="703.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.04%)</title><rect x="303.4" y="437" width="0.5" height="15.0" fill="rgb(0,231,72)" rx="2" ry="2" /> +<text x="306.40" y="447.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.04%)</title><rect x="109.2" y="357" width="0.5" height="15.0" fill="rgb(0,201,37)" rx="2" ry="2" /> +<text x="112.22" y="367.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="294.4" y="565" width="0.5" height="15.0" fill="rgb(0,238,49)" rx="2" ry="2" /> +<text x="297.38" y="575.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="496.5" y="709" width="0.6" height="15.0" fill="rgb(0,211,170)" rx="2" ry="2" /> +<text x="499.53" y="719.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.04%)</title><rect x="216.9" y="757" width="0.6" height="15.0" fill="rgb(0,213,99)" rx="2" ry="2" /> +<text x="219.92" y="767.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (10,101,010 samples, 0.04%)</title><rect x="1384.2" y="661" width="0.5" height="15.0" fill="rgb(0,209,148)" rx="2" ry="2" /> +<text x="1387.16" y="671.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="1387.3" y="549" width="0.6" height="15.0" fill="rgb(0,203,17)" rx="2" ry="2" /> +<text x="1390.35" y="559.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="91.7" y="469" width="0.5" height="15.0" fill="rgb(0,193,197)" rx="2" ry="2" /> +<text x="94.71" y="479.5" ></text> +</g> +<g > +<title>sock_sendmsg (575,757,570 samples, 2.19%)</title><rect x="1338.5" y="725" width="30.3" height="15.0" fill="rgb(0,219,163)" rx="2" ry="2" /> +<text x="1341.54" y="735.5" >so..</text> +</g> +<g > +<title>__find_get_block (20,202,020 samples, 0.08%)</title><rect x="168.6" y="517" width="1.1" height="15.0" fill="rgb(0,235,155)" rx="2" ry="2" /> +<text x="171.64" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="85.3" y="789" width="1.1" height="15.0" fill="rgb(0,228,170)" rx="2" ry="2" /> +<text x="88.34" y="799.5" ></text> +</g> +<g > +<title>ext4_create (20,202,020 samples, 0.08%)</title><rect x="408.5" y="597" width="1.0" height="15.0" fill="rgb(0,211,197)" rx="2" ry="2" /> +<text x="411.45" y="607.5" ></text> +</g> +<g > +<title>server_wait_for_action (40,404,040 samples, 0.15%)</title><rect x="16.4" y="933" width="2.1" height="15.0" fill="rgb(0,208,174)" rx="2" ry="2" /> +<text x="19.37" y="943.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.04%)</title><rect x="185.1" y="597" width="0.5" height="15.0" fill="rgb(0,230,23)" rx="2" ry="2" /> +<text x="188.09" y="607.5" ></text> +</g> +<g > +<title>do_unlinkat (40,404,040 samples, 0.15%)</title><rect x="146.9" y="629" width="2.1" height="15.0" fill="rgb(0,225,191)" rx="2" ry="2" /> +<text x="149.89" y="639.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.08%)</title><rect x="348.5" y="565" width="1.1" height="15.0" fill="rgb(0,195,169)" rx="2" ry="2" /> +<text x="351.50" y="575.5" ></text> +</g> +<g > +<title>ima_file_check (20,202,020 samples, 0.08%)</title><rect x="63.1" y="805" width="1.0" height="15.0" fill="rgb(0,228,70)" rx="2" ry="2" /> +<text x="66.06" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="473.2" y="725" width="1.6" height="15.0" fill="rgb(0,231,153)" rx="2" ry="2" /> +<text x="476.18" y="735.5" ></text> +</g> +<g > +<title>__dentry_kill (50,505,050 samples, 0.19%)</title><rect x="340.0" y="597" width="2.7" height="15.0" fill="rgb(0,195,61)" rx="2" ry="2" /> +<text x="343.01" y="607.5" ></text> +</g> +<g > +<title>ext4_evict_inode (30,303,030 samples, 0.12%)</title><rect x="447.2" y="517" width="1.6" height="15.0" fill="rgb(0,229,177)" rx="2" ry="2" /> +<text x="450.19" y="527.5" ></text> +</g> +<g > +<title>__dentry_kill (30,303,030 samples, 0.12%)</title><rect x="447.2" y="581" width="1.6" height="15.0" fill="rgb(0,223,184)" rx="2" ry="2" /> +<text x="450.19" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="455.7" y="581" width="0.5" height="15.0" fill="rgb(0,235,92)" rx="2" ry="2" /> +<text x="458.67" y="591.5" ></text> +</g> +<g > +<title>__handle_mm_fault (10,101,010 samples, 0.04%)</title><rect x="92.8" y="549" width="0.5" height="15.0" fill="rgb(0,227,141)" rx="2" ry="2" /> +<text x="95.77" y="559.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="503.4" y="613" width="0.6" height="15.0" fill="rgb(0,222,24)" rx="2" ry="2" /> +<text x="506.43" y="623.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="330.5" y="421" width="0.5" height="15.0" fill="rgb(0,195,8)" rx="2" ry="2" /> +<text x="333.46" y="431.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="491.2" y="693" width="0.6" height="15.0" fill="rgb(0,194,110)" rx="2" ry="2" /> +<text x="494.22" y="703.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="602.1" y="757" width="0.5" height="15.0" fill="rgb(0,230,24)" rx="2" ry="2" /> +<text x="605.11" y="767.5" ></text> +</g> +<g > +<title>server_main (585,858,580 samples, 2.23%)</title><rect x="23.8" y="917" width="30.8" height="15.0" fill="rgb(0,219,107)" rx="2" ry="2" /> +<text x="26.79" y="927.5" >se..</text> +</g> +<g > +<title>add_to_page_cache_lru (10,101,010 samples, 0.04%)</title><rect x="426.5" y="533" width="0.5" height="15.0" fill="rgb(0,217,97)" rx="2" ry="2" /> +<text x="429.49" y="543.5" ></text> +</g> +<g > +<title>release_pages (10,101,010 samples, 0.04%)</title><rect x="434.5" y="437" width="0.5" height="15.0" fill="rgb(0,215,195)" rx="2" ry="2" /> +<text x="437.45" y="447.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="282.7" y="645" width="0.5" height="15.0" fill="rgb(0,238,8)" rx="2" ry="2" /> +<text x="285.71" y="655.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.04%)</title><rect x="365.5" y="453" width="0.5" height="15.0" fill="rgb(0,220,53)" rx="2" ry="2" /> +<text x="368.48" y="463.5" ></text> +</g> +<g > +<title>__destroy_inode (10,101,010 samples, 0.04%)</title><rect x="131.5" y="533" width="0.5" height="15.0" fill="rgb(0,208,174)" rx="2" ry="2" /> +<text x="134.50" y="543.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (20,202,020 samples, 0.08%)</title><rect x="325.2" y="517" width="1.0" height="15.0" fill="rgb(0,236,3)" rx="2" ry="2" /> +<text x="328.16" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="293.9" y="629" width="0.5" height="15.0" fill="rgb(0,196,187)" rx="2" ry="2" /> +<text x="296.85" y="639.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="414.3" y="517" width="0.5" height="15.0" fill="rgb(0,230,71)" rx="2" ry="2" /> +<text x="417.29" y="527.5" ></text> +</g> +<g > +<title>security_inode_permission (10,101,010 samples, 0.04%)</title><rect x="245.6" y="565" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="248.57" y="575.5" ></text> +</g> +<g > +<title>__fget_files (10,101,010 samples, 0.04%)</title><rect x="25.4" y="757" width="0.5" height="15.0" fill="rgb(0,228,40)" rx="2" ry="2" /> +<text x="28.39" y="767.5" ></text> +</g> +<g > +<title>do_softirq (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="437" width="0.6" height="15.0" fill="rgb(0,190,70)" rx="2" ry="2" /> +<text x="1388.22" y="447.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.04%)</title><rect x="391.5" y="629" width="0.5" height="15.0" fill="rgb(0,201,62)" rx="2" ry="2" /> +<text x="394.48" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="483.3" y="725" width="2.1" height="15.0" fill="rgb(0,207,169)" rx="2" ry="2" /> +<text x="486.26" y="735.5" ></text> +</g> +<g > +<title>scsi_dispatch_cmd (20,202,020 samples, 0.08%)</title><rect x="436.0" y="261" width="1.1" height="15.0" fill="rgb(0,192,152)" rx="2" ry="2" /> +<text x="439.04" y="271.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="57.2" y="613" width="0.6" height="15.0" fill="rgb(0,201,64)" rx="2" ry="2" /> +<text x="60.22" y="623.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.04%)</title><rect x="285.9" y="277" width="0.5" height="15.0" fill="rgb(0,224,92)" rx="2" ry="2" /> +<text x="288.89" y="287.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="307.1" y="517" width="0.5" height="15.0" fill="rgb(0,231,17)" rx="2" ry="2" /> +<text x="310.12" y="527.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="275.3" y="373" width="0.5" height="15.0" fill="rgb(0,225,68)" rx="2" ry="2" /> +<text x="278.28" y="383.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="98.1" y="485" width="0.5" height="15.0" fill="rgb(0,232,165)" rx="2" ry="2" /> +<text x="101.07" y="495.5" ></text> +</g> +<g > +<title>inet6_release (131,313,130 samples, 0.50%)</title><rect x="36.0" y="629" width="6.9" height="15.0" fill="rgb(0,228,197)" rx="2" ry="2" /> +<text x="39.00" y="639.5" ></text> +</g> +<g > +<title>git_config_add_backend (30,303,030 samples, 0.12%)</title><rect x="401.6" y="677" width="1.5" height="15.0" fill="rgb(0,225,205)" rx="2" ry="2" /> +<text x="404.56" y="687.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.04%)</title><rect x="93.8" y="517" width="0.6" height="15.0" fill="rgb(0,235,207)" rx="2" ry="2" /> +<text x="96.83" y="527.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="97.5" y="405" width="0.6" height="15.0" fill="rgb(0,218,156)" rx="2" ry="2" /> +<text x="100.54" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="287.0" y="597" width="1.0" height="15.0" fill="rgb(0,215,148)" rx="2" ry="2" /> +<text x="289.96" y="607.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="126.7" y="469" width="0.6" height="15.0" fill="rgb(0,190,74)" rx="2" ry="2" /> +<text x="129.72" y="479.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="419.6" y="501" width="0.5" height="15.0" fill="rgb(0,197,39)" rx="2" ry="2" /> +<text x="422.60" y="511.5" ></text> +</g> +<g > +<title>crc_32 (10,101,010 samples, 0.04%)</title><rect x="237.6" y="533" width="0.5" height="15.0" fill="rgb(0,220,57)" rx="2" ry="2" /> +<text x="240.61" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="246.6" y="693" width="0.6" height="15.0" fill="rgb(0,199,130)" rx="2" ry="2" /> +<text x="249.63" y="703.5" ></text> +</g> +<g > +<title>git_config_set_string (121,212,120 samples, 0.46%)</title><rect x="432.3" y="741" width="6.4" height="15.0" fill="rgb(0,210,199)" rx="2" ry="2" /> +<text x="435.33" y="751.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="275.3" y="341" width="0.5" height="15.0" fill="rgb(0,201,73)" rx="2" ry="2" /> +<text x="278.28" y="351.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="315.1" y="485" width="0.5" height="15.0" fill="rgb(0,208,118)" rx="2" ry="2" /> +<text x="318.07" y="495.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="320.9" y="533" width="0.5" height="15.0" fill="rgb(0,208,127)" rx="2" ry="2" /> +<text x="323.91" y="543.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.04%)</title><rect x="355.4" y="453" width="0.5" height="15.0" fill="rgb(0,231,140)" rx="2" ry="2" /> +<text x="358.40" y="463.5" ></text> +</g> +<g > +<title>do_brk_flags (10,101,010 samples, 0.04%)</title><rect x="619.6" y="693" width="0.5" height="15.0" fill="rgb(0,214,45)" rx="2" ry="2" /> +<text x="622.62" y="703.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.04%)</title><rect x="129.4" y="485" width="0.5" height="15.0" fill="rgb(0,199,4)" rx="2" ry="2" /> +<text x="132.38" y="495.5" ></text> +</g> +<g > +<title>__wake_up_sync_key (10,101,010 samples, 0.04%)</title><rect x="1369.8" y="261" width="0.6" height="15.0" fill="rgb(0,233,91)" rx="2" ry="2" /> +<text x="1372.84" y="271.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (40,404,040 samples, 0.15%)</title><rect x="420.7" y="693" width="2.1" height="15.0" fill="rgb(0,224,70)" rx="2" ry="2" /> +<text x="423.66" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.15%)</title><rect x="146.9" y="677" width="2.1" height="15.0" fill="rgb(0,226,204)" rx="2" ry="2" /> +<text x="149.89" y="687.5" ></text> +</g> +<g > +<title>__lookup_slow (50,505,050 samples, 0.19%)</title><rect x="79.5" y="805" width="2.7" height="15.0" fill="rgb(0,204,180)" rx="2" ry="2" /> +<text x="82.50" y="815.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (70,707,070 samples, 0.27%)</title><rect x="166.0" y="677" width="3.7" height="15.0" fill="rgb(0,217,16)" rx="2" ry="2" /> +<text x="168.99" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.23%)</title><rect x="95.4" y="629" width="3.2" height="15.0" fill="rgb(0,239,170)" rx="2" ry="2" /> +<text x="98.42" y="639.5" ></text> +</g> +<g > +<title>netif_rx (10,101,010 samples, 0.04%)</title><rect x="1381.0" y="389" width="0.5" height="15.0" fill="rgb(0,211,9)" rx="2" ry="2" /> +<text x="1383.98" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (303,030,300 samples, 1.15%)</title><rect x="260.4" y="741" width="15.9" height="15.0" fill="rgb(0,237,88)" rx="2" ry="2" /> +<text x="263.43" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="114.5" y="645" width="0.6" height="15.0" fill="rgb(0,200,120)" rx="2" ry="2" /> +<text x="117.52" y="655.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="898.7" y="773" width="0.5" height="15.0" fill="rgb(0,196,80)" rx="2" ry="2" /> +<text x="901.70" y="783.5" ></text> +</g> +<g > +<title>__handle_mm_fault (10,101,010 samples, 0.04%)</title><rect x="534.2" y="725" width="0.5" height="15.0" fill="rgb(0,203,172)" rx="2" ry="2" /> +<text x="537.20" y="735.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="383.5" y="501" width="0.5" height="15.0" fill="rgb(0,217,73)" rx="2" ry="2" /> +<text x="386.52" y="511.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.04%)</title><rect x="339.0" y="549" width="0.5" height="15.0" fill="rgb(0,226,54)" rx="2" ry="2" /> +<text x="341.95" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="496.5" y="693" width="0.6" height="15.0" fill="rgb(0,208,184)" rx="2" ry="2" /> +<text x="499.53" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="500.8" y="629" width="1.6" height="15.0" fill="rgb(0,211,119)" rx="2" ry="2" /> +<text x="503.77" y="639.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="596.8" y="597" width="0.5" height="15.0" fill="rgb(0,213,132)" rx="2" ry="2" /> +<text x="599.81" y="607.5" ></text> +</g> +<g > +<title>_IO_fprintf (20,202,020 samples, 0.08%)</title><rect x="1382.6" y="853" width="1.0" height="15.0" fill="rgb(0,194,113)" rx="2" ry="2" /> +<text x="1385.57" y="863.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.46%)</title><rect x="316.1" y="757" width="6.4" height="15.0" fill="rgb(0,227,119)" rx="2" ry="2" /> +<text x="319.14" y="767.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.04%)</title><rect x="305.0" y="421" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="307.99" y="431.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.04%)</title><rect x="284.3" y="485" width="0.5" height="15.0" fill="rgb(0,192,132)" rx="2" ry="2" /> +<text x="287.30" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="310.3" y="677" width="0.5" height="15.0" fill="rgb(0,232,105)" rx="2" ry="2" /> +<text x="313.30" y="687.5" ></text> +</g> +<g > +<title>schedule (20,202,020 samples, 0.08%)</title><rect x="435.0" y="389" width="1.0" height="15.0" fill="rgb(0,226,201)" rx="2" ry="2" /> +<text x="437.98" y="399.5" ></text> +</g> +<g > +<title>__x64_sys_openat (30,303,030 samples, 0.12%)</title><rect x="245.0" y="661" width="1.6" height="15.0" fill="rgb(0,199,94)" rx="2" ry="2" /> +<text x="248.04" y="671.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="430.2" y="629" width="0.5" height="15.0" fill="rgb(0,232,192)" rx="2" ry="2" /> +<text x="433.21" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="359.1" y="677" width="1.1" height="15.0" fill="rgb(0,204,168)" rx="2" ry="2" /> +<text x="362.11" y="687.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.15%)</title><rect x="456.7" y="613" width="2.2" height="15.0" fill="rgb(0,232,101)" rx="2" ry="2" /> +<text x="459.74" y="623.5" ></text> +</g> +<g > +<title>ext4_evict_inode (20,202,020 samples, 0.08%)</title><rect x="370.3" y="549" width="1.0" height="15.0" fill="rgb(0,216,88)" rx="2" ry="2" /> +<text x="373.25" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="298.1" y="581" width="1.1" height="15.0" fill="rgb(0,197,8)" rx="2" ry="2" /> +<text x="301.10" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="23.8" y="869" width="1.1" height="15.0" fill="rgb(0,219,126)" rx="2" ry="2" /> +<text x="26.79" y="879.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="201.5" y="693" width="1.1" height="15.0" fill="rgb(0,210,123)" rx="2" ry="2" /> +<text x="204.53" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="499.7" y="613" width="0.5" height="15.0" fill="rgb(0,231,76)" rx="2" ry="2" /> +<text x="502.71" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="317.2" y="661" width="1.1" height="15.0" fill="rgb(0,228,122)" rx="2" ry="2" /> +<text x="320.20" y="671.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="898.2" y="773" width="0.5" height="15.0" fill="rgb(0,212,24)" rx="2" ry="2" /> +<text x="901.17" y="783.5" ></text> +</g> +<g > +<title>__strdup (10,101,010 samples, 0.04%)</title><rect x="322.0" y="645" width="0.5" height="15.0" fill="rgb(0,230,141)" rx="2" ry="2" /> +<text x="324.97" y="655.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="167.6" y="581" width="0.5" height="15.0" fill="rgb(0,194,78)" rx="2" ry="2" /> +<text x="170.58" y="591.5" ></text> +</g> +<g > +<title>git_config_set_string (161,616,160 samples, 0.62%)</title><rect x="336.8" y="773" width="8.5" height="15.0" fill="rgb(0,237,111)" rx="2" ry="2" /> +<text x="339.83" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.23%)</title><rect x="153.3" y="709" width="3.1" height="15.0" fill="rgb(0,211,18)" rx="2" ry="2" /> +<text x="156.25" y="719.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="291.7" y="533" width="0.6" height="15.0" fill="rgb(0,195,131)" rx="2" ry="2" /> +<text x="294.73" y="543.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="473.7" y="581" width="0.5" height="15.0" fill="rgb(0,233,58)" rx="2" ry="2" /> +<text x="476.71" y="591.5" ></text> +</g> +<g > +<title>grab_cache_page_write_begin (10,101,010 samples, 0.04%)</title><rect x="426.5" y="565" width="0.5" height="15.0" fill="rgb(0,228,207)" rx="2" ry="2" /> +<text x="429.49" y="575.5" ></text> +</g> +<g > +<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="1376.7" y="709" width="0.6" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" /> +<text x="1379.74" y="719.5" ></text> +</g> +<g > +<title>ext4_add_entry (20,202,020 samples, 0.08%)</title><rect x="386.7" y="517" width="1.1" height="15.0" fill="rgb(0,238,110)" rx="2" ry="2" /> +<text x="389.70" y="527.5" ></text> +</g> +<g > +<title>events_to_string (10,101,010 samples, 0.04%)</title><rect x="1378.9" y="853" width="0.5" height="15.0" fill="rgb(0,234,185)" rx="2" ry="2" /> +<text x="1381.86" y="863.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="277" width="0.5" height="15.0" fill="rgb(0,228,80)" rx="2" ry="2" /> +<text x="1342.07" y="287.5" ></text> +</g> +<g > +<title>tasklet_action (10,101,010 samples, 0.04%)</title><rect x="201.0" y="469" width="0.5" height="15.0" fill="rgb(0,231,3)" rx="2" ry="2" /> +<text x="204.00" y="479.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (20,202,020 samples, 0.08%)</title><rect x="270.5" y="485" width="1.1" height="15.0" fill="rgb(0,193,154)" rx="2" ry="2" /> +<text x="273.51" y="495.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,191,919,180 samples, 4.54%)</title><rect x="86.4" y="741" width="62.6" height="15.0" fill="rgb(0,193,179)" rx="2" ry="2" /> +<text x="89.40" y="751.5" >[libc...</text> +</g> +<g > +<title>path_init (10,101,010 samples, 0.04%)</title><rect x="495.5" y="533" width="0.5" height="15.0" fill="rgb(0,197,115)" rx="2" ry="2" /> +<text x="498.47" y="543.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (40,404,040 samples, 0.15%)</title><rect x="1383.6" y="805" width="2.2" height="15.0" fill="rgb(0,238,19)" rx="2" ry="2" /> +<text x="1386.63" y="815.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.04%)</title><rect x="368.7" y="677" width="0.5" height="15.0" fill="rgb(0,233,115)" rx="2" ry="2" /> +<text x="371.66" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="208.4" y="741" width="2.7" height="15.0" fill="rgb(0,219,168)" rx="2" ry="2" /> +<text x="211.43" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="179.3" y="757" width="1.5" height="15.0" fill="rgb(0,229,30)" rx="2" ry="2" /> +<text x="182.25" y="767.5" ></text> +</g> +<g > +<title>tcp_data_queue (10,101,010 samples, 0.04%)</title><rect x="1368.2" y="261" width="0.6" height="15.0" fill="rgb(0,207,206)" rx="2" ry="2" /> +<text x="1371.25" y="271.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="282.7" y="629" width="0.5" height="15.0" fill="rgb(0,213,25)" rx="2" ry="2" /> +<text x="285.71" y="639.5" ></text> +</g> +<g > +<title>filename_parentat (10,101,010 samples, 0.04%)</title><rect x="454.1" y="661" width="0.5" height="15.0" fill="rgb(0,213,10)" rx="2" ry="2" /> +<text x="457.08" y="671.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.04%)</title><rect x="320.9" y="469" width="0.5" height="15.0" fill="rgb(0,239,165)" rx="2" ry="2" /> +<text x="323.91" y="479.5" ></text> +</g> +<g > +<title>add_mm_counter_fast (10,101,010 samples, 0.04%)</title><rect x="1327.9" y="629" width="0.6" height="15.0" fill="rgb(0,229,149)" rx="2" ry="2" /> +<text x="1330.92" y="639.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="134.7" y="485" width="0.5" height="15.0" fill="rgb(0,212,160)" rx="2" ry="2" /> +<text x="137.68" y="495.5" ></text> +</g> +<g > +<title>blk_finish_plug (20,202,020 samples, 0.08%)</title><rect x="273.7" y="485" width="1.1" height="15.0" fill="rgb(0,221,118)" rx="2" ry="2" /> +<text x="276.69" y="495.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="414.3" y="565" width="0.5" height="15.0" fill="rgb(0,217,17)" rx="2" ry="2" /> +<text x="417.29" y="575.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="74.2" y="661" width="0.5" height="15.0" fill="rgb(0,232,148)" rx="2" ry="2" /> +<text x="77.20" y="671.5" ></text> +</g> +<g > +<title>__mutex_lock.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="570.8" y="645" width="0.5" height="15.0" fill="rgb(0,230,91)" rx="2" ry="2" /> +<text x="573.81" y="655.5" ></text> +</g> +<g > +<title>iterate_dir (30,303,030 samples, 0.12%)</title><rect x="351.2" y="533" width="1.5" height="15.0" fill="rgb(0,193,48)" rx="2" ry="2" /> +<text x="354.15" y="543.5" ></text> +</g> +<g > +<title>nf_conntrack_in (10,101,010 samples, 0.04%)</title><rect x="1379.9" y="501" width="0.5" height="15.0" fill="rgb(0,196,28)" rx="2" ry="2" /> +<text x="1382.92" y="511.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.04%)</title><rect x="504.5" y="645" width="0.5" height="15.0" fill="rgb(0,208,92)" rx="2" ry="2" /> +<text x="507.49" y="655.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="930.0" y="805" width="0.5" height="15.0" fill="rgb(0,232,42)" rx="2" ry="2" /> +<text x="933.00" y="815.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="394.1" y="629" width="0.6" height="15.0" fill="rgb(0,224,65)" rx="2" ry="2" /> +<text x="397.13" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="416.9" y="709" width="1.1" height="15.0" fill="rgb(0,204,91)" rx="2" ry="2" /> +<text x="419.94" y="719.5" ></text> +</g> +<g > +<title>__libc_start_main (24,888,888,640 samples, 94.73%)</title><rect x="82.7" y="965" width="1307.3" height="15.0" fill="rgb(0,215,2)" rx="2" ry="2" /> +<text x="85.69" y="975.5" >__libc_start_main</text> +</g> +<g > +<title>__open64 (30,303,030 samples, 0.12%)</title><rect x="500.8" y="661" width="1.6" height="15.0" fill="rgb(0,195,105)" rx="2" ry="2" /> +<text x="503.77" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="395.7" y="581" width="0.6" height="15.0" fill="rgb(0,214,181)" rx="2" ry="2" /> +<text x="398.72" y="591.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="499.2" y="581" width="0.5" height="15.0" fill="rgb(0,219,193)" rx="2" ry="2" /> +<text x="502.18" y="591.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="309" width="0.5" height="15.0" fill="rgb(0,201,182)" rx="2" ry="2" /> +<text x="1388.76" y="319.5" ></text> +</g> +<g > +<title>flush_tlb_mm_range (10,101,010 samples, 0.04%)</title><rect x="522.5" y="661" width="0.6" height="15.0" fill="rgb(0,214,162)" rx="2" ry="2" /> +<text x="525.53" y="671.5" ></text> +</g> +<g > +<title>file_modified (10,101,010 samples, 0.04%)</title><rect x="413.2" y="501" width="0.6" height="15.0" fill="rgb(0,222,198)" rx="2" ry="2" /> +<text x="416.23" y="511.5" ></text> +</g> +<g > +<title>crc_38 (10,101,010 samples, 0.04%)</title><rect x="463.1" y="485" width="0.5" height="15.0" fill="rgb(0,198,11)" rx="2" ry="2" /> +<text x="466.10" y="495.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="317.7" y="565" width="0.6" height="15.0" fill="rgb(0,231,198)" rx="2" ry="2" /> +<text x="320.73" y="575.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.04%)</title><rect x="376.6" y="613" width="0.6" height="15.0" fill="rgb(0,234,72)" rx="2" ry="2" /> +<text x="379.62" y="623.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.04%)</title><rect x="18.0" y="821" width="0.5" height="15.0" fill="rgb(0,218,191)" rx="2" ry="2" /> +<text x="20.96" y="831.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="291.7" y="661" width="0.6" height="15.0" fill="rgb(0,215,34)" rx="2" ry="2" /> +<text x="294.73" y="671.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="210.6" y="597" width="0.5" height="15.0" fill="rgb(0,208,79)" rx="2" ry="2" /> +<text x="213.55" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (353,535,350 samples, 1.35%)</title><rect x="192.5" y="789" width="18.6" height="15.0" fill="rgb(0,220,174)" rx="2" ry="2" /> +<text x="195.51" y="799.5" ></text> +</g> +<g > +<title>find_vma (10,101,010 samples, 0.04%)</title><rect x="530.5" y="757" width="0.5" height="15.0" fill="rgb(0,201,23)" rx="2" ry="2" /> +<text x="533.48" y="767.5" ></text> +</g> +<g > +<title>__ip_finish_output (80,808,080 samples, 0.31%)</title><rect x="37.6" y="421" width="4.2" height="15.0" fill="rgb(0,207,98)" rx="2" ry="2" /> +<text x="40.59" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="316.7" y="693" width="0.5" height="15.0" fill="rgb(0,209,71)" rx="2" ry="2" /> +<text x="319.67" y="703.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.04%)</title><rect x="84.3" y="677" width="0.5" height="15.0" fill="rgb(0,194,192)" rx="2" ry="2" /> +<text x="87.28" y="687.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="102.3" y="693" width="1.1" height="15.0" fill="rgb(0,239,36)" rx="2" ry="2" /> +<text x="105.32" y="703.5" ></text> +</g> +<g > +<title>rw_verify_area (30,303,030 samples, 0.12%)</title><rect x="589.4" y="709" width="1.6" height="15.0" fill="rgb(0,211,132)" rx="2" ry="2" /> +<text x="592.38" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.04%)</title><rect x="280.6" y="581" width="0.5" height="15.0" fill="rgb(0,212,158)" rx="2" ry="2" /> +<text x="283.59" y="591.5" ></text> +</g> +<g > +<title>ext4_rename (80,808,080 samples, 0.31%)</title><rect x="371.3" y="613" width="4.3" height="15.0" fill="rgb(0,228,50)" rx="2" ry="2" /> +<text x="374.31" y="623.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="396.8" y="613" width="0.5" height="15.0" fill="rgb(0,211,67)" rx="2" ry="2" /> +<text x="399.78" y="623.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="102.8" y="581" width="0.6" height="15.0" fill="rgb(0,194,43)" rx="2" ry="2" /> +<text x="105.85" y="591.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.04%)</title><rect x="505.5" y="645" width="0.6" height="15.0" fill="rgb(0,225,55)" rx="2" ry="2" /> +<text x="508.55" y="655.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.04%)</title><rect x="419.1" y="453" width="0.5" height="15.0" fill="rgb(0,193,146)" rx="2" ry="2" /> +<text x="422.07" y="463.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="194.6" y="533" width="0.6" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" /> +<text x="197.64" y="543.5" ></text> +</g> +<g > +<title>ext4_truncate (20,202,020 samples, 0.08%)</title><rect x="329.9" y="517" width="1.1" height="15.0" fill="rgb(0,197,129)" rx="2" ry="2" /> +<text x="332.93" y="527.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="453.6" y="709" width="0.5" height="15.0" fill="rgb(0,205,45)" rx="2" ry="2" /> +<text x="456.55" y="719.5" ></text> +</g> +<g > +<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.04%)</title><rect x="10.5" y="501" width="0.6" height="15.0" fill="rgb(0,238,116)" rx="2" ry="2" /> +<text x="13.53" y="511.5" ></text> +</g> +<g > +<title>jsonrpc_request_create_internal (10,101,010 samples, 0.04%)</title><rect x="1389.5" y="853" width="0.5" height="15.0" fill="rgb(0,232,104)" rx="2" ry="2" /> +<text x="1392.47" y="863.5" ></text> +</g> +<g > +<title>__strftime_l (10,101,010 samples, 0.04%)</title><rect x="601.0" y="821" width="0.6" height="15.0" fill="rgb(0,206,209)" rx="2" ry="2" /> +<text x="604.05" y="831.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.12%)</title><rect x="68.9" y="725" width="1.6" height="15.0" fill="rgb(0,199,120)" rx="2" ry="2" /> +<text x="71.89" y="735.5" ></text> +</g> +<g > +<title>net_recv (20,202,020 samples, 0.08%)</title><rect x="1377.3" y="789" width="1.0" height="15.0" fill="rgb(0,235,203)" rx="2" ry="2" /> +<text x="1380.27" y="799.5" ></text> +</g> +<g > +<title>__x64_sys_write (40,404,040 samples, 0.15%)</title><rect x="206.3" y="661" width="2.1" height="15.0" fill="rgb(0,209,12)" rx="2" ry="2" /> +<text x="209.31" y="671.5" ></text> +</g> +<g > +<title>ip_finish_output2 (10,101,010 samples, 0.04%)</title><rect x="1387.3" y="597" width="0.6" height="15.0" fill="rgb(0,212,193)" rx="2" ry="2" /> +<text x="1390.35" y="607.5" ></text> +</g> +<g > +<title>__kfree_skb (10,101,010 samples, 0.04%)</title><rect x="39.2" y="117" width="0.5" height="15.0" fill="rgb(0,206,116)" rx="2" ry="2" /> +<text x="42.18" y="127.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="319.9" y="693" width="2.6" height="15.0" fill="rgb(0,194,75)" rx="2" ry="2" /> +<text x="322.85" y="703.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (30,303,030 samples, 0.12%)</title><rect x="1386.8" y="677" width="1.6" height="15.0" fill="rgb(0,223,205)" rx="2" ry="2" /> +<text x="1389.82" y="687.5" ></text> +</g> +<g > +<title>crc_5 (10,101,010 samples, 0.04%)</title><rect x="458.9" y="581" width="0.5" height="15.0" fill="rgb(0,226,162)" rx="2" ry="2" /> +<text x="461.86" y="591.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.04%)</title><rect x="230.2" y="565" width="0.5" height="15.0" fill="rgb(0,204,23)" rx="2" ry="2" /> +<text x="233.18" y="575.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="492.3" y="677" width="0.5" height="15.0" fill="rgb(0,229,118)" rx="2" ry="2" /> +<text x="495.28" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="509.3" y="773" width="0.5" height="15.0" fill="rgb(0,229,108)" rx="2" ry="2" /> +<text x="512.26" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.27%)</title><rect x="202.6" y="741" width="3.7" height="15.0" fill="rgb(0,234,10)" rx="2" ry="2" /> +<text x="205.60" y="751.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted.part.0 (10,101,010 samples, 0.04%)</title><rect x="57.8" y="613" width="0.5" height="15.0" fill="rgb(0,236,87)" rx="2" ry="2" /> +<text x="60.75" y="623.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="898.2" y="837" width="0.5" height="15.0" fill="rgb(0,218,136)" rx="2" ry="2" /> +<text x="901.17" y="847.5" ></text> +</g> +<g > +<title>__d_lookup (10,101,010 samples, 0.04%)</title><rect x="203.1" y="597" width="0.6" height="15.0" fill="rgb(0,192,158)" rx="2" ry="2" /> +<text x="206.13" y="607.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.08%)</title><rect x="329.9" y="469" width="1.1" height="15.0" fill="rgb(0,191,128)" rx="2" ry="2" /> +<text x="332.93" y="479.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.04%)</title><rect x="86.9" y="533" width="0.6" height="15.0" fill="rgb(0,232,207)" rx="2" ry="2" /> +<text x="89.93" y="543.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="101.3" y="629" width="0.5" height="15.0" fill="rgb(0,231,63)" rx="2" ry="2" /> +<text x="104.26" y="639.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (20,202,020 samples, 0.08%)</title><rect x="1371.4" y="709" width="1.1" height="15.0" fill="rgb(0,225,185)" rx="2" ry="2" /> +<text x="1374.43" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="189.9" y="677" width="0.5" height="15.0" fill="rgb(0,218,21)" rx="2" ry="2" /> +<text x="192.86" y="687.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.04%)</title><rect x="201.5" y="661" width="0.6" height="15.0" fill="rgb(0,208,101)" rx="2" ry="2" /> +<text x="204.53" y="671.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (20,202,020 samples, 0.08%)</title><rect x="447.7" y="501" width="1.1" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" /> +<text x="450.72" y="511.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.04%)</title><rect x="210.6" y="709" width="0.5" height="15.0" fill="rgb(0,198,52)" rx="2" ry="2" /> +<text x="213.55" y="719.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (30,303,030 samples, 0.12%)</title><rect x="1297.7" y="693" width="1.6" height="15.0" fill="rgb(0,201,102)" rx="2" ry="2" /> +<text x="1300.68" y="703.5" ></text> +</g> +<g > +<title>alloc_empty_file (20,202,020 samples, 0.08%)</title><rect x="99.1" y="597" width="1.1" height="15.0" fill="rgb(0,214,201)" rx="2" ry="2" /> +<text x="102.13" y="607.5" ></text> +</g> +<g > +<title>security_inode_need_killpriv (20,202,020 samples, 0.08%)</title><rect x="423.8" y="565" width="1.1" height="15.0" fill="rgb(0,208,39)" rx="2" ry="2" /> +<text x="426.84" y="575.5" ></text> +</g> +<g > +<title>__lookup_slow (40,404,040 samples, 0.15%)</title><rect x="428.1" y="597" width="2.1" height="15.0" fill="rgb(0,231,184)" rx="2" ry="2" /> +<text x="431.09" y="607.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (6,878,787,810 samples, 26.18%)</title><rect x="942.7" y="773" width="361.3" height="15.0" fill="rgb(0,216,147)" rx="2" ry="2" /> +<text x="945.73" y="783.5" >[libjson-c.so.5.1.0]</text> +</g> +<g > +<title>__x64_sys_rmdir (10,101,010 samples, 0.04%)</title><rect x="170.2" y="693" width="0.6" height="15.0" fill="rgb(0,192,196)" rx="2" ry="2" /> +<text x="173.23" y="703.5" ></text> +</g> +<g > +<title>sk_clone_lock (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="213" width="0.5" height="15.0" fill="rgb(0,227,93)" rx="2" ry="2" /> +<text x="1388.76" y="223.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.04%)</title><rect x="334.2" y="389" width="0.5" height="15.0" fill="rgb(0,210,58)" rx="2" ry="2" /> +<text x="337.18" y="399.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="227.5" y="693" width="0.6" height="15.0" fill="rgb(0,194,73)" rx="2" ry="2" /> +<text x="230.53" y="703.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="201.0" y="533" width="0.5" height="15.0" fill="rgb(0,193,0)" rx="2" ry="2" /> +<text x="204.00" y="543.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.04%)</title><rect x="143.7" y="549" width="0.5" height="15.0" fill="rgb(0,202,203)" rx="2" ry="2" /> +<text x="146.70" y="559.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (60,606,060 samples, 0.23%)</title><rect x="38.1" y="229" width="3.2" height="15.0" fill="rgb(0,222,102)" rx="2" ry="2" /> +<text x="41.12" y="239.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="294.9" y="549" width="0.5" height="15.0" fill="rgb(0,214,102)" rx="2" ry="2" /> +<text x="297.91" y="559.5" ></text> +</g> +<g > +<title>log_entry_start (20,202,020 samples, 0.08%)</title><rect x="600.5" y="853" width="1.1" height="15.0" fill="rgb(0,230,99)" rx="2" ry="2" /> +<text x="603.52" y="863.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="185.6" y="645" width="1.6" height="15.0" fill="rgb(0,203,80)" rx="2" ry="2" /> +<text x="188.62" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="211.1" y="757" width="0.5" height="15.0" fill="rgb(0,224,30)" rx="2" ry="2" /> +<text x="214.08" y="767.5" ></text> +</g> +<g > +<title>__snprintf_chk (10,101,010 samples, 0.04%)</title><rect x="1304.0" y="773" width="0.6" height="15.0" fill="rgb(0,212,43)" rx="2" ry="2" /> +<text x="1307.05" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="291.7" y="629" width="0.6" height="15.0" fill="rgb(0,216,186)" rx="2" ry="2" /> +<text x="294.73" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.04%)</title><rect x="328.3" y="661" width="0.6" height="15.0" fill="rgb(0,200,92)" rx="2" ry="2" /> +<text x="331.34" y="671.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.04%)</title><rect x="432.9" y="517" width="0.5" height="15.0" fill="rgb(0,237,21)" rx="2" ry="2" /> +<text x="435.86" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="266.3" y="677" width="0.5" height="15.0" fill="rgb(0,220,116)" rx="2" ry="2" /> +<text x="269.26" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="76.3" y="901" width="0.6" height="15.0" fill="rgb(0,236,182)" rx="2" ry="2" /> +<text x="79.32" y="911.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="189.9" y="693" width="1.0" height="15.0" fill="rgb(0,210,58)" rx="2" ry="2" /> +<text x="192.86" y="703.5" ></text> +</g> +<g > +<title>ext4_mb_prefetch (10,101,010 samples, 0.04%)</title><rect x="465.2" y="517" width="0.6" height="15.0" fill="rgb(0,235,153)" rx="2" ry="2" /> +<text x="468.22" y="527.5" ></text> +</g> +<g > +<title>__open64 (40,404,040 samples, 0.15%)</title><rect x="408.5" y="741" width="2.1" height="15.0" fill="rgb(0,230,3)" rx="2" ry="2" /> +<text x="411.45" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="473.7" y="629" width="0.5" height="15.0" fill="rgb(0,194,199)" rx="2" ry="2" /> +<text x="476.71" y="639.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="172.4" y="581" width="0.5" height="15.0" fill="rgb(0,206,23)" rx="2" ry="2" /> +<text x="175.35" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (292,929,290 samples, 1.11%)</title><rect x="438.7" y="741" width="15.4" height="15.0" fill="rgb(0,215,48)" rx="2" ry="2" /> +<text x="441.70" y="751.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.04%)</title><rect x="166.0" y="597" width="0.5" height="15.0" fill="rgb(0,193,59)" rx="2" ry="2" /> +<text x="168.99" y="607.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.04%)</title><rect x="367.1" y="405" width="0.5" height="15.0" fill="rgb(0,197,43)" rx="2" ry="2" /> +<text x="370.07" y="415.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.04%)</title><rect x="405.8" y="565" width="0.5" height="15.0" fill="rgb(0,218,78)" rx="2" ry="2" /> +<text x="408.80" y="575.5" ></text> +</g> +<g > +<title>ext4_getblk (20,202,020 samples, 0.08%)</title><rect x="120.9" y="517" width="1.0" height="15.0" fill="rgb(0,224,115)" rx="2" ry="2" /> +<text x="123.89" y="527.5" ></text> +</g> +<g > +<title>new_worker_request_create (10,101,010 samples, 0.04%)</title><rect x="1389.5" y="885" width="0.5" height="15.0" fill="rgb(0,227,159)" rx="2" ry="2" /> +<text x="1392.47" y="895.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="356.5" y="629" width="1.6" height="15.0" fill="rgb(0,206,204)" rx="2" ry="2" /> +<text x="359.46" y="639.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (20,202,020 samples, 0.08%)</title><rect x="16.9" y="741" width="1.1" height="15.0" fill="rgb(0,225,176)" rx="2" ry="2" /> +<text x="19.90" y="751.5" ></text> +</g> +<g > +<title>kernel_clone (373,737,370 samples, 1.42%)</title><rect x="510.3" y="725" width="19.7" height="15.0" fill="rgb(0,230,12)" rx="2" ry="2" /> +<text x="513.32" y="735.5" ></text> +</g> +<g > +<title>sock_def_readable (10,101,010 samples, 0.04%)</title><rect x="1369.8" y="277" width="0.6" height="15.0" fill="rgb(0,214,12)" rx="2" ry="2" /> +<text x="1372.84" y="287.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="501" width="0.5" height="15.0" fill="rgb(0,217,195)" rx="2" ry="2" /> +<text x="1389.82" y="511.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="220.6" y="613" width="1.1" height="15.0" fill="rgb(0,198,37)" rx="2" ry="2" /> +<text x="223.63" y="623.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (20,202,020 samples, 0.08%)</title><rect x="514.6" y="645" width="1.0" height="15.0" fill="rgb(0,207,61)" rx="2" ry="2" /> +<text x="517.57" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="401.0" y="645" width="0.6" height="15.0" fill="rgb(0,224,123)" rx="2" ry="2" /> +<text x="404.03" y="655.5" ></text> +</g> +<g > +<title>apparmor_task_alloc (10,101,010 samples, 0.04%)</title><rect x="529.4" y="677" width="0.6" height="15.0" fill="rgb(0,192,166)" rx="2" ry="2" /> +<text x="532.42" y="687.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.04%)</title><rect x="94.9" y="389" width="0.5" height="15.0" fill="rgb(0,220,27)" rx="2" ry="2" /> +<text x="97.89" y="399.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.04%)</title><rect x="205.2" y="629" width="0.6" height="15.0" fill="rgb(0,213,136)" rx="2" ry="2" /> +<text x="208.25" y="639.5" ></text> +</g> +<g > +<title>iput (20,202,020 samples, 0.08%)</title><rect x="309.2" y="533" width="1.1" height="15.0" fill="rgb(0,229,179)" rx="2" ry="2" /> +<text x="312.24" y="543.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.04%)</title><rect x="90.6" y="485" width="0.6" height="15.0" fill="rgb(0,222,196)" rx="2" ry="2" /> +<text x="93.65" y="495.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,101,010,090 samples, 4.19%)</title><rect x="86.4" y="725" width="57.8" height="15.0" fill="rgb(0,226,107)" rx="2" ry="2" /> +<text x="89.40" y="735.5" >[libc...</text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="602.1" y="805" width="0.5" height="15.0" fill="rgb(0,198,27)" rx="2" ry="2" /> +<text x="605.11" y="815.5" ></text> +</g> +<g > +<title>__ip_finish_output (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="533" width="1.6" height="15.0" fill="rgb(0,210,16)" rx="2" ry="2" /> +<text x="1370.19" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="490.2" y="773" width="1.6" height="15.0" fill="rgb(0,227,42)" rx="2" ry="2" /> +<text x="493.16" y="783.5" ></text> +</g> +<g > +<title>ksys_write (60,606,060 samples, 0.23%)</title><rect x="423.8" y="677" width="3.2" height="15.0" fill="rgb(0,214,129)" rx="2" ry="2" /> +<text x="426.84" y="687.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="229" width="0.5" height="15.0" fill="rgb(0,232,4)" rx="2" ry="2" /> +<text x="1370.19" y="239.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.35%)</title><rect x="261.5" y="693" width="4.8" height="15.0" fill="rgb(0,223,73)" rx="2" ry="2" /> +<text x="264.49" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="490.2" y="693" width="0.5" height="15.0" fill="rgb(0,222,77)" rx="2" ry="2" /> +<text x="493.16" y="703.5" ></text> +</g> +<g > +<title>anon_pipe_buf_release (10,101,010 samples, 0.04%)</title><rect x="540.6" y="693" width="0.5" height="15.0" fill="rgb(0,231,32)" rx="2" ry="2" /> +<text x="543.57" y="703.5" ></text> +</g> +<g > +<title>obj_cgroup_charge_pages (10,101,010 samples, 0.04%)</title><rect x="21.7" y="821" width="0.5" height="15.0" fill="rgb(0,197,77)" rx="2" ry="2" /> +<text x="24.67" y="831.5" ></text> +</g> +<g > +<title>__destroy_inode (10,101,010 samples, 0.04%)</title><rect x="369.7" y="533" width="0.6" height="15.0" fill="rgb(0,198,84)" rx="2" ry="2" /> +<text x="372.72" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.58%)</title><rect x="350.1" y="709" width="8.0" height="15.0" fill="rgb(0,193,84)" rx="2" ry="2" /> +<text x="353.09" y="719.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="154.8" y="581" width="0.6" height="15.0" fill="rgb(0,227,85)" rx="2" ry="2" /> +<text x="157.84" y="591.5" ></text> +</g> +<g > +<title>remove (20,202,020 samples, 0.08%)</title><rect x="170.2" y="757" width="1.1" height="15.0" fill="rgb(0,217,99)" rx="2" ry="2" /> +<text x="173.23" y="767.5" ></text> +</g> +<g > +<title>mpage_release_unused_pages (10,101,010 samples, 0.04%)</title><rect x="275.8" y="485" width="0.5" height="15.0" fill="rgb(0,231,191)" rx="2" ry="2" /> +<text x="278.81" y="495.5" ></text> +</g> +<g > +<title>add_to_page_cache_lru (10,101,010 samples, 0.04%)</title><rect x="284.3" y="437" width="0.5" height="15.0" fill="rgb(0,226,200)" rx="2" ry="2" /> +<text x="287.30" y="447.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.04%)</title><rect x="47.1" y="597" width="0.6" height="15.0" fill="rgb(0,238,100)" rx="2" ry="2" /> +<text x="50.14" y="607.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (10,101,010 samples, 0.04%)</title><rect x="95.4" y="533" width="0.6" height="15.0" fill="rgb(0,199,95)" rx="2" ry="2" /> +<text x="98.42" y="543.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.04%)</title><rect x="14.8" y="741" width="0.5" height="15.0" fill="rgb(0,228,196)" rx="2" ry="2" /> +<text x="17.78" y="751.5" ></text> +</g> +<g > +<title>ip_queue_xmit (30,303,030 samples, 0.12%)</title><rect x="1386.8" y="693" width="1.6" height="15.0" fill="rgb(0,200,134)" rx="2" ry="2" /> +<text x="1389.82" y="703.5" ></text> +</g> +<g > +<title>dentry_kill (30,303,030 samples, 0.12%)</title><rect x="447.2" y="597" width="1.6" height="15.0" fill="rgb(0,205,146)" rx="2" ry="2" /> +<text x="450.19" y="607.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (20,202,020 samples, 0.08%)</title><rect x="1365.6" y="277" width="1.1" height="15.0" fill="rgb(0,230,151)" rx="2" ry="2" /> +<text x="1368.59" y="287.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (10,101,010 samples, 0.04%)</title><rect x="178.2" y="677" width="0.5" height="15.0" fill="rgb(0,226,20)" rx="2" ry="2" /> +<text x="181.19" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (535,353,530 samples, 2.04%)</title><rect x="54.6" y="965" width="28.1" height="15.0" fill="rgb(0,222,53)" rx="2" ry="2" /> +<text x="57.57" y="975.5" >[..</text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.04%)</title><rect x="397.3" y="677" width="0.5" height="15.0" fill="rgb(0,194,57)" rx="2" ry="2" /> +<text x="400.31" y="687.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="287.5" y="421" width="0.5" height="15.0" fill="rgb(0,202,59)" rx="2" ry="2" /> +<text x="290.49" y="431.5" ></text> +</g> +<g > +<title>fsnotify_grab_connector (10,101,010 samples, 0.04%)</title><rect x="95.4" y="485" width="0.6" height="15.0" fill="rgb(0,207,13)" rx="2" ry="2" /> +<text x="98.42" y="495.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="210.0" y="693" width="0.6" height="15.0" fill="rgb(0,207,82)" rx="2" ry="2" /> +<text x="213.02" y="703.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="103.9" y="533" width="0.5" height="15.0" fill="rgb(0,238,18)" rx="2" ry="2" /> +<text x="106.91" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="1372.5" y="853" width="1.6" height="15.0" fill="rgb(0,227,52)" rx="2" ry="2" /> +<text x="1375.49" y="863.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="197.3" y="709" width="0.5" height="15.0" fill="rgb(0,222,74)" rx="2" ry="2" /> +<text x="200.29" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="379.3" y="725" width="1.0" height="15.0" fill="rgb(0,218,160)" rx="2" ry="2" /> +<text x="382.27" y="735.5" ></text> +</g> +<g > +<title>ext4_file_open (10,101,010 samples, 0.04%)</title><rect x="64.1" y="773" width="0.5" height="15.0" fill="rgb(0,206,142)" rx="2" ry="2" /> +<text x="67.12" y="783.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="473.7" y="549" width="0.5" height="15.0" fill="rgb(0,221,205)" rx="2" ry="2" /> +<text x="476.71" y="559.5" ></text> +</g> +<g > +<title>sock_put (10,101,010 samples, 0.04%)</title><rect x="38.7" y="181" width="0.5" height="15.0" fill="rgb(0,232,179)" rx="2" ry="2" /> +<text x="41.65" y="191.5" ></text> +</g> +<g > +<title>ext4_invalidatepage (10,101,010 samples, 0.04%)</title><rect x="168.1" y="549" width="0.5" height="15.0" fill="rgb(0,234,4)" rx="2" ry="2" /> +<text x="171.11" y="559.5" ></text> +</g> +<g > +<title>copy_user_enhanced_fast_string (444,444,440 samples, 1.69%)</title><rect x="546.9" y="677" width="23.4" height="15.0" fill="rgb(0,213,160)" rx="2" ry="2" /> +<text x="549.93" y="687.5" >c..</text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="309.2" y="645" width="1.1" height="15.0" fill="rgb(0,200,21)" rx="2" ry="2" /> +<text x="312.24" y="655.5" ></text> +</g> +<g > +<title>git_index_write (50,505,050 samples, 0.19%)</title><rect x="214.8" y="805" width="2.7" height="15.0" fill="rgb(0,195,68)" rx="2" ry="2" /> +<text x="217.80" y="815.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1375.1" y="725" width="0.6" height="15.0" fill="rgb(0,234,68)" rx="2" ry="2" /> +<text x="1378.14" y="735.5" ></text> +</g> +<g > +<title>file_free_rcu (10,101,010 samples, 0.04%)</title><rect x="167.0" y="437" width="0.6" height="15.0" fill="rgb(0,193,188)" rx="2" ry="2" /> +<text x="170.05" y="447.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (20,202,020 samples, 0.08%)</title><rect x="273.7" y="325" width="1.1" height="15.0" fill="rgb(0,233,170)" rx="2" ry="2" /> +<text x="276.69" y="335.5" ></text> +</g> +<g > +<title>dd_finish_request (10,101,010 samples, 0.04%)</title><rect x="285.9" y="197" width="0.5" height="15.0" fill="rgb(0,219,64)" rx="2" ry="2" /> +<text x="288.89" y="207.5" ></text> +</g> +<g > +<title>do_user_addr_fault (121,212,120 samples, 0.46%)</title><rect x="611.7" y="805" width="6.3" height="15.0" fill="rgb(0,192,175)" rx="2" ry="2" /> +<text x="614.66" y="815.5" ></text> +</g> +<g > +<title>do_rmdir (10,101,010 samples, 0.04%)</title><rect x="88.5" y="549" width="0.6" height="15.0" fill="rgb(0,219,144)" rx="2" ry="2" /> +<text x="91.52" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="369.2" y="677" width="0.5" height="15.0" fill="rgb(0,228,187)" rx="2" ry="2" /> +<text x="372.19" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="280.6" y="597" width="0.5" height="15.0" fill="rgb(0,190,155)" rx="2" ry="2" /> +<text x="283.59" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="146.4" y="709" width="0.5" height="15.0" fill="rgb(0,197,40)" rx="2" ry="2" /> +<text x="149.36" y="719.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="366.0" y="645" width="0.5" height="15.0" fill="rgb(0,210,206)" rx="2" ry="2" /> +<text x="369.01" y="655.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.04%)</title><rect x="1376.7" y="661" width="0.6" height="15.0" fill="rgb(0,199,189)" rx="2" ry="2" /> +<text x="1379.74" y="671.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.04%)</title><rect x="203.7" y="597" width="0.5" height="15.0" fill="rgb(0,207,198)" rx="2" ry="2" /> +<text x="206.66" y="607.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (30,303,030 samples, 0.12%)</title><rect x="448.8" y="453" width="1.6" height="15.0" fill="rgb(0,214,30)" rx="2" ry="2" /> +<text x="451.78" y="463.5" ></text> +</g> +<g > +<title>__dentry_kill (10,101,010 samples, 0.04%)</title><rect x="187.2" y="629" width="0.5" height="15.0" fill="rgb(0,235,124)" rx="2" ry="2" /> +<text x="190.21" y="639.5" ></text> +</g> +<g > +<title>ip_rcv (30,303,030 samples, 0.12%)</title><rect x="12.1" y="389" width="1.6" height="15.0" fill="rgb(0,212,71)" rx="2" ry="2" /> +<text x="15.12" y="399.5" ></text> +</g> +<g > +<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.04%)</title><rect x="373.4" y="437" width="0.6" height="15.0" fill="rgb(0,223,181)" rx="2" ry="2" /> +<text x="376.44" y="447.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="589.4" y="677" width="0.5" height="15.0" fill="rgb(0,209,159)" rx="2" ry="2" /> +<text x="592.38" y="687.5" ></text> +</g> +<g > +<title>ip_local_deliver (30,303,030 samples, 0.12%)</title><rect x="12.1" y="373" width="1.6" height="15.0" fill="rgb(0,193,157)" rx="2" ry="2" /> +<text x="15.12" y="383.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="261" width="0.6" height="15.0" fill="rgb(0,205,127)" rx="2" ry="2" /> +<text x="1388.22" y="271.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="15.8" y="645" width="0.6" height="15.0" fill="rgb(0,217,23)" rx="2" ry="2" /> +<text x="18.84" y="655.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.08%)</title><rect x="407.4" y="645" width="1.1" height="15.0" fill="rgb(0,223,41)" rx="2" ry="2" /> +<text x="410.39" y="655.5" ></text> +</g> +<g > +<title>__add_to_page_cache_locked (10,101,010 samples, 0.04%)</title><rect x="284.3" y="421" width="0.5" height="15.0" fill="rgb(0,192,84)" rx="2" ry="2" /> +<text x="287.30" y="431.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="418.5" y="549" width="0.6" height="15.0" fill="rgb(0,215,177)" rx="2" ry="2" /> +<text x="421.54" y="559.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.04%)</title><rect x="188.3" y="581" width="0.5" height="15.0" fill="rgb(0,236,142)" rx="2" ry="2" /> +<text x="191.27" y="591.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="411.1" y="693" width="0.5" height="15.0" fill="rgb(0,219,2)" rx="2" ry="2" /> +<text x="414.11" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (222,222,220 samples, 0.85%)</title><rect x="323.6" y="757" width="11.6" height="15.0" fill="rgb(0,238,71)" rx="2" ry="2" /> +<text x="326.56" y="767.5" ></text> +</g> +<g > +<title>git_reference_create (242,424,240 samples, 0.92%)</title><rect x="279.5" y="773" width="12.8" height="15.0" fill="rgb(0,238,0)" rx="2" ry="2" /> +<text x="282.53" y="783.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.04%)</title><rect x="349.6" y="661" width="0.5" height="15.0" fill="rgb(0,235,169)" rx="2" ry="2" /> +<text x="352.56" y="671.5" ></text> +</g> +<g > +<title>ip_finish_output (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="133" width="0.5" height="15.0" fill="rgb(0,216,124)" rx="2" ry="2" /> +<text x="1370.19" y="143.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.04%)</title><rect x="339.0" y="613" width="0.5" height="15.0" fill="rgb(0,237,89)" rx="2" ry="2" /> +<text x="341.95" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="281.6" y="613" width="1.1" height="15.0" fill="rgb(0,239,180)" rx="2" ry="2" /> +<text x="284.65" y="623.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.12%)</title><rect x="354.9" y="645" width="1.6" height="15.0" fill="rgb(0,226,58)" rx="2" ry="2" /> +<text x="357.87" y="655.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="231.8" y="469" width="0.5" height="15.0" fill="rgb(0,203,131)" rx="2" ry="2" /> +<text x="234.78" y="479.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="87.5" y="629" width="1.0" height="15.0" fill="rgb(0,214,150)" rx="2" ry="2" /> +<text x="90.46" y="639.5" ></text> +</g> +<g > +<title>ext4_read_block_bitmap (10,101,010 samples, 0.04%)</title><rect x="452.0" y="405" width="0.5" height="15.0" fill="rgb(0,236,186)" rx="2" ry="2" /> +<text x="454.96" y="415.5" ></text> +</g> +<g > +<title>ext4_truncate (121,212,120 samples, 0.46%)</title><rect x="134.7" y="533" width="6.3" height="15.0" fill="rgb(0,229,194)" rx="2" ry="2" /> +<text x="137.68" y="543.5" ></text> +</g> +<g > +<title>lru_cache_add (10,101,010 samples, 0.04%)</title><rect x="928.9" y="661" width="0.6" height="15.0" fill="rgb(0,202,72)" rx="2" ry="2" /> +<text x="931.94" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="328.3" y="677" width="0.6" height="15.0" fill="rgb(0,227,84)" rx="2" ry="2" /> +<text x="331.34" y="687.5" ></text> +</g> +<g > +<title>tcp_rcv_established (20,202,020 samples, 0.08%)</title><rect x="1365.6" y="261" width="1.1" height="15.0" fill="rgb(0,199,145)" rx="2" ry="2" /> +<text x="1368.59" y="271.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="490.2" y="789" width="2.1" height="15.0" fill="rgb(0,235,123)" rx="2" ry="2" /> +<text x="493.16" y="799.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.04%)</title><rect x="534.2" y="741" width="0.5" height="15.0" fill="rgb(0,225,191)" rx="2" ry="2" /> +<text x="537.20" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="177.7" y="757" width="1.6" height="15.0" fill="rgb(0,194,167)" rx="2" ry="2" /> +<text x="180.66" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="285.9" y="629" width="0.5" height="15.0" fill="rgb(0,236,3)" rx="2" ry="2" /> +<text x="288.89" y="639.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.04%)</title><rect x="391.5" y="501" width="0.5" height="15.0" fill="rgb(0,222,156)" rx="2" ry="2" /> +<text x="394.48" y="511.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="287.0" y="581" width="1.0" height="15.0" fill="rgb(0,201,149)" rx="2" ry="2" /> +<text x="289.96" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="74.2" y="725" width="0.5" height="15.0" fill="rgb(0,224,11)" rx="2" ry="2" /> +<text x="77.20" y="735.5" ></text> +</g> +<g > +<title>ext4_discard_preallocations (10,101,010 samples, 0.04%)</title><rect x="96.5" y="469" width="0.5" height="15.0" fill="rgb(0,207,69)" rx="2" ry="2" /> +<text x="99.48" y="479.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="501" width="0.5" height="15.0" fill="rgb(0,238,85)" rx="2" ry="2" /> +<text x="1342.60" y="511.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.04%)</title><rect x="303.4" y="549" width="0.5" height="15.0" fill="rgb(0,230,175)" rx="2" ry="2" /> +<text x="306.40" y="559.5" ></text> +</g> +<g > +<title>vmbus_on_event (10,101,010 samples, 0.04%)</title><rect x="131.0" y="405" width="0.5" height="15.0" fill="rgb(0,191,111)" rx="2" ry="2" /> +<text x="133.97" y="415.5" ></text> +</g> +<g > +<title>git_remote_create (444,444,440 samples, 1.69%)</title><rect x="323.6" y="805" width="23.3" height="15.0" fill="rgb(0,197,182)" rx="2" ry="2" /> +<text x="326.56" y="815.5" >g..</text> +</g> +<g > +<title>ip_output (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="565" width="0.5" height="15.0" fill="rgb(0,238,168)" rx="2" ry="2" /> +<text x="1342.60" y="575.5" ></text> +</g> +<g > +<title>_find_next_bit (10,101,010 samples, 0.04%)</title><rect x="463.6" y="517" width="0.6" height="15.0" fill="rgb(0,207,107)" rx="2" ry="2" /> +<text x="466.63" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (40,404,040 samples, 0.15%)</title><rect x="618.0" y="837" width="2.1" height="15.0" fill="rgb(0,215,116)" rx="2" ry="2" /> +<text x="621.03" y="847.5" ></text> +</g> +<g > +<title>do_futex (20,202,020 samples, 0.08%)</title><rect x="16.9" y="821" width="1.1" height="15.0" fill="rgb(0,228,83)" rx="2" ry="2" /> +<text x="19.90" y="831.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (20,202,020 samples, 0.08%)</title><rect x="457.3" y="565" width="1.0" height="15.0" fill="rgb(0,222,126)" rx="2" ry="2" /> +<text x="460.27" y="575.5" ></text> +</g> +<g > +<title>rseq_get_rseq_cs.isra.0 (10,101,010 samples, 0.04%)</title><rect x="411.1" y="613" width="0.5" height="15.0" fill="rgb(0,230,157)" rx="2" ry="2" /> +<text x="414.11" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="198.4" y="709" width="0.5" height="15.0" fill="rgb(0,210,147)" rx="2" ry="2" /> +<text x="201.35" y="719.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.04%)</title><rect x="491.8" y="693" width="0.5" height="15.0" fill="rgb(0,239,36)" rx="2" ry="2" /> +<text x="494.75" y="703.5" ></text> +</g> +<g > +<title>uncharge_batch (10,101,010 samples, 0.04%)</title><rect x="545.9" y="629" width="0.5" height="15.0" fill="rgb(0,213,187)" rx="2" ry="2" /> +<text x="548.87" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="185.1" y="693" width="0.5" height="15.0" fill="rgb(0,224,194)" rx="2" ry="2" /> +<text x="188.09" y="703.5" ></text> +</g> +<g > +<title>ext4_readdir (30,303,030 samples, 0.12%)</title><rect x="351.2" y="517" width="1.5" height="15.0" fill="rgb(0,211,175)" rx="2" ry="2" /> +<text x="354.15" y="527.5" ></text> +</g> +<g > +<title>ext4_rename (20,202,020 samples, 0.08%)</title><rect x="333.6" y="597" width="1.1" height="15.0" fill="rgb(0,232,208)" rx="2" ry="2" /> +<text x="336.64" y="607.5" ></text> +</g> +<g > +<title>git_branch_is_checked_out (171,717,170 samples, 0.65%)</title><rect x="292.3" y="757" width="9.0" height="15.0" fill="rgb(0,220,184)" rx="2" ry="2" /> +<text x="295.26" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="394.7" y="613" width="1.0" height="15.0" fill="rgb(0,208,171)" rx="2" ry="2" /> +<text x="397.66" y="623.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="64.1" y="677" width="0.5" height="15.0" fill="rgb(0,215,151)" rx="2" ry="2" /> +<text x="67.12" y="687.5" ></text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="101" width="0.5" height="15.0" fill="rgb(0,197,188)" rx="2" ry="2" /> +<text x="1342.07" y="111.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.54%)</title><rect x="301.8" y="677" width="7.4" height="15.0" fill="rgb(0,219,138)" rx="2" ry="2" /> +<text x="304.81" y="687.5" ></text> +</g> +<g > +<title>stpecpy (10,101,010 samples, 0.04%)</title><rect x="42.9" y="837" width="0.5" height="15.0" fill="rgb(0,196,113)" rx="2" ry="2" /> +<text x="45.90" y="847.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="386.2" y="469" width="0.5" height="15.0" fill="rgb(0,202,59)" rx="2" ry="2" /> +<text x="389.17" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="288.5" y="661" width="0.6" height="15.0" fill="rgb(0,198,109)" rx="2" ry="2" /> +<text x="291.55" y="671.5" ></text> +</g> +<g > +<title>_find_next_bit (10,101,010 samples, 0.04%)</title><rect x="204.7" y="581" width="0.5" height="15.0" fill="rgb(0,228,124)" rx="2" ry="2" /> +<text x="207.72" y="591.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="444.0" y="677" width="0.5" height="15.0" fill="rgb(0,206,107)" rx="2" ry="2" /> +<text x="447.00" y="687.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="1299.3" y="693" width="0.5" height="15.0" fill="rgb(0,216,16)" rx="2" ry="2" /> +<text x="1302.27" y="703.5" ></text> +</g> +<g > +<title>__get_user_8 (10,101,010 samples, 0.04%)</title><rect x="1383.6" y="725" width="0.6" height="15.0" fill="rgb(0,236,179)" rx="2" ry="2" /> +<text x="1386.63" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="216.9" y="725" width="0.6" height="15.0" fill="rgb(0,230,2)" rx="2" ry="2" /> +<text x="219.92" y="735.5" ></text> +</g> +<g > +<title>bvec_alloc (10,101,010 samples, 0.04%)</title><rect x="452.5" y="405" width="0.5" height="15.0" fill="rgb(0,193,158)" rx="2" ry="2" /> +<text x="455.49" y="415.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="377.2" y="549" width="0.5" height="15.0" fill="rgb(0,207,189)" rx="2" ry="2" /> +<text x="380.15" y="559.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="146.4" y="661" width="0.5" height="15.0" fill="rgb(0,223,146)" rx="2" ry="2" /> +<text x="149.36" y="671.5" ></text> +</g> +<g > +<title>client_destroy (252,525,250 samples, 0.96%)</title><rect x="29.6" y="853" width="13.3" height="15.0" fill="rgb(0,211,47)" rx="2" ry="2" /> +<text x="32.63" y="863.5" ></text> +</g> +<g > +<title>ext4_bread (20,202,020 samples, 0.08%)</title><rect x="250.3" y="549" width="1.1" height="15.0" fill="rgb(0,225,74)" rx="2" ry="2" /> +<text x="253.35" y="559.5" ></text> +</g> +<g > +<title>vfs_getattr_nosec (10,101,010 samples, 0.04%)</title><rect x="165.5" y="661" width="0.5" height="15.0" fill="rgb(0,237,110)" rx="2" ry="2" /> +<text x="168.46" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1388.9" y="853" width="0.6" height="15.0" fill="rgb(0,208,46)" rx="2" ry="2" /> +<text x="1391.94" y="863.5" ></text> +</g> +<g > +<title>filename_create (20,202,020 samples, 0.08%)</title><rect x="506.1" y="725" width="1.0" height="15.0" fill="rgb(0,214,35)" rx="2" ry="2" /> +<text x="509.08" y="735.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="64.1" y="709" width="0.5" height="15.0" fill="rgb(0,218,169)" rx="2" ry="2" /> +<text x="67.12" y="719.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (40,404,040 samples, 0.15%)</title><rect x="57.2" y="725" width="2.1" height="15.0" fill="rgb(0,218,111)" rx="2" ry="2" /> +<text x="60.22" y="735.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (50,505,050 samples, 0.19%)</title><rect x="273.7" y="533" width="2.6" height="15.0" fill="rgb(0,201,23)" rx="2" ry="2" /> +<text x="276.69" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="182.4" y="757" width="1.1" height="15.0" fill="rgb(0,217,125)" rx="2" ry="2" /> +<text x="185.43" y="767.5" ></text> +</g> +<g > +<title>__mem_cgroup_uncharge (10,101,010 samples, 0.04%)</title><rect x="545.9" y="645" width="0.5" height="15.0" fill="rgb(0,238,86)" rx="2" ry="2" /> +<text x="548.87" y="655.5" ></text> +</g> +<g > +<title>do_futex (40,404,040 samples, 0.15%)</title><rect x="30.2" y="757" width="2.1" height="15.0" fill="rgb(0,228,108)" rx="2" ry="2" /> +<text x="33.16" y="767.5" ></text> +</g> +<g > +<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.04%)</title><rect x="508.2" y="565" width="0.5" height="15.0" fill="rgb(0,231,126)" rx="2" ry="2" /> +<text x="511.20" y="575.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="426.0" y="533" width="0.5" height="15.0" fill="rgb(0,213,14)" rx="2" ry="2" /> +<text x="428.96" y="543.5" ></text> +</g> +<g > +<title>git_config_add_backend (40,404,040 samples, 0.15%)</title><rect x="477.4" y="709" width="2.2" height="15.0" fill="rgb(0,219,14)" rx="2" ry="2" /> +<text x="480.43" y="719.5" ></text> +</g> +<g > +<title>scsi_mq_get_budget (10,101,010 samples, 0.04%)</title><rect x="449.8" y="325" width="0.6" height="15.0" fill="rgb(0,230,38)" rx="2" ry="2" /> +<text x="452.84" y="335.5" ></text> +</g> +<g > +<title>do_softirq (40,404,040 samples, 0.15%)</title><rect x="1364.5" y="469" width="2.2" height="15.0" fill="rgb(0,208,118)" rx="2" ry="2" /> +<text x="1367.53" y="479.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="117" width="0.5" height="15.0" fill="rgb(0,232,98)" rx="2" ry="2" /> +<text x="1342.07" y="127.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="250.3" y="501" width="0.6" height="15.0" fill="rgb(0,226,38)" rx="2" ry="2" /> +<text x="253.35" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="395.7" y="597" width="0.6" height="15.0" fill="rgb(0,224,129)" rx="2" ry="2" /> +<text x="398.72" y="607.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="492.3" y="789" width="0.5" height="15.0" fill="rgb(0,201,173)" rx="2" ry="2" /> +<text x="495.28" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.46%)</title><rect x="350.1" y="677" width="6.4" height="15.0" fill="rgb(0,224,181)" rx="2" ry="2" /> +<text x="353.09" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="485.4" y="741" width="0.5" height="15.0" fill="rgb(0,226,125)" rx="2" ry="2" /> +<text x="488.39" y="751.5" ></text> +</g> +<g > +<title>irqentry_exit (10,101,010 samples, 0.04%)</title><rect x="1376.7" y="725" width="0.6" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" /> +<text x="1379.74" y="735.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.04%)</title><rect x="449.3" y="309" width="0.5" height="15.0" fill="rgb(0,215,14)" rx="2" ry="2" /> +<text x="452.31" y="319.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="75.3" y="821" width="0.5" height="15.0" fill="rgb(0,211,19)" rx="2" ry="2" /> +<text x="78.26" y="831.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.04%)</title><rect x="80.6" y="741" width="0.5" height="15.0" fill="rgb(0,199,208)" rx="2" ry="2" /> +<text x="83.57" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="478.5" y="581" width="0.5" height="15.0" fill="rgb(0,234,13)" rx="2" ry="2" /> +<text x="481.49" y="591.5" ></text> +</g> +<g > +<title>json_from_string (50,505,050 samples, 0.19%)</title><rect x="1374.6" y="805" width="2.7" height="15.0" fill="rgb(0,198,192)" rx="2" ry="2" /> +<text x="1377.61" y="815.5" ></text> +</g> +<g > +<title>git_config_get_string_buf (20,202,020 samples, 0.08%)</title><rect x="379.3" y="741" width="1.0" height="15.0" fill="rgb(0,199,184)" rx="2" ry="2" /> +<text x="382.27" y="751.5" ></text> +</g> +<g > +<title>git_revparse_ext (10,101,010 samples, 0.04%)</title><rect x="221.7" y="821" width="0.5" height="15.0" fill="rgb(0,235,125)" rx="2" ry="2" /> +<text x="224.70" y="831.5" ></text> +</g> +<g > +<title>unlink_cb (70,707,070 samples, 0.27%)</title><rect x="89.1" y="661" width="3.7" height="15.0" fill="rgb(0,219,15)" rx="2" ry="2" /> +<text x="92.05" y="671.5" ></text> +</g> +<g > +<title>netif_rx_internal (10,101,010 samples, 0.04%)</title><rect x="1381.0" y="373" width="0.5" height="15.0" fill="rgb(0,190,28)" rx="2" ry="2" /> +<text x="1383.98" y="383.5" ></text> +</g> +<g > +<title>_start (585,858,580 samples, 2.23%)</title><rect x="23.8" y="981" width="30.8" height="15.0" fill="rgb(0,237,58)" rx="2" ry="2" /> +<text x="26.79" y="991.5" >_s..</text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.04%)</title><rect x="143.7" y="613" width="0.5" height="15.0" fill="rgb(0,214,68)" rx="2" ry="2" /> +<text x="146.70" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="277.9" y="725" width="1.6" height="15.0" fill="rgb(0,220,175)" rx="2" ry="2" /> +<text x="280.94" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="315.6" y="741" width="0.5" height="15.0" fill="rgb(0,220,177)" rx="2" ry="2" /> +<text x="318.61" y="751.5" ></text> +</g> +<g > +<title>__blk_mq_delay_run_hw_queue (10,101,010 samples, 0.04%)</title><rect x="372.4" y="437" width="0.5" height="15.0" fill="rgb(0,199,92)" rx="2" ry="2" /> +<text x="375.38" y="447.5" ></text> +</g> +<g > +<title>_raw_read_lock (10,101,010 samples, 0.04%)</title><rect x="307.1" y="389" width="0.5" height="15.0" fill="rgb(0,223,193)" rx="2" ry="2" /> +<text x="310.12" y="399.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (40,404,040 samples, 0.15%)</title><rect x="591.0" y="757" width="2.1" height="15.0" fill="rgb(0,218,99)" rx="2" ry="2" /> +<text x="593.97" y="767.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="1374.6" y="757" width="0.5" height="15.0" fill="rgb(0,212,39)" rx="2" ry="2" /> +<text x="1377.61" y="767.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="587.8" y="629" width="0.5" height="15.0" fill="rgb(0,192,189)" rx="2" ry="2" /> +<text x="590.79" y="639.5" ></text> +</g> +<g > +<title>git_signature_default (20,202,020 samples, 0.08%)</title><rect x="189.9" y="773" width="1.0" height="15.0" fill="rgb(0,202,49)" rx="2" ry="2" /> +<text x="192.86" y="783.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="366.0" y="613" width="0.5" height="15.0" fill="rgb(0,198,183)" rx="2" ry="2" /> +<text x="369.01" y="623.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="406.9" y="517" width="0.5" height="15.0" fill="rgb(0,224,107)" rx="2" ry="2" /> +<text x="409.86" y="527.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.04%)</title><rect x="167.0" y="597" width="0.6" height="15.0" fill="rgb(0,214,80)" rx="2" ry="2" /> +<text x="170.05" y="607.5" ></text> +</g> +<g > +<title>do_get_write_access (10,101,010 samples, 0.04%)</title><rect x="367.1" y="485" width="0.5" height="15.0" fill="rgb(0,197,124)" rx="2" ry="2" /> +<text x="370.07" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="16.9" y="869" width="1.6" height="15.0" fill="rgb(0,198,177)" rx="2" ry="2" /> +<text x="19.90" y="879.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="202.1" y="661" width="0.5" height="15.0" fill="rgb(0,219,84)" rx="2" ry="2" /> +<text x="205.06" y="671.5" ></text> +</g> +<g > +<title>llist_add_batch (10,101,010 samples, 0.04%)</title><rect x="131.0" y="325" width="0.5" height="15.0" fill="rgb(0,197,28)" rx="2" ry="2" /> +<text x="133.97" y="335.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="367.1" y="533" width="0.5" height="15.0" fill="rgb(0,230,68)" rx="2" ry="2" /> +<text x="370.07" y="543.5" ></text> +</g> +<g > +<title>mark_page_accessed (10,101,010 samples, 0.04%)</title><rect x="385.6" y="421" width="0.6" height="15.0" fill="rgb(0,199,63)" rx="2" ry="2" /> +<text x="388.64" y="431.5" ></text> +</g> +<g > +<title>exc_page_fault (20,202,020 samples, 0.08%)</title><rect x="596.3" y="741" width="1.0" height="15.0" fill="rgb(0,233,89)" rx="2" ry="2" /> +<text x="599.27" y="751.5" ></text> +</g> +<g > +<title>ext4_lookup.part.0 (40,404,040 samples, 0.15%)</title><rect x="80.0" y="773" width="2.2" height="15.0" fill="rgb(0,237,90)" rx="2" ry="2" /> +<text x="83.03" y="783.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="308.2" y="533" width="0.5" height="15.0" fill="rgb(0,214,198)" rx="2" ry="2" /> +<text x="311.18" y="543.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (20,202,020 samples, 0.08%)</title><rect x="505.0" y="757" width="1.1" height="15.0" fill="rgb(0,229,190)" rx="2" ry="2" /> +<text x="508.02" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (101,010,100 samples, 0.38%)</title><rect x="156.4" y="677" width="5.3" height="15.0" fill="rgb(0,213,55)" rx="2" ry="2" /> +<text x="159.44" y="687.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="201.0" y="597" width="0.5" height="15.0" fill="rgb(0,239,150)" rx="2" ry="2" /> +<text x="204.00" y="607.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.04%)</title><rect x="364.9" y="581" width="0.6" height="15.0" fill="rgb(0,210,205)" rx="2" ry="2" /> +<text x="367.95" y="591.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (20,202,020 samples, 0.08%)</title><rect x="273.7" y="357" width="1.1" height="15.0" fill="rgb(0,207,148)" rx="2" ry="2" /> +<text x="276.69" y="367.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="299.2" y="549" width="0.5" height="15.0" fill="rgb(0,205,1)" rx="2" ry="2" /> +<text x="302.16" y="559.5" ></text> +</g> +<g > +<title>mb_find_order_for_block (10,101,010 samples, 0.04%)</title><rect x="464.7" y="485" width="0.5" height="15.0" fill="rgb(0,217,70)" rx="2" ry="2" /> +<text x="467.69" y="495.5" ></text> +</g> +<g > +<title>net_rx_action (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="453" width="1.6" height="15.0" fill="rgb(0,200,34)" rx="2" ry="2" /> +<text x="1371.78" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="285.9" y="645" width="1.1" height="15.0" fill="rgb(0,228,28)" rx="2" ry="2" /> +<text x="288.89" y="655.5" ></text> +</g> +<g > +<title>close_fd (10,101,010 samples, 0.04%)</title><rect x="368.7" y="613" width="0.5" height="15.0" fill="rgb(0,208,25)" rx="2" ry="2" /> +<text x="371.66" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="483.8" y="709" width="1.6" height="15.0" fill="rgb(0,193,5)" rx="2" ry="2" /> +<text x="486.79" y="719.5" ></text> +</g> +<g > +<title>xas_load (10,101,010 samples, 0.04%)</title><rect x="275.8" y="421" width="0.5" height="15.0" fill="rgb(0,200,153)" rx="2" ry="2" /> +<text x="278.81" y="431.5" ></text> +</g> +<g > +<title>prepend_path (10,101,010 samples, 0.04%)</title><rect x="603.7" y="757" width="0.5" height="15.0" fill="rgb(0,205,125)" rx="2" ry="2" /> +<text x="606.70" y="767.5" ></text> +</g> +<g > +<title>free_swap_cache (10,101,010 samples, 0.04%)</title><rect x="597.3" y="613" width="0.6" height="15.0" fill="rgb(0,222,12)" rx="2" ry="2" /> +<text x="600.34" y="623.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="495.5" y="565" width="0.5" height="15.0" fill="rgb(0,201,150)" rx="2" ry="2" /> +<text x="498.47" y="575.5" ></text> +</g> +<g > +<title>ip_rcv (60,606,060 samples, 0.23%)</title><rect x="38.1" y="261" width="3.2" height="15.0" fill="rgb(0,213,127)" rx="2" ry="2" /> +<text x="41.12" y="271.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.04%)</title><rect x="509.3" y="725" width="0.5" height="15.0" fill="rgb(0,239,198)" rx="2" ry="2" /> +<text x="512.26" y="735.5" ></text> +</g> +<g > +<title>crc_4 (10,101,010 samples, 0.04%)</title><rect x="387.2" y="453" width="0.6" height="15.0" fill="rgb(0,232,177)" rx="2" ry="2" /> +<text x="390.23" y="463.5" ></text> +</g> +<g > +<title>__ext4_journal_get_create_access (10,101,010 samples, 0.04%)</title><rect x="56.2" y="741" width="0.5" height="15.0" fill="rgb(0,200,101)" rx="2" ry="2" /> +<text x="59.16" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="277.4" y="709" width="0.5" height="15.0" fill="rgb(0,225,46)" rx="2" ry="2" /> +<text x="280.40" y="719.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.04%)</title><rect x="244.0" y="629" width="0.5" height="15.0" fill="rgb(0,191,103)" rx="2" ry="2" /> +<text x="246.98" y="639.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.04%)</title><rect x="307.1" y="485" width="0.5" height="15.0" fill="rgb(0,209,56)" rx="2" ry="2" /> +<text x="310.12" y="495.5" ></text> +</g> +<g > +<title>bit_wait_io (10,101,010 samples, 0.04%)</title><rect x="305.0" y="293" width="0.5" height="15.0" fill="rgb(0,230,107)" rx="2" ry="2" /> +<text x="307.99" y="303.5" ></text> +</g> +<g > +<title>ext4_bio_write_page (10,101,010 samples, 0.04%)</title><rect x="452.5" y="437" width="0.5" height="15.0" fill="rgb(0,230,176)" rx="2" ry="2" /> +<text x="455.49" y="447.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="74.2" y="645" width="0.5" height="15.0" fill="rgb(0,222,18)" rx="2" ry="2" /> +<text x="77.20" y="655.5" ></text> +</g> +<g > +<title>json_send (80,808,080 samples, 0.31%)</title><rect x="10.5" y="901" width="4.3" height="15.0" fill="rgb(0,206,53)" rx="2" ry="2" /> +<text x="13.53" y="911.5" ></text> +</g> +<g > +<title>git_object_lookup_prefix (60,606,060 samples, 0.23%)</title><rect x="217.5" y="805" width="3.1" height="15.0" fill="rgb(0,221,129)" rx="2" ry="2" /> +<text x="220.45" y="815.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.04%)</title><rect x="339.0" y="517" width="0.5" height="15.0" fill="rgb(0,222,131)" rx="2" ry="2" /> +<text x="341.95" y="527.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="242.9" y="549" width="0.5" height="15.0" fill="rgb(0,209,180)" rx="2" ry="2" /> +<text x="245.92" y="559.5" ></text> +</g> +<g > +<title>__tcp_ack_snd_check (10,101,010 samples, 0.04%)</title><rect x="12.7" y="277" width="0.5" height="15.0" fill="rgb(0,218,160)" rx="2" ry="2" /> +<text x="15.65" y="287.5" ></text> +</g> +<g > +<title>path_parentat (20,202,020 samples, 0.08%)</title><rect x="103.4" y="565" width="1.0" height="15.0" fill="rgb(0,220,103)" rx="2" ry="2" /> +<text x="106.38" y="575.5" ></text> +</g> +<g > +<title>storvsc_queuecommand (10,101,010 samples, 0.04%)</title><rect x="187.7" y="309" width="0.6" height="15.0" fill="rgb(0,201,11)" rx="2" ry="2" /> +<text x="190.74" y="319.5" ></text> +</g> +<g > +<title>____fput (161,616,160 samples, 0.62%)</title><rect x="34.4" y="693" width="8.5" height="15.0" fill="rgb(0,213,86)" rx="2" ry="2" /> +<text x="37.41" y="703.5" ></text> +</g> +<g > +<title>evict (30,303,030 samples, 0.12%)</title><rect x="369.7" y="565" width="1.6" height="15.0" fill="rgb(0,222,122)" rx="2" ry="2" /> +<text x="372.72" y="575.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (10,101,010 samples, 0.04%)</title><rect x="334.2" y="437" width="0.5" height="15.0" fill="rgb(0,205,30)" rx="2" ry="2" /> +<text x="337.18" y="447.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.08%)</title><rect x="103.4" y="549" width="1.0" height="15.0" fill="rgb(0,209,8)" rx="2" ry="2" /> +<text x="106.38" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="413.2" y="661" width="1.1" height="15.0" fill="rgb(0,223,112)" rx="2" ry="2" /> +<text x="416.23" y="671.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="472.1" y="725" width="0.6" height="15.0" fill="rgb(0,210,169)" rx="2" ry="2" /> +<text x="475.12" y="735.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.04%)</title><rect x="369.2" y="693" width="0.5" height="15.0" fill="rgb(0,214,149)" rx="2" ry="2" /> +<text x="372.19" y="703.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="228.6" y="469" width="0.5" height="15.0" fill="rgb(0,237,33)" rx="2" ry="2" /> +<text x="231.59" y="479.5" ></text> +</g> +<g > +<title>_raw_read_lock (10,101,010 samples, 0.04%)</title><rect x="343.2" y="469" width="0.5" height="15.0" fill="rgb(0,196,4)" rx="2" ry="2" /> +<text x="346.19" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_accept4 (50,505,050 samples, 0.19%)</title><rect x="46.1" y="773" width="2.6" height="15.0" fill="rgb(0,226,101)" rx="2" ry="2" /> +<text x="49.08" y="783.5" ></text> +</g> +<g > +<title>dentry_kill (10,101,010 samples, 0.04%)</title><rect x="15.8" y="709" width="0.6" height="15.0" fill="rgb(0,214,2)" rx="2" ry="2" /> +<text x="18.84" y="719.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.04%)</title><rect x="244.0" y="645" width="0.5" height="15.0" fill="rgb(0,223,1)" rx="2" ry="2" /> +<text x="246.98" y="655.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.12%)</title><rect x="245.0" y="597" width="1.6" height="15.0" fill="rgb(0,213,0)" rx="2" ry="2" /> +<text x="248.04" y="607.5" ></text> +</g> +<g > +<title>pcre_compile2 (10,101,010 samples, 0.04%)</title><rect x="334.7" y="741" width="0.5" height="15.0" fill="rgb(0,228,131)" rx="2" ry="2" /> +<text x="337.71" y="751.5" ></text> +</g> +<g > +<title>vfs_rmdir (101,010,100 samples, 0.38%)</title><rect x="156.4" y="629" width="5.3" height="15.0" fill="rgb(0,230,145)" rx="2" ry="2" /> +<text x="159.44" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.08%)</title><rect x="220.6" y="597" width="1.1" height="15.0" fill="rgb(0,220,200)" rx="2" ry="2" /> +<text x="223.63" y="607.5" ></text> +</g> +<g > +<title>ip_route_output_key_hash_rcu (10,101,010 samples, 0.04%)</title><rect x="1386.3" y="709" width="0.5" height="15.0" fill="rgb(0,210,48)" rx="2" ry="2" /> +<text x="1389.29" y="719.5" ></text> +</g> +<g > +<title>unlink_cb (90,909,090 samples, 0.35%)</title><rect x="171.8" y="789" width="4.8" height="15.0" fill="rgb(0,195,56)" rx="2" ry="2" /> +<text x="174.82" y="799.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="469.5" y="597" width="0.5" height="15.0" fill="rgb(0,235,99)" rx="2" ry="2" /> +<text x="472.47" y="607.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (20,202,020 samples, 0.08%)</title><rect x="451.4" y="421" width="1.1" height="15.0" fill="rgb(0,197,45)" rx="2" ry="2" /> +<text x="454.43" y="431.5" ></text> +</g> +<g > +<title>find_vm_area (10,101,010 samples, 0.04%)</title><rect x="21.1" y="853" width="0.6" height="15.0" fill="rgb(0,208,16)" rx="2" ry="2" /> +<text x="24.14" y="863.5" ></text> +</g> +<g > +<title>tcp_event_data_recv (10,101,010 samples, 0.04%)</title><rect x="1366.1" y="229" width="0.6" height="15.0" fill="rgb(0,204,200)" rx="2" ry="2" /> +<text x="1369.12" y="239.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.08%)</title><rect x="356.5" y="469" width="1.0" height="15.0" fill="rgb(0,220,23)" rx="2" ry="2" /> +<text x="359.46" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="185.6" y="677" width="1.6" height="15.0" fill="rgb(0,228,98)" rx="2" ry="2" /> +<text x="188.62" y="687.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="136.8" y="453" width="0.5" height="15.0" fill="rgb(0,205,142)" rx="2" ry="2" /> +<text x="139.81" y="463.5" ></text> +</g> +<g > +<title>alloc_pages_vma (80,808,080 samples, 0.31%)</title><rect x="924.7" y="677" width="4.2" height="15.0" fill="rgb(0,226,28)" rx="2" ry="2" /> +<text x="927.69" y="687.5" ></text> +</g> +<g > +<title>__check_heap_object (10,101,010 samples, 0.04%)</title><rect x="151.1" y="533" width="0.6" height="15.0" fill="rgb(0,213,94)" rx="2" ry="2" /> +<text x="154.13" y="543.5" ></text> +</g> +<g > +<title>grab_cache_page_write_begin (10,101,010 samples, 0.04%)</title><rect x="440.3" y="485" width="0.5" height="15.0" fill="rgb(0,217,41)" rx="2" ry="2" /> +<text x="443.29" y="495.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="491.2" y="597" width="0.6" height="15.0" fill="rgb(0,231,90)" rx="2" ry="2" /> +<text x="494.22" y="607.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="457.3" y="549" width="0.5" height="15.0" fill="rgb(0,223,131)" rx="2" ry="2" /> +<text x="460.27" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="484.3" y="677" width="1.1" height="15.0" fill="rgb(0,239,205)" rx="2" ry="2" /> +<text x="487.33" y="687.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="320.9" y="613" width="0.5" height="15.0" fill="rgb(0,216,183)" rx="2" ry="2" /> +<text x="323.91" y="623.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="221.7" y="373" width="0.5" height="15.0" fill="rgb(0,238,28)" rx="2" ry="2" /> +<text x="224.70" y="383.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="345.8" y="693" width="0.6" height="15.0" fill="rgb(0,234,201)" rx="2" ry="2" /> +<text x="348.85" y="703.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="257.8" y="629" width="0.5" height="15.0" fill="rgb(0,216,8)" rx="2" ry="2" /> +<text x="260.77" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="397.3" y="661" width="0.5" height="15.0" fill="rgb(0,229,180)" rx="2" ry="2" /> +<text x="400.31" y="671.5" ></text> +</g> +<g > +<title>anon_pipe_buf_release (20,202,020 samples, 0.08%)</title><rect x="545.3" y="677" width="1.1" height="15.0" fill="rgb(0,226,68)" rx="2" ry="2" /> +<text x="548.34" y="687.5" ></text> +</g> +<g > +<title>json_get (10,101,010 samples, 0.04%)</title><rect x="1378.3" y="789" width="0.6" height="15.0" fill="rgb(0,233,164)" rx="2" ry="2" /> +<text x="1381.33" y="799.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="54.0" y="821" width="0.6" height="15.0" fill="rgb(0,226,166)" rx="2" ry="2" /> +<text x="57.04" y="831.5" ></text> +</g> +<g > +<title>walk_component (20,202,020 samples, 0.08%)</title><rect x="254.6" y="581" width="1.1" height="15.0" fill="rgb(0,200,58)" rx="2" ry="2" /> +<text x="257.59" y="591.5" ></text> +</g> +<g > +<title>net_rx_action (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="389" width="0.5" height="15.0" fill="rgb(0,192,92)" rx="2" ry="2" /> +<text x="1342.07" y="399.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="357.0" y="389" width="0.5" height="15.0" fill="rgb(0,211,194)" rx="2" ry="2" /> +<text x="359.99" y="399.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="97.0" y="373" width="0.5" height="15.0" fill="rgb(0,201,115)" rx="2" ry="2" /> +<text x="100.01" y="383.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="355.4" y="549" width="0.5" height="15.0" fill="rgb(0,222,168)" rx="2" ry="2" /> +<text x="358.40" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="220.6" y="805" width="1.1" height="15.0" fill="rgb(0,218,191)" rx="2" ry="2" /> +<text x="223.63" y="815.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="109.2" y="421" width="0.5" height="15.0" fill="rgb(0,209,143)" rx="2" ry="2" /> +<text x="112.22" y="431.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.04%)</title><rect x="221.7" y="501" width="0.5" height="15.0" fill="rgb(0,192,173)" rx="2" ry="2" /> +<text x="224.70" y="511.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="454.6" y="645" width="1.1" height="15.0" fill="rgb(0,191,44)" rx="2" ry="2" /> +<text x="457.61" y="655.5" ></text> +</g> +<g > +<title>stop_this_handle (20,202,020 samples, 0.08%)</title><rect x="106.0" y="501" width="1.1" height="15.0" fill="rgb(0,232,54)" rx="2" ry="2" /> +<text x="109.03" y="511.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="160.1" y="485" width="0.6" height="15.0" fill="rgb(0,217,178)" rx="2" ry="2" /> +<text x="163.15" y="495.5" ></text> +</g> +<g > +<title>iput (80,808,080 samples, 0.31%)</title><rect x="328.9" y="565" width="4.2" height="15.0" fill="rgb(0,196,102)" rx="2" ry="2" /> +<text x="331.87" y="575.5" ></text> +</g> +<g > +<title>getname (10,101,010 samples, 0.04%)</title><rect x="440.8" y="597" width="0.5" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="443.82" y="607.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.04%)</title><rect x="168.1" y="597" width="0.5" height="15.0" fill="rgb(0,236,32)" rx="2" ry="2" /> +<text x="171.11" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="297.0" y="581" width="1.1" height="15.0" fill="rgb(0,191,198)" rx="2" ry="2" /> +<text x="300.04" y="591.5" ></text> +</g> +<g > +<title>clear_page_erms (10,101,010 samples, 0.04%)</title><rect x="440.3" y="389" width="0.5" height="15.0" fill="rgb(0,230,110)" rx="2" ry="2" /> +<text x="443.29" y="399.5" ></text> +</g> +<g > +<title>ci_cleanup_git_repo (1,888,888,870 samples, 7.19%)</title><rect x="82.7" y="869" width="99.2" height="15.0" fill="rgb(0,222,145)" rx="2" ry="2" /> +<text x="85.69" y="879.5" >ci_cleanup_g..</text> +</g> +<g > +<title>close_fd (10,101,010 samples, 0.04%)</title><rect x="328.3" y="645" width="0.6" height="15.0" fill="rgb(0,198,4)" rx="2" ry="2" /> +<text x="331.34" y="655.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="378.2" y="501" width="0.5" height="15.0" fill="rgb(0,219,85)" rx="2" ry="2" /> +<text x="381.21" y="511.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="333.6" y="565" width="0.6" height="15.0" fill="rgb(0,231,1)" rx="2" ry="2" /> +<text x="336.64" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.04%)</title><rect x="180.8" y="725" width="0.6" height="15.0" fill="rgb(0,212,154)" rx="2" ry="2" /> +<text x="183.84" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (20,202,020 samples, 0.08%)</title><rect x="318.3" y="661" width="1.0" height="15.0" fill="rgb(0,205,104)" rx="2" ry="2" /> +<text x="321.26" y="671.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="282.7" y="565" width="0.5" height="15.0" fill="rgb(0,195,79)" rx="2" ry="2" /> +<text x="285.71" y="575.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="444.0" y="629" width="0.5" height="15.0" fill="rgb(0,199,63)" rx="2" ry="2" /> +<text x="447.00" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="356.5" y="517" width="1.0" height="15.0" fill="rgb(0,204,86)" rx="2" ry="2" /> +<text x="359.46" y="527.5" ></text> +</g> +<g > +<title>mark_buffer_dirty (10,101,010 samples, 0.04%)</title><rect x="207.9" y="517" width="0.5" height="15.0" fill="rgb(0,225,143)" rx="2" ry="2" /> +<text x="210.90" y="527.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="485" width="0.6" height="15.0" fill="rgb(0,230,156)" rx="2" ry="2" /> +<text x="1383.45" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="291.7" y="597" width="0.6" height="15.0" fill="rgb(0,199,139)" rx="2" ry="2" /> +<text x="294.73" y="607.5" ></text> +</g> +<g > +<title>ext4_es_insert_extent (10,101,010 samples, 0.04%)</title><rect x="388.8" y="437" width="0.6" height="15.0" fill="rgb(0,211,143)" rx="2" ry="2" /> +<text x="391.82" y="447.5" ></text> +</g> +<g > +<title>getdents64 (161,616,160 samples, 0.62%)</title><rect x="117.7" y="693" width="8.5" height="15.0" fill="rgb(0,212,5)" rx="2" ry="2" /> +<text x="120.70" y="703.5" ></text> +</g> +<g > +<title>ext4_getblk (60,606,060 samples, 0.23%)</title><rect x="56.2" y="757" width="3.1" height="15.0" fill="rgb(0,235,181)" rx="2" ry="2" /> +<text x="59.16" y="767.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="534.2" y="789" width="0.5" height="15.0" fill="rgb(0,230,8)" rx="2" ry="2" /> +<text x="537.20" y="799.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.04%)</title><rect x="406.3" y="533" width="0.6" height="15.0" fill="rgb(0,223,192)" rx="2" ry="2" /> +<text x="409.33" y="543.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="292.3" y="533" width="0.5" height="15.0" fill="rgb(0,231,117)" rx="2" ry="2" /> +<text x="295.26" y="543.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="245" width="0.5" height="15.0" fill="rgb(0,205,3)" rx="2" ry="2" /> +<text x="1342.07" y="255.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.04%)</title><rect x="230.2" y="581" width="0.5" height="15.0" fill="rgb(0,222,184)" rx="2" ry="2" /> +<text x="233.18" y="591.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="597" width="1.6" height="15.0" fill="rgb(0,204,76)" rx="2" ry="2" /> +<text x="1371.78" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (101,010,100 samples, 0.38%)</title><rect x="18.5" y="949" width="5.3" height="15.0" fill="rgb(0,222,141)" rx="2" ry="2" /> +<text x="21.49" y="959.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.04%)</title><rect x="516.7" y="581" width="0.5" height="15.0" fill="rgb(0,230,178)" rx="2" ry="2" /> +<text x="519.69" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="366.0" y="693" width="0.5" height="15.0" fill="rgb(0,228,107)" rx="2" ry="2" /> +<text x="369.01" y="703.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (40,404,040 samples, 0.15%)</title><rect x="39.2" y="181" width="2.1" height="15.0" fill="rgb(0,208,98)" rx="2" ry="2" /> +<text x="42.18" y="191.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.08%)</title><rect x="348.5" y="581" width="1.1" height="15.0" fill="rgb(0,197,123)" rx="2" ry="2" /> +<text x="351.50" y="591.5" ></text> +</g> +<g > +<title>__sock_release (131,313,130 samples, 0.50%)</title><rect x="36.0" y="645" width="6.9" height="15.0" fill="rgb(0,226,61)" rx="2" ry="2" /> +<text x="39.00" y="655.5" ></text> +</g> +<g > +<title>do_get_write_access (10,101,010 samples, 0.04%)</title><rect x="148.5" y="517" width="0.5" height="15.0" fill="rgb(0,217,78)" rx="2" ry="2" /> +<text x="151.48" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="292.3" y="613" width="0.5" height="15.0" fill="rgb(0,226,118)" rx="2" ry="2" /> +<text x="295.26" y="623.5" ></text> +</g> +<g > +<title>ext4_getblk (50,505,050 samples, 0.19%)</title><rect x="388.3" y="469" width="2.6" height="15.0" fill="rgb(0,204,198)" rx="2" ry="2" /> +<text x="391.29" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="285.4" y="629" width="0.5" height="15.0" fill="rgb(0,220,10)" rx="2" ry="2" /> +<text x="288.36" y="639.5" ></text> +</g> +<g > +<title>evict (10,101,010 samples, 0.04%)</title><rect x="187.2" y="581" width="0.5" height="15.0" fill="rgb(0,235,87)" rx="2" ry="2" /> +<text x="190.21" y="591.5" ></text> +</g> +<g > +<title>git_filter_list_stream_blob (40,404,040 samples, 0.15%)</title><rect x="206.3" y="773" width="2.1" height="15.0" fill="rgb(0,219,167)" rx="2" ry="2" /> +<text x="209.31" y="783.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="333.6" y="581" width="0.6" height="15.0" fill="rgb(0,202,36)" rx="2" ry="2" /> +<text x="336.64" y="591.5" ></text> +</g> +<g > +<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="459.9" y="565" width="0.5" height="15.0" fill="rgb(0,239,17)" rx="2" ry="2" /> +<text x="462.92" y="575.5" ></text> +</g> +<g > +<title>__dentry_kill (20,202,020 samples, 0.08%)</title><rect x="414.8" y="565" width="1.1" height="15.0" fill="rgb(0,219,155)" rx="2" ry="2" /> +<text x="417.82" y="575.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.04%)</title><rect x="108.7" y="501" width="0.5" height="15.0" fill="rgb(0,211,177)" rx="2" ry="2" /> +<text x="111.69" y="511.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.08%)</title><rect x="489.1" y="565" width="1.1" height="15.0" fill="rgb(0,209,16)" rx="2" ry="2" /> +<text x="492.10" y="575.5" ></text> +</g> +<g > +<title>kmalloc_slab (10,101,010 samples, 0.04%)</title><rect x="304.5" y="373" width="0.5" height="15.0" fill="rgb(0,208,146)" rx="2" ry="2" /> +<text x="307.46" y="383.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="263.6" y="645" width="0.5" height="15.0" fill="rgb(0,200,185)" rx="2" ry="2" /> +<text x="266.61" y="655.5" ></text> +</g> +<g > +<title>__vmalloc_node_range (20,202,020 samples, 0.08%)</title><rect x="20.1" y="837" width="1.0" height="15.0" fill="rgb(0,231,189)" rx="2" ry="2" /> +<text x="23.08" y="847.5" ></text> +</g> +<g > +<title>free (20,202,020 samples, 0.08%)</title><rect x="326.2" y="693" width="1.1" height="15.0" fill="rgb(0,193,112)" rx="2" ry="2" /> +<text x="329.22" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="395.7" y="629" width="0.6" height="15.0" fill="rgb(0,219,72)" rx="2" ry="2" /> +<text x="398.72" y="639.5" ></text> +</g> +<g > +<title>half_md4_transform (10,101,010 samples, 0.04%)</title><rect x="251.4" y="533" width="0.5" height="15.0" fill="rgb(0,231,135)" rx="2" ry="2" /> +<text x="254.41" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="312.4" y="645" width="1.6" height="15.0" fill="rgb(0,228,129)" rx="2" ry="2" /> +<text x="315.42" y="655.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="97.5" y="373" width="0.6" height="15.0" fill="rgb(0,216,90)" rx="2" ry="2" /> +<text x="100.54" y="383.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="432.3" y="613" width="0.6" height="15.0" fill="rgb(0,191,81)" rx="2" ry="2" /> +<text x="435.33" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="473.2" y="597" width="0.5" height="15.0" fill="rgb(0,216,86)" rx="2" ry="2" /> +<text x="476.18" y="607.5" ></text> +</g> +<g > +<title>mb_find_extent (10,101,010 samples, 0.04%)</title><rect x="464.7" y="501" width="0.5" height="15.0" fill="rgb(0,208,182)" rx="2" ry="2" /> +<text x="467.69" y="511.5" ></text> +</g> +<g > +<title>call_rcu (10,101,010 samples, 0.04%)</title><rect x="161.2" y="549" width="0.5" height="15.0" fill="rgb(0,222,63)" rx="2" ry="2" /> +<text x="164.21" y="559.5" ></text> +</g> +<g > +<title>ext4_bread (20,202,020 samples, 0.08%)</title><rect x="508.2" y="661" width="1.1" height="15.0" fill="rgb(0,226,43)" rx="2" ry="2" /> +<text x="511.20" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="164.9" y="741" width="1.1" height="15.0" fill="rgb(0,197,94)" rx="2" ry="2" /> +<text x="167.93" y="751.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="375.6" y="645" width="0.5" height="15.0" fill="rgb(0,214,27)" rx="2" ry="2" /> +<text x="378.56" y="655.5" ></text> +</g> +<g > +<title>__dma_map_sg_attrs (10,101,010 samples, 0.04%)</title><rect x="372.4" y="245" width="0.5" height="15.0" fill="rgb(0,202,113)" rx="2" ry="2" /> +<text x="375.38" y="255.5" ></text> +</g> +<g > +<title>tcp_sendmsg (80,808,080 samples, 0.31%)</title><rect x="10.5" y="725" width="4.3" height="15.0" fill="rgb(0,196,0)" rx="2" ry="2" /> +<text x="13.53" y="735.5" ></text> +</g> +<g > +<title>ext4_getattr (10,101,010 samples, 0.04%)</title><rect x="165.5" y="629" width="0.5" height="15.0" fill="rgb(0,212,155)" rx="2" ry="2" /> +<text x="168.46" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="267.3" y="645" width="1.1" height="15.0" fill="rgb(0,222,154)" rx="2" ry="2" /> +<text x="270.32" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="397.8" y="677" width="3.2" height="15.0" fill="rgb(0,226,207)" rx="2" ry="2" /> +<text x="400.84" y="687.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="240.8" y="565" width="0.5" height="15.0" fill="rgb(0,199,18)" rx="2" ry="2" /> +<text x="243.80" y="575.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="323.0" y="805" width="0.6" height="15.0" fill="rgb(0,192,192)" rx="2" ry="2" /> +<text x="326.03" y="815.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="114.5" y="629" width="0.6" height="15.0" fill="rgb(0,239,38)" rx="2" ry="2" /> +<text x="117.52" y="639.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="281.1" y="469" width="0.5" height="15.0" fill="rgb(0,219,162)" rx="2" ry="2" /> +<text x="284.12" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="318.3" y="677" width="1.0" height="15.0" fill="rgb(0,198,143)" rx="2" ry="2" /> +<text x="321.26" y="687.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="92.8" y="613" width="0.5" height="15.0" fill="rgb(0,214,142)" rx="2" ry="2" /> +<text x="95.77" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (30,303,030 samples, 0.12%)</title><rect x="314.0" y="645" width="1.6" height="15.0" fill="rgb(0,230,90)" rx="2" ry="2" /> +<text x="317.01" y="655.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.04%)</title><rect x="315.1" y="453" width="0.5" height="15.0" fill="rgb(0,223,85)" rx="2" ry="2" /> +<text x="318.07" y="463.5" ></text> +</g> +<g > +<title>storvsc_queuecommand (10,101,010 samples, 0.04%)</title><rect x="372.4" y="293" width="0.5" height="15.0" fill="rgb(0,222,182)" rx="2" ry="2" /> +<text x="375.38" y="303.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (10,101,010 samples, 0.04%)</title><rect x="277.4" y="629" width="0.5" height="15.0" fill="rgb(0,200,62)" rx="2" ry="2" /> +<text x="280.40" y="639.5" ></text> +</g> +<g > +<title>ext4_releasepage (10,101,010 samples, 0.04%)</title><rect x="168.1" y="501" width="0.5" height="15.0" fill="rgb(0,225,59)" rx="2" ry="2" /> +<text x="171.11" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="182.4" y="693" width="0.6" height="15.0" fill="rgb(0,238,52)" rx="2" ry="2" /> +<text x="185.43" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="92.8" y="629" width="0.5" height="15.0" fill="rgb(0,195,156)" rx="2" ry="2" /> +<text x="95.77" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="401.6" y="613" width="1.5" height="15.0" fill="rgb(0,198,175)" rx="2" ry="2" /> +<text x="404.56" y="623.5" ></text> +</g> +<g > +<title>__blk_mq_run_hw_queue (10,101,010 samples, 0.04%)</title><rect x="372.4" y="421" width="0.5" height="15.0" fill="rgb(0,237,31)" rx="2" ry="2" /> +<text x="375.38" y="431.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.04%)</title><rect x="109.2" y="341" width="0.5" height="15.0" fill="rgb(0,233,45)" rx="2" ry="2" /> +<text x="112.22" y="351.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (111,111,110 samples, 0.42%)</title><rect x="248.2" y="661" width="5.9" height="15.0" fill="rgb(0,201,183)" rx="2" ry="2" /> +<text x="251.22" y="671.5" ></text> +</g> +<g > +<title>do_pipe2 (10,101,010 samples, 0.04%)</title><rect x="598.4" y="757" width="0.5" height="15.0" fill="rgb(0,228,95)" rx="2" ry="2" /> +<text x="601.40" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="292.3" y="725" width="1.0" height="15.0" fill="rgb(0,197,43)" rx="2" ry="2" /> +<text x="295.26" y="735.5" ></text> +</g> +<g > +<title>try_to_release_page (10,101,010 samples, 0.04%)</title><rect x="187.2" y="469" width="0.5" height="15.0" fill="rgb(0,218,36)" rx="2" ry="2" /> +<text x="190.21" y="479.5" ></text> +</g> +<g > +<title>snprintf (20,202,020 samples, 0.08%)</title><rect x="53.5" y="853" width="1.1" height="15.0" fill="rgb(0,201,180)" rx="2" ry="2" /> +<text x="56.51" y="863.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (20,202,020 samples, 0.08%)</title><rect x="303.9" y="405" width="1.1" height="15.0" fill="rgb(0,236,68)" rx="2" ry="2" /> +<text x="306.93" y="415.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.08%)</title><rect x="413.2" y="565" width="1.1" height="15.0" fill="rgb(0,222,116)" rx="2" ry="2" /> +<text x="416.23" y="575.5" ></text> +</g> +<g > +<title>ext4_fc_del (10,101,010 samples, 0.04%)</title><rect x="422.2" y="597" width="0.6" height="15.0" fill="rgb(0,190,199)" rx="2" ry="2" /> +<text x="425.25" y="607.5" ></text> +</g> +<g > +<title>tcp_server_accept (90,909,090 samples, 0.35%)</title><rect x="44.0" y="853" width="4.7" height="15.0" fill="rgb(0,194,48)" rx="2" ry="2" /> +<text x="46.96" y="863.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="348.5" y="613" width="1.1" height="15.0" fill="rgb(0,233,149)" rx="2" ry="2" /> +<text x="351.50" y="623.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.08%)</title><rect x="356.5" y="421" width="1.0" height="15.0" fill="rgb(0,214,3)" rx="2" ry="2" /> +<text x="359.46" y="431.5" ></text> +</g> +<g > +<title>account_kernel_stack.isra.0 (10,101,010 samples, 0.04%)</title><rect x="19.6" y="853" width="0.5" height="15.0" fill="rgb(0,235,52)" rx="2" ry="2" /> +<text x="22.55" y="863.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="313.5" y="613" width="0.5" height="15.0" fill="rgb(0,219,43)" rx="2" ry="2" /> +<text x="316.48" y="623.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (10,101,010 samples, 0.04%)</title><rect x="372.4" y="453" width="0.5" height="15.0" fill="rgb(0,234,157)" rx="2" ry="2" /> +<text x="375.38" y="463.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (121,212,120 samples, 0.46%)</title><rect x="611.7" y="837" width="6.3" height="15.0" fill="rgb(0,221,184)" rx="2" ry="2" /> +<text x="614.66" y="847.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="306.1" y="613" width="0.5" height="15.0" fill="rgb(0,207,14)" rx="2" ry="2" /> +<text x="309.06" y="623.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.04%)</title><rect x="370.8" y="517" width="0.5" height="15.0" fill="rgb(0,206,166)" rx="2" ry="2" /> +<text x="373.78" y="527.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.04%)</title><rect x="352.2" y="437" width="0.5" height="15.0" fill="rgb(0,222,197)" rx="2" ry="2" /> +<text x="355.21" y="447.5" ></text> +</g> +<g > +<title>__sys_connect (60,606,060 samples, 0.23%)</title><rect x="1385.8" y="805" width="3.1" height="15.0" fill="rgb(0,223,191)" rx="2" ry="2" /> +<text x="1388.76" y="815.5" ></text> +</g> +<g > +<title>pipe2 (20,202,020 samples, 0.08%)</title><rect x="597.9" y="821" width="1.0" height="15.0" fill="rgb(0,214,94)" rx="2" ry="2" /> +<text x="600.87" y="831.5" ></text> +</g> +<g > +<title>unlink_cb (121,212,120 samples, 0.46%)</title><rect x="103.4" y="693" width="6.3" height="15.0" fill="rgb(0,211,115)" rx="2" ry="2" /> +<text x="106.38" y="703.5" ></text> +</g> +<g > +<title>tcp_connect (30,303,030 samples, 0.12%)</title><rect x="1370.9" y="725" width="1.6" height="15.0" fill="rgb(0,233,56)" rx="2" ry="2" /> +<text x="1373.90" y="735.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.04%)</title><rect x="302.3" y="597" width="0.6" height="15.0" fill="rgb(0,218,25)" rx="2" ry="2" /> +<text x="305.34" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="150.1" y="709" width="1.6" height="15.0" fill="rgb(0,232,134)" rx="2" ry="2" /> +<text x="153.07" y="719.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="282.7" y="517" width="0.5" height="15.0" fill="rgb(0,217,80)" rx="2" ry="2" /> +<text x="285.71" y="527.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="261" width="0.5" height="15.0" fill="rgb(0,223,187)" rx="2" ry="2" /> +<text x="1342.07" y="271.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="316.7" y="677" width="0.5" height="15.0" fill="rgb(0,236,138)" rx="2" ry="2" /> +<text x="319.67" y="687.5" ></text> +</g> +<g > +<title>ip_finish_output (80,808,080 samples, 0.31%)</title><rect x="37.6" y="437" width="4.2" height="15.0" fill="rgb(0,206,137)" rx="2" ry="2" /> +<text x="40.59" y="447.5" ></text> +</g> +<g > +<title>filemap_flush (10,101,010 samples, 0.04%)</title><rect x="415.9" y="533" width="0.5" height="15.0" fill="rgb(0,239,47)" rx="2" ry="2" /> +<text x="418.88" y="543.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (60,606,060 samples, 0.23%)</title><rect x="371.3" y="565" width="3.2" height="15.0" fill="rgb(0,226,90)" rx="2" ry="2" /> +<text x="374.31" y="575.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.04%)</title><rect x="430.2" y="581" width="0.5" height="15.0" fill="rgb(0,221,96)" rx="2" ry="2" /> +<text x="433.21" y="591.5" ></text> +</g> +<g > +<title>user_path_at_empty (50,505,050 samples, 0.19%)</title><rect x="428.1" y="661" width="2.6" height="15.0" fill="rgb(0,223,65)" rx="2" ry="2" /> +<text x="431.09" y="671.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.08%)</title><rect x="350.1" y="501" width="1.1" height="15.0" fill="rgb(0,200,99)" rx="2" ry="2" /> +<text x="353.09" y="511.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.04%)</title><rect x="381.9" y="629" width="0.6" height="15.0" fill="rgb(0,216,7)" rx="2" ry="2" /> +<text x="384.93" y="639.5" ></text> +</g> +<g > +<title>__ext4_link (10,101,010 samples, 0.04%)</title><rect x="242.9" y="597" width="0.5" height="15.0" fill="rgb(0,235,183)" rx="2" ry="2" /> +<text x="245.92" y="607.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.08%)</title><rect x="413.2" y="581" width="1.1" height="15.0" fill="rgb(0,202,89)" rx="2" ry="2" /> +<text x="416.23" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="308.2" y="549" width="0.5" height="15.0" fill="rgb(0,200,206)" rx="2" ry="2" /> +<text x="311.18" y="559.5" ></text> +</g> +<g > +<title>wait_on_page_bit (10,101,010 samples, 0.04%)</title><rect x="448.2" y="453" width="0.6" height="15.0" fill="rgb(0,230,47)" rx="2" ry="2" /> +<text x="451.25" y="463.5" ></text> +</g> +<g > +<title>vfs_open (20,202,020 samples, 0.08%)</title><rect x="64.1" y="805" width="1.1" height="15.0" fill="rgb(0,204,46)" rx="2" ry="2" /> +<text x="67.12" y="815.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="412.2" y="613" width="0.5" height="15.0" fill="rgb(0,202,77)" rx="2" ry="2" /> +<text x="415.17" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="88.5" y="597" width="0.6" height="15.0" fill="rgb(0,216,120)" rx="2" ry="2" /> +<text x="91.52" y="607.5" ></text> +</g> +<g > +<title>ktime_get_coarse_real_ts64 (10,101,010 samples, 0.04%)</title><rect x="509.3" y="629" width="0.5" height="15.0" fill="rgb(0,236,201)" rx="2" ry="2" /> +<text x="512.26" y="639.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="302.9" y="501" width="0.5" height="15.0" fill="rgb(0,220,190)" rx="2" ry="2" /> +<text x="305.87" y="511.5" ></text> +</g> +<g > +<title>__blk_mq_run_hw_queue (20,202,020 samples, 0.08%)</title><rect x="436.0" y="373" width="1.1" height="15.0" fill="rgb(0,198,51)" rx="2" ry="2" /> +<text x="439.04" y="383.5" ></text> +</g> +<g > +<title>git_revparse_single (10,101,010 samples, 0.04%)</title><rect x="221.7" y="837" width="0.5" height="15.0" fill="rgb(0,230,60)" rx="2" ry="2" /> +<text x="224.70" y="847.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.04%)</title><rect x="306.1" y="501" width="0.5" height="15.0" fill="rgb(0,194,33)" rx="2" ry="2" /> +<text x="309.06" y="511.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (20,202,020 samples, 0.08%)</title><rect x="419.1" y="533" width="1.0" height="15.0" fill="rgb(0,224,199)" rx="2" ry="2" /> +<text x="422.07" y="543.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (70,707,070 samples, 0.27%)</title><rect x="475.8" y="725" width="3.8" height="15.0" fill="rgb(0,196,113)" rx="2" ry="2" /> +<text x="478.84" y="735.5" ></text> +</g> +<g > +<title>new_sync_read (10,101,010 samples, 0.04%)</title><rect x="499.7" y="549" width="0.5" height="15.0" fill="rgb(0,206,145)" rx="2" ry="2" /> +<text x="502.71" y="559.5" ></text> +</g> +<g > +<title>libgit_clone (5,383,838,330 samples, 20.49%)</title><rect x="223.3" y="837" width="282.8" height="15.0" fill="rgb(0,208,71)" rx="2" ry="2" /> +<text x="226.29" y="847.5" >libgit_clone</text> +</g> +<g > +<title>git_config_free (10,101,010 samples, 0.04%)</title><rect x="431.3" y="757" width="0.5" height="15.0" fill="rgb(0,222,188)" rx="2" ry="2" /> +<text x="434.27" y="767.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="295.4" y="613" width="1.1" height="15.0" fill="rgb(0,227,44)" rx="2" ry="2" /> +<text x="298.44" y="623.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.08%)</title><rect x="350.1" y="517" width="1.1" height="15.0" fill="rgb(0,216,84)" rx="2" ry="2" /> +<text x="353.09" y="527.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (20,202,020 samples, 0.08%)</title><rect x="351.7" y="469" width="1.0" height="15.0" fill="rgb(0,199,84)" rx="2" ry="2" /> +<text x="354.68" y="479.5" ></text> +</g> +<g > +<title>__dentry_kill (30,303,030 samples, 0.12%)</title><rect x="369.7" y="613" width="1.6" height="15.0" fill="rgb(0,212,116)" rx="2" ry="2" /> +<text x="372.72" y="623.5" ></text> +</g> +<g > +<title>git_config_snapshot (20,202,020 samples, 0.08%)</title><rect x="198.9" y="725" width="1.0" height="15.0" fill="rgb(0,227,80)" rx="2" ry="2" /> +<text x="201.88" y="735.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.04%)</title><rect x="15.8" y="869" width="0.6" height="15.0" fill="rgb(0,207,33)" rx="2" ry="2" /> +<text x="18.84" y="879.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="324.6" y="645" width="0.6" height="15.0" fill="rgb(0,207,109)" rx="2" ry="2" /> +<text x="327.63" y="655.5" ></text> +</g> +<g > +<title>__napi_poll (40,404,040 samples, 0.15%)</title><rect x="11.6" y="453" width="2.1" height="15.0" fill="rgb(0,232,18)" rx="2" ry="2" /> +<text x="14.59" y="463.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="293" width="0.6" height="15.0" fill="rgb(0,196,68)" rx="2" ry="2" /> +<text x="1388.22" y="303.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="211.6" y="709" width="0.5" height="15.0" fill="rgb(0,208,184)" rx="2" ry="2" /> +<text x="214.61" y="719.5" ></text> +</g> +<g > +<title>opendir (10,101,010 samples, 0.04%)</title><rect x="366.5" y="693" width="0.6" height="15.0" fill="rgb(0,233,166)" rx="2" ry="2" /> +<text x="369.54" y="703.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="378.2" y="565" width="0.5" height="15.0" fill="rgb(0,227,152)" rx="2" ry="2" /> +<text x="381.21" y="575.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="353.3" y="485" width="0.5" height="15.0" fill="rgb(0,199,170)" rx="2" ry="2" /> +<text x="356.28" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="1372.5" y="837" width="1.6" height="15.0" fill="rgb(0,215,143)" rx="2" ry="2" /> +<text x="1375.49" y="847.5" ></text> +</g> +<g > +<title>clear_page_erms (20,202,020 samples, 0.08%)</title><rect x="895.5" y="677" width="1.1" height="15.0" fill="rgb(0,217,24)" rx="2" ry="2" /> +<text x="898.51" y="687.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="327.3" y="693" width="0.5" height="15.0" fill="rgb(0,192,132)" rx="2" ry="2" /> +<text x="330.28" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="401.6" y="629" width="1.5" height="15.0" fill="rgb(0,217,194)" rx="2" ry="2" /> +<text x="404.56" y="639.5" ></text> +</g> +<g > +<title>rb_next (10,101,010 samples, 0.04%)</title><rect x="124.1" y="597" width="0.5" height="15.0" fill="rgb(0,192,98)" rx="2" ry="2" /> +<text x="127.07" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="356.5" y="645" width="1.6" height="15.0" fill="rgb(0,238,47)" rx="2" ry="2" /> +<text x="359.46" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="473.2" y="581" width="0.5" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="476.18" y="591.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.04%)</title><rect x="92.8" y="485" width="0.5" height="15.0" fill="rgb(0,225,106)" rx="2" ry="2" /> +<text x="95.77" y="495.5" ></text> +</g> +<g > +<title>ext4_getattr (10,101,010 samples, 0.04%)</title><rect x="490.2" y="613" width="0.5" height="15.0" fill="rgb(0,234,69)" rx="2" ry="2" /> +<text x="493.16" y="623.5" ></text> +</g> +<g > +<title>ext4_writepages (30,303,030 samples, 0.12%)</title><rect x="436.0" y="485" width="1.6" height="15.0" fill="rgb(0,221,157)" rx="2" ry="2" /> +<text x="439.04" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="401.0" y="677" width="0.6" height="15.0" fill="rgb(0,239,171)" rx="2" ry="2" /> +<text x="404.03" y="687.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.04%)</title><rect x="144.2" y="613" width="0.6" height="15.0" fill="rgb(0,193,7)" rx="2" ry="2" /> +<text x="147.23" y="623.5" ></text> +</g> +<g > +<title>sbitmap_get_shallow (10,101,010 samples, 0.04%)</title><rect x="450.4" y="341" width="0.5" height="15.0" fill="rgb(0,218,123)" rx="2" ry="2" /> +<text x="453.37" y="351.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.04%)</title><rect x="300.2" y="517" width="0.5" height="15.0" fill="rgb(0,235,17)" rx="2" ry="2" /> +<text x="303.22" y="527.5" ></text> +</g> +<g > +<title>ext4_match.part.0 (10,101,010 samples, 0.04%)</title><rect x="80.6" y="725" width="0.5" height="15.0" fill="rgb(0,203,85)" rx="2" ry="2" /> +<text x="83.57" y="735.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="285.9" y="373" width="0.5" height="15.0" fill="rgb(0,230,110)" rx="2" ry="2" /> +<text x="288.89" y="383.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.04%)</title><rect x="489.1" y="549" width="0.5" height="15.0" fill="rgb(0,215,62)" rx="2" ry="2" /> +<text x="492.10" y="559.5" ></text> +</g> +<g > +<title>blk_mq_do_dispatch_sched (20,202,020 samples, 0.08%)</title><rect x="449.3" y="341" width="1.1" height="15.0" fill="rgb(0,213,118)" rx="2" ry="2" /> +<text x="452.31" y="351.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="473.2" y="709" width="1.6" height="15.0" fill="rgb(0,191,173)" rx="2" ry="2" /> +<text x="476.18" y="719.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.04%)</title><rect x="183.5" y="677" width="0.5" height="15.0" fill="rgb(0,227,142)" rx="2" ry="2" /> +<text x="186.49" y="687.5" ></text> +</g> +<g > +<title>_IO_fprintf (10,101,010 samples, 0.04%)</title><rect x="14.8" y="885" width="0.5" height="15.0" fill="rgb(0,220,63)" rx="2" ry="2" /> +<text x="17.78" y="895.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.04%)</title><rect x="504.5" y="661" width="0.5" height="15.0" fill="rgb(0,227,120)" rx="2" ry="2" /> +<text x="507.49" y="671.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.04%)</title><rect x="433.9" y="485" width="0.6" height="15.0" fill="rgb(0,204,23)" rx="2" ry="2" /> +<text x="436.92" y="495.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.04%)</title><rect x="20.6" y="789" width="0.5" height="15.0" fill="rgb(0,201,129)" rx="2" ry="2" /> +<text x="23.61" y="799.5" ></text> +</g> +<g > +<title>__init_rwsem (10,101,010 samples, 0.04%)</title><rect x="70.5" y="725" width="0.5" height="15.0" fill="rgb(0,196,169)" rx="2" ry="2" /> +<text x="73.48" y="735.5" ></text> +</g> +<g > +<title>mktime (30,303,030 samples, 0.12%)</title><rect x="314.0" y="693" width="1.6" height="15.0" fill="rgb(0,191,86)" rx="2" ry="2" /> +<text x="317.01" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="487.5" y="693" width="2.7" height="15.0" fill="rgb(0,208,48)" rx="2" ry="2" /> +<text x="490.51" y="703.5" ></text> +</g> +<g > +<title>rmdir (60,606,060 samples, 0.23%)</title><rect x="95.4" y="645" width="3.2" height="15.0" fill="rgb(0,193,94)" rx="2" ry="2" /> +<text x="98.42" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.23%)</title><rect x="95.4" y="613" width="3.2" height="15.0" fill="rgb(0,235,179)" rx="2" ry="2" /> +<text x="98.42" y="623.5" ></text> +</g> +<g > +<title>security_file_open (10,101,010 samples, 0.04%)</title><rect x="186.1" y="453" width="0.6" height="15.0" fill="rgb(0,227,69)" rx="2" ry="2" /> +<text x="189.15" y="463.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="412.2" y="629" width="0.5" height="15.0" fill="rgb(0,205,28)" rx="2" ry="2" /> +<text x="415.17" y="639.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.04%)</title><rect x="207.4" y="501" width="0.5" height="15.0" fill="rgb(0,212,54)" rx="2" ry="2" /> +<text x="210.37" y="511.5" ></text> +</g> +<g > +<title>handle_pte_fault (50,505,050 samples, 0.19%)</title><rect x="567.1" y="581" width="2.6" height="15.0" fill="rgb(0,236,87)" rx="2" ry="2" /> +<text x="570.09" y="591.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (30,303,030 samples, 0.12%)</title><rect x="68.9" y="757" width="1.6" height="15.0" fill="rgb(0,205,146)" rx="2" ry="2" /> +<text x="71.89" y="767.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="315.1" y="549" width="0.5" height="15.0" fill="rgb(0,228,134)" rx="2" ry="2" /> +<text x="318.07" y="559.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="299.2" y="517" width="0.5" height="15.0" fill="rgb(0,199,155)" rx="2" ry="2" /> +<text x="302.16" y="527.5" ></text> +</g> +<g > +<title>kernel_fpu_begin_mask (10,101,010 samples, 0.04%)</title><rect x="74.7" y="677" width="0.6" height="15.0" fill="rgb(0,203,32)" rx="2" ry="2" /> +<text x="77.73" y="687.5" ></text> +</g> +<g > +<title>crc_120 (10,101,010 samples, 0.04%)</title><rect x="344.8" y="533" width="0.5" height="15.0" fill="rgb(0,237,91)" rx="2" ry="2" /> +<text x="347.79" y="543.5" ></text> +</g> +<g > +<title>remove (90,909,090 samples, 0.35%)</title><rect x="171.8" y="773" width="4.8" height="15.0" fill="rgb(0,209,201)" rx="2" ry="2" /> +<text x="174.82" y="783.5" ></text> +</g> +<g > +<title>do_softirq (10,101,010 samples, 0.04%)</title><rect x="1387.3" y="565" width="0.6" height="15.0" fill="rgb(0,227,114)" rx="2" ry="2" /> +<text x="1390.35" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="312.4" y="661" width="1.6" height="15.0" fill="rgb(0,239,20)" rx="2" ry="2" /> +<text x="315.42" y="671.5" ></text> +</g> +<g > +<title>blk_mq_do_dispatch_sched (10,101,010 samples, 0.04%)</title><rect x="372.4" y="373" width="0.5" height="15.0" fill="rgb(0,204,72)" rx="2" ry="2" /> +<text x="375.38" y="383.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="93.8" y="453" width="0.6" height="15.0" fill="rgb(0,214,49)" rx="2" ry="2" /> +<text x="96.83" y="463.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="154.8" y="629" width="0.6" height="15.0" fill="rgb(0,193,45)" rx="2" ry="2" /> +<text x="157.84" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="347.4" y="597" width="1.1" height="15.0" fill="rgb(0,210,77)" rx="2" ry="2" /> +<text x="350.44" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="603.2" y="821" width="1.0" height="15.0" fill="rgb(0,233,161)" rx="2" ry="2" /> +<text x="606.17" y="831.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="414.3" y="645" width="0.5" height="15.0" fill="rgb(0,231,141)" rx="2" ry="2" /> +<text x="417.29" y="655.5" ></text> +</g> +<g > +<title>atime_needs_update (10,101,010 samples, 0.04%)</title><rect x="348.0" y="453" width="0.5" height="15.0" fill="rgb(0,199,95)" rx="2" ry="2" /> +<text x="350.97" y="463.5" ></text> +</g> +<g > +<title>storvsc_do_io (10,101,010 samples, 0.04%)</title><rect x="187.7" y="293" width="0.6" height="15.0" fill="rgb(0,209,39)" rx="2" ry="2" /> +<text x="190.74" y="303.5" ></text> +</g> +<g > +<title>log_entry_start (20,202,020 samples, 0.08%)</title><rect x="222.2" y="837" width="1.1" height="15.0" fill="rgb(0,221,204)" rx="2" ry="2" /> +<text x="225.23" y="847.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.04%)</title><rect x="89.6" y="533" width="0.5" height="15.0" fill="rgb(0,218,95)" rx="2" ry="2" /> +<text x="92.58" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="170.8" y="709" width="0.5" height="15.0" fill="rgb(0,238,66)" rx="2" ry="2" /> +<text x="173.76" y="719.5" ></text> +</g> +<g > +<title>ext4_read_block_bitmap (10,101,010 samples, 0.04%)</title><rect x="419.1" y="501" width="0.5" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" /> +<text x="422.07" y="511.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.04%)</title><rect x="111.9" y="613" width="0.5" height="15.0" fill="rgb(0,236,203)" rx="2" ry="2" /> +<text x="114.87" y="623.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="58.8" y="693" width="0.5" height="15.0" fill="rgb(0,204,34)" rx="2" ry="2" /> +<text x="61.81" y="703.5" ></text> +</g> +<g > +<title>ext4_init_dot_dotdot (10,101,010 samples, 0.04%)</title><rect x="230.7" y="581" width="0.5" height="15.0" fill="rgb(0,207,31)" rx="2" ry="2" /> +<text x="233.72" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="495.5" y="629" width="1.0" height="15.0" fill="rgb(0,228,203)" rx="2" ry="2" /> +<text x="498.47" y="639.5" ></text> +</g> +<g > +<title>git_buf_dispose (10,101,010 samples, 0.04%)</title><rect x="360.2" y="709" width="0.5" height="15.0" fill="rgb(0,235,77)" rx="2" ry="2" /> +<text x="363.17" y="719.5" ></text> +</g> +<g > +<title>walk_component (20,202,020 samples, 0.08%)</title><rect x="394.7" y="501" width="1.0" height="15.0" fill="rgb(0,239,75)" rx="2" ry="2" /> +<text x="397.66" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="376.1" y="725" width="0.5" height="15.0" fill="rgb(0,208,108)" rx="2" ry="2" /> +<text x="379.09" y="735.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.04%)</title><rect x="275.3" y="261" width="0.5" height="15.0" fill="rgb(0,198,109)" rx="2" ry="2" /> +<text x="278.28" y="271.5" ></text> +</g> +<g > +<title>dentry_kill (40,404,040 samples, 0.15%)</title><rect x="433.9" y="581" width="2.1" height="15.0" fill="rgb(0,234,83)" rx="2" ry="2" /> +<text x="436.92" y="591.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.04%)</title><rect x="419.1" y="517" width="0.5" height="15.0" fill="rgb(0,233,4)" rx="2" ry="2" /> +<text x="422.07" y="527.5" ></text> +</g> +<g > +<title>__ip_finish_output (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="485" width="0.6" height="15.0" fill="rgb(0,194,59)" rx="2" ry="2" /> +<text x="1388.22" y="495.5" ></text> +</g> +<g > +<title>irqentry_exit_to_user_mode (80,808,080 samples, 0.31%)</title><rect x="1299.8" y="709" width="4.2" height="15.0" fill="rgb(0,194,13)" rx="2" ry="2" /> +<text x="1302.80" y="719.5" ></text> +</g> +<g > +<title>release_sock (10,101,010 samples, 0.04%)</title><rect x="46.6" y="677" width="0.5" height="15.0" fill="rgb(0,236,48)" rx="2" ry="2" /> +<text x="49.61" y="687.5" ></text> +</g> +<g > +<title>tcp_write_xmit (80,808,080 samples, 0.31%)</title><rect x="10.5" y="661" width="4.3" height="15.0" fill="rgb(0,222,13)" rx="2" ry="2" /> +<text x="13.53" y="671.5" ></text> +</g> +<g > +<title>nd_jump_root (10,101,010 samples, 0.04%)</title><rect x="495.5" y="517" width="0.5" height="15.0" fill="rgb(0,201,63)" rx="2" ry="2" /> +<text x="498.47" y="527.5" ></text> +</g> +<g > +<title>iput (30,303,030 samples, 0.12%)</title><rect x="369.7" y="581" width="1.6" height="15.0" fill="rgb(0,193,181)" rx="2" ry="2" /> +<text x="372.72" y="591.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="360.7" y="661" width="0.5" height="15.0" fill="rgb(0,208,68)" rx="2" ry="2" /> +<text x="363.70" y="671.5" ></text> +</g> +<g > +<title>__sock_create (20,202,020 samples, 0.08%)</title><rect x="1372.5" y="789" width="1.1" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="1375.49" y="799.5" ></text> +</g> +<g > +<title>remove (40,404,040 samples, 0.15%)</title><rect x="179.3" y="789" width="2.1" height="15.0" fill="rgb(0,222,62)" rx="2" ry="2" /> +<text x="182.25" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="221.7" y="757" width="0.5" height="15.0" fill="rgb(0,198,63)" rx="2" ry="2" /> +<text x="224.70" y="767.5" ></text> +</g> +<g > +<title>fput (10,101,010 samples, 0.04%)</title><rect x="219.0" y="613" width="0.6" height="15.0" fill="rgb(0,193,150)" rx="2" ry="2" /> +<text x="222.04" y="623.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.04%)</title><rect x="407.9" y="485" width="0.6" height="15.0" fill="rgb(0,229,46)" rx="2" ry="2" /> +<text x="410.92" y="495.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.08%)</title><rect x="364.9" y="741" width="1.1" height="15.0" fill="rgb(0,224,131)" rx="2" ry="2" /> +<text x="367.95" y="751.5" ></text> +</g> +<g > +<title>inflate (20,202,020 samples, 0.08%)</title><rect x="212.1" y="645" width="1.1" height="15.0" fill="rgb(0,234,81)" rx="2" ry="2" /> +<text x="215.15" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_openat (50,505,050 samples, 0.19%)</title><rect x="376.6" y="709" width="2.7" height="15.0" fill="rgb(0,227,34)" rx="2" ry="2" /> +<text x="379.62" y="719.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="174.5" y="629" width="0.5" height="15.0" fill="rgb(0,212,130)" rx="2" ry="2" /> +<text x="177.48" y="639.5" ></text> +</g> +<g > +<title>free_pages_and_swap_cache (50,505,050 samples, 0.19%)</title><rect x="934.8" y="629" width="2.6" height="15.0" fill="rgb(0,223,9)" rx="2" ry="2" /> +<text x="937.78" y="639.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="629" width="0.5" height="15.0" fill="rgb(0,207,148)" rx="2" ry="2" /> +<text x="1388.76" y="639.5" ></text> +</g> +<g > +<title>mpage_submit_page (10,101,010 samples, 0.04%)</title><rect x="275.3" y="453" width="0.5" height="15.0" fill="rgb(0,213,142)" rx="2" ry="2" /> +<text x="278.28" y="463.5" ></text> +</g> +<g > +<title>handle_pte_fault (181,818,180 samples, 0.69%)</title><rect x="919.9" y="709" width="9.6" height="15.0" fill="rgb(0,206,42)" rx="2" ry="2" /> +<text x="922.92" y="719.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.04%)</title><rect x="381.9" y="437" width="0.6" height="15.0" fill="rgb(0,203,193)" rx="2" ry="2" /> +<text x="384.93" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.15%)</title><rect x="405.3" y="677" width="2.1" height="15.0" fill="rgb(0,208,80)" rx="2" ry="2" /> +<text x="408.27" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="431.8" y="693" width="0.5" height="15.0" fill="rgb(0,193,155)" rx="2" ry="2" /> +<text x="434.80" y="703.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="250.3" y="517" width="0.6" height="15.0" fill="rgb(0,232,127)" rx="2" ry="2" /> +<text x="253.35" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="473.7" y="613" width="0.5" height="15.0" fill="rgb(0,235,188)" rx="2" ry="2" /> +<text x="476.71" y="623.5" ></text> +</g> +<g > +<title>ext4_es_insert_delayed_block (10,101,010 samples, 0.04%)</title><rect x="392.5" y="421" width="0.6" height="15.0" fill="rgb(0,224,88)" rx="2" ry="2" /> +<text x="395.54" y="431.5" ></text> +</g> +<g > +<title>down_write (10,101,010 samples, 0.04%)</title><rect x="180.8" y="693" width="0.6" height="15.0" fill="rgb(0,217,66)" rx="2" ry="2" /> +<text x="183.84" y="703.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="215.9" y="581" width="0.5" height="15.0" fill="rgb(0,212,161)" rx="2" ry="2" /> +<text x="218.86" y="591.5" ></text> +</g> +<g > +<title>handle_mm_fault (60,606,060 samples, 0.23%)</title><rect x="614.3" y="789" width="3.2" height="15.0" fill="rgb(0,229,74)" rx="2" ry="2" /> +<text x="617.31" y="799.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.19%)</title><rect x="46.1" y="805" width="2.6" height="15.0" fill="rgb(0,204,37)" rx="2" ry="2" /> +<text x="49.08" y="815.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="57.2" y="629" width="0.6" height="15.0" fill="rgb(0,215,147)" rx="2" ry="2" /> +<text x="60.22" y="639.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="197.8" y="725" width="0.6" height="15.0" fill="rgb(0,203,61)" rx="2" ry="2" /> +<text x="200.82" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="599.5" y="773" width="0.5" height="15.0" fill="rgb(0,207,190)" rx="2" ry="2" /> +<text x="602.46" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="505.0" y="773" width="1.1" height="15.0" fill="rgb(0,212,34)" rx="2" ry="2" /> +<text x="508.02" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="355.4" y="597" width="0.5" height="15.0" fill="rgb(0,190,194)" rx="2" ry="2" /> +<text x="358.40" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="359.6" y="645" width="0.6" height="15.0" fill="rgb(0,226,162)" rx="2" ry="2" /> +<text x="362.64" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="219.6" y="661" width="1.0" height="15.0" fill="rgb(0,221,45)" rx="2" ry="2" /> +<text x="222.57" y="671.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="201.0" y="501" width="0.5" height="15.0" fill="rgb(0,191,127)" rx="2" ry="2" /> +<text x="204.00" y="511.5" ></text> +</g> +<g > +<title>__mem_cgroup_uncharge_list (10,101,010 samples, 0.04%)</title><rect x="434.5" y="421" width="0.5" height="15.0" fill="rgb(0,238,161)" rx="2" ry="2" /> +<text x="437.45" y="431.5" ></text> +</g> +<g > +<title>security_vm_enough_memory_mm (10,101,010 samples, 0.04%)</title><rect x="527.8" y="677" width="0.6" height="15.0" fill="rgb(0,219,41)" rx="2" ry="2" /> +<text x="530.83" y="687.5" ></text> +</g> +<g > +<title>ext4_readdir (20,202,020 samples, 0.08%)</title><rect x="153.8" y="645" width="1.0" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="156.78" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="212.1" y="725" width="2.2" height="15.0" fill="rgb(0,239,110)" rx="2" ry="2" /> +<text x="215.15" y="735.5" ></text> +</g> +<g > +<title>free@plt (10,101,010 samples, 0.04%)</title><rect x="933.2" y="869" width="0.5" height="15.0" fill="rgb(0,206,128)" rx="2" ry="2" /> +<text x="936.18" y="879.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (333,333,330 samples, 1.27%)</title><rect x="346.9" y="773" width="17.5" height="15.0" fill="rgb(0,211,128)" rx="2" ry="2" /> +<text x="349.91" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_sendto (60,606,060 samples, 0.23%)</title><rect x="1379.4" y="757" width="3.2" height="15.0" fill="rgb(0,207,28)" rx="2" ry="2" /> +<text x="1382.39" y="767.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="196.8" y="597" width="0.5" height="15.0" fill="rgb(0,220,25)" rx="2" ry="2" /> +<text x="199.76" y="607.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="18.5" y="885" width="0.5" height="15.0" fill="rgb(0,208,8)" rx="2" ry="2" /> +<text x="21.49" y="895.5" ></text> +</g> +<g > +<title>ext4_writepages (30,303,030 samples, 0.12%)</title><rect x="342.7" y="517" width="1.6" height="15.0" fill="rgb(0,227,86)" rx="2" ry="2" /> +<text x="345.66" y="527.5" ></text> +</g> +<g > +<title>new_sync_read (20,202,020 samples, 0.08%)</title><rect x="347.4" y="533" width="1.1" height="15.0" fill="rgb(0,194,182)" rx="2" ry="2" /> +<text x="350.44" y="543.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.04%)</title><rect x="475.3" y="709" width="0.5" height="15.0" fill="rgb(0,194,209)" rx="2" ry="2" /> +<text x="478.31" y="719.5" ></text> +</g> +<g > +<title>unlink_cb (60,606,060 samples, 0.23%)</title><rect x="95.4" y="677" width="3.2" height="15.0" fill="rgb(0,195,56)" rx="2" ry="2" /> +<text x="98.42" y="687.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="85.9" y="773" width="0.5" height="15.0" fill="rgb(0,193,60)" rx="2" ry="2" /> +<text x="88.87" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1374.1" y="853" width="0.5" height="15.0" fill="rgb(0,238,135)" rx="2" ry="2" /> +<text x="1377.08" y="863.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="94.9" y="437" width="0.5" height="15.0" fill="rgb(0,192,35)" rx="2" ry="2" /> +<text x="97.89" y="447.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="55.1" y="789" width="0.5" height="15.0" fill="rgb(0,199,135)" rx="2" ry="2" /> +<text x="58.10" y="799.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="216.4" y="661" width="0.5" height="15.0" fill="rgb(0,209,32)" rx="2" ry="2" /> +<text x="219.39" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,616,161,600 samples, 6.15%)</title><rect x="86.4" y="789" width="84.9" height="15.0" fill="rgb(0,233,136)" rx="2" ry="2" /> +<text x="89.40" y="799.5" >[libc.so.6]</text> +</g> +<g > +<title>blk_mq_complete_request (10,101,010 samples, 0.04%)</title><rect x="201.0" y="373" width="0.5" height="15.0" fill="rgb(0,208,201)" rx="2" ry="2" /> +<text x="204.00" y="383.5" ></text> +</g> +<g > +<title>do_mkdirat (232,323,230 samples, 0.88%)</title><rect x="454.1" y="693" width="12.2" height="15.0" fill="rgb(0,192,152)" rx="2" ry="2" /> +<text x="457.08" y="703.5" ></text> +</g> +<g > +<title>brk (10,101,010 samples, 0.04%)</title><rect x="930.0" y="725" width="0.5" height="15.0" fill="rgb(0,191,49)" rx="2" ry="2" /> +<text x="933.00" y="735.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="174.5" y="597" width="0.5" height="15.0" fill="rgb(0,233,118)" rx="2" ry="2" /> +<text x="177.48" y="607.5" ></text> +</g> +<g > +<title>jsonrpc_request_send (80,808,080 samples, 0.31%)</title><rect x="10.5" y="917" width="4.3" height="15.0" fill="rgb(0,206,38)" rx="2" ry="2" /> +<text x="13.53" y="927.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="169.7" y="741" width="0.5" height="15.0" fill="rgb(0,195,203)" rx="2" ry="2" /> +<text x="172.70" y="751.5" ></text> +</g> +<g > +<title>write (30,303,030 samples, 0.12%)</title><rect x="303.9" y="629" width="1.6" height="15.0" fill="rgb(0,224,14)" rx="2" ry="2" /> +<text x="306.93" y="639.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="221.7" y="405" width="0.5" height="15.0" fill="rgb(0,207,50)" rx="2" ry="2" /> +<text x="224.70" y="415.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.04%)</title><rect x="352.7" y="533" width="0.6" height="15.0" fill="rgb(0,195,35)" rx="2" ry="2" /> +<text x="355.75" y="543.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="181" width="0.6" height="15.0" fill="rgb(0,202,167)" rx="2" ry="2" /> +<text x="1383.45" y="191.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="238.7" y="661" width="0.5" height="15.0" fill="rgb(0,192,64)" rx="2" ry="2" /> +<text x="241.67" y="671.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="305.5" y="645" width="0.6" height="15.0" fill="rgb(0,201,77)" rx="2" ry="2" /> +<text x="308.52" y="655.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="281.1" y="517" width="0.5" height="15.0" fill="rgb(0,199,108)" rx="2" ry="2" /> +<text x="284.12" y="527.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="469.5" y="581" width="0.5" height="15.0" fill="rgb(0,196,32)" rx="2" ry="2" /> +<text x="472.47" y="591.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.12%)</title><rect x="150.1" y="725" width="1.6" height="15.0" fill="rgb(0,210,53)" rx="2" ry="2" /> +<text x="153.07" y="735.5" ></text> +</g> +<g > +<title>locks_remove_posix (10,101,010 samples, 0.04%)</title><rect x="328.3" y="613" width="0.6" height="15.0" fill="rgb(0,217,19)" rx="2" ry="2" /> +<text x="331.34" y="623.5" ></text> +</g> +<g > +<title>ext4_rmdir (20,202,020 samples, 0.08%)</title><rect x="156.4" y="613" width="1.1" height="15.0" fill="rgb(0,213,58)" rx="2" ry="2" /> +<text x="159.44" y="623.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="284.8" y="661" width="0.6" height="15.0" fill="rgb(0,193,31)" rx="2" ry="2" /> +<text x="287.83" y="671.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="504.5" y="613" width="0.5" height="15.0" fill="rgb(0,197,201)" rx="2" ry="2" /> +<text x="507.49" y="623.5" ></text> +</g> +<g > +<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.04%)</title><rect x="105.0" y="437" width="0.5" height="15.0" fill="rgb(0,191,125)" rx="2" ry="2" /> +<text x="107.97" y="447.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="220.6" y="677" width="1.1" height="15.0" fill="rgb(0,231,32)" rx="2" ry="2" /> +<text x="223.63" y="687.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (20,202,020 samples, 0.08%)</title><rect x="447.7" y="485" width="1.1" height="15.0" fill="rgb(0,193,7)" rx="2" ry="2" /> +<text x="450.72" y="495.5" ></text> +</g> +<g > +<title>__napi_poll (10,101,010 samples, 0.04%)</title><rect x="1387.3" y="517" width="0.6" height="15.0" fill="rgb(0,229,41)" rx="2" ry="2" /> +<text x="1390.35" y="527.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (10,101,010 samples, 0.04%)</title><rect x="508.2" y="597" width="0.5" height="15.0" fill="rgb(0,223,2)" rx="2" ry="2" /> +<text x="511.20" y="607.5" ></text> +</g> +<g > +<title>getdents64 (10,101,010 samples, 0.04%)</title><rect x="315.6" y="757" width="0.5" height="15.0" fill="rgb(0,213,189)" rx="2" ry="2" /> +<text x="318.61" y="767.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="291.7" y="517" width="0.6" height="15.0" fill="rgb(0,191,206)" rx="2" ry="2" /> +<text x="294.73" y="527.5" ></text> +</g> +<g > +<title>charge_memcg (90,909,090 samples, 0.35%)</title><rect x="1322.1" y="613" width="4.8" height="15.0" fill="rgb(0,235,199)" rx="2" ry="2" /> +<text x="1325.09" y="623.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.04%)</title><rect x="15.8" y="725" width="0.6" height="15.0" fill="rgb(0,194,207)" rx="2" ry="2" /> +<text x="18.84" y="735.5" ></text> +</g> +<g > +<title>ip_local_deliver (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="357" width="1.6" height="15.0" fill="rgb(0,231,102)" rx="2" ry="2" /> +<text x="1371.78" y="367.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.04%)</title><rect x="280.6" y="549" width="0.5" height="15.0" fill="rgb(0,213,108)" rx="2" ry="2" /> +<text x="283.59" y="559.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="386.2" y="437" width="0.5" height="15.0" fill="rgb(0,195,191)" rx="2" ry="2" /> +<text x="389.17" y="447.5" ></text> +</g> +<g > +<title>storvsc_on_io_completion (10,101,010 samples, 0.04%)</title><rect x="13.7" y="421" width="0.5" height="15.0" fill="rgb(0,193,165)" rx="2" ry="2" /> +<text x="16.71" y="431.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="930.0" y="693" width="0.5" height="15.0" fill="rgb(0,191,100)" rx="2" ry="2" /> +<text x="933.00" y="703.5" ></text> +</g> +<g > +<title>__pagevec_release (10,101,010 samples, 0.04%)</title><rect x="332.1" y="485" width="0.5" height="15.0" fill="rgb(0,195,59)" rx="2" ry="2" /> +<text x="335.05" y="495.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.04%)</title><rect x="275.3" y="277" width="0.5" height="15.0" fill="rgb(0,236,168)" rx="2" ry="2" /> +<text x="278.28" y="287.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="107.6" y="501" width="0.6" height="15.0" fill="rgb(0,206,176)" rx="2" ry="2" /> +<text x="110.62" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.15%)</title><rect x="405.3" y="693" width="2.1" height="15.0" fill="rgb(0,234,200)" rx="2" ry="2" /> +<text x="408.27" y="703.5" ></text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.04%)</title><rect x="47.1" y="533" width="0.6" height="15.0" fill="rgb(0,205,61)" rx="2" ry="2" /> +<text x="50.14" y="543.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="476.4" y="709" width="1.0" height="15.0" fill="rgb(0,190,182)" rx="2" ry="2" /> +<text x="479.37" y="719.5" ></text> +</g> +<g > +<title>handle_pte_fault (60,606,060 samples, 0.23%)</title><rect x="614.3" y="757" width="3.2" height="15.0" fill="rgb(0,235,200)" rx="2" ry="2" /> +<text x="617.31" y="767.5" ></text> +</g> +<g > +<title>____fput (30,303,030 samples, 0.12%)</title><rect x="1384.2" y="741" width="1.6" height="15.0" fill="rgb(0,218,175)" rx="2" ry="2" /> +<text x="1387.16" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="303.4" y="613" width="0.5" height="15.0" fill="rgb(0,238,176)" rx="2" ry="2" /> +<text x="306.40" y="623.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="316.7" y="645" width="0.5" height="15.0" fill="rgb(0,202,150)" rx="2" ry="2" /> +<text x="319.67" y="655.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="58.3" y="693" width="0.5" height="15.0" fill="rgb(0,211,153)" rx="2" ry="2" /> +<text x="61.28" y="703.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="287.0" y="517" width="1.0" height="15.0" fill="rgb(0,200,22)" rx="2" ry="2" /> +<text x="289.96" y="527.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="376.6" y="565" width="0.6" height="15.0" fill="rgb(0,239,26)" rx="2" ry="2" /> +<text x="379.62" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_link (20,202,020 samples, 0.08%)</title><rect x="416.9" y="693" width="1.1" height="15.0" fill="rgb(0,207,183)" rx="2" ry="2" /> +<text x="419.94" y="703.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="234.4" y="373" width="0.6" height="15.0" fill="rgb(0,227,52)" rx="2" ry="2" /> +<text x="237.43" y="383.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.04%)</title><rect x="381.9" y="533" width="0.6" height="15.0" fill="rgb(0,198,160)" rx="2" ry="2" /> +<text x="384.93" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="199.9" y="709" width="0.6" height="15.0" fill="rgb(0,229,99)" rx="2" ry="2" /> +<text x="202.94" y="719.5" ></text> +</g> +<g > +<title>git_checkout_tree (565,656,560 samples, 2.15%)</title><rect x="192.0" y="837" width="29.7" height="15.0" fill="rgb(0,199,142)" rx="2" ry="2" /> +<text x="194.98" y="847.5" >gi..</text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="332.1" y="469" width="0.5" height="15.0" fill="rgb(0,197,92)" rx="2" ry="2" /> +<text x="335.05" y="479.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.04%)</title><rect x="48.2" y="661" width="0.5" height="15.0" fill="rgb(0,235,44)" rx="2" ry="2" /> +<text x="51.20" y="671.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.04%)</title><rect x="448.2" y="389" width="0.6" height="15.0" fill="rgb(0,214,54)" rx="2" ry="2" /> +<text x="451.25" y="399.5" ></text> +</g> +<g > +<title>__netif_receive_skb (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="405" width="1.6" height="15.0" fill="rgb(0,239,53)" rx="2" ry="2" /> +<text x="1371.78" y="415.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="127.3" y="501" width="0.5" height="15.0" fill="rgb(0,204,57)" rx="2" ry="2" /> +<text x="130.25" y="511.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="482.7" y="709" width="0.6" height="15.0" fill="rgb(0,203,38)" rx="2" ry="2" /> +<text x="485.73" y="719.5" ></text> +</g> +<g > +<title>lru_cache_add_inactive_or_unevictable (20,202,020 samples, 0.08%)</title><rect x="896.6" y="725" width="1.0" height="15.0" fill="rgb(0,231,167)" rx="2" ry="2" /> +<text x="899.57" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="85.3" y="757" width="0.6" height="15.0" fill="rgb(0,223,50)" rx="2" ry="2" /> +<text x="88.34" y="767.5" ></text> +</g> +<g > +<title>ext4_rename2 (10,101,010 samples, 0.04%)</title><rect x="187.7" y="645" width="0.6" height="15.0" fill="rgb(0,194,81)" rx="2" ry="2" /> +<text x="190.74" y="655.5" ></text> +</g> +<g > +<title>printbuf_memappend (10,101,010 samples, 0.04%)</title><rect x="1338.0" y="789" width="0.5" height="15.0" fill="rgb(0,234,160)" rx="2" ry="2" /> +<text x="1341.00" y="799.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="613" width="0.6" height="15.0" fill="rgb(0,227,34)" rx="2" ry="2" /> +<text x="1388.22" y="623.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="395.7" y="421" width="0.6" height="15.0" fill="rgb(0,226,134)" rx="2" ry="2" /> +<text x="398.72" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="347.4" y="709" width="2.7" height="15.0" fill="rgb(0,225,92)" rx="2" ry="2" /> +<text x="350.44" y="719.5" ></text> +</g> +<g > +<title>readdir64 (30,303,030 samples, 0.12%)</title><rect x="351.2" y="613" width="1.5" height="15.0" fill="rgb(0,205,161)" rx="2" ry="2" /> +<text x="354.15" y="623.5" ></text> +</g> +<g > +<title>open_last_lookups (40,404,040 samples, 0.15%)</title><rect x="203.1" y="645" width="2.1" height="15.0" fill="rgb(0,199,86)" rx="2" ry="2" /> +<text x="206.13" y="655.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.04%)</title><rect x="188.3" y="565" width="0.5" height="15.0" fill="rgb(0,198,128)" rx="2" ry="2" /> +<text x="191.27" y="575.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="303.4" y="421" width="0.5" height="15.0" fill="rgb(0,224,149)" rx="2" ry="2" /> +<text x="306.40" y="431.5" ></text> +</g> +<g > +<title>ext4_mb_find_by_goal (10,101,010 samples, 0.04%)</title><rect x="236.6" y="453" width="0.5" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="239.55" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.15%)</title><rect x="1383.6" y="837" width="2.2" height="15.0" fill="rgb(0,232,166)" rx="2" ry="2" /> +<text x="1386.63" y="847.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="180.8" y="757" width="0.6" height="15.0" fill="rgb(0,211,207)" rx="2" ry="2" /> +<text x="183.84" y="767.5" ></text> +</g> +<g > +<title>security_vm_enough_memory_mm (10,101,010 samples, 0.04%)</title><rect x="523.1" y="661" width="0.5" height="15.0" fill="rgb(0,224,28)" rx="2" ry="2" /> +<text x="526.06" y="671.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="229.7" y="517" width="0.5" height="15.0" fill="rgb(0,208,145)" rx="2" ry="2" /> +<text x="232.65" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="431.3" y="741" width="0.5" height="15.0" fill="rgb(0,213,189)" rx="2" ry="2" /> +<text x="434.27" y="751.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="504.5" y="629" width="0.5" height="15.0" fill="rgb(0,221,143)" rx="2" ry="2" /> +<text x="507.49" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (80,808,080 samples, 0.31%)</title><rect x="172.4" y="725" width="4.2" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="175.35" y="735.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.04%)</title><rect x="1364.0" y="549" width="0.5" height="15.0" fill="rgb(0,198,60)" rx="2" ry="2" /> +<text x="1367.00" y="559.5" ></text> +</g> +<g > +<title>dentry_kill (20,202,020 samples, 0.08%)</title><rect x="34.9" y="645" width="1.1" height="15.0" fill="rgb(0,204,94)" rx="2" ry="2" /> +<text x="37.94" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="90.1" y="469" width="0.5" height="15.0" fill="rgb(0,219,109)" rx="2" ry="2" /> +<text x="93.12" y="479.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="299.2" y="469" width="0.5" height="15.0" fill="rgb(0,220,119)" rx="2" ry="2" /> +<text x="302.16" y="479.5" ></text> +</g> +<g > +<title>mkdir (60,606,060 samples, 0.23%)</title><rect x="506.1" y="805" width="3.2" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="509.08" y="815.5" ></text> +</g> +<g > +<title>net_rx_action (30,303,030 samples, 0.12%)</title><rect x="1365.1" y="437" width="1.6" height="15.0" fill="rgb(0,216,207)" rx="2" ry="2" /> +<text x="1368.06" y="447.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (70,707,070 samples, 0.27%)</title><rect x="360.7" y="709" width="3.7" height="15.0" fill="rgb(0,230,179)" rx="2" ry="2" /> +<text x="363.70" y="719.5" ></text> +</g> +<g > +<title>anon_vma_clone (20,202,020 samples, 0.08%)</title><rect x="513.5" y="645" width="1.1" height="15.0" fill="rgb(0,199,82)" rx="2" ry="2" /> +<text x="516.51" y="655.5" ></text> +</g> +<g > +<title>__close_nocancel (10,101,010 samples, 0.04%)</title><rect x="86.9" y="645" width="0.6" height="15.0" fill="rgb(0,209,84)" rx="2" ry="2" /> +<text x="89.93" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.31%)</title><rect x="360.2" y="725" width="4.2" height="15.0" fill="rgb(0,190,168)" rx="2" ry="2" /> +<text x="363.17" y="735.5" ></text> +</g> +<g > +<title>dput (20,202,020 samples, 0.08%)</title><rect x="309.2" y="597" width="1.1" height="15.0" fill="rgb(0,192,194)" rx="2" ry="2" /> +<text x="312.24" y="607.5" ></text> +</g> +<g > +<title>__close_nocancel (10,101,010 samples, 0.04%)</title><rect x="488.6" y="677" width="0.5" height="15.0" fill="rgb(0,226,105)" rx="2" ry="2" /> +<text x="491.57" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="287.0" y="565" width="1.0" height="15.0" fill="rgb(0,208,131)" rx="2" ry="2" /> +<text x="289.96" y="575.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (40,404,040 samples, 0.15%)</title><rect x="1364.5" y="453" width="2.2" height="15.0" fill="rgb(0,216,199)" rx="2" ry="2" /> +<text x="1367.53" y="463.5" ></text> +</g> +<g > +<title>vfs_mkdir (111,111,110 samples, 0.42%)</title><rect x="385.6" y="549" width="5.9" height="15.0" fill="rgb(0,214,182)" rx="2" ry="2" /> +<text x="388.64" y="559.5" ></text> +</g> +<g > +<title>wait_on_page_bit (10,101,010 samples, 0.04%)</title><rect x="332.6" y="469" width="0.5" height="15.0" fill="rgb(0,233,156)" rx="2" ry="2" /> +<text x="335.58" y="479.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="164.9" y="693" width="1.1" height="15.0" fill="rgb(0,228,120)" rx="2" ry="2" /> +<text x="167.93" y="703.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="102.8" y="597" width="0.6" height="15.0" fill="rgb(0,226,10)" rx="2" ry="2" /> +<text x="105.85" y="607.5" ></text> +</g> +<g > +<title>[[vdso]] (10,101,010 samples, 0.04%)</title><rect x="50.3" y="853" width="0.6" height="15.0" fill="rgb(0,192,74)" rx="2" ry="2" /> +<text x="53.32" y="863.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="159.1" y="549" width="0.5" height="15.0" fill="rgb(0,201,130)" rx="2" ry="2" /> +<text x="162.09" y="559.5" ></text> +</g> +<g > +<title>ksys_write (40,404,040 samples, 0.15%)</title><rect x="206.3" y="645" width="2.1" height="15.0" fill="rgb(0,234,120)" rx="2" ry="2" /> +<text x="209.31" y="655.5" ></text> +</g> +<g > +<title>nf_conntrack_in (10,101,010 samples, 0.04%)</title><rect x="10.5" y="533" width="0.6" height="15.0" fill="rgb(0,219,9)" rx="2" ry="2" /> +<text x="13.53" y="543.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="234.4" y="309" width="0.6" height="15.0" fill="rgb(0,228,23)" rx="2" ry="2" /> +<text x="237.43" y="319.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.04%)</title><rect x="285.9" y="293" width="0.5" height="15.0" fill="rgb(0,211,31)" rx="2" ry="2" /> +<text x="288.89" y="303.5" ></text> +</g> +<g > +<title>sodium_bin2base64 (5,323,232,270 samples, 20.26%)</title><rect x="620.1" y="853" width="279.7" height="15.0" fill="rgb(0,233,98)" rx="2" ry="2" /> +<text x="623.15" y="863.5" >sodium_bin2base64</text> +</g> +<g > +<title>get_page_from_freelist (20,202,020 samples, 0.08%)</title><rect x="895.5" y="693" width="1.1" height="15.0" fill="rgb(0,233,199)" rx="2" ry="2" /> +<text x="898.51" y="703.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="459.4" y="581" width="0.5" height="15.0" fill="rgb(0,212,98)" rx="2" ry="2" /> +<text x="462.39" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="337.4" y="677" width="1.0" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" /> +<text x="340.36" y="687.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.04%)</title><rect x="35.5" y="565" width="0.5" height="15.0" fill="rgb(0,224,22)" rx="2" ry="2" /> +<text x="38.47" y="575.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.04%)</title><rect x="520.9" y="565" width="0.6" height="15.0" fill="rgb(0,219,151)" rx="2" ry="2" /> +<text x="523.93" y="575.5" ></text> +</g> +<g > +<title>git_config_free (20,202,020 samples, 0.08%)</title><rect x="310.8" y="693" width="1.1" height="15.0" fill="rgb(0,199,96)" rx="2" ry="2" /> +<text x="313.83" y="703.5" ></text> +</g> +<g > +<title>tcp_data_queue (20,202,020 samples, 0.08%)</title><rect x="39.7" y="149" width="1.1" height="15.0" fill="rgb(0,223,12)" rx="2" ry="2" /> +<text x="42.71" y="159.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="185.1" y="677" width="0.5" height="15.0" fill="rgb(0,211,144)" rx="2" ry="2" /> +<text x="188.09" y="687.5" ></text> +</g> +<g > +<title>ext4_getblk (121,212,120 samples, 0.46%)</title><rect x="459.4" y="597" width="6.4" height="15.0" fill="rgb(0,225,95)" rx="2" ry="2" /> +<text x="462.39" y="607.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="388.8" y="405" width="0.6" height="15.0" fill="rgb(0,235,76)" rx="2" ry="2" /> +<text x="391.82" y="415.5" ></text> +</g> +<g > +<title>do_writepages (10,101,010 samples, 0.04%)</title><rect x="187.7" y="565" width="0.6" height="15.0" fill="rgb(0,209,0)" rx="2" ry="2" /> +<text x="190.74" y="575.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (30,303,030 samples, 0.12%)</title><rect x="389.4" y="437" width="1.5" height="15.0" fill="rgb(0,204,117)" rx="2" ry="2" /> +<text x="392.35" y="447.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.04%)</title><rect x="448.2" y="373" width="0.6" height="15.0" fill="rgb(0,206,119)" rx="2" ry="2" /> +<text x="451.25" y="383.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="509.3" y="837" width="0.5" height="15.0" fill="rgb(0,230,52)" rx="2" ry="2" /> +<text x="512.26" y="847.5" ></text> +</g> +<g > +<title>ext4_rename (20,202,020 samples, 0.08%)</title><rect x="415.9" y="565" width="1.0" height="15.0" fill="rgb(0,221,180)" rx="2" ry="2" /> +<text x="418.88" y="575.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="102.8" y="533" width="0.6" height="15.0" fill="rgb(0,231,12)" rx="2" ry="2" /> +<text x="105.85" y="543.5" ></text> +</g> +<g > +<title>fsnotify_destroy_marks (10,101,010 samples, 0.04%)</title><rect x="340.0" y="549" width="0.5" height="15.0" fill="rgb(0,210,171)" rx="2" ry="2" /> +<text x="343.01" y="559.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (30,303,030 samples, 0.12%)</title><rect x="369.7" y="597" width="1.6" height="15.0" fill="rgb(0,195,3)" rx="2" ry="2" /> +<text x="372.72" y="607.5" ></text> +</g> +<g > +<title>sock_alloc_inode (10,101,010 samples, 0.04%)</title><rect x="47.7" y="661" width="0.5" height="15.0" fill="rgb(0,209,98)" rx="2" ry="2" /> +<text x="50.67" y="671.5" ></text> +</g> +<g > +<title>do_unlinkat (70,707,070 samples, 0.27%)</title><rect x="166.0" y="661" width="3.7" height="15.0" fill="rgb(0,227,94)" rx="2" ry="2" /> +<text x="168.99" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="221.7" y="645" width="0.5" height="15.0" fill="rgb(0,220,78)" rx="2" ry="2" /> +<text x="224.70" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="199.4" y="629" width="0.5" height="15.0" fill="rgb(0,202,130)" rx="2" ry="2" /> +<text x="202.41" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="10.0" y="821" width="0.5" height="15.0" fill="rgb(0,202,114)" rx="2" ry="2" /> +<text x="13.00" y="831.5" ></text> +</g> +<g > +<title>inode_io_list_del (10,101,010 samples, 0.04%)</title><rect x="271.6" y="533" width="0.5" height="15.0" fill="rgb(0,234,150)" rx="2" ry="2" /> +<text x="274.57" y="543.5" ></text> +</g> +<g > +<title>__d_alloc (20,202,020 samples, 0.08%)</title><rect x="255.7" y="533" width="1.0" height="15.0" fill="rgb(0,239,85)" rx="2" ry="2" /> +<text x="258.65" y="543.5" ></text> +</g> +<g > +<title>net_rx_action (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="437" width="0.6" height="15.0" fill="rgb(0,213,128)" rx="2" ry="2" /> +<text x="1383.45" y="447.5" ></text> +</g> +<g > +<title>__mem_cgroup_charge (10,101,010 samples, 0.04%)</title><rect x="116.1" y="517" width="0.5" height="15.0" fill="rgb(0,238,172)" rx="2" ry="2" /> +<text x="119.11" y="527.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (111,111,110 samples, 0.42%)</title><rect x="135.2" y="517" width="5.8" height="15.0" fill="rgb(0,198,65)" rx="2" ry="2" /> +<text x="138.21" y="527.5" ></text> +</g> +<g > +<title>dentry_free (10,101,010 samples, 0.04%)</title><rect x="161.2" y="565" width="0.5" height="15.0" fill="rgb(0,232,48)" rx="2" ry="2" /> +<text x="164.21" y="575.5" ></text> +</g> +<g > +<title>process_backlog (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="421" width="1.6" height="15.0" fill="rgb(0,208,45)" rx="2" ry="2" /> +<text x="1371.78" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="185.6" y="709" width="1.6" height="15.0" fill="rgb(0,239,123)" rx="2" ry="2" /> +<text x="188.62" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="368.1" y="757" width="0.6" height="15.0" fill="rgb(0,220,101)" rx="2" ry="2" /> +<text x="371.13" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="45.0" y="789" width="1.1" height="15.0" fill="rgb(0,207,45)" rx="2" ry="2" /> +<text x="48.02" y="799.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.04%)</title><rect x="469.5" y="741" width="0.5" height="15.0" fill="rgb(0,195,44)" rx="2" ry="2" /> +<text x="472.47" y="751.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="151.1" y="613" width="0.6" height="15.0" fill="rgb(0,212,120)" rx="2" ry="2" /> +<text x="154.13" y="623.5" ></text> +</g> +<g > +<title>__fdget (30,303,030 samples, 0.12%)</title><rect x="25.4" y="773" width="1.6" height="15.0" fill="rgb(0,222,94)" rx="2" ry="2" /> +<text x="28.39" y="783.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.04%)</title><rect x="266.3" y="581" width="0.5" height="15.0" fill="rgb(0,226,136)" rx="2" ry="2" /> +<text x="269.26" y="591.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="82.2" y="917" width="0.5" height="15.0" fill="rgb(0,198,29)" rx="2" ry="2" /> +<text x="85.16" y="927.5" ></text> +</g> +<g > +<title>destroy_inode (10,101,010 samples, 0.04%)</title><rect x="131.5" y="549" width="0.5" height="15.0" fill="rgb(0,208,199)" rx="2" ry="2" /> +<text x="134.50" y="559.5" ></text> +</g> +<g > +<title>storvsc_queuecommand (20,202,020 samples, 0.08%)</title><rect x="436.0" y="245" width="1.1" height="15.0" fill="rgb(0,197,157)" rx="2" ry="2" /> +<text x="439.04" y="255.5" ></text> +</g> +<g > +<title>git_worktree_list (20,202,020 samples, 0.08%)</title><rect x="300.2" y="725" width="1.1" height="15.0" fill="rgb(0,227,136)" rx="2" ry="2" /> +<text x="303.22" y="735.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (20,202,020 samples, 0.08%)</title><rect x="332.1" y="501" width="1.0" height="15.0" fill="rgb(0,203,7)" rx="2" ry="2" /> +<text x="335.05" y="511.5" ></text> +</g> +<g > +<title>__blk_mq_delay_run_hw_queue (10,101,010 samples, 0.04%)</title><rect x="187.7" y="453" width="0.6" height="15.0" fill="rgb(0,208,161)" rx="2" ry="2" /> +<text x="190.74" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="444.5" y="661" width="0.6" height="15.0" fill="rgb(0,196,38)" rx="2" ry="2" /> +<text x="447.53" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="294.9" y="581" width="0.5" height="15.0" fill="rgb(0,230,87)" rx="2" ry="2" /> +<text x="297.91" y="591.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="629" width="0.5" height="15.0" fill="rgb(0,206,1)" rx="2" ry="2" /> +<text x="1342.07" y="639.5" ></text> +</g> +<g > +<title>ext4_bio_write_page (10,101,010 samples, 0.04%)</title><rect x="275.3" y="437" width="0.5" height="15.0" fill="rgb(0,218,97)" rx="2" ry="2" /> +<text x="278.28" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="497.1" y="725" width="0.5" height="15.0" fill="rgb(0,201,160)" rx="2" ry="2" /> +<text x="500.06" y="735.5" ></text> +</g> +<g > +<title>alloc_file_pseudo (10,101,010 samples, 0.04%)</title><rect x="45.5" y="709" width="0.6" height="15.0" fill="rgb(0,202,111)" rx="2" ry="2" /> +<text x="48.55" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="288.5" y="645" width="0.6" height="15.0" fill="rgb(0,225,209)" rx="2" ry="2" /> +<text x="291.55" y="655.5" ></text> +</g> +<g > +<title>git_config_free (30,303,030 samples, 0.12%)</title><rect x="83.7" y="789" width="1.6" height="15.0" fill="rgb(0,231,182)" rx="2" ry="2" /> +<text x="86.75" y="799.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.04%)</title><rect x="390.9" y="501" width="0.6" height="15.0" fill="rgb(0,191,127)" rx="2" ry="2" /> +<text x="393.95" y="511.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="446.1" y="613" width="0.6" height="15.0" fill="rgb(0,221,118)" rx="2" ry="2" /> +<text x="449.12" y="623.5" ></text> +</g> +<g > +<title>free (20,202,020 samples, 0.08%)</title><rect x="83.7" y="741" width="1.1" height="15.0" fill="rgb(0,194,176)" rx="2" ry="2" /> +<text x="86.75" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="324.1" y="677" width="1.1" height="15.0" fill="rgb(0,229,197)" rx="2" ry="2" /> +<text x="327.09" y="687.5" ></text> +</g> +<g > +<title>tcp_send_ack (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="661" width="1.6" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="1371.78" y="671.5" ></text> +</g> +<g > +<title>rename (111,111,110 samples, 0.42%)</title><rect x="328.9" y="709" width="5.8" height="15.0" fill="rgb(0,194,40)" rx="2" ry="2" /> +<text x="331.87" y="719.5" ></text> +</g> +<g > +<title>task_work_run (161,616,160 samples, 0.62%)</title><rect x="34.4" y="709" width="8.5" height="15.0" fill="rgb(0,214,17)" rx="2" ry="2" /> +<text x="37.41" y="719.5" ></text> +</g> +<g > +<title>nf_nat_inet_fn (10,101,010 samples, 0.04%)</title><rect x="1372.0" y="597" width="0.5" height="15.0" fill="rgb(0,194,111)" rx="2" ry="2" /> +<text x="1374.96" y="607.5" ></text> +</g> +<g > +<title>alloc_thread_stack_node (20,202,020 samples, 0.08%)</title><rect x="20.1" y="853" width="1.0" height="15.0" fill="rgb(0,194,13)" rx="2" ry="2" /> +<text x="23.08" y="863.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="135.7" y="453" width="0.6" height="15.0" fill="rgb(0,228,8)" rx="2" ry="2" /> +<text x="138.74" y="463.5" ></text> +</g> +<g > +<title>ext4_setent (10,101,010 samples, 0.04%)</title><rect x="453.0" y="565" width="0.6" height="15.0" fill="rgb(0,200,195)" rx="2" ry="2" /> +<text x="456.02" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.31%)</title><rect x="172.4" y="741" width="4.2" height="15.0" fill="rgb(0,207,169)" rx="2" ry="2" /> +<text x="175.35" y="751.5" ></text> +</g> +<g > +<title>iput (70,707,070 samples, 0.27%)</title><rect x="157.5" y="613" width="3.7" height="15.0" fill="rgb(0,196,50)" rx="2" ry="2" /> +<text x="160.50" y="623.5" ></text> +</g> +<g > +<title>__submit_bio (20,202,020 samples, 0.08%)</title><rect x="450.4" y="437" width="1.0" height="15.0" fill="rgb(0,234,73)" rx="2" ry="2" /> +<text x="453.37" y="447.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.04%)</title><rect x="221.7" y="581" width="0.5" height="15.0" fill="rgb(0,217,148)" rx="2" ry="2" /> +<text x="224.70" y="591.5" ></text> +</g> +<g > +<title>close_fd (10,101,010 samples, 0.04%)</title><rect x="481.1" y="613" width="0.6" height="15.0" fill="rgb(0,205,32)" rx="2" ry="2" /> +<text x="484.14" y="623.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.04%)</title><rect x="91.7" y="485" width="0.5" height="15.0" fill="rgb(0,230,183)" rx="2" ry="2" /> +<text x="94.71" y="495.5" ></text> +</g> +<g > +<title>ext4_match.part.0 (10,101,010 samples, 0.04%)</title><rect x="109.2" y="485" width="0.5" height="15.0" fill="rgb(0,203,115)" rx="2" ry="2" /> +<text x="112.22" y="495.5" ></text> +</g> +<g > +<title>ext4_es_remove_extent (20,202,020 samples, 0.08%)</title><rect x="268.4" y="469" width="1.0" height="15.0" fill="rgb(0,217,157)" rx="2" ry="2" /> +<text x="271.39" y="479.5" ></text> +</g> +<g > +<title>git_odb_read (50,505,050 samples, 0.19%)</title><rect x="208.4" y="757" width="2.7" height="15.0" fill="rgb(0,229,0)" rx="2" ry="2" /> +<text x="211.43" y="767.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.04%)</title><rect x="154.8" y="645" width="0.6" height="15.0" fill="rgb(0,225,20)" rx="2" ry="2" /> +<text x="157.84" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="170.8" y="725" width="0.5" height="15.0" fill="rgb(0,209,185)" rx="2" ry="2" /> +<text x="173.76" y="735.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="238.7" y="597" width="0.5" height="15.0" fill="rgb(0,227,77)" rx="2" ry="2" /> +<text x="241.67" y="607.5" ></text> +</g> +<g > +<title>proc_fork_connector (10,101,010 samples, 0.04%)</title><rect x="22.7" y="885" width="0.6" height="15.0" fill="rgb(0,226,43)" rx="2" ry="2" /> +<text x="25.73" y="895.5" ></text> +</g> +<g > +<title>put_pid (10,101,010 samples, 0.04%)</title><rect x="266.3" y="565" width="0.5" height="15.0" fill="rgb(0,224,103)" rx="2" ry="2" /> +<text x="269.26" y="575.5" ></text> +</g> +<g > +<title>internal_get_user_pages_fast (10,101,010 samples, 0.04%)</title><rect x="30.7" y="677" width="0.5" height="15.0" fill="rgb(0,200,187)" rx="2" ry="2" /> +<text x="33.69" y="687.5" ></text> +</g> +<g > +<title>list_lru_add (10,101,010 samples, 0.04%)</title><rect x="239.7" y="597" width="0.6" height="15.0" fill="rgb(0,219,113)" rx="2" ry="2" /> +<text x="242.73" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="397.8" y="629" width="3.2" height="15.0" fill="rgb(0,219,39)" rx="2" ry="2" /> +<text x="400.84" y="639.5" ></text> +</g> +<g > +<title>ext4_mb_free_metadata.isra.0 (10,101,010 samples, 0.04%)</title><rect x="414.8" y="389" width="0.6" height="15.0" fill="rgb(0,210,13)" rx="2" ry="2" /> +<text x="417.82" y="399.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.04%)</title><rect x="288.5" y="581" width="0.6" height="15.0" fill="rgb(0,219,159)" rx="2" ry="2" /> +<text x="291.55" y="591.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="288.5" y="501" width="0.6" height="15.0" fill="rgb(0,194,134)" rx="2" ry="2" /> +<text x="291.55" y="511.5" ></text> +</g> +<g > +<title>scsi_dispatch_cmd (10,101,010 samples, 0.04%)</title><rect x="372.4" y="309" width="0.5" height="15.0" fill="rgb(0,238,174)" rx="2" ry="2" /> +<text x="375.38" y="319.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="381.9" y="389" width="0.6" height="15.0" fill="rgb(0,223,80)" rx="2" ry="2" /> +<text x="384.93" y="399.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.04%)</title><rect x="185.1" y="645" width="0.5" height="15.0" fill="rgb(0,220,82)" rx="2" ry="2" /> +<text x="188.09" y="655.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.04%)</title><rect x="285.4" y="549" width="0.5" height="15.0" fill="rgb(0,225,100)" rx="2" ry="2" /> +<text x="288.36" y="559.5" ></text> +</g> +<g > +<title>__napi_poll (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="437" width="1.6" height="15.0" fill="rgb(0,238,79)" rx="2" ry="2" /> +<text x="1370.19" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.35%)</title><rect x="497.6" y="677" width="4.8" height="15.0" fill="rgb(0,225,99)" rx="2" ry="2" /> +<text x="500.59" y="687.5" ></text> +</g> +<g > +<title>__blk_mq_run_hw_queue (10,101,010 samples, 0.04%)</title><rect x="187.7" y="437" width="0.6" height="15.0" fill="rgb(0,199,76)" rx="2" ry="2" /> +<text x="190.74" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="302.9" y="597" width="0.5" height="15.0" fill="rgb(0,194,184)" rx="2" ry="2" /> +<text x="305.87" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="358.6" y="709" width="1.6" height="15.0" fill="rgb(0,212,52)" rx="2" ry="2" /> +<text x="361.58" y="719.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="588.3" y="565" width="0.5" height="15.0" fill="rgb(0,225,58)" rx="2" ry="2" /> +<text x="591.32" y="575.5" ></text> +</g> +<g > +<title>evict (30,303,030 samples, 0.12%)</title><rect x="447.2" y="533" width="1.6" height="15.0" fill="rgb(0,237,50)" rx="2" ry="2" /> +<text x="450.19" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.46%)</title><rect x="432.3" y="709" width="6.4" height="15.0" fill="rgb(0,208,188)" rx="2" ry="2" /> +<text x="435.33" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="505.5" y="709" width="0.6" height="15.0" fill="rgb(0,224,57)" rx="2" ry="2" /> +<text x="508.55" y="719.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (30,303,030 samples, 0.12%)</title><rect x="303.9" y="517" width="1.6" height="15.0" fill="rgb(0,194,185)" rx="2" ry="2" /> +<text x="306.93" y="527.5" ></text> +</g> +<g > +<title>scsi_queue_rq (10,101,010 samples, 0.04%)</title><rect x="334.2" y="309" width="0.5" height="15.0" fill="rgb(0,216,208)" rx="2" ry="2" /> +<text x="337.18" y="319.5" ></text> +</g> +<g > +<title>tcp_v6_syn_recv_sock (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="277" width="0.5" height="15.0" fill="rgb(0,230,192)" rx="2" ry="2" /> +<text x="1388.76" y="287.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="394.7" y="597" width="1.0" height="15.0" fill="rgb(0,222,175)" rx="2" ry="2" /> +<text x="397.66" y="607.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.04%)</title><rect x="307.1" y="437" width="0.5" height="15.0" fill="rgb(0,201,34)" rx="2" ry="2" /> +<text x="310.12" y="447.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="392.5" y="389" width="0.6" height="15.0" fill="rgb(0,212,74)" rx="2" ry="2" /> +<text x="395.54" y="399.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="414.3" y="661" width="0.5" height="15.0" fill="rgb(0,194,128)" rx="2" ry="2" /> +<text x="417.29" y="671.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.04%)</title><rect x="288.5" y="629" width="0.6" height="15.0" fill="rgb(0,213,88)" rx="2" ry="2" /> +<text x="291.55" y="639.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="97.5" y="389" width="0.6" height="15.0" fill="rgb(0,231,154)" rx="2" ry="2" /> +<text x="100.54" y="399.5" ></text> +</g> +<g > +<title>ext4_map_blocks (20,202,020 samples, 0.08%)</title><rect x="451.4" y="469" width="1.1" height="15.0" fill="rgb(0,196,140)" rx="2" ry="2" /> +<text x="454.43" y="479.5" ></text> +</g> +<g > +<title>ext4_find_entry (20,202,020 samples, 0.08%)</title><rect x="168.6" y="597" width="1.1" height="15.0" fill="rgb(0,219,141)" rx="2" ry="2" /> +<text x="171.64" y="607.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="132.0" y="517" width="0.6" height="15.0" fill="rgb(0,223,166)" rx="2" ry="2" /> +<text x="135.03" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="401.6" y="645" width="1.5" height="15.0" fill="rgb(0,214,119)" rx="2" ry="2" /> +<text x="404.56" y="655.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.04%)</title><rect x="429.1" y="517" width="0.6" height="15.0" fill="rgb(0,217,197)" rx="2" ry="2" /> +<text x="432.15" y="527.5" ></text> +</g> +<g > +<title>_Fork (373,737,370 samples, 1.42%)</title><rect x="510.3" y="805" width="19.7" height="15.0" fill="rgb(0,234,26)" rx="2" ry="2" /> +<text x="513.32" y="815.5" ></text> +</g> +<g > +<title>set_root (10,101,010 samples, 0.04%)</title><rect x="495.5" y="501" width="0.5" height="15.0" fill="rgb(0,214,147)" rx="2" ry="2" /> +<text x="498.47" y="511.5" ></text> +</g> +<g > +<title>git_refdb_open (40,404,040 samples, 0.15%)</title><rect x="483.3" y="757" width="2.1" height="15.0" fill="rgb(0,228,62)" rx="2" ry="2" /> +<text x="486.26" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="339.5" y="693" width="0.5" height="15.0" fill="rgb(0,201,89)" rx="2" ry="2" /> +<text x="342.48" y="703.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="383.5" y="485" width="0.5" height="15.0" fill="rgb(0,197,107)" rx="2" ry="2" /> +<text x="386.52" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="287.0" y="629" width="1.0" height="15.0" fill="rgb(0,239,128)" rx="2" ry="2" /> +<text x="289.96" y="639.5" ></text> +</g> +<g > +<title>add_to_page_cache_lru (10,101,010 samples, 0.04%)</title><rect x="76.3" y="757" width="0.6" height="15.0" fill="rgb(0,229,190)" rx="2" ry="2" /> +<text x="79.32" y="767.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="303.9" y="357" width="0.6" height="15.0" fill="rgb(0,233,63)" rx="2" ry="2" /> +<text x="306.93" y="367.5" ></text> +</g> +<g > +<title>ext4_mkdir (80,808,080 samples, 0.31%)</title><rect x="55.1" y="821" width="4.2" height="15.0" fill="rgb(0,192,43)" rx="2" ry="2" /> +<text x="58.10" y="831.5" ></text> +</g> +<g > +<title>tcp_send_ack (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="661" width="0.5" height="15.0" fill="rgb(0,228,55)" rx="2" ry="2" /> +<text x="1388.76" y="671.5" ></text> +</g> +<g > +<title>__netif_receive_skb (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="341" width="0.5" height="15.0" fill="rgb(0,206,63)" rx="2" ry="2" /> +<text x="1342.07" y="351.5" ></text> +</g> +<g > +<title>__strdup (10,101,010 samples, 0.04%)</title><rect x="190.4" y="677" width="0.5" height="15.0" fill="rgb(0,231,20)" rx="2" ry="2" /> +<text x="193.39" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="15.8" y="853" width="0.6" height="15.0" fill="rgb(0,190,22)" rx="2" ry="2" /> +<text x="18.84" y="863.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="588.3" y="597" width="0.5" height="15.0" fill="rgb(0,220,93)" rx="2" ry="2" /> +<text x="591.32" y="607.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (80,808,080 samples, 0.31%)</title><rect x="50.3" y="869" width="4.3" height="15.0" fill="rgb(0,197,143)" rx="2" ry="2" /> +<text x="53.32" y="879.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (30,303,030 samples, 0.12%)</title><rect x="1386.8" y="709" width="1.6" height="15.0" fill="rgb(0,230,66)" rx="2" ry="2" /> +<text x="1389.82" y="719.5" ></text> +</g> +<g > +<title>json_set_string_internal (616,161,610 samples, 2.35%)</title><rect x="900.3" y="837" width="32.4" height="15.0" fill="rgb(0,213,79)" rx="2" ry="2" /> +<text x="903.29" y="847.5" >js..</text> +</g> +<g > +<title>ip_finish_output2 (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="517" width="0.5" height="15.0" fill="rgb(0,211,62)" rx="2" ry="2" /> +<text x="1388.76" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="263.6" y="629" width="0.5" height="15.0" fill="rgb(0,222,193)" rx="2" ry="2" /> +<text x="266.61" y="639.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="420.7" y="549" width="0.5" height="15.0" fill="rgb(0,238,206)" rx="2" ry="2" /> +<text x="423.66" y="559.5" ></text> +</g> +<g > +<title>iput (20,202,020 samples, 0.08%)</title><rect x="104.4" y="581" width="1.1" height="15.0" fill="rgb(0,194,160)" rx="2" ry="2" /> +<text x="107.44" y="591.5" ></text> +</g> +<g > +<title>__lookup_mnt (10,101,010 samples, 0.04%)</title><rect x="291.7" y="469" width="0.6" height="15.0" fill="rgb(0,201,172)" rx="2" ry="2" /> +<text x="294.73" y="479.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (20,202,020 samples, 0.08%)</title><rect x="48.7" y="821" width="1.1" height="15.0" fill="rgb(0,224,44)" rx="2" ry="2" /> +<text x="51.73" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="503.4" y="629" width="0.6" height="15.0" fill="rgb(0,215,170)" rx="2" ry="2" /> +<text x="506.43" y="639.5" ></text> +</g> +<g > +<title>lru_cache_add (10,101,010 samples, 0.04%)</title><rect x="897.1" y="709" width="0.5" height="15.0" fill="rgb(0,206,124)" rx="2" ry="2" /> +<text x="900.10" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="349.6" y="629" width="0.5" height="15.0" fill="rgb(0,231,163)" rx="2" ry="2" /> +<text x="352.56" y="639.5" ></text> +</g> +<g > +<title>pids_can_fork (10,101,010 samples, 0.04%)</title><rect x="19.0" y="853" width="0.6" height="15.0" fill="rgb(0,235,101)" rx="2" ry="2" /> +<text x="22.02" y="863.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.04%)</title><rect x="10.5" y="565" width="0.6" height="15.0" fill="rgb(0,233,21)" rx="2" ry="2" /> +<text x="13.53" y="575.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="202.1" y="629" width="0.5" height="15.0" fill="rgb(0,207,208)" rx="2" ry="2" /> +<text x="205.06" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="339.5" y="677" width="0.5" height="15.0" fill="rgb(0,229,189)" rx="2" ry="2" /> +<text x="342.48" y="687.5" ></text> +</g> +<g > +<title>dentry_kill (10,101,010 samples, 0.04%)</title><rect x="187.2" y="645" width="0.5" height="15.0" fill="rgb(0,203,36)" rx="2" ry="2" /> +<text x="190.21" y="655.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="167.6" y="533" width="0.5" height="15.0" fill="rgb(0,200,113)" rx="2" ry="2" /> +<text x="170.58" y="543.5" ></text> +</g> +<g > +<title>vfs_rename (50,505,050 samples, 0.19%)</title><rect x="342.7" y="629" width="2.6" height="15.0" fill="rgb(0,217,140)" rx="2" ry="2" /> +<text x="345.66" y="639.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.04%)</title><rect x="275.3" y="309" width="0.5" height="15.0" fill="rgb(0,197,66)" rx="2" ry="2" /> +<text x="278.28" y="319.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="180.8" y="741" width="0.6" height="15.0" fill="rgb(0,192,22)" rx="2" ry="2" /> +<text x="183.84" y="751.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="116.6" y="629" width="0.6" height="15.0" fill="rgb(0,207,115)" rx="2" ry="2" /> +<text x="119.64" y="639.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_bh (10,101,010 samples, 0.04%)</title><rect x="1379.4" y="661" width="0.5" height="15.0" fill="rgb(0,239,174)" rx="2" ry="2" /> +<text x="1382.39" y="671.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="378.2" y="389" width="0.5" height="15.0" fill="rgb(0,231,160)" rx="2" ry="2" /> +<text x="381.21" y="399.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.04%)</title><rect x="188.3" y="613" width="0.5" height="15.0" fill="rgb(0,229,197)" rx="2" ry="2" /> +<text x="191.27" y="623.5" ></text> +</g> +<g > +<title>ext4_writepages (80,808,080 samples, 0.31%)</title><rect x="448.8" y="501" width="4.2" height="15.0" fill="rgb(0,233,99)" rx="2" ry="2" /> +<text x="451.78" y="511.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (20,202,020 samples, 0.08%)</title><rect x="373.4" y="469" width="1.1" height="15.0" fill="rgb(0,214,25)" rx="2" ry="2" /> +<text x="376.44" y="479.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.04%)</title><rect x="355.4" y="485" width="0.5" height="15.0" fill="rgb(0,224,19)" rx="2" ry="2" /> +<text x="358.40" y="495.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.12%)</title><rect x="494.9" y="677" width="1.6" height="15.0" fill="rgb(0,202,34)" rx="2" ry="2" /> +<text x="497.94" y="687.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="507.1" y="693" width="0.6" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="510.14" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="302.3" y="629" width="1.1" height="15.0" fill="rgb(0,192,48)" rx="2" ry="2" /> +<text x="305.34" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="225.9" y="709" width="0.6" height="15.0" fill="rgb(0,231,201)" rx="2" ry="2" /> +<text x="228.94" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="316.1" y="725" width="3.2" height="15.0" fill="rgb(0,195,196)" rx="2" ry="2" /> +<text x="319.14" y="735.5" ></text> +</g> +<g > +<title>json_tokener_new_ex (20,202,020 samples, 0.08%)</title><rect x="1374.6" y="773" width="1.1" height="15.0" fill="rgb(0,201,54)" rx="2" ry="2" /> +<text x="1377.61" y="783.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="172.4" y="565" width="0.5" height="15.0" fill="rgb(0,226,44)" rx="2" ry="2" /> +<text x="175.35" y="575.5" ></text> +</g> +<g > +<title>__ip_finish_output (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="533" width="0.5" height="15.0" fill="rgb(0,207,137)" rx="2" ry="2" /> +<text x="1388.76" y="543.5" ></text> +</g> +<g > +<title>schedule (50,505,050 samples, 0.19%)</title><rect x="1301.4" y="661" width="2.6" height="15.0" fill="rgb(0,216,138)" rx="2" ry="2" /> +<text x="1304.40" y="671.5" ></text> +</g> +<g > +<title>___slab_alloc (20,202,020 samples, 0.08%)</title><rect x="255.7" y="501" width="1.0" height="15.0" fill="rgb(0,233,189)" rx="2" ry="2" /> +<text x="258.65" y="511.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="64.1" y="693" width="0.5" height="15.0" fill="rgb(0,194,158)" rx="2" ry="2" /> +<text x="67.12" y="703.5" ></text> +</g> +<g > +<title>ip_queue_xmit (70,707,070 samples, 0.27%)</title><rect x="10.5" y="629" width="3.7" height="15.0" fill="rgb(0,201,144)" rx="2" ry="2" /> +<text x="13.53" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (262,626,260 samples, 1.00%)</title><rect x="192.5" y="773" width="13.8" height="15.0" fill="rgb(0,221,116)" rx="2" ry="2" /> +<text x="195.51" y="783.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="413.2" y="613" width="1.1" height="15.0" fill="rgb(0,213,196)" rx="2" ry="2" /> +<text x="416.23" y="623.5" ></text> +</g> +<g > +<title>__fget_light (10,101,010 samples, 0.04%)</title><rect x="248.2" y="645" width="0.6" height="15.0" fill="rgb(0,191,125)" rx="2" ry="2" /> +<text x="251.22" y="655.5" ></text> +</g> +<g > +<title>__fput (161,616,160 samples, 0.62%)</title><rect x="34.4" y="677" width="8.5" height="15.0" fill="rgb(0,203,51)" rx="2" ry="2" /> +<text x="37.41" y="687.5" ></text> +</g> +<g > +<title>cimple-worker (25,424,242,170 samples, 96.77%)</title><rect x="54.6" y="997" width="1335.4" height="15.0" fill="rgb(0,218,43)" rx="2" ry="2" /> +<text x="57.57" y="1007.5" >cimple-worker</text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.23%)</title><rect x="428.1" y="725" width="3.2" height="15.0" fill="rgb(0,196,186)" rx="2" ry="2" /> +<text x="431.09" y="735.5" ></text> +</g> +<g > +<title>new_sync_read (10,101,010 samples, 0.04%)</title><rect x="221.7" y="565" width="0.5" height="15.0" fill="rgb(0,207,183)" rx="2" ry="2" /> +<text x="224.70" y="575.5" ></text> +</g> +<g > +<title>ext4_alloc_inode (10,101,010 samples, 0.04%)</title><rect x="229.7" y="533" width="0.5" height="15.0" fill="rgb(0,239,158)" rx="2" ry="2" /> +<text x="232.65" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.04%)</title><rect x="368.7" y="629" width="0.5" height="15.0" fill="rgb(0,212,63)" rx="2" ry="2" /> +<text x="371.66" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="600.5" y="805" width="0.5" height="15.0" fill="rgb(0,223,151)" rx="2" ry="2" /> +<text x="603.52" y="815.5" ></text> +</g> +<g > +<title>ext4_evict_inode (20,202,020 samples, 0.08%)</title><rect x="414.8" y="501" width="1.1" height="15.0" fill="rgb(0,199,39)" rx="2" ry="2" /> +<text x="417.82" y="511.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.04%)</title><rect x="491.2" y="565" width="0.6" height="15.0" fill="rgb(0,198,17)" rx="2" ry="2" /> +<text x="494.22" y="575.5" ></text> +</g> +<g > +<title>do_sys_openat2 (303,030,300 samples, 1.15%)</title><rect x="60.4" y="869" width="15.9" height="15.0" fill="rgb(0,219,25)" rx="2" ry="2" /> +<text x="63.40" y="879.5" ></text> +</g> +<g > +<title>__sys_accept4 (50,505,050 samples, 0.19%)</title><rect x="46.1" y="757" width="2.6" height="15.0" fill="rgb(0,228,49)" rx="2" ry="2" /> +<text x="49.08" y="767.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="233.4" y="517" width="0.5" height="15.0" fill="rgb(0,232,50)" rx="2" ry="2" /> +<text x="236.37" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="292.3" y="629" width="1.0" height="15.0" fill="rgb(0,220,101)" rx="2" ry="2" /> +<text x="295.26" y="639.5" ></text> +</g> +<g > +<title>new_sync_write (20,202,020 samples, 0.08%)</title><rect x="407.4" y="613" width="1.1" height="15.0" fill="rgb(0,207,119)" rx="2" ry="2" /> +<text x="410.39" y="623.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="242.9" y="533" width="0.5" height="15.0" fill="rgb(0,206,82)" rx="2" ry="2" /> +<text x="245.92" y="543.5" ></text> +</g> +<g > +<title>do_dentry_open (20,202,020 samples, 0.08%)</title><rect x="64.1" y="789" width="1.1" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="67.12" y="799.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (20,202,020 samples, 0.08%)</title><rect x="419.1" y="549" width="1.0" height="15.0" fill="rgb(0,237,139)" rx="2" ry="2" /> +<text x="422.07" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.42%)</title><rect x="280.1" y="677" width="5.8" height="15.0" fill="rgb(0,224,68)" rx="2" ry="2" /> +<text x="283.06" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="319.9" y="677" width="2.6" height="15.0" fill="rgb(0,192,4)" rx="2" ry="2" /> +<text x="322.85" y="687.5" ></text> +</g> +<g > +<title>__netif_receive_skb (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="405" width="0.5" height="15.0" fill="rgb(0,196,129)" rx="2" ry="2" /> +<text x="1342.60" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="364.4" y="757" width="3.7" height="15.0" fill="rgb(0,204,79)" rx="2" ry="2" /> +<text x="367.42" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.46%)</title><rect x="103.4" y="645" width="6.3" height="15.0" fill="rgb(0,237,99)" rx="2" ry="2" /> +<text x="106.38" y="655.5" ></text> +</g> +<g > +<title>ci_run_git_repo (9,929,292,830 samples, 37.79%)</title><rect x="82.7" y="885" width="521.5" height="15.0" fill="rgb(0,224,139)" rx="2" ry="2" /> +<text x="85.69" y="895.5" >ci_run_git_repo</text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="167.6" y="549" width="0.5" height="15.0" fill="rgb(0,206,32)" rx="2" ry="2" /> +<text x="170.58" y="559.5" ></text> +</g> +<g > +<title>cap_inode_need_killpriv (10,101,010 samples, 0.04%)</title><rect x="439.8" y="469" width="0.5" height="15.0" fill="rgb(0,200,10)" rx="2" ry="2" /> +<text x="442.76" y="479.5" ></text> +</g> +<g > +<title>net_connect (101,010,100 samples, 0.38%)</title><rect x="1368.8" y="885" width="5.3" height="15.0" fill="rgb(0,204,98)" rx="2" ry="2" /> +<text x="1371.78" y="895.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (10,101,010 samples, 0.04%)</title><rect x="1337.5" y="757" width="0.5" height="15.0" fill="rgb(0,218,77)" rx="2" ry="2" /> +<text x="1340.47" y="767.5" ></text> +</g> +<g > +<title>wake_up_bit (10,101,010 samples, 0.04%)</title><rect x="309.8" y="501" width="0.5" height="15.0" fill="rgb(0,231,50)" rx="2" ry="2" /> +<text x="312.77" y="511.5" ></text> +</g> +<g > +<title>__do_sys_brk (10,101,010 samples, 0.04%)</title><rect x="619.6" y="709" width="0.5" height="15.0" fill="rgb(0,216,108)" rx="2" ry="2" /> +<text x="622.62" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="212.1" y="773" width="2.2" height="15.0" fill="rgb(0,198,115)" rx="2" ry="2" /> +<text x="215.15" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="211.1" y="725" width="0.5" height="15.0" fill="rgb(0,196,117)" rx="2" ry="2" /> +<text x="214.08" y="735.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.04%)</title><rect x="479.0" y="485" width="0.6" height="15.0" fill="rgb(0,225,198)" rx="2" ry="2" /> +<text x="482.02" y="495.5" ></text> +</g> +<g > +<title>git_remote_download (80,808,080 samples, 0.31%)</title><rect x="364.4" y="789" width="4.3" height="15.0" fill="rgb(0,234,128)" rx="2" ry="2" /> +<text x="367.42" y="799.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.04%)</title><rect x="354.3" y="469" width="0.6" height="15.0" fill="rgb(0,226,75)" rx="2" ry="2" /> +<text x="357.34" y="479.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.12%)</title><rect x="382.5" y="565" width="1.5" height="15.0" fill="rgb(0,193,208)" rx="2" ry="2" /> +<text x="385.46" y="575.5" ></text> +</g> +<g > +<title>git_signature_now (10,101,010 samples, 0.04%)</title><rect x="291.7" y="725" width="0.6" height="15.0" fill="rgb(0,199,28)" rx="2" ry="2" /> +<text x="294.73" y="735.5" ></text> +</g> +<g > +<title>open_last_lookups (191,919,190 samples, 0.73%)</title><rect x="65.2" y="821" width="10.1" height="15.0" fill="rgb(0,209,17)" rx="2" ry="2" /> +<text x="68.18" y="831.5" ></text> +</g> +<g > +<title>do_anonymous_page (171,717,170 samples, 0.65%)</title><rect x="920.4" y="693" width="9.1" height="15.0" fill="rgb(0,210,151)" rx="2" ry="2" /> +<text x="923.45" y="703.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="469.5" y="645" width="0.5" height="15.0" fill="rgb(0,225,134)" rx="2" ry="2" /> +<text x="472.47" y="655.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="458.9" y="597" width="0.5" height="15.0" fill="rgb(0,233,92)" rx="2" ry="2" /> +<text x="461.86" y="607.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.04%)</title><rect x="281.6" y="565" width="0.6" height="15.0" fill="rgb(0,234,111)" rx="2" ry="2" /> +<text x="284.65" y="575.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.04%)</title><rect x="285.9" y="309" width="0.5" height="15.0" fill="rgb(0,211,54)" rx="2" ry="2" /> +<text x="288.89" y="319.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="480.6" y="725" width="2.7" height="15.0" fill="rgb(0,211,28)" rx="2" ry="2" /> +<text x="483.61" y="735.5" ></text> +</g> +<g > +<title>do_softirq (80,808,080 samples, 0.31%)</title><rect x="37.6" y="373" width="4.2" height="15.0" fill="rgb(0,230,197)" rx="2" ry="2" /> +<text x="40.59" y="383.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="291.7" y="613" width="0.6" height="15.0" fill="rgb(0,210,96)" rx="2" ry="2" /> +<text x="294.73" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="191.5" y="821" width="0.5" height="15.0" fill="rgb(0,207,44)" rx="2" ry="2" /> +<text x="194.45" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.04%)</title><rect x="470.5" y="613" width="0.6" height="15.0" fill="rgb(0,205,68)" rx="2" ry="2" /> +<text x="473.53" y="623.5" ></text> +</g> +<g > +<title>do_user_addr_fault (181,818,180 samples, 0.69%)</title><rect x="888.6" y="805" width="9.6" height="15.0" fill="rgb(0,223,195)" rx="2" ry="2" /> +<text x="891.62" y="815.5" ></text> +</g> +<g > +<title>event_loop_run (454,545,450 samples, 1.73%)</title><rect x="24.9" y="885" width="23.8" height="15.0" fill="rgb(0,209,161)" rx="2" ry="2" /> +<text x="27.86" y="895.5" >e..</text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="352.2" y="405" width="0.5" height="15.0" fill="rgb(0,221,22)" rx="2" ry="2" /> +<text x="355.21" y="415.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (10,101,010 samples, 0.04%)</title><rect x="178.2" y="693" width="0.5" height="15.0" fill="rgb(0,231,46)" rx="2" ry="2" /> +<text x="181.19" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (161,616,160 samples, 0.62%)</title><rect x="34.4" y="773" width="8.5" height="15.0" fill="rgb(0,216,185)" rx="2" ry="2" /> +<text x="37.41" y="783.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="601.6" y="837" width="1.0" height="15.0" fill="rgb(0,198,180)" rx="2" ry="2" /> +<text x="604.58" y="847.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="299.2" y="613" width="0.5" height="15.0" fill="rgb(0,201,27)" rx="2" ry="2" /> +<text x="302.16" y="623.5" ></text> +</g> +<g > +<title>__blk_mq_end_request (10,101,010 samples, 0.04%)</title><rect x="444.0" y="501" width="0.5" height="15.0" fill="rgb(0,234,136)" rx="2" ry="2" /> +<text x="447.00" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="416.9" y="725" width="1.1" height="15.0" fill="rgb(0,202,48)" rx="2" ry="2" /> +<text x="419.94" y="735.5" ></text> +</g> +<g > +<title>do_mkdirat (202,020,200 samples, 0.77%)</title><rect x="228.1" y="629" width="10.6" height="15.0" fill="rgb(0,203,2)" rx="2" ry="2" /> +<text x="231.06" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="407.4" y="693" width="1.1" height="15.0" fill="rgb(0,200,117)" rx="2" ry="2" /> +<text x="410.39" y="703.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.04%)</title><rect x="242.9" y="581" width="0.5" height="15.0" fill="rgb(0,226,120)" rx="2" ry="2" /> +<text x="245.92" y="591.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.04%)</title><rect x="506.1" y="645" width="0.5" height="15.0" fill="rgb(0,224,167)" rx="2" ry="2" /> +<text x="509.08" y="655.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (20,202,020 samples, 0.08%)</title><rect x="270.5" y="501" width="1.1" height="15.0" fill="rgb(0,216,88)" rx="2" ry="2" /> +<text x="273.51" y="511.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="353.3" y="517" width="0.5" height="15.0" fill="rgb(0,227,128)" rx="2" ry="2" /> +<text x="356.28" y="527.5" ></text> +</g> +<g > +<title>zap_pmd_range.isra.0 (80,808,080 samples, 0.31%)</title><rect x="937.4" y="597" width="4.3" height="15.0" fill="rgb(0,220,133)" rx="2" ry="2" /> +<text x="940.43" y="607.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.04%)</title><rect x="266.3" y="629" width="0.5" height="15.0" fill="rgb(0,219,2)" rx="2" ry="2" /> +<text x="269.26" y="639.5" ></text> +</g> +<g > +<title>ext4_rename_delete (10,101,010 samples, 0.04%)</title><rect x="416.4" y="549" width="0.5" height="15.0" fill="rgb(0,227,115)" rx="2" ry="2" /> +<text x="419.41" y="559.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (20,202,020 samples, 0.08%)</title><rect x="179.3" y="597" width="1.0" height="15.0" fill="rgb(0,235,58)" rx="2" ry="2" /> +<text x="182.25" y="607.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="194.6" y="581" width="0.6" height="15.0" fill="rgb(0,239,86)" rx="2" ry="2" /> +<text x="197.64" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="295.4" y="661" width="1.6" height="15.0" fill="rgb(0,214,29)" rx="2" ry="2" /> +<text x="298.44" y="671.5" ></text> +</g> +<g > +<title>io_schedule (10,101,010 samples, 0.04%)</title><rect x="332.6" y="437" width="0.5" height="15.0" fill="rgb(0,236,208)" rx="2" ry="2" /> +<text x="335.58" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="188.3" y="757" width="1.6" height="15.0" fill="rgb(0,207,208)" rx="2" ry="2" /> +<text x="191.27" y="767.5" ></text> +</g> +<g > +<title>__netif_receive_skb (40,404,040 samples, 0.15%)</title><rect x="11.6" y="421" width="2.1" height="15.0" fill="rgb(0,222,36)" rx="2" ry="2" /> +<text x="14.59" y="431.5" ></text> +</g> +<g > +<title>ext4_htree_store_dirent (20,202,020 samples, 0.08%)</title><rect x="94.4" y="517" width="1.0" height="15.0" fill="rgb(0,220,63)" rx="2" ry="2" /> +<text x="97.36" y="527.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.04%)</title><rect x="350.6" y="453" width="0.6" height="15.0" fill="rgb(0,235,120)" rx="2" ry="2" /> +<text x="353.62" y="463.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="104.4" y="565" width="0.6" height="15.0" fill="rgb(0,192,54)" rx="2" ry="2" /> +<text x="107.44" y="575.5" ></text> +</g> +<g > +<title>ip_output (20,202,020 samples, 0.08%)</title><rect x="1371.4" y="645" width="1.1" height="15.0" fill="rgb(0,226,192)" rx="2" ry="2" /> +<text x="1374.43" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="215.3" y="773" width="2.2" height="15.0" fill="rgb(0,235,140)" rx="2" ry="2" /> +<text x="218.33" y="783.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="420.7" y="613" width="1.0" height="15.0" fill="rgb(0,194,178)" rx="2" ry="2" /> +<text x="423.66" y="623.5" ></text> +</g> +<g > +<title>accept4 (50,505,050 samples, 0.19%)</title><rect x="46.1" y="821" width="2.6" height="15.0" fill="rgb(0,200,99)" rx="2" ry="2" /> +<text x="49.08" y="831.5" ></text> +</g> +<g > +<title>kernel_init_free_pages.part.0 (20,202,020 samples, 0.08%)</title><rect x="1353.9" y="581" width="1.1" height="15.0" fill="rgb(0,229,59)" rx="2" ry="2" /> +<text x="1356.92" y="591.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="174.5" y="533" width="0.5" height="15.0" fill="rgb(0,224,23)" rx="2" ry="2" /> +<text x="177.48" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="438.2" y="677" width="0.5" height="15.0" fill="rgb(0,208,190)" rx="2" ry="2" /> +<text x="441.17" y="687.5" ></text> +</g> +<g > +<title>list_lru_add (10,101,010 samples, 0.04%)</title><rect x="88.5" y="501" width="0.6" height="15.0" fill="rgb(0,207,25)" rx="2" ry="2" /> +<text x="91.52" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="361.2" y="597" width="1.1" height="15.0" fill="rgb(0,227,83)" rx="2" ry="2" /> +<text x="364.23" y="607.5" ></text> +</g> +<g > +<title>obj_cgroup_charge (10,101,010 samples, 0.04%)</title><rect x="21.7" y="837" width="0.5" height="15.0" fill="rgb(0,226,105)" rx="2" ry="2" /> +<text x="24.67" y="847.5" ></text> +</g> +<g > +<title>ip_local_deliver (60,606,060 samples, 0.23%)</title><rect x="38.1" y="245" width="3.2" height="15.0" fill="rgb(0,235,192)" rx="2" ry="2" /> +<text x="41.12" y="255.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.54%)</title><rect x="368.7" y="741" width="7.4" height="15.0" fill="rgb(0,229,194)" rx="2" ry="2" /> +<text x="371.66" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (272,727,270 samples, 1.04%)</title><rect x="301.3" y="725" width="14.3" height="15.0" fill="rgb(0,194,6)" rx="2" ry="2" /> +<text x="304.28" y="735.5" ></text> +</g> +<g > +<title>walk_component (40,404,040 samples, 0.15%)</title><rect x="255.7" y="597" width="2.1" height="15.0" fill="rgb(0,204,99)" rx="2" ry="2" /> +<text x="258.65" y="607.5" ></text> +</g> +<g > +<title>__ip_finish_output (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="533" width="1.6" height="15.0" fill="rgb(0,217,137)" rx="2" ry="2" /> +<text x="1371.78" y="543.5" ></text> +</g> +<g > +<title>locks_remove_posix (10,101,010 samples, 0.04%)</title><rect x="481.1" y="597" width="0.6" height="15.0" fill="rgb(0,221,118)" rx="2" ry="2" /> +<text x="484.14" y="607.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.04%)</title><rect x="407.9" y="517" width="0.6" height="15.0" fill="rgb(0,214,111)" rx="2" ry="2" /> +<text x="410.92" y="527.5" ></text> +</g> +<g > +<title>ext4_readdir (80,808,080 samples, 0.31%)</title><rect x="249.3" y="629" width="4.2" height="15.0" fill="rgb(0,228,47)" rx="2" ry="2" /> +<text x="252.28" y="639.5" ></text> +</g> +<g > +<title>copy_process (70,707,070 samples, 0.27%)</title><rect x="19.0" y="885" width="3.7" height="15.0" fill="rgb(0,203,174)" rx="2" ry="2" /> +<text x="22.02" y="895.5" ></text> +</g> +<g > +<title>__sk_free (10,101,010 samples, 0.04%)</title><rect x="38.7" y="149" width="0.5" height="15.0" fill="rgb(0,236,17)" rx="2" ry="2" /> +<text x="41.65" y="159.5" ></text> +</g> +<g > +<title>git_config_get_string (10,101,010 samples, 0.04%)</title><rect x="401.0" y="693" width="0.6" height="15.0" fill="rgb(0,194,144)" rx="2" ry="2" /> +<text x="404.03" y="703.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="589.4" y="613" width="0.5" height="15.0" fill="rgb(0,214,149)" rx="2" ry="2" /> +<text x="592.38" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="324.1" y="693" width="2.1" height="15.0" fill="rgb(0,238,136)" rx="2" ry="2" /> +<text x="327.09" y="703.5" ></text> +</g> +<g > +<title>filemap_read (20,202,020 samples, 0.08%)</title><rect x="347.4" y="485" width="1.1" height="15.0" fill="rgb(0,229,165)" rx="2" ry="2" /> +<text x="350.44" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="366.5" y="725" width="1.1" height="15.0" fill="rgb(0,215,109)" rx="2" ry="2" /> +<text x="369.54" y="735.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.04%)</title><rect x="413.8" y="421" width="0.5" height="15.0" fill="rgb(0,236,17)" rx="2" ry="2" /> +<text x="416.76" y="431.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="300.7" y="661" width="0.6" height="15.0" fill="rgb(0,234,112)" rx="2" ry="2" /> +<text x="303.75" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="188.3" y="709" width="1.0" height="15.0" fill="rgb(0,203,95)" rx="2" ry="2" /> +<text x="191.27" y="719.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="167.6" y="501" width="0.5" height="15.0" fill="rgb(0,195,124)" rx="2" ry="2" /> +<text x="170.58" y="511.5" ></text> +</g> +<g > +<title>git_config_set_int64 (121,212,120 samples, 0.46%)</title><rect x="432.3" y="757" width="6.4" height="15.0" fill="rgb(0,228,63)" rx="2" ry="2" /> +<text x="435.33" y="767.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.04%)</title><rect x="14.8" y="757" width="0.5" height="15.0" fill="rgb(0,196,3)" rx="2" ry="2" /> +<text x="17.78" y="767.5" ></text> +</g> +<g > +<title>tcp_v4_init_sock (10,101,010 samples, 0.04%)</title><rect x="1373.0" y="757" width="0.6" height="15.0" fill="rgb(0,233,162)" rx="2" ry="2" /> +<text x="1376.02" y="767.5" ></text> +</g> +<g > +<title>save_fpregs_to_fpstate (10,101,010 samples, 0.04%)</title><rect x="511.4" y="661" width="0.5" height="15.0" fill="rgb(0,234,44)" rx="2" ry="2" /> +<text x="514.38" y="671.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="381.9" y="421" width="0.6" height="15.0" fill="rgb(0,226,27)" rx="2" ry="2" /> +<text x="384.93" y="431.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="275.3" y="181" width="0.5" height="15.0" fill="rgb(0,213,178)" rx="2" ry="2" /> +<text x="278.28" y="191.5" ></text> +</g> +<g > +<title>close (40,404,040 samples, 0.15%)</title><rect x="1383.6" y="853" width="2.2" height="15.0" fill="rgb(0,190,81)" rx="2" ry="2" /> +<text x="1386.63" y="863.5" ></text> +</g> +<g > +<title>ext4_bread (50,505,050 samples, 0.19%)</title><rect x="388.3" y="485" width="2.6" height="15.0" fill="rgb(0,236,176)" rx="2" ry="2" /> +<text x="391.29" y="495.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="159.1" y="533" width="0.5" height="15.0" fill="rgb(0,197,78)" rx="2" ry="2" /> +<text x="162.09" y="543.5" ></text> +</g> +<g > +<title>__release_sock (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="725" width="1.6" height="15.0" fill="rgb(0,209,114)" rx="2" ry="2" /> +<text x="1371.78" y="735.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (30,303,030 samples, 0.12%)</title><rect x="1297.7" y="741" width="1.6" height="15.0" fill="rgb(0,229,124)" rx="2" ry="2" /> +<text x="1300.68" y="751.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="136.3" y="437" width="0.5" height="15.0" fill="rgb(0,194,119)" rx="2" ry="2" /> +<text x="139.27" y="447.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (20,202,020 samples, 0.08%)</title><rect x="373.4" y="485" width="1.1" height="15.0" fill="rgb(0,215,25)" rx="2" ry="2" /> +<text x="376.44" y="495.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="287.5" y="405" width="0.5" height="15.0" fill="rgb(0,219,140)" rx="2" ry="2" /> +<text x="290.49" y="415.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="309" width="1.6" height="15.0" fill="rgb(0,206,126)" rx="2" ry="2" /> +<text x="1370.19" y="319.5" ></text> +</g> +<g > +<title>__tcp_close (131,313,130 samples, 0.50%)</title><rect x="36.0" y="581" width="6.9" height="15.0" fill="rgb(0,223,72)" rx="2" ry="2" /> +<text x="39.00" y="591.5" ></text> +</g> +<g > +<title>path_openat (60,606,060 samples, 0.23%)</title><rect x="202.6" y="661" width="3.2" height="15.0" fill="rgb(0,222,130)" rx="2" ry="2" /> +<text x="205.60" y="671.5" ></text> +</g> +<g > +<title>do_filp_open (60,606,060 samples, 0.23%)</title><rect x="202.6" y="677" width="3.2" height="15.0" fill="rgb(0,231,181)" rx="2" ry="2" /> +<text x="205.60" y="687.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.04%)</title><rect x="516.7" y="597" width="0.5" height="15.0" fill="rgb(0,221,128)" rx="2" ry="2" /> +<text x="519.69" y="607.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.04%)</title><rect x="898.7" y="757" width="0.5" height="15.0" fill="rgb(0,224,126)" rx="2" ry="2" /> +<text x="901.70" y="767.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (10,101,010 samples, 0.04%)</title><rect x="386.2" y="501" width="0.5" height="15.0" fill="rgb(0,216,153)" rx="2" ry="2" /> +<text x="389.17" y="511.5" ></text> +</g> +<g > +<title>tcp_sendmsg_locked (80,808,080 samples, 0.31%)</title><rect x="10.5" y="709" width="4.3" height="15.0" fill="rgb(0,193,34)" rx="2" ry="2" /> +<text x="13.53" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="170.2" y="709" width="0.6" height="15.0" fill="rgb(0,239,35)" rx="2" ry="2" /> +<text x="173.23" y="719.5" ></text> +</g> +<g > +<title>do_linkat (20,202,020 samples, 0.08%)</title><rect x="215.3" y="693" width="1.1" height="15.0" fill="rgb(0,205,194)" rx="2" ry="2" /> +<text x="218.33" y="703.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.04%)</title><rect x="428.1" y="581" width="0.5" height="15.0" fill="rgb(0,208,61)" rx="2" ry="2" /> +<text x="431.09" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="198.4" y="693" width="0.5" height="15.0" fill="rgb(0,199,159)" rx="2" ry="2" /> +<text x="201.35" y="703.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.04%)</title><rect x="74.7" y="725" width="0.6" height="15.0" fill="rgb(0,205,121)" rx="2" ry="2" /> +<text x="77.73" y="735.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.04%)</title><rect x="164.9" y="661" width="0.6" height="15.0" fill="rgb(0,201,123)" rx="2" ry="2" /> +<text x="167.93" y="671.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="74.7" y="709" width="0.6" height="15.0" fill="rgb(0,195,160)" rx="2" ry="2" /> +<text x="77.73" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.08%)</title><rect x="439.8" y="613" width="1.0" height="15.0" fill="rgb(0,194,105)" rx="2" ry="2" /> +<text x="442.76" y="623.5" ></text> +</g> +<g > +<title>realpath (20,202,020 samples, 0.08%)</title><rect x="490.7" y="757" width="1.1" height="15.0" fill="rgb(0,210,140)" rx="2" ry="2" /> +<text x="493.69" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.23%)</title><rect x="423.8" y="709" width="3.2" height="15.0" fill="rgb(0,236,164)" rx="2" ry="2" /> +<text x="426.84" y="719.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.08%)</title><rect x="356.5" y="437" width="1.0" height="15.0" fill="rgb(0,227,177)" rx="2" ry="2" /> +<text x="359.46" y="447.5" ></text> +</g> +<g > +<title>worker_main (24,888,888,640 samples, 94.73%)</title><rect x="82.7" y="917" width="1307.3" height="15.0" fill="rgb(0,210,57)" rx="2" ry="2" /> +<text x="85.69" y="927.5" >worker_main</text> +</g> +<g > +<title>__pagevec_release (10,101,010 samples, 0.04%)</title><rect x="415.9" y="453" width="0.5" height="15.0" fill="rgb(0,203,155)" rx="2" ry="2" /> +<text x="418.88" y="463.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="389" width="1.6" height="15.0" fill="rgb(0,198,115)" rx="2" ry="2" /> +<text x="1371.78" y="399.5" ></text> +</g> +<g > +<title>rcu_read_unlock_strict (10,101,010 samples, 0.04%)</title><rect x="897.6" y="709" width="0.6" height="15.0" fill="rgb(0,231,50)" rx="2" ry="2" /> +<text x="900.64" y="719.5" ></text> +</g> +<g > +<title>rseq_ip_fixup (10,101,010 samples, 0.04%)</title><rect x="1383.6" y="741" width="0.6" height="15.0" fill="rgb(0,217,61)" rx="2" ry="2" /> +<text x="1386.63" y="751.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.04%)</title><rect x="372.4" y="357" width="0.5" height="15.0" fill="rgb(0,200,94)" rx="2" ry="2" /> +<text x="375.38" y="367.5" ></text> +</g> +<g > +<title>__pagevec_release (10,101,010 samples, 0.04%)</title><rect x="434.5" y="453" width="0.5" height="15.0" fill="rgb(0,190,86)" rx="2" ry="2" /> +<text x="437.45" y="463.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.08%)</title><rect x="364.9" y="629" width="1.1" height="15.0" fill="rgb(0,205,190)" rx="2" ry="2" /> +<text x="367.95" y="639.5" ></text> +</g> +<g > +<title>vfs_unlink (20,202,020 samples, 0.08%)</title><rect x="91.7" y="549" width="1.1" height="15.0" fill="rgb(0,234,78)" rx="2" ry="2" /> +<text x="94.71" y="559.5" ></text> +</g> +<g > +<title>rmqueue (10,101,010 samples, 0.04%)</title><rect x="1333.2" y="581" width="0.6" height="15.0" fill="rgb(0,204,38)" rx="2" ry="2" /> +<text x="1336.23" y="591.5" ></text> +</g> +<g > +<title>__dentry_kill (10,101,010 samples, 0.04%)</title><rect x="1384.2" y="677" width="0.5" height="15.0" fill="rgb(0,195,31)" rx="2" ry="2" /> +<text x="1387.16" y="687.5" ></text> +</g> +<g > +<title>__wait_on_bit (10,101,010 samples, 0.04%)</title><rect x="367.1" y="453" width="0.5" height="15.0" fill="rgb(0,225,38)" rx="2" ry="2" /> +<text x="370.07" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1337.5" y="709" width="0.5" height="15.0" fill="rgb(0,202,4)" rx="2" ry="2" /> +<text x="1340.47" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (80,808,080 samples, 0.31%)</title><rect x="172.4" y="709" width="4.2" height="15.0" fill="rgb(0,218,79)" rx="2" ry="2" /> +<text x="175.35" y="719.5" ></text> +</g> +<g > +<title>git_reference_symbolic_create_matching (272,727,270 samples, 1.04%)</title><rect x="301.3" y="741" width="14.3" height="15.0" fill="rgb(0,216,30)" rx="2" ry="2" /> +<text x="304.28" y="751.5" ></text> +</g> +<g > +<title>__virt_addr_valid (20,202,020 samples, 0.08%)</title><rect x="416.9" y="597" width="1.1" height="15.0" fill="rgb(0,224,55)" rx="2" ry="2" /> +<text x="419.94" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (202,020,200 samples, 0.77%)</title><rect x="228.1" y="661" width="10.6" height="15.0" fill="rgb(0,204,70)" rx="2" ry="2" /> +<text x="231.06" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="366.0" y="725" width="0.5" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" /> +<text x="369.01" y="735.5" ></text> +</g> +<g > +<title>pipe_write (10,101,010 samples, 0.04%)</title><rect x="505.5" y="613" width="0.6" height="15.0" fill="rgb(0,207,152)" rx="2" ry="2" /> +<text x="508.55" y="623.5" ></text> +</g> +<g > +<title>unmap_page_range (80,808,080 samples, 0.31%)</title><rect x="937.4" y="613" width="4.3" height="15.0" fill="rgb(0,228,134)" rx="2" ry="2" /> +<text x="940.43" y="623.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="396.3" y="565" width="0.5" height="15.0" fill="rgb(0,222,63)" rx="2" ry="2" /> +<text x="399.25" y="575.5" ></text> +</g> +<g > +<title>net_rx_action (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="453" width="0.5" height="15.0" fill="rgb(0,206,102)" rx="2" ry="2" /> +<text x="1388.76" y="463.5" ></text> +</g> +<g > +<title>handle_mm_fault (20,202,020 samples, 0.08%)</title><rect x="596.3" y="709" width="1.0" height="15.0" fill="rgb(0,196,112)" rx="2" ry="2" /> +<text x="599.27" y="719.5" ></text> +</g> +<g > +<title>dquot_initialize (10,101,010 samples, 0.04%)</title><rect x="65.2" y="789" width="0.5" height="15.0" fill="rgb(0,225,197)" rx="2" ry="2" /> +<text x="68.18" y="799.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="602.1" y="725" width="0.5" height="15.0" fill="rgb(0,237,9)" rx="2" ry="2" /> +<text x="605.11" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="413.2" y="677" width="1.1" height="15.0" fill="rgb(0,235,178)" rx="2" ry="2" /> +<text x="416.23" y="687.5" ></text> +</g> +<g > +<title>start_this_handle (10,101,010 samples, 0.04%)</title><rect x="406.3" y="501" width="0.6" height="15.0" fill="rgb(0,199,179)" rx="2" ry="2" /> +<text x="409.33" y="511.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.04%)</title><rect x="244.0" y="613" width="0.5" height="15.0" fill="rgb(0,191,80)" rx="2" ry="2" /> +<text x="246.98" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="480.1" y="741" width="3.2" height="15.0" fill="rgb(0,194,188)" rx="2" ry="2" /> +<text x="483.08" y="751.5" ></text> +</g> +<g > +<title>net_recv_buf (20,202,020 samples, 0.08%)</title><rect x="1377.3" y="805" width="1.0" height="15.0" fill="rgb(0,216,184)" rx="2" ry="2" /> +<text x="1380.27" y="815.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="326.2" y="677" width="1.1" height="15.0" fill="rgb(0,211,104)" rx="2" ry="2" /> +<text x="329.22" y="687.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="132.6" y="517" width="0.5" height="15.0" fill="rgb(0,219,135)" rx="2" ry="2" /> +<text x="135.56" y="527.5" ></text> +</g> +<g > +<title>ip_finish_output (10,101,010 samples, 0.04%)</title><rect x="1371.4" y="629" width="0.6" height="15.0" fill="rgb(0,214,136)" rx="2" ry="2" /> +<text x="1374.43" y="639.5" ></text> +</g> +<g > +<title>iput (30,303,030 samples, 0.12%)</title><rect x="90.1" y="549" width="1.6" height="15.0" fill="rgb(0,226,64)" rx="2" ry="2" /> +<text x="93.12" y="559.5" ></text> +</g> +<g > +<title>blk_finish_plug (10,101,010 samples, 0.04%)</title><rect x="187.7" y="533" width="0.6" height="15.0" fill="rgb(0,203,164)" rx="2" ry="2" /> +<text x="190.74" y="543.5" ></text> +</g> +<g > +<title>__ext4_new_inode (10,101,010 samples, 0.04%)</title><rect x="418.5" y="629" width="0.6" height="15.0" fill="rgb(0,208,160)" rx="2" ry="2" /> +<text x="421.54" y="639.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.04%)</title><rect x="503.4" y="501" width="0.6" height="15.0" fill="rgb(0,191,184)" rx="2" ry="2" /> +<text x="506.43" y="511.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (40,404,040 samples, 0.15%)</title><rect x="433.9" y="549" width="2.1" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="436.92" y="559.5" ></text> +</g> +<g > +<title>ext4_evict_inode (30,303,030 samples, 0.12%)</title><rect x="96.5" y="517" width="1.6" height="15.0" fill="rgb(0,194,99)" rx="2" ry="2" /> +<text x="99.48" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="220.6" y="645" width="1.1" height="15.0" fill="rgb(0,199,62)" rx="2" ry="2" /> +<text x="223.63" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.04%)</title><rect x="469.5" y="693" width="0.5" height="15.0" fill="rgb(0,213,15)" rx="2" ry="2" /> +<text x="472.47" y="703.5" ></text> +</g> +<g > +<title>ext4_xattr_security_get (10,101,010 samples, 0.04%)</title><rect x="439.8" y="437" width="0.5" height="15.0" fill="rgb(0,193,181)" rx="2" ry="2" /> +<text x="442.76" y="447.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (20,202,020 samples, 0.08%)</title><rect x="436.0" y="405" width="1.1" height="15.0" fill="rgb(0,217,31)" rx="2" ry="2" /> +<text x="439.04" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="307.6" y="581" width="0.6" height="15.0" fill="rgb(0,194,54)" rx="2" ry="2" /> +<text x="310.65" y="591.5" ></text> +</g> +<g > +<title>new_sync_read (10,101,010 samples, 0.04%)</title><rect x="400.5" y="517" width="0.5" height="15.0" fill="rgb(0,206,67)" rx="2" ry="2" /> +<text x="403.50" y="527.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (40,404,040 samples, 0.15%)</title><rect x="203.1" y="629" width="2.1" height="15.0" fill="rgb(0,233,95)" rx="2" ry="2" /> +<text x="206.13" y="639.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.04%)</title><rect x="170.8" y="741" width="0.5" height="15.0" fill="rgb(0,232,23)" rx="2" ry="2" /> +<text x="173.76" y="751.5" ></text> +</g> +<g > +<title>__call_rcu (10,101,010 samples, 0.04%)</title><rect x="167.0" y="389" width="0.6" height="15.0" fill="rgb(0,206,194)" rx="2" ry="2" /> +<text x="170.05" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="297.0" y="597" width="1.1" height="15.0" fill="rgb(0,196,12)" rx="2" ry="2" /> +<text x="300.04" y="607.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="413.8" y="437" width="0.5" height="15.0" fill="rgb(0,206,189)" rx="2" ry="2" /> +<text x="416.76" y="447.5" ></text> +</g> +<g > +<title>ext4_release_dir (10,101,010 samples, 0.04%)</title><rect x="86.9" y="501" width="0.6" height="15.0" fill="rgb(0,208,189)" rx="2" ry="2" /> +<text x="89.93" y="511.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="307.1" y="597" width="0.5" height="15.0" fill="rgb(0,233,70)" rx="2" ry="2" /> +<text x="310.12" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_brk (10,101,010 samples, 0.04%)</title><rect x="619.6" y="725" width="0.5" height="15.0" fill="rgb(0,217,84)" rx="2" ry="2" /> +<text x="622.62" y="735.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="307.1" y="549" width="0.5" height="15.0" fill="rgb(0,235,151)" rx="2" ry="2" /> +<text x="310.12" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="934.2" y="773" width="0.6" height="15.0" fill="rgb(0,226,144)" rx="2" ry="2" /> +<text x="937.24" y="783.5" ></text> +</g> +<g > +<title>json_object_new_string (40,404,040 samples, 0.15%)</title><rect x="930.5" y="821" width="2.2" height="15.0" fill="rgb(0,207,151)" rx="2" ry="2" /> +<text x="933.53" y="831.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="349.6" y="613" width="0.5" height="15.0" fill="rgb(0,208,76)" rx="2" ry="2" /> +<text x="352.56" y="623.5" ></text> +</g> +<g > +<title>git_repository_item_path (20,202,020 samples, 0.08%)</title><rect x="199.9" y="725" width="1.1" height="15.0" fill="rgb(0,198,167)" rx="2" ry="2" /> +<text x="202.94" y="735.5" ></text> +</g> +<g > +<title>git_config_add_backend (40,404,040 samples, 0.15%)</title><rect x="289.6" y="693" width="2.1" height="15.0" fill="rgb(0,221,159)" rx="2" ry="2" /> +<text x="292.61" y="703.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="298.1" y="437" width="0.5" height="15.0" fill="rgb(0,209,172)" rx="2" ry="2" /> +<text x="301.10" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="351.2" y="565" width="1.5" height="15.0" fill="rgb(0,239,136)" rx="2" ry="2" /> +<text x="354.15" y="575.5" ></text> +</g> +<g > +<title>do_softirq (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="421" width="0.5" height="15.0" fill="rgb(0,192,183)" rx="2" ry="2" /> +<text x="1342.07" y="431.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="142.1" y="533" width="0.5" height="15.0" fill="rgb(0,232,41)" rx="2" ry="2" /> +<text x="145.11" y="543.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.04%)</title><rect x="277.4" y="677" width="0.5" height="15.0" fill="rgb(0,239,174)" rx="2" ry="2" /> +<text x="280.40" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.15%)</title><rect x="30.2" y="805" width="2.1" height="15.0" fill="rgb(0,221,176)" rx="2" ry="2" /> +<text x="33.16" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.46%)</title><rect x="350.1" y="661" width="6.4" height="15.0" fill="rgb(0,197,204)" rx="2" ry="2" /> +<text x="353.09" y="671.5" ></text> +</g> +<g > +<title>link (30,303,030 samples, 0.12%)</title><rect x="215.3" y="757" width="1.6" height="15.0" fill="rgb(0,213,105)" rx="2" ry="2" /> +<text x="218.33" y="767.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="629" width="0.5" height="15.0" fill="rgb(0,218,184)" rx="2" ry="2" /> +<text x="1342.60" y="639.5" ></text> +</g> +<g > +<title>page_counter_uncharge (10,101,010 samples, 0.04%)</title><rect x="545.9" y="613" width="0.5" height="15.0" fill="rgb(0,238,98)" rx="2" ry="2" /> +<text x="548.87" y="623.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="88.0" y="565" width="0.5" height="15.0" fill="rgb(0,209,140)" rx="2" ry="2" /> +<text x="90.99" y="575.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="167.0" y="565" width="0.6" height="15.0" fill="rgb(0,200,36)" rx="2" ry="2" /> +<text x="170.05" y="575.5" ></text> +</g> +<g > +<title>jbd2_journal_forget (10,101,010 samples, 0.04%)</title><rect x="137.3" y="405" width="0.6" height="15.0" fill="rgb(0,196,38)" rx="2" ry="2" /> +<text x="140.34" y="415.5" ></text> +</g> +<g > +<title>free_page_and_swap_cache (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="469" width="0.5" height="15.0" fill="rgb(0,214,29)" rx="2" ry="2" /> +<text x="1389.82" y="479.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="94.9" y="469" width="0.5" height="15.0" fill="rgb(0,199,68)" rx="2" ry="2" /> +<text x="97.89" y="479.5" ></text> +</g> +<g > +<title>charge_memcg (40,404,040 samples, 0.15%)</title><rect x="892.9" y="709" width="2.1" height="15.0" fill="rgb(0,193,57)" rx="2" ry="2" /> +<text x="895.86" y="719.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="341" width="1.6" height="15.0" fill="rgb(0,239,137)" rx="2" ry="2" /> +<text x="1370.19" y="351.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1374.6" y="741" width="0.5" height="15.0" fill="rgb(0,202,208)" rx="2" ry="2" /> +<text x="1377.61" y="751.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="709" width="1.6" height="15.0" fill="rgb(0,208,141)" rx="2" ry="2" /> +<text x="1371.78" y="719.5" ></text> +</g> +<g > +<title>git_config_snapshot (10,101,010 samples, 0.04%)</title><rect x="346.4" y="757" width="0.5" height="15.0" fill="rgb(0,216,92)" rx="2" ry="2" /> +<text x="349.38" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="397.3" y="645" width="0.5" height="15.0" fill="rgb(0,207,125)" rx="2" ry="2" /> +<text x="400.31" y="655.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (20,202,020 samples, 0.08%)</title><rect x="325.2" y="565" width="1.0" height="15.0" fill="rgb(0,228,138)" rx="2" ry="2" /> +<text x="328.16" y="575.5" ></text> +</g> +<g > +<title>tcp_server_accept_handler (90,909,090 samples, 0.35%)</title><rect x="44.0" y="869" width="4.7" height="15.0" fill="rgb(0,204,200)" rx="2" ry="2" /> +<text x="46.96" y="879.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.04%)</title><rect x="94.9" y="373" width="0.5" height="15.0" fill="rgb(0,214,87)" rx="2" ry="2" /> +<text x="97.89" y="383.5" ></text> +</g> +<g > +<title>[libz.so.1.2.11] (10,101,010 samples, 0.04%)</title><rect x="278.5" y="645" width="0.5" height="15.0" fill="rgb(0,209,165)" rx="2" ry="2" /> +<text x="281.47" y="655.5" ></text> +</g> +<g > +<title>tcp_release_cb (10,101,010 samples, 0.04%)</title><rect x="46.6" y="661" width="0.5" height="15.0" fill="rgb(0,197,119)" rx="2" ry="2" /> +<text x="49.61" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="163.9" y="757" width="0.5" height="15.0" fill="rgb(0,218,175)" rx="2" ry="2" /> +<text x="166.86" y="767.5" ></text> +</g> +<g > +<title>iput (10,101,010 samples, 0.04%)</title><rect x="187.2" y="597" width="0.5" height="15.0" fill="rgb(0,192,136)" rx="2" ry="2" /> +<text x="190.21" y="607.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.04%)</title><rect x="281.6" y="453" width="0.6" height="15.0" fill="rgb(0,218,66)" rx="2" ry="2" /> +<text x="284.65" y="463.5" ></text> +</g> +<g > +<title>__sys_sendto (575,757,570 samples, 2.19%)</title><rect x="1338.5" y="741" width="30.3" height="15.0" fill="rgb(0,232,76)" rx="2" ry="2" /> +<text x="1341.54" y="751.5" >__..</text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.04%)</title><rect x="210.6" y="661" width="0.5" height="15.0" fill="rgb(0,230,66)" rx="2" ry="2" /> +<text x="213.55" y="671.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="455.7" y="597" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="458.67" y="607.5" ></text> +</g> +<g > +<title>add_disk_randomness (10,101,010 samples, 0.04%)</title><rect x="234.4" y="181" width="0.6" height="15.0" fill="rgb(0,207,199)" rx="2" ry="2" /> +<text x="237.43" y="191.5" ></text> +</g> +<g > +<title>proc_free_inode (10,101,010 samples, 0.04%)</title><rect x="109.2" y="309" width="0.5" height="15.0" fill="rgb(0,205,1)" rx="2" ry="2" /> +<text x="112.22" y="319.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="220.1" y="629" width="0.5" height="15.0" fill="rgb(0,237,187)" rx="2" ry="2" /> +<text x="223.10" y="639.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="93.8" y="469" width="0.6" height="15.0" fill="rgb(0,202,186)" rx="2" ry="2" /> +<text x="96.83" y="479.5" ></text> +</g> +<g > +<title>do_readlinkat (10,101,010 samples, 0.04%)</title><rect x="467.9" y="661" width="0.5" height="15.0" fill="rgb(0,193,56)" rx="2" ry="2" /> +<text x="470.88" y="671.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="381.4" y="501" width="0.5" height="15.0" fill="rgb(0,221,5)" rx="2" ry="2" /> +<text x="384.40" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="243.4" y="693" width="1.1" height="15.0" fill="rgb(0,206,82)" rx="2" ry="2" /> +<text x="246.45" y="703.5" ></text> +</g> +<g > +<title>ip_finish_output2 (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="453" width="0.5" height="15.0" fill="rgb(0,239,194)" rx="2" ry="2" /> +<text x="1342.07" y="463.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.04%)</title><rect x="414.3" y="485" width="0.5" height="15.0" fill="rgb(0,216,7)" rx="2" ry="2" /> +<text x="417.29" y="495.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.04%)</title><rect x="363.9" y="597" width="0.5" height="15.0" fill="rgb(0,221,200)" rx="2" ry="2" /> +<text x="366.89" y="607.5" ></text> +</g> +<g > +<title>log_entry_start (111,111,110 samples, 0.42%)</title><rect x="48.7" y="885" width="5.9" height="15.0" fill="rgb(0,226,123)" rx="2" ry="2" /> +<text x="51.73" y="895.5" ></text> +</g> +<g > +<title>build_open_flags (10,101,010 samples, 0.04%)</title><rect x="182.4" y="661" width="0.6" height="15.0" fill="rgb(0,206,184)" rx="2" ry="2" /> +<text x="185.43" y="671.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.04%)</title><rect x="411.1" y="661" width="0.5" height="15.0" fill="rgb(0,190,95)" rx="2" ry="2" /> +<text x="414.11" y="671.5" ></text> +</g> +<g > +<title>ip_rcv (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="325" width="0.6" height="15.0" fill="rgb(0,197,38)" rx="2" ry="2" /> +<text x="1388.22" y="335.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.04%)</title><rect x="47.1" y="581" width="0.6" height="15.0" fill="rgb(0,196,85)" rx="2" ry="2" /> +<text x="50.14" y="591.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="405" width="0.5" height="15.0" fill="rgb(0,217,72)" rx="2" ry="2" /> +<text x="1342.07" y="415.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="234.4" y="437" width="0.6" height="15.0" fill="rgb(0,190,164)" rx="2" ry="2" /> +<text x="237.43" y="447.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,474,747,460 samples, 5.61%)</title><rect x="86.4" y="757" width="77.5" height="15.0" fill="rgb(0,234,121)" rx="2" ry="2" /> +<text x="89.40" y="767.5" >[libc.so..</text> +</g> +<g > +<title>git_object_lookup_prefix (30,303,030 samples, 0.12%)</title><rect x="277.9" y="773" width="1.6" height="15.0" fill="rgb(0,224,206)" rx="2" ry="2" /> +<text x="280.94" y="783.5" ></text> +</g> +<g > +<title>__tcp_ack_snd_check (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="245" width="0.6" height="15.0" fill="rgb(0,235,15)" rx="2" ry="2" /> +<text x="1383.45" y="255.5" ></text> +</g> +<g > +<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.04%)</title><rect x="133.6" y="501" width="0.6" height="15.0" fill="rgb(0,220,36)" rx="2" ry="2" /> +<text x="136.62" y="511.5" ></text> +</g> +<g > +<title>git_reference_iterator_new (70,707,070 samples, 0.27%)</title><rect x="486.4" y="773" width="3.8" height="15.0" fill="rgb(0,232,27)" rx="2" ry="2" /> +<text x="489.45" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (666,666,660 samples, 2.54%)</title><rect x="224.3" y="757" width="35.1" height="15.0" fill="rgb(0,192,131)" rx="2" ry="2" /> +<text x="227.35" y="767.5" >[l..</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="498.1" y="661" width="2.1" height="15.0" fill="rgb(0,208,62)" rx="2" ry="2" /> +<text x="501.12" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="287.0" y="613" width="1.0" height="15.0" fill="rgb(0,231,38)" rx="2" ry="2" /> +<text x="289.96" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (202,020,200 samples, 0.77%)</title><rect x="228.1" y="677" width="10.6" height="15.0" fill="rgb(0,192,168)" rx="2" ry="2" /> +<text x="231.06" y="687.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (20,202,020 samples, 0.08%)</title><rect x="887.0" y="821" width="1.1" height="15.0" fill="rgb(0,190,95)" rx="2" ry="2" /> +<text x="890.02" y="831.5" ></text> +</g> +<g > +<title>__lookup_slow (20,202,020 samples, 0.08%)</title><rect x="255.7" y="581" width="1.0" height="15.0" fill="rgb(0,232,135)" rx="2" ry="2" /> +<text x="258.65" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="493.3" y="741" width="3.8" height="15.0" fill="rgb(0,205,13)" rx="2" ry="2" /> +<text x="496.34" y="751.5" ></text> +</g> +<g > +<title>printbuf_memappend (636,363,630 samples, 2.42%)</title><rect x="1304.6" y="773" width="33.4" height="15.0" fill="rgb(0,238,190)" rx="2" ry="2" /> +<text x="1307.58" y="783.5" >pr..</text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="209.5" y="645" width="0.5" height="15.0" fill="rgb(0,239,111)" rx="2" ry="2" /> +<text x="212.49" y="655.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="389.4" y="405" width="0.5" height="15.0" fill="rgb(0,216,54)" rx="2" ry="2" /> +<text x="392.35" y="415.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="196.8" y="549" width="0.5" height="15.0" fill="rgb(0,196,85)" rx="2" ry="2" /> +<text x="199.76" y="559.5" ></text> +</g> +<g > +<title>ext4_mkdir (111,111,110 samples, 0.42%)</title><rect x="385.6" y="533" width="5.9" height="15.0" fill="rgb(0,210,29)" rx="2" ry="2" /> +<text x="388.64" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="476.9" y="661" width="0.5" height="15.0" fill="rgb(0,203,203)" rx="2" ry="2" /> +<text x="479.90" y="671.5" ></text> +</g> +<g > +<title>__napi_poll (80,808,080 samples, 0.31%)</title><rect x="37.6" y="325" width="4.2" height="15.0" fill="rgb(0,214,118)" rx="2" ry="2" /> +<text x="40.59" y="335.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (40,404,040 samples, 0.15%)</title><rect x="1364.5" y="485" width="2.2" height="15.0" fill="rgb(0,219,113)" rx="2" ry="2" /> +<text x="1367.53" y="495.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.04%)</title><rect x="416.4" y="533" width="0.5" height="15.0" fill="rgb(0,215,29)" rx="2" ry="2" /> +<text x="419.41" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.58%)</title><rect x="497.1" y="773" width="7.9" height="15.0" fill="rgb(0,231,66)" rx="2" ry="2" /> +<text x="500.06" y="783.5" ></text> +</g> +<g > +<title>filemap_flush (50,505,050 samples, 0.19%)</title><rect x="273.7" y="549" width="2.6" height="15.0" fill="rgb(0,190,173)" rx="2" ry="2" /> +<text x="276.69" y="559.5" ></text> +</g> +<g > +<title>dput (70,707,070 samples, 0.27%)</title><rect x="268.4" y="613" width="3.7" height="15.0" fill="rgb(0,227,161)" rx="2" ry="2" /> +<text x="271.39" y="623.5" ></text> +</g> +<g > +<title>ext4_evict_inode (40,404,040 samples, 0.15%)</title><rect x="420.7" y="629" width="2.1" height="15.0" fill="rgb(0,214,47)" rx="2" ry="2" /> +<text x="423.66" y="639.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (20,202,020 samples, 0.08%)</title><rect x="593.1" y="757" width="1.1" height="15.0" fill="rgb(0,194,50)" rx="2" ry="2" /> +<text x="596.09" y="767.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.04%)</title><rect x="479.0" y="549" width="0.6" height="15.0" fill="rgb(0,234,34)" rx="2" ry="2" /> +<text x="482.02" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="368.1" y="741" width="0.6" height="15.0" fill="rgb(0,219,116)" rx="2" ry="2" /> +<text x="371.13" y="751.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="396.8" y="597" width="0.5" height="15.0" fill="rgb(0,223,60)" rx="2" ry="2" /> +<text x="399.78" y="607.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="107.6" y="453" width="0.6" height="15.0" fill="rgb(0,238,15)" rx="2" ry="2" /> +<text x="110.62" y="463.5" ></text> +</g> +<g > +<title>tasklet_action (10,101,010 samples, 0.04%)</title><rect x="13.7" y="469" width="0.5" height="15.0" fill="rgb(0,197,134)" rx="2" ry="2" /> +<text x="16.71" y="479.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="414.3" y="613" width="0.5" height="15.0" fill="rgb(0,219,159)" rx="2" ry="2" /> +<text x="417.29" y="623.5" ></text> +</g> +<g > +<title>git_reference_name_to_id (30,303,030 samples, 0.12%)</title><rect x="185.6" y="725" width="1.6" height="15.0" fill="rgb(0,206,163)" rx="2" ry="2" /> +<text x="188.62" y="735.5" ></text> +</g> +<g > +<title>bit_wait_io (10,101,010 samples, 0.04%)</title><rect x="367.1" y="437" width="0.5" height="15.0" fill="rgb(0,195,12)" rx="2" ry="2" /> +<text x="370.07" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.38%)</title><rect x="340.0" y="693" width="5.3" height="15.0" fill="rgb(0,207,39)" rx="2" ry="2" /> +<text x="343.01" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (10,101,010 samples, 0.04%)</title><rect x="315.6" y="709" width="0.5" height="15.0" fill="rgb(0,199,81)" rx="2" ry="2" /> +<text x="318.61" y="719.5" ></text> +</g> +<g > +<title>security_task_getsecid_subj (10,101,010 samples, 0.04%)</title><rect x="63.6" y="789" width="0.5" height="15.0" fill="rgb(0,239,105)" rx="2" ry="2" /> +<text x="66.59" y="799.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.04%)</title><rect x="208.4" y="661" width="0.6" height="15.0" fill="rgb(0,231,98)" rx="2" ry="2" /> +<text x="211.43" y="671.5" ></text> +</g> +<g > +<title>ext4_add_entry (40,404,040 samples, 0.15%)</title><rect x="73.1" y="757" width="2.2" height="15.0" fill="rgb(0,191,107)" rx="2" ry="2" /> +<text x="76.14" y="767.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.04%)</title><rect x="216.4" y="629" width="0.5" height="15.0" fill="rgb(0,237,48)" rx="2" ry="2" /> +<text x="219.39" y="639.5" ></text> +</g> +<g > +<title>jsonrpc_check_params (10,101,010 samples, 0.04%)</title><rect x="1378.3" y="805" width="0.6" height="15.0" fill="rgb(0,235,172)" rx="2" ry="2" /> +<text x="1381.33" y="815.5" ></text> +</g> +<g > +<title>kfree (10,101,010 samples, 0.04%)</title><rect x="39.2" y="69" width="0.5" height="15.0" fill="rgb(0,195,162)" rx="2" ry="2" /> +<text x="42.18" y="79.5" ></text> +</g> +<g > +<title>clear_page_erms (50,505,050 samples, 0.19%)</title><rect x="925.2" y="629" width="2.7" height="15.0" fill="rgb(0,236,177)" rx="2" ry="2" /> +<text x="928.22" y="639.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="214.3" y="757" width="0.5" height="15.0" fill="rgb(0,222,181)" rx="2" ry="2" /> +<text x="217.27" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (101,010,100 samples, 0.38%)</title><rect x="156.4" y="661" width="5.3" height="15.0" fill="rgb(0,211,40)" rx="2" ry="2" /> +<text x="159.44" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="363.9" y="645" width="0.5" height="15.0" fill="rgb(0,235,128)" rx="2" ry="2" /> +<text x="366.89" y="655.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.04%)</title><rect x="1387.9" y="629" width="0.5" height="15.0" fill="rgb(0,230,41)" rx="2" ry="2" /> +<text x="1390.88" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (121,212,120 samples, 0.46%)</title><rect x="103.4" y="629" width="6.3" height="15.0" fill="rgb(0,201,90)" rx="2" ry="2" /> +<text x="106.38" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.04%)</title><rect x="499.7" y="597" width="0.5" height="15.0" fill="rgb(0,236,97)" rx="2" ry="2" /> +<text x="502.71" y="607.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.04%)</title><rect x="306.1" y="581" width="0.5" height="15.0" fill="rgb(0,222,51)" rx="2" ry="2" /> +<text x="309.06" y="591.5" ></text> +</g> +<g > +<title>__ip_finish_output (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="533" width="0.5" height="15.0" fill="rgb(0,228,141)" rx="2" ry="2" /> +<text x="1342.60" y="543.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.04%)</title><rect x="502.9" y="613" width="0.5" height="15.0" fill="rgb(0,238,31)" rx="2" ry="2" /> +<text x="505.90" y="623.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="291.2" y="629" width="0.5" height="15.0" fill="rgb(0,210,158)" rx="2" ry="2" /> +<text x="294.20" y="639.5" ></text> +</g> +<g > +<title>iterate_dir (20,202,020 samples, 0.08%)</title><rect x="178.2" y="725" width="1.1" height="15.0" fill="rgb(0,229,40)" rx="2" ry="2" /> +<text x="181.19" y="735.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.04%)</title><rect x="363.9" y="565" width="0.5" height="15.0" fill="rgb(0,191,179)" rx="2" ry="2" /> +<text x="366.89" y="575.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (10,101,010 samples, 0.04%)</title><rect x="277.4" y="645" width="0.5" height="15.0" fill="rgb(0,193,181)" rx="2" ry="2" /> +<text x="280.40" y="655.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (60,606,060 samples, 0.23%)</title><rect x="11.1" y="485" width="3.1" height="15.0" fill="rgb(0,221,146)" rx="2" ry="2" /> +<text x="14.06" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="487.5" y="661" width="0.5" height="15.0" fill="rgb(0,202,11)" rx="2" ry="2" /> +<text x="490.51" y="671.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="453.0" y="469" width="0.6" height="15.0" fill="rgb(0,197,152)" rx="2" ry="2" /> +<text x="456.02" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="351.2" y="581" width="1.5" height="15.0" fill="rgb(0,233,62)" rx="2" ry="2" /> +<text x="354.15" y="591.5" ></text> +</g> +<g > +<title>do_sys_openat2 (60,606,060 samples, 0.23%)</title><rect x="202.6" y="693" width="3.2" height="15.0" fill="rgb(0,203,176)" rx="2" ry="2" /> +<text x="205.60" y="703.5" ></text> +</g> +<g > +<title>blk_update_request (10,101,010 samples, 0.04%)</title><rect x="887.6" y="645" width="0.5" height="15.0" fill="rgb(0,197,91)" rx="2" ry="2" /> +<text x="890.55" y="655.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="174.5" y="549" width="0.5" height="15.0" fill="rgb(0,202,114)" rx="2" ry="2" /> +<text x="177.48" y="559.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (20,202,020 samples, 0.08%)</title><rect x="159.6" y="533" width="1.1" height="15.0" fill="rgb(0,213,166)" rx="2" ry="2" /> +<text x="162.62" y="543.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="116.1" y="629" width="0.5" height="15.0" fill="rgb(0,214,197)" rx="2" ry="2" /> +<text x="119.11" y="639.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (20,202,020 samples, 0.08%)</title><rect x="436.0" y="357" width="1.1" height="15.0" fill="rgb(0,207,143)" rx="2" ry="2" /> +<text x="439.04" y="367.5" ></text> +</g> +<g > +<title>do_filp_open (282,828,280 samples, 1.08%)</title><rect x="60.4" y="853" width="14.9" height="15.0" fill="rgb(0,193,105)" rx="2" ry="2" /> +<text x="63.40" y="863.5" ></text> +</g> +<g > +<title>ext4_getblk (20,202,020 samples, 0.08%)</title><rect x="419.1" y="581" width="1.0" height="15.0" fill="rgb(0,194,136)" rx="2" ry="2" /> +<text x="422.07" y="591.5" ></text> +</g> +<g > +<title>net_connect (70,707,070 samples, 0.27%)</title><rect x="1385.8" y="885" width="3.7" height="15.0" fill="rgb(0,207,180)" rx="2" ry="2" /> +<text x="1388.76" y="895.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="455.1" y="597" width="0.6" height="15.0" fill="rgb(0,234,79)" rx="2" ry="2" /> +<text x="458.14" y="607.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.04%)</title><rect x="367.1" y="597" width="0.5" height="15.0" fill="rgb(0,210,81)" rx="2" ry="2" /> +<text x="370.07" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="210.0" y="677" width="0.6" height="15.0" fill="rgb(0,193,121)" rx="2" ry="2" /> +<text x="213.02" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="221.7" y="741" width="0.5" height="15.0" fill="rgb(0,222,47)" rx="2" ry="2" /> +<text x="224.70" y="751.5" ></text> +</g> +<g > +<title>jsonrpc_set_method (10,101,010 samples, 0.04%)</title><rect x="1389.5" y="837" width="0.5" height="15.0" fill="rgb(0,221,124)" rx="2" ry="2" /> +<text x="1392.47" y="847.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="288.5" y="677" width="0.6" height="15.0" fill="rgb(0,190,10)" rx="2" ry="2" /> +<text x="291.55" y="687.5" ></text> +</g> +<g > +<title>iput (40,404,040 samples, 0.15%)</title><rect x="340.5" y="565" width="2.2" height="15.0" fill="rgb(0,222,76)" rx="2" ry="2" /> +<text x="343.54" y="575.5" ></text> +</g> +<g > +<title>skb_release_data (10,101,010 samples, 0.04%)</title><rect x="39.2" y="101" width="0.5" height="15.0" fill="rgb(0,200,47)" rx="2" ry="2" /> +<text x="42.18" y="111.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.12%)</title><rect x="266.8" y="693" width="1.6" height="15.0" fill="rgb(0,234,71)" rx="2" ry="2" /> +<text x="269.79" y="703.5" ></text> +</g> +<g > +<title>charge_memcg (20,202,020 samples, 0.08%)</title><rect x="614.3" y="709" width="1.1" height="15.0" fill="rgb(0,202,143)" rx="2" ry="2" /> +<text x="617.31" y="719.5" ></text> +</g> +<g > +<title>git_reference_list (151,515,150 samples, 0.58%)</title><rect x="350.1" y="757" width="8.0" height="15.0" fill="rgb(0,204,26)" rx="2" ry="2" /> +<text x="353.09" y="767.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (20,202,020 samples, 0.08%)</title><rect x="505.0" y="805" width="1.1" height="15.0" fill="rgb(0,235,37)" rx="2" ry="2" /> +<text x="508.02" y="815.5" ></text> +</g> +<g > +<title>tasklet_action (10,101,010 samples, 0.04%)</title><rect x="131.0" y="437" width="0.5" height="15.0" fill="rgb(0,207,161)" rx="2" ry="2" /> +<text x="133.97" y="447.5" ></text> +</g> +<g > +<title>main (585,858,580 samples, 2.23%)</title><rect x="23.8" y="933" width="30.8" height="15.0" fill="rgb(0,193,25)" rx="2" ry="2" /> +<text x="26.79" y="943.5" >main</text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="284.8" y="613" width="0.6" height="15.0" fill="rgb(0,227,84)" rx="2" ry="2" /> +<text x="287.83" y="623.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.04%)</title><rect x="216.9" y="613" width="0.6" height="15.0" fill="rgb(0,205,30)" rx="2" ry="2" /> +<text x="219.92" y="623.5" ></text> +</g> +<g > +<title>ext4_generic_delete_entry (10,101,010 samples, 0.04%)</title><rect x="175.0" y="613" width="0.5" height="15.0" fill="rgb(0,204,201)" rx="2" ry="2" /> +<text x="178.01" y="623.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="210.6" y="613" width="0.5" height="15.0" fill="rgb(0,232,198)" rx="2" ry="2" /> +<text x="213.55" y="623.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.04%)</title><rect x="381.9" y="453" width="0.6" height="15.0" fill="rgb(0,202,78)" rx="2" ry="2" /> +<text x="384.93" y="463.5" ></text> +</g> +<g > +<title>__add_to_page_cache_locked (10,101,010 samples, 0.04%)</title><rect x="325.7" y="453" width="0.5" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="328.69" y="463.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="230.2" y="501" width="0.5" height="15.0" fill="rgb(0,201,20)" rx="2" ry="2" /> +<text x="233.18" y="511.5" ></text> +</g> +<g > +<title>evict (40,404,040 samples, 0.15%)</title><rect x="420.7" y="645" width="2.1" height="15.0" fill="rgb(0,236,145)" rx="2" ry="2" /> +<text x="423.66" y="655.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="131.0" y="469" width="0.5" height="15.0" fill="rgb(0,206,169)" rx="2" ry="2" /> +<text x="133.97" y="479.5" ></text> +</g> +<g > +<title>down_write (10,101,010 samples, 0.04%)</title><rect x="405.3" y="581" width="0.5" height="15.0" fill="rgb(0,196,94)" rx="2" ry="2" /> +<text x="408.27" y="591.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.04%)</title><rect x="88.0" y="549" width="0.5" height="15.0" fill="rgb(0,223,60)" rx="2" ry="2" /> +<text x="90.99" y="559.5" ></text> +</g> +<g > +<title>sk_page_frag_refill (282,828,280 samples, 1.08%)</title><rect x="1340.1" y="661" width="14.9" height="15.0" fill="rgb(0,211,18)" rx="2" ry="2" /> +<text x="1343.13" y="671.5" ></text> +</g> +<g > +<title>crc_5 (10,101,010 samples, 0.04%)</title><rect x="238.1" y="533" width="0.6" height="15.0" fill="rgb(0,197,163)" rx="2" ry="2" /> +<text x="241.14" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_link (30,303,030 samples, 0.12%)</title><rect x="215.3" y="709" width="1.6" height="15.0" fill="rgb(0,190,99)" rx="2" ry="2" /> +<text x="218.33" y="719.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="587.8" y="597" width="0.5" height="15.0" fill="rgb(0,223,69)" rx="2" ry="2" /> +<text x="590.79" y="607.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="299.2" y="437" width="0.5" height="15.0" fill="rgb(0,226,187)" rx="2" ry="2" /> +<text x="302.16" y="447.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.04%)</title><rect x="318.8" y="549" width="0.5" height="15.0" fill="rgb(0,206,70)" rx="2" ry="2" /> +<text x="321.79" y="559.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="408.5" y="549" width="0.5" height="15.0" fill="rgb(0,229,59)" rx="2" ry="2" /> +<text x="411.45" y="559.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="596.8" y="613" width="0.5" height="15.0" fill="rgb(0,199,112)" rx="2" ry="2" /> +<text x="599.81" y="623.5" ></text> +</g> +<g > +<title>aa_file_perm (10,101,010 samples, 0.04%)</title><rect x="53.0" y="661" width="0.5" height="15.0" fill="rgb(0,200,170)" rx="2" ry="2" /> +<text x="55.98" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (50,505,050 samples, 0.19%)</title><rect x="595.2" y="773" width="2.7" height="15.0" fill="rgb(0,236,175)" rx="2" ry="2" /> +<text x="598.21" y="783.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.04%)</title><rect x="334.2" y="341" width="0.5" height="15.0" fill="rgb(0,205,92)" rx="2" ry="2" /> +<text x="337.18" y="351.5" ></text> +</g> +<g > +<title>ext4_bread (101,010,100 samples, 0.38%)</title><rect x="232.3" y="549" width="5.3" height="15.0" fill="rgb(0,205,201)" rx="2" ry="2" /> +<text x="235.31" y="559.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.04%)</title><rect x="298.1" y="405" width="0.5" height="15.0" fill="rgb(0,230,111)" rx="2" ry="2" /> +<text x="301.10" y="415.5" ></text> +</g> +<g > +<title>__mem_cgroup_charge (40,404,040 samples, 0.15%)</title><rect x="892.9" y="725" width="2.1" height="15.0" fill="rgb(0,200,199)" rx="2" ry="2" /> +<text x="895.86" y="735.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (10,101,010 samples, 0.04%)</title><rect x="173.9" y="645" width="0.6" height="15.0" fill="rgb(0,230,0)" rx="2" ry="2" /> +<text x="176.94" y="655.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.04%)</title><rect x="282.7" y="533" width="0.5" height="15.0" fill="rgb(0,214,2)" rx="2" ry="2" /> +<text x="285.71" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.15%)</title><rect x="32.3" y="805" width="2.1" height="15.0" fill="rgb(0,219,57)" rx="2" ry="2" /> +<text x="35.28" y="815.5" ></text> +</g> +<g > +<title>__default_morecore (131,313,130 samples, 0.50%)</title><rect x="934.8" y="789" width="6.9" height="15.0" fill="rgb(0,224,171)" rx="2" ry="2" /> +<text x="937.78" y="799.5" ></text> +</g> +<g > +<title>ext4_clear_inode (10,101,010 samples, 0.04%)</title><rect x="96.5" y="485" width="0.5" height="15.0" fill="rgb(0,236,99)" rx="2" ry="2" /> +<text x="99.48" y="495.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.04%)</title><rect x="306.1" y="485" width="0.5" height="15.0" fill="rgb(0,205,54)" rx="2" ry="2" /> +<text x="309.06" y="495.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.04%)</title><rect x="367.1" y="373" width="0.5" height="15.0" fill="rgb(0,205,76)" rx="2" ry="2" /> +<text x="370.07" y="383.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.04%)</title><rect x="288.0" y="645" width="0.5" height="15.0" fill="rgb(0,231,95)" rx="2" ry="2" /> +<text x="291.02" y="655.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="613" width="0.5" height="15.0" fill="rgb(0,192,202)" rx="2" ry="2" /> +<text x="1342.60" y="623.5" ></text> +</g> +<g > +<title>__pthread_rwlock_wrlock (10,101,010 samples, 0.04%)</title><rect x="293.3" y="645" width="0.6" height="15.0" fill="rgb(0,212,96)" rx="2" ry="2" /> +<text x="296.32" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="183.5" y="741" width="3.7" height="15.0" fill="rgb(0,230,36)" rx="2" ry="2" /> +<text x="186.49" y="751.5" ></text> +</g> +<g > +<title>ksys_read (20,202,020 samples, 0.08%)</title><rect x="347.4" y="565" width="1.1" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="350.44" y="575.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="196.2" y="693" width="1.1" height="15.0" fill="rgb(0,192,193)" rx="2" ry="2" /> +<text x="199.23" y="703.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="126.7" y="485" width="0.6" height="15.0" fill="rgb(0,217,13)" rx="2" ry="2" /> +<text x="129.72" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (30,303,030 samples, 0.12%)</title><rect x="93.8" y="613" width="1.6" height="15.0" fill="rgb(0,205,184)" rx="2" ry="2" /> +<text x="96.83" y="623.5" ></text> +</g> +<g > +<title>iput (10,101,010 samples, 0.04%)</title><rect x="35.5" y="597" width="0.5" height="15.0" fill="rgb(0,203,209)" rx="2" ry="2" /> +<text x="38.47" y="607.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.04%)</title><rect x="499.7" y="501" width="0.5" height="15.0" fill="rgb(0,236,64)" rx="2" ry="2" /> +<text x="502.71" y="511.5" ></text> +</g> +<g > +<title>unmap_single_vma (80,808,080 samples, 0.31%)</title><rect x="937.4" y="629" width="4.3" height="15.0" fill="rgb(0,200,142)" rx="2" ry="2" /> +<text x="940.43" y="639.5" ></text> +</g> +<g > +<title>ext4_map_blocks (70,707,070 samples, 0.27%)</title><rect x="233.9" y="517" width="3.7" height="15.0" fill="rgb(0,231,178)" rx="2" ry="2" /> +<text x="236.90" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (70,707,070 samples, 0.27%)</title><rect x="98.6" y="677" width="3.7" height="15.0" fill="rgb(0,200,144)" rx="2" ry="2" /> +<text x="101.60" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="487.5" y="629" width="0.5" height="15.0" fill="rgb(0,235,163)" rx="2" ry="2" /> +<text x="490.51" y="639.5" ></text> +</g> +<g > +<title>ext4_releasepage (10,101,010 samples, 0.04%)</title><rect x="187.2" y="453" width="0.5" height="15.0" fill="rgb(0,228,106)" rx="2" ry="2" /> +<text x="190.21" y="463.5" ></text> +</g> +<g > +<title>git_config_free (10,101,010 samples, 0.04%)</title><rect x="345.8" y="757" width="0.6" height="15.0" fill="rgb(0,207,168)" rx="2" ry="2" /> +<text x="348.85" y="767.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="415.4" y="437" width="0.5" height="15.0" fill="rgb(0,203,1)" rx="2" ry="2" /> +<text x="418.35" y="447.5" ></text> +</g> +<g > +<title>security_prepare_creds (10,101,010 samples, 0.04%)</title><rect x="189.3" y="613" width="0.6" height="15.0" fill="rgb(0,191,32)" rx="2" ry="2" /> +<text x="192.33" y="623.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="895.0" y="725" width="0.5" height="15.0" fill="rgb(0,193,146)" rx="2" ry="2" /> +<text x="897.98" y="735.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="275.3" y="421" width="0.5" height="15.0" fill="rgb(0,233,130)" rx="2" ry="2" /> +<text x="278.28" y="431.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="462.0" y="501" width="1.1" height="15.0" fill="rgb(0,225,163)" rx="2" ry="2" /> +<text x="465.04" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.04%)</title><rect x="363.9" y="613" width="0.5" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" /> +<text x="366.89" y="623.5" ></text> +</g> +<g > +<title>opendir (20,202,020 samples, 0.08%)</title><rect x="352.7" y="629" width="1.1" height="15.0" fill="rgb(0,209,190)" rx="2" ry="2" /> +<text x="355.75" y="639.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.04%)</title><rect x="186.1" y="517" width="0.6" height="15.0" fill="rgb(0,224,123)" rx="2" ry="2" /> +<text x="189.15" y="527.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="181.4" y="789" width="0.5" height="15.0" fill="rgb(0,213,18)" rx="2" ry="2" /> +<text x="184.37" y="799.5" ></text> +</g> +<g > +<title>fpu_clone (10,101,010 samples, 0.04%)</title><rect x="511.4" y="677" width="0.5" height="15.0" fill="rgb(0,224,204)" rx="2" ry="2" /> +<text x="514.38" y="687.5" ></text> +</g> +<g > +<title>__pthread_rwlock_rdlock (10,101,010 samples, 0.04%)</title><rect x="296.5" y="613" width="0.5" height="15.0" fill="rgb(0,208,15)" rx="2" ry="2" /> +<text x="299.51" y="623.5" ></text> +</g> +<g > +<title>client_create_thread (10,101,010 samples, 0.04%)</title><rect x="44.0" y="821" width="0.5" height="15.0" fill="rgb(0,234,81)" rx="2" ry="2" /> +<text x="46.96" y="831.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="116.6" y="693" width="0.6" height="15.0" fill="rgb(0,232,172)" rx="2" ry="2" /> +<text x="119.64" y="703.5" ></text> +</g> +<g > +<title>__release_sock (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="645" width="0.5" height="15.0" fill="rgb(0,224,204)" rx="2" ry="2" /> +<text x="1342.07" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="485.9" y="757" width="0.5" height="15.0" fill="rgb(0,227,73)" rx="2" ry="2" /> +<text x="488.92" y="767.5" ></text> +</g> +<g > +<title>do_softirq (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="485" width="0.5" height="15.0" fill="rgb(0,208,3)" rx="2" ry="2" /> +<text x="1388.76" y="495.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.04%)</title><rect x="444.0" y="533" width="0.5" height="15.0" fill="rgb(0,196,25)" rx="2" ry="2" /> +<text x="447.00" y="543.5" ></text> +</g> +<g > +<title>__dentry_kill (70,707,070 samples, 0.27%)</title><rect x="268.4" y="581" width="3.7" height="15.0" fill="rgb(0,236,18)" rx="2" ry="2" /> +<text x="271.39" y="591.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="305.0" y="357" width="0.5" height="15.0" fill="rgb(0,204,6)" rx="2" ry="2" /> +<text x="307.99" y="367.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="102.8" y="613" width="0.6" height="15.0" fill="rgb(0,228,118)" rx="2" ry="2" /> +<text x="105.85" y="623.5" ></text> +</g> +<g > +<title>mb_find_order_for_block (10,101,010 samples, 0.04%)</title><rect x="390.4" y="357" width="0.5" height="15.0" fill="rgb(0,236,142)" rx="2" ry="2" /> +<text x="393.42" y="367.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="234.4" y="325" width="0.6" height="15.0" fill="rgb(0,227,40)" rx="2" ry="2" /> +<text x="237.43" y="335.5" ></text> +</g> +<g > +<title>vfs_statx (50,505,050 samples, 0.19%)</title><rect x="428.1" y="677" width="2.6" height="15.0" fill="rgb(0,191,24)" rx="2" ry="2" /> +<text x="431.09" y="687.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.04%)</title><rect x="454.1" y="645" width="0.5" height="15.0" fill="rgb(0,229,102)" rx="2" ry="2" /> +<text x="457.08" y="655.5" ></text> +</g> +<g > +<title>get_user_pages_fast (10,101,010 samples, 0.04%)</title><rect x="30.7" y="693" width="0.5" height="15.0" fill="rgb(0,193,18)" rx="2" ry="2" /> +<text x="33.69" y="703.5" ></text> +</g> +<g > +<title>ext4_create (181,818,180 samples, 0.69%)</title><rect x="65.7" y="789" width="9.6" height="15.0" fill="rgb(0,228,133)" rx="2" ry="2" /> +<text x="68.71" y="799.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="88.0" y="581" width="0.5" height="15.0" fill="rgb(0,209,9)" rx="2" ry="2" /> +<text x="90.99" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (444,444,440 samples, 1.69%)</title><rect x="86.4" y="709" width="23.3" height="15.0" fill="rgb(0,238,149)" rx="2" ry="2" /> +<text x="89.40" y="719.5" >[..</text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.04%)</title><rect x="105.5" y="517" width="0.5" height="15.0" fill="rgb(0,217,40)" rx="2" ry="2" /> +<text x="108.50" y="527.5" ></text> +</g> +<g > +<title>__release_sock (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="725" width="0.5" height="15.0" fill="rgb(0,225,16)" rx="2" ry="2" /> +<text x="1388.76" y="735.5" ></text> +</g> +<g > +<title>__do_sys_getcwd (10,101,010 samples, 0.04%)</title><rect x="603.7" y="773" width="0.5" height="15.0" fill="rgb(0,238,52)" rx="2" ry="2" /> +<text x="606.70" y="783.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="306.6" y="661" width="1.0" height="15.0" fill="rgb(0,238,198)" rx="2" ry="2" /> +<text x="309.59" y="671.5" ></text> +</g> +<g > +<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.04%)</title><rect x="232.3" y="501" width="0.5" height="15.0" fill="rgb(0,207,21)" rx="2" ry="2" /> +<text x="235.31" y="511.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.04%)</title><rect x="167.0" y="469" width="0.6" height="15.0" fill="rgb(0,204,85)" rx="2" ry="2" /> +<text x="170.05" y="479.5" ></text> +</g> +<g > +<title>ext4_find_entry (10,101,010 samples, 0.04%)</title><rect x="374.5" y="597" width="0.5" height="15.0" fill="rgb(0,236,94)" rx="2" ry="2" /> +<text x="377.50" y="607.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="294.4" y="597" width="0.5" height="15.0" fill="rgb(0,238,160)" rx="2" ry="2" /> +<text x="297.38" y="607.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.12%)</title><rect x="382.5" y="629" width="1.5" height="15.0" fill="rgb(0,212,24)" rx="2" ry="2" /> +<text x="385.46" y="639.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.04%)</title><rect x="1337.5" y="645" width="0.5" height="15.0" fill="rgb(0,235,196)" rx="2" ry="2" /> +<text x="1340.47" y="655.5" ></text> +</g> +<g > +<title>ext4_truncate (10,101,010 samples, 0.04%)</title><rect x="414.8" y="485" width="0.6" height="15.0" fill="rgb(0,210,158)" rx="2" ry="2" /> +<text x="417.82" y="495.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.04%)</title><rect x="221.7" y="549" width="0.5" height="15.0" fill="rgb(0,217,48)" rx="2" ry="2" /> +<text x="224.70" y="559.5" ></text> +</g> +<g > +<title>security_inode_permission (10,101,010 samples, 0.04%)</title><rect x="162.3" y="565" width="0.5" height="15.0" fill="rgb(0,190,96)" rx="2" ry="2" /> +<text x="165.27" y="575.5" ></text> +</g> +<g > +<title>tcp_push_one (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="661" width="1.6" height="15.0" fill="rgb(0,221,63)" rx="2" ry="2" /> +<text x="1370.19" y="671.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.04%)</title><rect x="332.6" y="405" width="0.5" height="15.0" fill="rgb(0,239,18)" rx="2" ry="2" /> +<text x="335.58" y="415.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (313,131,310 samples, 1.19%)</title><rect x="126.7" y="661" width="16.5" height="15.0" fill="rgb(0,232,63)" rx="2" ry="2" /> +<text x="129.72" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="361.2" y="613" width="2.2" height="15.0" fill="rgb(0,238,63)" rx="2" ry="2" /> +<text x="364.23" y="623.5" ></text> +</g> +<g > +<title>file_remove_privs (10,101,010 samples, 0.04%)</title><rect x="439.8" y="501" width="0.5" height="15.0" fill="rgb(0,233,188)" rx="2" ry="2" /> +<text x="442.76" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="210.6" y="693" width="0.5" height="15.0" fill="rgb(0,226,165)" rx="2" ry="2" /> +<text x="213.55" y="703.5" ></text> +</g> +<g > +<title>ip_finish_output2 (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="101" width="0.5" height="15.0" fill="rgb(0,230,110)" rx="2" ry="2" /> +<text x="1370.19" y="111.5" ></text> +</g> +<g > +<title>git_config_snapshot (50,505,050 samples, 0.19%)</title><rect x="319.9" y="725" width="2.6" height="15.0" fill="rgb(0,194,163)" rx="2" ry="2" /> +<text x="322.85" y="735.5" ></text> +</g> +<g > +<title>mntput (10,101,010 samples, 0.04%)</title><rect x="215.3" y="677" width="0.6" height="15.0" fill="rgb(0,229,20)" rx="2" ry="2" /> +<text x="218.33" y="687.5" ></text> +</g> +<g > +<title>ext4_mb_check_limits (10,101,010 samples, 0.04%)</title><rect x="236.0" y="437" width="0.6" height="15.0" fill="rgb(0,203,161)" rx="2" ry="2" /> +<text x="239.02" y="447.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.04%)</title><rect x="391.5" y="485" width="0.5" height="15.0" fill="rgb(0,204,95)" rx="2" ry="2" /> +<text x="394.48" y="495.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.04%)</title><rect x="458.9" y="613" width="0.5" height="15.0" fill="rgb(0,198,143)" rx="2" ry="2" /> +<text x="461.86" y="623.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="533" width="0.5" height="15.0" fill="rgb(0,210,180)" rx="2" ry="2" /> +<text x="1389.82" y="543.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (60,606,060 samples, 0.23%)</title><rect x="38.1" y="213" width="3.2" height="15.0" fill="rgb(0,213,16)" rx="2" ry="2" /> +<text x="41.12" y="223.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="298.1" y="485" width="0.5" height="15.0" fill="rgb(0,197,148)" rx="2" ry="2" /> +<text x="301.10" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="493.3" y="725" width="3.8" height="15.0" fill="rgb(0,211,157)" rx="2" ry="2" /> +<text x="496.34" y="735.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (20,202,020 samples, 0.08%)</title><rect x="273.7" y="453" width="1.1" height="15.0" fill="rgb(0,209,126)" rx="2" ry="2" /> +<text x="276.69" y="463.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="148.5" y="533" width="0.5" height="15.0" fill="rgb(0,191,75)" rx="2" ry="2" /> +<text x="151.48" y="543.5" ></text> +</g> +<g > +<title>ip_output (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="565" width="1.6" height="15.0" fill="rgb(0,232,0)" rx="2" ry="2" /> +<text x="1371.78" y="575.5" ></text> +</g> +<g > +<title>getname_flags (20,202,020 samples, 0.08%)</title><rect x="416.9" y="677" width="1.1" height="15.0" fill="rgb(0,226,12)" rx="2" ry="2" /> +<text x="419.94" y="687.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="74.2" y="709" width="0.5" height="15.0" fill="rgb(0,204,153)" rx="2" ry="2" /> +<text x="77.20" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="189.9" y="661" width="0.5" height="15.0" fill="rgb(0,194,89)" rx="2" ry="2" /> +<text x="192.86" y="671.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_trace (10,101,010 samples, 0.04%)</title><rect x="598.4" y="709" width="0.5" height="15.0" fill="rgb(0,222,171)" rx="2" ry="2" /> +<text x="601.40" y="719.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.04%)</title><rect x="232.3" y="517" width="0.5" height="15.0" fill="rgb(0,208,113)" rx="2" ry="2" /> +<text x="235.31" y="527.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (20,202,020 samples, 0.08%)</title><rect x="341.6" y="501" width="1.1" height="15.0" fill="rgb(0,237,24)" rx="2" ry="2" /> +<text x="344.60" y="511.5" ></text> +</g> +<g > +<title>ksys_write (30,303,030 samples, 0.12%)</title><rect x="392.0" y="581" width="1.6" height="15.0" fill="rgb(0,222,178)" rx="2" ry="2" /> +<text x="395.01" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="350.1" y="565" width="1.1" height="15.0" fill="rgb(0,216,142)" rx="2" ry="2" /> +<text x="353.09" y="575.5" ></text> +</g> +<g > +<title>tcp_push (30,303,030 samples, 0.12%)</title><rect x="1379.9" y="661" width="1.6" height="15.0" fill="rgb(0,220,94)" rx="2" ry="2" /> +<text x="1382.92" y="671.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="528.9" y="613" width="0.5" height="15.0" fill="rgb(0,222,151)" rx="2" ry="2" /> +<text x="531.89" y="623.5" ></text> +</g> +<g > +<title>ext4_superblock_csum_set (10,101,010 samples, 0.04%)</title><rect x="167.0" y="581" width="0.6" height="15.0" fill="rgb(0,221,119)" rx="2" ry="2" /> +<text x="170.05" y="591.5" ></text> +</g> +<g > +<title>process_backlog (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="421" width="0.5" height="15.0" fill="rgb(0,209,122)" rx="2" ry="2" /> +<text x="1342.60" y="431.5" ></text> +</g> +<g > +<title>__put_cred (10,101,010 samples, 0.04%)</title><rect x="78.4" y="853" width="0.6" height="15.0" fill="rgb(0,232,91)" rx="2" ry="2" /> +<text x="81.44" y="863.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="414.3" y="597" width="0.5" height="15.0" fill="rgb(0,220,73)" rx="2" ry="2" /> +<text x="417.29" y="607.5" ></text> +</g> +<g > +<title>ext4_es_lookup_extent (10,101,010 samples, 0.04%)</title><rect x="429.1" y="485" width="0.6" height="15.0" fill="rgb(0,201,95)" rx="2" ry="2" /> +<text x="432.15" y="495.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="530.0" y="805" width="0.5" height="15.0" fill="rgb(0,205,54)" rx="2" ry="2" /> +<text x="532.95" y="815.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.04%)</title><rect x="305.0" y="261" width="0.5" height="15.0" fill="rgb(0,236,118)" rx="2" ry="2" /> +<text x="307.99" y="271.5" ></text> +</g> +<g > +<title>tcp_push (80,808,080 samples, 0.31%)</title><rect x="10.5" y="693" width="4.3" height="15.0" fill="rgb(0,213,82)" rx="2" ry="2" /> +<text x="13.53" y="703.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.04%)</title><rect x="163.9" y="693" width="0.5" height="15.0" fill="rgb(0,205,29)" rx="2" ry="2" /> +<text x="166.86" y="703.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (70,707,070 samples, 0.27%)</title><rect x="10.5" y="645" width="3.7" height="15.0" fill="rgb(0,214,84)" rx="2" ry="2" /> +<text x="13.53" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (121,212,120 samples, 0.46%)</title><rect x="369.7" y="693" width="6.4" height="15.0" fill="rgb(0,215,11)" rx="2" ry="2" /> +<text x="372.72" y="703.5" ></text> +</g> +<g > +<title>do_renameat2 (101,010,100 samples, 0.38%)</title><rect x="340.0" y="645" width="5.3" height="15.0" fill="rgb(0,221,185)" rx="2" ry="2" /> +<text x="343.01" y="655.5" ></text> +</g> +<g > +<title>nf_nat_ipv4_out (10,101,010 samples, 0.04%)</title><rect x="1372.0" y="613" width="0.5" height="15.0" fill="rgb(0,213,195)" rx="2" ry="2" /> +<text x="1374.96" y="623.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.04%)</title><rect x="284.3" y="501" width="0.5" height="15.0" fill="rgb(0,218,169)" rx="2" ry="2" /> +<text x="287.30" y="511.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="494.4" y="677" width="0.5" height="15.0" fill="rgb(0,223,157)" rx="2" ry="2" /> +<text x="497.41" y="687.5" ></text> +</g> +<g > +<title>iput (40,404,040 samples, 0.15%)</title><rect x="420.7" y="661" width="2.1" height="15.0" fill="rgb(0,233,104)" rx="2" ry="2" /> +<text x="423.66" y="671.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (40,404,040 samples, 0.15%)</title><rect x="32.3" y="741" width="2.1" height="15.0" fill="rgb(0,225,99)" rx="2" ry="2" /> +<text x="35.28" y="751.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="74.7" y="693" width="0.6" height="15.0" fill="rgb(0,193,152)" rx="2" ry="2" /> +<text x="77.73" y="703.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.04%)</title><rect x="432.9" y="437" width="0.5" height="15.0" fill="rgb(0,224,55)" rx="2" ry="2" /> +<text x="435.86" y="447.5" ></text> +</g> +<g > +<title>io_schedule (10,101,010 samples, 0.04%)</title><rect x="305.0" y="277" width="0.5" height="15.0" fill="rgb(0,233,61)" rx="2" ry="2" /> +<text x="307.99" y="287.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="182.4" y="709" width="0.6" height="15.0" fill="rgb(0,222,167)" rx="2" ry="2" /> +<text x="185.43" y="719.5" ></text> +</g> +<g > +<title>d_set_d_op (10,101,010 samples, 0.04%)</title><rect x="1373.6" y="725" width="0.5" height="15.0" fill="rgb(0,205,97)" rx="2" ry="2" /> +<text x="1376.55" y="735.5" ></text> +</g> +<g > +<title>sysvec_reschedule_ipi (80,808,080 samples, 0.31%)</title><rect x="1299.8" y="741" width="4.2" height="15.0" fill="rgb(0,233,160)" rx="2" ry="2" /> +<text x="1302.80" y="751.5" ></text> +</g> +<g > +<title>jsonrpc_notification_create (10,101,010 samples, 0.04%)</title><rect x="1389.5" y="869" width="0.5" height="15.0" fill="rgb(0,236,107)" rx="2" ry="2" /> +<text x="1392.47" y="879.5" ></text> +</g> +<g > +<title>git_remote_fetch (1,080,808,070 samples, 4.11%)</title><rect x="346.9" y="805" width="56.8" height="15.0" fill="rgb(0,222,37)" rx="2" ry="2" /> +<text x="349.91" y="815.5" >git_re..</text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="306.1" y="453" width="0.5" height="15.0" fill="rgb(0,201,109)" rx="2" ry="2" /> +<text x="309.06" y="463.5" ></text> +</g> +<g > +<title>__alloc_pages (101,010,100 samples, 0.38%)</title><rect x="1328.5" y="613" width="5.3" height="15.0" fill="rgb(0,227,161)" rx="2" ry="2" /> +<text x="1331.45" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="476.9" y="693" width="0.5" height="15.0" fill="rgb(0,225,2)" rx="2" ry="2" /> +<text x="479.90" y="703.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="281.6" y="485" width="0.6" height="15.0" fill="rgb(0,206,203)" rx="2" ry="2" /> +<text x="284.65" y="495.5" ></text> +</g> +<g > +<title>__inet_lookup_established (10,101,010 samples, 0.04%)</title><rect x="1365.1" y="277" width="0.5" height="15.0" fill="rgb(0,233,89)" rx="2" ry="2" /> +<text x="1368.06" y="287.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="339.5" y="613" width="0.5" height="15.0" fill="rgb(0,198,171)" rx="2" ry="2" /> +<text x="342.48" y="623.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.04%)</title><rect x="300.2" y="485" width="0.5" height="15.0" fill="rgb(0,215,23)" rx="2" ry="2" /> +<text x="303.22" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="479.0" y="597" width="0.6" height="15.0" fill="rgb(0,217,31)" rx="2" ry="2" /> +<text x="482.02" y="607.5" ></text> +</g> +<g > +<title>__lookup_slow (20,202,020 samples, 0.08%)</title><rect x="364.9" y="597" width="1.1" height="15.0" fill="rgb(0,234,88)" rx="2" ry="2" /> +<text x="367.95" y="607.5" ></text> +</g> +<g > +<title>ext4_find_extent (10,101,010 samples, 0.04%)</title><rect x="304.5" y="389" width="0.5" height="15.0" fill="rgb(0,193,65)" rx="2" ry="2" /> +<text x="307.46" y="399.5" ></text> +</g> +<g > +<title>net_rx_action (50,505,050 samples, 0.19%)</title><rect x="11.1" y="469" width="2.6" height="15.0" fill="rgb(0,203,207)" rx="2" ry="2" /> +<text x="14.06" y="479.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (20,202,020 samples, 0.08%)</title><rect x="12.1" y="341" width="1.1" height="15.0" fill="rgb(0,223,87)" rx="2" ry="2" /> +<text x="15.12" y="351.5" ></text> +</g> +<g > +<title>_raw_spin_trylock (10,101,010 samples, 0.04%)</title><rect x="269.4" y="389" width="0.6" height="15.0" fill="rgb(0,232,46)" rx="2" ry="2" /> +<text x="272.45" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="220.6" y="725" width="1.1" height="15.0" fill="rgb(0,200,84)" rx="2" ry="2" /> +<text x="223.63" y="735.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_node (10,101,010 samples, 0.04%)</title><rect x="21.7" y="853" width="0.5" height="15.0" fill="rgb(0,192,126)" rx="2" ry="2" /> +<text x="24.67" y="863.5" ></text> +</g> +<g > +<title>ext4_mkdir (50,505,050 samples, 0.19%)</title><rect x="418.0" y="645" width="2.7" height="15.0" fill="rgb(0,223,89)" rx="2" ry="2" /> +<text x="421.00" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="53.5" y="837" width="1.1" height="15.0" fill="rgb(0,230,102)" rx="2" ry="2" /> +<text x="56.51" y="847.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="80.0" y="693" width="0.6" height="15.0" fill="rgb(0,208,134)" rx="2" ry="2" /> +<text x="83.03" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="217.5" y="789" width="0.5" height="15.0" fill="rgb(0,222,197)" rx="2" ry="2" /> +<text x="220.45" y="799.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="661" width="0.5" height="15.0" fill="rgb(0,221,0)" rx="2" ry="2" /> +<text x="1342.60" y="671.5" ></text> +</g> +<g > +<title>blk_flush_plug_list (10,101,010 samples, 0.04%)</title><rect x="187.7" y="517" width="0.6" height="15.0" fill="rgb(0,215,0)" rx="2" ry="2" /> +<text x="190.74" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (181,818,180 samples, 0.69%)</title><rect x="193.0" y="757" width="9.6" height="15.0" fill="rgb(0,204,153)" rx="2" ry="2" /> +<text x="196.04" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (202,020,200 samples, 0.77%)</title><rect x="228.1" y="645" width="10.6" height="15.0" fill="rgb(0,239,139)" rx="2" ry="2" /> +<text x="231.06" y="655.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.08%)</title><rect x="439.8" y="581" width="1.0" height="15.0" fill="rgb(0,211,189)" rx="2" ry="2" /> +<text x="442.76" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="288.5" y="613" width="0.6" height="15.0" fill="rgb(0,204,152)" rx="2" ry="2" /> +<text x="291.55" y="623.5" ></text> +</g> +<g > +<title>ext4_lookup.part.0 (10,101,010 samples, 0.04%)</title><rect x="394.7" y="453" width="0.5" height="15.0" fill="rgb(0,238,60)" rx="2" ry="2" /> +<text x="397.66" y="463.5" ></text> +</g> +<g > +<title>handle_mm_fault (70,707,070 samples, 0.27%)</title><rect x="566.6" y="613" width="3.7" height="15.0" fill="rgb(0,219,36)" rx="2" ry="2" /> +<text x="569.56" y="623.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.08%)</title><rect x="325.2" y="597" width="1.0" height="15.0" fill="rgb(0,231,100)" rx="2" ry="2" /> +<text x="328.16" y="607.5" ></text> +</g> +<g > +<title>ext4_bread (60,606,060 samples, 0.23%)</title><rect x="56.2" y="773" width="3.1" height="15.0" fill="rgb(0,238,127)" rx="2" ry="2" /> +<text x="59.16" y="783.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.04%)</title><rect x="440.3" y="437" width="0.5" height="15.0" fill="rgb(0,236,188)" rx="2" ry="2" /> +<text x="443.29" y="447.5" ></text> +</g> +<g > +<title>__rseq_handle_notify_resume (10,101,010 samples, 0.04%)</title><rect x="411.1" y="645" width="0.5" height="15.0" fill="rgb(0,214,69)" rx="2" ry="2" /> +<text x="414.11" y="655.5" ></text> +</g> +<g > +<title>vma_merge (10,101,010 samples, 0.04%)</title><rect x="619.6" y="677" width="0.5" height="15.0" fill="rgb(0,231,36)" rx="2" ry="2" /> +<text x="622.62" y="687.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="81.6" y="725" width="0.6" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" /> +<text x="84.63" y="735.5" ></text> +</g> +<g > +<title>net_accept (50,505,050 samples, 0.19%)</title><rect x="46.1" y="837" width="2.6" height="15.0" fill="rgb(0,219,162)" rx="2" ry="2" /> +<text x="49.08" y="847.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.04%)</title><rect x="406.3" y="517" width="0.6" height="15.0" fill="rgb(0,226,82)" rx="2" ry="2" /> +<text x="409.33" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (232,323,230 samples, 0.88%)</title><rect x="226.5" y="709" width="12.2" height="15.0" fill="rgb(0,220,184)" rx="2" ry="2" /> +<text x="229.47" y="719.5" ></text> +</g> +<g > +<title>ext4_evict_inode (171,717,170 samples, 0.65%)</title><rect x="132.0" y="549" width="9.0" height="15.0" fill="rgb(0,211,10)" rx="2" ry="2" /> +<text x="135.03" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.15%)</title><rect x="420.7" y="709" width="2.1" height="15.0" fill="rgb(0,229,79)" rx="2" ry="2" /> +<text x="423.66" y="719.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.04%)</title><rect x="285.9" y="437" width="0.5" height="15.0" fill="rgb(0,230,107)" rx="2" ry="2" /> +<text x="288.89" y="447.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (20,202,020 samples, 0.08%)</title><rect x="153.8" y="597" width="1.0" height="15.0" fill="rgb(0,198,38)" rx="2" ry="2" /> +<text x="156.78" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="478.5" y="613" width="0.5" height="15.0" fill="rgb(0,234,87)" rx="2" ry="2" /> +<text x="481.49" y="623.5" ></text> +</g> +<g > +<title>sock_alloc_file (10,101,010 samples, 0.04%)</title><rect x="1373.6" y="789" width="0.5" height="15.0" fill="rgb(0,205,200)" rx="2" ry="2" /> +<text x="1376.55" y="799.5" ></text> +</g> +<g > +<title>blk_mq_do_dispatch_sched (20,202,020 samples, 0.08%)</title><rect x="273.7" y="341" width="1.1" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="276.69" y="351.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.04%)</title><rect x="185.6" y="549" width="0.5" height="15.0" fill="rgb(0,233,185)" rx="2" ry="2" /> +<text x="188.62" y="559.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="299.2" y="453" width="0.5" height="15.0" fill="rgb(0,208,146)" rx="2" ry="2" /> +<text x="302.16" y="463.5" ></text> +</g> +<g > +<title>tzset (30,303,030 samples, 0.12%)</title><rect x="314.0" y="677" width="1.6" height="15.0" fill="rgb(0,198,190)" rx="2" ry="2" /> +<text x="317.01" y="687.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.08%)</title><rect x="501.3" y="581" width="1.1" height="15.0" fill="rgb(0,235,197)" rx="2" ry="2" /> +<text x="504.30" y="591.5" ></text> +</g> +<g > +<title>git_repository_set_head (444,444,440 samples, 1.69%)</title><rect x="292.3" y="773" width="23.3" height="15.0" fill="rgb(0,227,57)" rx="2" ry="2" /> +<text x="295.26" y="783.5" >g..</text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="148.5" y="549" width="0.5" height="15.0" fill="rgb(0,236,163)" rx="2" ry="2" /> +<text x="151.48" y="559.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="444.5" y="549" width="0.6" height="15.0" fill="rgb(0,228,176)" rx="2" ry="2" /> +<text x="447.53" y="559.5" ></text> +</g> +<g > +<title>scsi_queue_rq (10,101,010 samples, 0.04%)</title><rect x="273.7" y="293" width="0.5" height="15.0" fill="rgb(0,238,160)" rx="2" ry="2" /> +<text x="276.69" y="303.5" ></text> +</g> +<g > +<title>lh_table_free (20,202,020 samples, 0.08%)</title><rect x="933.7" y="853" width="1.1" height="15.0" fill="rgb(0,227,197)" rx="2" ry="2" /> +<text x="936.71" y="863.5" ></text> +</g> +<g > +<title>dentry_kill (20,202,020 samples, 0.08%)</title><rect x="414.8" y="581" width="1.1" height="15.0" fill="rgb(0,220,138)" rx="2" ry="2" /> +<text x="417.82" y="591.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (20,202,020 samples, 0.08%)</title><rect x="596.3" y="757" width="1.0" height="15.0" fill="rgb(0,222,98)" rx="2" ry="2" /> +<text x="599.27" y="767.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="305.0" y="437" width="0.5" height="15.0" fill="rgb(0,198,114)" rx="2" ry="2" /> +<text x="307.99" y="447.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.04%)</title><rect x="187.7" y="357" width="0.6" height="15.0" fill="rgb(0,223,59)" rx="2" ry="2" /> +<text x="190.74" y="367.5" ></text> +</g> +<g > +<title>git_odb_read_header (40,404,040 samples, 0.15%)</title><rect x="212.1" y="741" width="2.2" height="15.0" fill="rgb(0,210,51)" rx="2" ry="2" /> +<text x="215.15" y="751.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="476.9" y="645" width="0.5" height="15.0" fill="rgb(0,218,134)" rx="2" ry="2" /> +<text x="479.90" y="655.5" ></text> +</g> +<g > +<title>ip_queue_xmit (50,505,050 samples, 0.19%)</title><rect x="1364.0" y="597" width="2.7" height="15.0" fill="rgb(0,219,127)" rx="2" ry="2" /> +<text x="1367.00" y="607.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="473.7" y="645" width="0.5" height="15.0" fill="rgb(0,235,152)" rx="2" ry="2" /> +<text x="476.71" y="655.5" ></text> +</g> +<g > +<title>fdopendir (90,909,090 samples, 0.35%)</title><rect x="112.4" y="709" width="4.8" height="15.0" fill="rgb(0,202,197)" rx="2" ry="2" /> +<text x="115.40" y="719.5" ></text> +</g> +<g > +<title>json_send (60,606,060 samples, 0.23%)</title><rect x="1379.4" y="869" width="3.2" height="15.0" fill="rgb(0,216,169)" rx="2" ry="2" /> +<text x="1382.39" y="879.5" ></text> +</g> +<g > +<title>sock_sendmsg (80,808,080 samples, 0.31%)</title><rect x="10.5" y="757" width="4.3" height="15.0" fill="rgb(0,216,188)" rx="2" ry="2" /> +<text x="13.53" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (212,121,210 samples, 0.81%)</title><rect x="323.6" y="725" width="11.1" height="15.0" fill="rgb(0,224,208)" rx="2" ry="2" /> +<text x="326.56" y="735.5" ></text> +</g> +<g > +<title>tcp_child_process (10,101,010 samples, 0.04%)</title><rect x="1369.8" y="293" width="0.6" height="15.0" fill="rgb(0,200,152)" rx="2" ry="2" /> +<text x="1372.84" y="303.5" ></text> +</g> +<g > +<title>net_close (161,616,160 samples, 0.62%)</title><rect x="34.4" y="837" width="8.5" height="15.0" fill="rgb(0,225,107)" rx="2" ry="2" /> +<text x="37.41" y="847.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="462.6" y="437" width="0.5" height="15.0" fill="rgb(0,206,191)" rx="2" ry="2" /> +<text x="465.57" y="447.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.08%)</title><rect x="23.8" y="821" width="1.1" height="15.0" fill="rgb(0,199,103)" rx="2" ry="2" /> +<text x="26.79" y="831.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,585,858,570 samples, 6.04%)</title><rect x="86.4" y="773" width="83.3" height="15.0" fill="rgb(0,192,143)" rx="2" ry="2" /> +<text x="89.40" y="783.5" >[libc.so.6]</text> +</g> +<g > +<title>git_repository_index (20,202,020 samples, 0.08%)</title><rect x="220.6" y="821" width="1.1" height="15.0" fill="rgb(0,210,156)" rx="2" ry="2" /> +<text x="223.63" y="831.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.04%)</title><rect x="440.3" y="405" width="0.5" height="15.0" fill="rgb(0,220,103)" rx="2" ry="2" /> +<text x="443.29" y="415.5" ></text> +</g> +<g > +<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="64.1" y="645" width="0.5" height="15.0" fill="rgb(0,203,196)" rx="2" ry="2" /> +<text x="67.12" y="655.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.04%)</title><rect x="244.0" y="549" width="0.5" height="15.0" fill="rgb(0,230,116)" rx="2" ry="2" /> +<text x="246.98" y="559.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="414.3" y="677" width="0.5" height="15.0" fill="rgb(0,235,33)" rx="2" ry="2" /> +<text x="417.29" y="687.5" ></text> +</g> +<g > +<title>alloc_pages_vma (10,101,010 samples, 0.04%)</title><rect x="615.4" y="725" width="0.5" height="15.0" fill="rgb(0,205,203)" rx="2" ry="2" /> +<text x="618.37" y="735.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.04%)</title><rect x="389.9" y="405" width="0.5" height="15.0" fill="rgb(0,210,106)" rx="2" ry="2" /> +<text x="392.88" y="415.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (30,303,030 samples, 0.12%)</title><rect x="1365.1" y="325" width="1.6" height="15.0" fill="rgb(0,234,44)" rx="2" ry="2" /> +<text x="1368.06" y="335.5" ></text> +</g> +<g > +<title>__vmalloc_area_node.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="20.6" y="821" width="0.5" height="15.0" fill="rgb(0,212,66)" rx="2" ry="2" /> +<text x="23.61" y="831.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="898.7" y="789" width="0.5" height="15.0" fill="rgb(0,233,8)" rx="2" ry="2" /> +<text x="901.70" y="799.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.04%)</title><rect x="185.1" y="581" width="0.5" height="15.0" fill="rgb(0,236,208)" rx="2" ry="2" /> +<text x="188.09" y="591.5" ></text> +</g> +<g > +<title>sbitmap_get (10,101,010 samples, 0.04%)</title><rect x="274.2" y="309" width="0.6" height="15.0" fill="rgb(0,218,64)" rx="2" ry="2" /> +<text x="277.22" y="319.5" ></text> +</g> +<g > +<title>__strftime_l (10,101,010 samples, 0.04%)</title><rect x="15.3" y="885" width="0.5" height="15.0" fill="rgb(0,193,56)" rx="2" ry="2" /> +<text x="18.31" y="895.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.04%)</title><rect x="352.2" y="421" width="0.5" height="15.0" fill="rgb(0,216,190)" rx="2" ry="2" /> +<text x="355.21" y="431.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.04%)</title><rect x="343.2" y="485" width="0.5" height="15.0" fill="rgb(0,211,14)" rx="2" ry="2" /> +<text x="346.19" y="495.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.04%)</title><rect x="376.6" y="629" width="0.6" height="15.0" fill="rgb(0,193,188)" rx="2" ry="2" /> +<text x="379.62" y="639.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (20,202,020 samples, 0.08%)</title><rect x="593.1" y="741" width="1.1" height="15.0" fill="rgb(0,215,206)" rx="2" ry="2" /> +<text x="596.09" y="751.5" ></text> +</g> +<g > +<title>grab_cache_page_write_begin (10,101,010 samples, 0.04%)</title><rect x="393.1" y="469" width="0.5" height="15.0" fill="rgb(0,199,25)" rx="2" ry="2" /> +<text x="396.07" y="479.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (40,404,040 samples, 0.15%)</title><rect x="1383.6" y="773" width="2.2" height="15.0" fill="rgb(0,237,88)" rx="2" ry="2" /> +<text x="1386.63" y="783.5" ></text> +</g> +<g > +<title>ext4_getblk (20,202,020 samples, 0.08%)</title><rect x="250.3" y="533" width="1.1" height="15.0" fill="rgb(0,217,100)" rx="2" ry="2" /> +<text x="253.35" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="300.2" y="693" width="1.1" height="15.0" fill="rgb(0,238,144)" rx="2" ry="2" /> +<text x="303.22" y="703.5" ></text> +</g> +<g > +<title>jsonrpc_request_recv (80,808,080 samples, 0.31%)</title><rect x="1374.6" y="837" width="4.3" height="15.0" fill="rgb(0,216,178)" rx="2" ry="2" /> +<text x="1377.61" y="847.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.04%)</title><rect x="129.4" y="517" width="0.5" height="15.0" fill="rgb(0,215,69)" rx="2" ry="2" /> +<text x="132.38" y="527.5" ></text> +</g> +<g > +<title>evict (202,020,200 samples, 0.77%)</title><rect x="131.0" y="565" width="10.6" height="15.0" fill="rgb(0,237,113)" rx="2" ry="2" /> +<text x="133.97" y="575.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="150.6" y="597" width="0.5" height="15.0" fill="rgb(0,236,208)" rx="2" ry="2" /> +<text x="153.60" y="607.5" ></text> +</g> +<g > +<title>ip_rcv (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="373" width="1.6" height="15.0" fill="rgb(0,216,188)" rx="2" ry="2" /> +<text x="1370.19" y="383.5" ></text> +</g> +<g > +<title>do_filp_open (50,505,050 samples, 0.19%)</title><rect x="376.6" y="677" width="2.7" height="15.0" fill="rgb(0,199,62)" rx="2" ry="2" /> +<text x="379.62" y="687.5" ></text> +</g> +<g > +<title>unlink (70,707,070 samples, 0.27%)</title><rect x="89.1" y="629" width="3.7" height="15.0" fill="rgb(0,231,190)" rx="2" ry="2" /> +<text x="92.05" y="639.5" ></text> +</g> +<g > +<title>evict (80,808,080 samples, 0.31%)</title><rect x="328.9" y="549" width="4.2" height="15.0" fill="rgb(0,208,58)" rx="2" ry="2" /> +<text x="331.87" y="559.5" ></text> +</g> +<g > +<title>__napi_poll (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="421" width="0.6" height="15.0" fill="rgb(0,219,161)" rx="2" ry="2" /> +<text x="1383.45" y="431.5" ></text> +</g> +<g > +<title>tcp_write_xmit (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="645" width="1.6" height="15.0" fill="rgb(0,201,187)" rx="2" ry="2" /> +<text x="1370.19" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (40,404,040 samples, 0.15%)</title><rect x="161.7" y="661" width="2.2" height="15.0" fill="rgb(0,199,187)" rx="2" ry="2" /> +<text x="164.74" y="671.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (30,303,030 samples, 0.12%)</title><rect x="408.5" y="613" width="1.5" height="15.0" fill="rgb(0,197,86)" rx="2" ry="2" /> +<text x="411.45" y="623.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="408.5" y="565" width="0.5" height="15.0" fill="rgb(0,204,126)" rx="2" ry="2" /> +<text x="411.45" y="575.5" ></text> +</g> +<g > +<title>__ext4_unlink (80,808,080 samples, 0.31%)</title><rect x="105.5" y="549" width="4.2" height="15.0" fill="rgb(0,211,20)" rx="2" ry="2" /> +<text x="108.50" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="495.5" y="645" width="1.0" height="15.0" fill="rgb(0,231,42)" rx="2" ry="2" /> +<text x="498.47" y="655.5" ></text> +</g> +<g > +<title>__sys_sendto (80,808,080 samples, 0.31%)</title><rect x="10.5" y="773" width="4.3" height="15.0" fill="rgb(0,226,82)" rx="2" ry="2" /> +<text x="13.53" y="783.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.04%)</title><rect x="409.5" y="565" width="0.5" height="15.0" fill="rgb(0,238,165)" rx="2" ry="2" /> +<text x="412.52" y="575.5" ></text> +</g> +<g > +<title>new_inode (30,303,030 samples, 0.12%)</title><rect x="70.5" y="757" width="1.6" height="15.0" fill="rgb(0,226,112)" rx="2" ry="2" /> +<text x="73.48" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.19%)</title><rect x="376.6" y="741" width="2.7" height="15.0" fill="rgb(0,210,186)" rx="2" ry="2" /> +<text x="379.62" y="751.5" ></text> +</g> +<g > +<title>__mem_cgroup_uncharge (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="437" width="0.5" height="15.0" fill="rgb(0,209,73)" rx="2" ry="2" /> +<text x="1389.82" y="447.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="116.6" y="565" width="0.6" height="15.0" fill="rgb(0,193,201)" rx="2" ry="2" /> +<text x="119.64" y="575.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="317.2" y="581" width="0.5" height="15.0" fill="rgb(0,202,36)" rx="2" ry="2" /> +<text x="320.20" y="591.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.04%)</title><rect x="597.3" y="677" width="0.6" height="15.0" fill="rgb(0,229,117)" rx="2" ry="2" /> +<text x="600.34" y="687.5" ></text> +</g> +<g > +<title>put_ucounts (10,101,010 samples, 0.04%)</title><rect x="78.4" y="837" width="0.6" height="15.0" fill="rgb(0,191,57)" rx="2" ry="2" /> +<text x="81.44" y="847.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="375.6" y="629" width="0.5" height="15.0" fill="rgb(0,235,40)" rx="2" ry="2" /> +<text x="378.56" y="639.5" ></text> +</g> +<g > +<title>__dquot_initialize (10,101,010 samples, 0.04%)</title><rect x="133.1" y="517" width="0.5" height="15.0" fill="rgb(0,238,21)" rx="2" ry="2" /> +<text x="136.09" y="527.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.04%)</title><rect x="213.7" y="677" width="0.6" height="15.0" fill="rgb(0,216,130)" rx="2" ry="2" /> +<text x="216.74" y="687.5" ></text> +</g> +<g > +<title>git_refdb_open (30,303,030 samples, 0.12%)</title><rect x="356.5" y="693" width="1.6" height="15.0" fill="rgb(0,231,118)" rx="2" ry="2" /> +<text x="359.46" y="703.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.04%)</title><rect x="158.6" y="565" width="0.5" height="15.0" fill="rgb(0,192,100)" rx="2" ry="2" /> +<text x="161.56" y="575.5" ></text> +</g> +<g > +<title>ext4_evict_inode (60,606,060 samples, 0.23%)</title><rect x="268.4" y="517" width="3.2" height="15.0" fill="rgb(0,232,95)" rx="2" ry="2" /> +<text x="271.39" y="527.5" ></text> +</g> +<g > +<title>__es_remove_extent (20,202,020 samples, 0.08%)</title><rect x="268.4" y="453" width="1.0" height="15.0" fill="rgb(0,208,9)" rx="2" ry="2" /> +<text x="271.39" y="463.5" ></text> +</g> +<g > +<title>close (40,404,040 samples, 0.15%)</title><rect x="32.3" y="821" width="2.1" height="15.0" fill="rgb(0,202,170)" rx="2" ry="2" /> +<text x="35.28" y="831.5" ></text> +</g> +<g > +<title>__close_nocancel (20,202,020 samples, 0.08%)</title><rect x="243.4" y="725" width="1.1" height="15.0" fill="rgb(0,221,17)" rx="2" ry="2" /> +<text x="246.45" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="281.1" y="613" width="0.5" height="15.0" fill="rgb(0,209,85)" rx="2" ry="2" /> +<text x="284.12" y="623.5" ></text> +</g> +<g > +<title>dentry_kill (50,505,050 samples, 0.19%)</title><rect x="340.0" y="613" width="2.7" height="15.0" fill="rgb(0,238,102)" rx="2" ry="2" /> +<text x="343.01" y="623.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.04%)</title><rect x="476.9" y="629" width="0.5" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" /> +<text x="479.90" y="639.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.04%)</title><rect x="189.9" y="565" width="0.5" height="15.0" fill="rgb(0,206,10)" rx="2" ry="2" /> +<text x="192.86" y="575.5" ></text> +</g> +<g > +<title>__pte_alloc (10,101,010 samples, 0.04%)</title><rect x="520.9" y="613" width="0.6" height="15.0" fill="rgb(0,212,45)" rx="2" ry="2" /> +<text x="523.93" y="623.5" ></text> +</g> +<g > +<title>_raw_read_lock (10,101,010 samples, 0.04%)</title><rect x="354.3" y="405" width="0.6" height="15.0" fill="rgb(0,230,208)" rx="2" ry="2" /> +<text x="357.34" y="415.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.04%)</title><rect x="505.5" y="677" width="0.6" height="15.0" fill="rgb(0,195,115)" rx="2" ry="2" /> +<text x="508.55" y="687.5" ></text> +</g> +<g > +<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.04%)</title><rect x="236.0" y="453" width="0.6" height="15.0" fill="rgb(0,221,171)" rx="2" ry="2" /> +<text x="239.02" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="531.0" y="773" width="0.5" height="15.0" fill="rgb(0,223,101)" rx="2" ry="2" /> +<text x="534.01" y="783.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="388.3" y="405" width="0.5" height="15.0" fill="rgb(0,223,156)" rx="2" ry="2" /> +<text x="391.29" y="415.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.04%)</title><rect x="15.8" y="789" width="0.6" height="15.0" fill="rgb(0,210,176)" rx="2" ry="2" /> +<text x="18.84" y="799.5" ></text> +</g> +<g > +<title>iput (20,202,020 samples, 0.08%)</title><rect x="414.8" y="533" width="1.1" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="417.82" y="543.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (20,202,020 samples, 0.08%)</title><rect x="309.2" y="549" width="1.1" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="312.24" y="559.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="491.2" y="645" width="0.6" height="15.0" fill="rgb(0,199,80)" rx="2" ry="2" /> +<text x="494.22" y="655.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.04%)</title><rect x="527.3" y="597" width="0.5" height="15.0" fill="rgb(0,237,73)" rx="2" ry="2" /> +<text x="530.30" y="607.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.08%)</title><rect x="364.9" y="645" width="1.1" height="15.0" fill="rgb(0,209,13)" rx="2" ry="2" /> +<text x="367.95" y="655.5" ></text> +</g> +<g > +<title>tcp_v4_syn_recv_sock (10,101,010 samples, 0.04%)</title><rect x="1369.3" y="261" width="0.5" height="15.0" fill="rgb(0,235,1)" rx="2" ry="2" /> +<text x="1372.31" y="271.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.04%)</title><rect x="38.7" y="101" width="0.5" height="15.0" fill="rgb(0,231,126)" rx="2" ry="2" /> +<text x="41.65" y="111.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.04%)</title><rect x="180.3" y="613" width="0.5" height="15.0" fill="rgb(0,236,112)" rx="2" ry="2" /> +<text x="183.31" y="623.5" ></text> +</g> +<g > +<title>rcu_read_unlock_strict (10,101,010 samples, 0.04%)</title><rect x="569.7" y="597" width="0.6" height="15.0" fill="rgb(0,215,11)" rx="2" ry="2" /> +<text x="572.75" y="607.5" ></text> +</g> +<g > +<title>____fput (20,202,020 samples, 0.08%)</title><rect x="259.4" y="645" width="1.0" height="15.0" fill="rgb(0,221,45)" rx="2" ry="2" /> +<text x="262.37" y="655.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="159.1" y="485" width="0.5" height="15.0" fill="rgb(0,210,202)" rx="2" ry="2" /> +<text x="162.09" y="495.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="501" width="1.6" height="15.0" fill="rgb(0,198,117)" rx="2" ry="2" /> +<text x="1370.19" y="511.5" ></text> +</g> +<g > +<title>ip_finish_output2 (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="517" width="1.6" height="15.0" fill="rgb(0,207,116)" rx="2" ry="2" /> +<text x="1370.19" y="527.5" ></text> +</g> +<g > +<title>check_stack_object (10,101,010 samples, 0.04%)</title><rect x="396.8" y="549" width="0.5" height="15.0" fill="rgb(0,198,187)" rx="2" ry="2" /> +<text x="399.78" y="559.5" ></text> +</g> +<g > +<title>do_filp_open (40,404,040 samples, 0.15%)</title><rect x="405.3" y="629" width="2.1" height="15.0" fill="rgb(0,197,58)" rx="2" ry="2" /> +<text x="408.27" y="639.5" ></text> +</g> +<g > +<title>getdents64 (10,101,010 samples, 0.04%)</title><rect x="367.1" y="677" width="0.5" height="15.0" fill="rgb(0,197,39)" rx="2" ry="2" /> +<text x="370.07" y="687.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.04%)</title><rect x="116.1" y="597" width="0.5" height="15.0" fill="rgb(0,204,135)" rx="2" ry="2" /> +<text x="119.11" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_readlink (10,101,010 samples, 0.04%)</title><rect x="467.9" y="677" width="0.5" height="15.0" fill="rgb(0,224,126)" rx="2" ry="2" /> +<text x="470.88" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="185.6" y="565" width="0.5" height="15.0" fill="rgb(0,195,129)" rx="2" ry="2" /> +<text x="188.62" y="575.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="135.2" y="453" width="0.5" height="15.0" fill="rgb(0,194,80)" rx="2" ry="2" /> +<text x="138.21" y="463.5" ></text> +</g> +<g > +<title>ext4_unlink (20,202,020 samples, 0.08%)</title><rect x="168.6" y="629" width="1.1" height="15.0" fill="rgb(0,206,209)" rx="2" ry="2" /> +<text x="171.64" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="287.0" y="661" width="1.0" height="15.0" fill="rgb(0,195,50)" rx="2" ry="2" /> +<text x="289.96" y="671.5" ></text> +</g> +<g > +<title>[libz.so.1.2.11] (10,101,010 samples, 0.04%)</title><rect x="398.9" y="597" width="0.5" height="15.0" fill="rgb(0,224,142)" rx="2" ry="2" /> +<text x="401.90" y="607.5" ></text> +</g> +<g > +<title>ext4_free_blocks (10,101,010 samples, 0.04%)</title><rect x="414.8" y="405" width="0.6" height="15.0" fill="rgb(0,239,133)" rx="2" ry="2" /> +<text x="417.82" y="415.5" ></text> +</g> +<g > +<title>unlink_cb (20,202,020 samples, 0.08%)</title><rect x="170.2" y="773" width="1.1" height="15.0" fill="rgb(0,203,144)" rx="2" ry="2" /> +<text x="173.23" y="783.5" ></text> +</g> +<g > +<title>__do_sys_clone (373,737,370 samples, 1.42%)</title><rect x="510.3" y="741" width="19.7" height="15.0" fill="rgb(0,228,88)" rx="2" ry="2" /> +<text x="513.32" y="751.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum_set (10,101,010 samples, 0.04%)</title><rect x="172.9" y="613" width="0.5" height="15.0" fill="rgb(0,219,157)" rx="2" ry="2" /> +<text x="175.88" y="623.5" ></text> +</g> +<g > +<title>ext4_append (60,606,060 samples, 0.23%)</title><rect x="387.8" y="501" width="3.1" height="15.0" fill="rgb(0,196,152)" rx="2" ry="2" /> +<text x="390.76" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.46%)</title><rect x="369.7" y="709" width="6.4" height="15.0" fill="rgb(0,226,3)" rx="2" ry="2" /> +<text x="372.72" y="719.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (60,606,060 samples, 0.23%)</title><rect x="137.3" y="469" width="3.2" height="15.0" fill="rgb(0,219,130)" rx="2" ry="2" /> +<text x="140.34" y="479.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="528.9" y="597" width="0.5" height="15.0" fill="rgb(0,208,28)" rx="2" ry="2" /> +<text x="531.89" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="93.8" y="629" width="1.6" height="15.0" fill="rgb(0,210,139)" rx="2" ry="2" /> +<text x="96.83" y="639.5" ></text> +</g> +<g > +<title>git_config_set_string (303,030,300 samples, 1.15%)</title><rect x="260.4" y="757" width="15.9" height="15.0" fill="rgb(0,194,77)" rx="2" ry="2" /> +<text x="263.43" y="767.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="330.5" y="437" width="0.5" height="15.0" fill="rgb(0,222,202)" rx="2" ry="2" /> +<text x="333.46" y="447.5" ></text> +</g> +<g > +<title>ext4_lookup (40,404,040 samples, 0.15%)</title><rect x="80.0" y="789" width="2.2" height="15.0" fill="rgb(0,202,149)" rx="2" ry="2" /> +<text x="83.03" y="799.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="69.4" y="693" width="0.6" height="15.0" fill="rgb(0,203,163)" rx="2" ry="2" /> +<text x="72.42" y="703.5" ></text> +</g> +<g > +<title>git_repository_init (1,444,444,430 samples, 5.50%)</title><rect x="403.7" y="805" width="75.9" height="15.0" fill="rgb(0,212,51)" rx="2" ry="2" /> +<text x="406.68" y="815.5" >git_repo..</text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.04%)</title><rect x="502.9" y="597" width="0.5" height="15.0" fill="rgb(0,193,138)" rx="2" ry="2" /> +<text x="505.90" y="607.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="231.2" y="549" width="1.1" height="15.0" fill="rgb(0,192,66)" rx="2" ry="2" /> +<text x="234.25" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (40,404,040 samples, 0.15%)</title><rect x="153.3" y="677" width="2.1" height="15.0" fill="rgb(0,208,17)" rx="2" ry="2" /> +<text x="156.25" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="412.2" y="725" width="1.0" height="15.0" fill="rgb(0,203,15)" rx="2" ry="2" /> +<text x="415.17" y="735.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="341" width="0.6" height="15.0" fill="rgb(0,215,78)" rx="2" ry="2" /> +<text x="1388.22" y="351.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="126.7" y="517" width="0.6" height="15.0" fill="rgb(0,205,192)" rx="2" ry="2" /> +<text x="129.72" y="527.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="232.8" y="485" width="0.6" height="15.0" fill="rgb(0,198,92)" rx="2" ry="2" /> +<text x="235.84" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="380.9" y="629" width="1.0" height="15.0" fill="rgb(0,208,6)" rx="2" ry="2" /> +<text x="383.87" y="639.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.04%)</title><rect x="381.9" y="565" width="0.6" height="15.0" fill="rgb(0,228,60)" rx="2" ry="2" /> +<text x="384.93" y="575.5" ></text> +</g> +<g > +<title>may_delete (10,101,010 samples, 0.04%)</title><rect x="170.8" y="645" width="0.5" height="15.0" fill="rgb(0,206,127)" rx="2" ry="2" /> +<text x="173.76" y="655.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="257.8" y="613" width="0.5" height="15.0" fill="rgb(0,229,185)" rx="2" ry="2" /> +<text x="260.77" y="623.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="189.9" y="645" width="0.5" height="15.0" fill="rgb(0,198,114)" rx="2" ry="2" /> +<text x="192.86" y="655.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.04%)</title><rect x="440.8" y="677" width="0.5" height="15.0" fill="rgb(0,201,172)" rx="2" ry="2" /> +<text x="443.82" y="687.5" ></text> +</g> +<g > +<title>ip_local_deliver (30,303,030 samples, 0.12%)</title><rect x="1365.1" y="341" width="1.6" height="15.0" fill="rgb(0,232,7)" rx="2" ry="2" /> +<text x="1368.06" y="351.5" ></text> +</g> +<g > +<title>__open64_nocancel (20,202,020 samples, 0.08%)</title><rect x="350.1" y="597" width="1.1" height="15.0" fill="rgb(0,199,182)" rx="2" ry="2" /> +<text x="353.09" y="607.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.04%)</title><rect x="365.5" y="517" width="0.5" height="15.0" fill="rgb(0,198,70)" rx="2" ry="2" /> +<text x="368.48" y="527.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="503.4" y="677" width="0.6" height="15.0" fill="rgb(0,193,143)" rx="2" ry="2" /> +<text x="506.43" y="687.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="353.3" y="613" width="0.5" height="15.0" fill="rgb(0,204,103)" rx="2" ry="2" /> +<text x="356.28" y="623.5" ></text> +</g> +<g > +<title>__close_nocancel (50,505,050 samples, 0.19%)</title><rect x="109.7" y="709" width="2.7" height="15.0" fill="rgb(0,205,208)" rx="2" ry="2" /> +<text x="112.75" y="719.5" ></text> +</g> +<g > +<title>__blk_mq_run_hw_queue (20,202,020 samples, 0.08%)</title><rect x="449.3" y="389" width="1.1" height="15.0" fill="rgb(0,237,54)" rx="2" ry="2" /> +<text x="452.31" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="188.3" y="693" width="1.0" height="15.0" fill="rgb(0,237,96)" rx="2" ry="2" /> +<text x="191.27" y="703.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (20,202,020 samples, 0.08%)</title><rect x="273.7" y="421" width="1.1" height="15.0" fill="rgb(0,207,152)" rx="2" ry="2" /> +<text x="276.69" y="431.5" ></text> +</g> +<g > +<title>ext4_rmdir.part.0 (10,101,010 samples, 0.04%)</title><rect x="96.0" y="533" width="0.5" height="15.0" fill="rgb(0,232,72)" rx="2" ry="2" /> +<text x="98.95" y="543.5" ></text> +</g> +<g > +<title>rename (20,202,020 samples, 0.08%)</title><rect x="309.2" y="677" width="1.1" height="15.0" fill="rgb(0,238,172)" rx="2" ry="2" /> +<text x="312.24" y="687.5" ></text> +</g> +<g > +<title>evict (40,404,040 samples, 0.15%)</title><rect x="340.5" y="549" width="2.2" height="15.0" fill="rgb(0,215,25)" rx="2" ry="2" /> +<text x="343.54" y="559.5" ></text> +</g> +<g > +<title>tcp_create_openreq_child (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="245" width="0.5" height="15.0" fill="rgb(0,211,177)" rx="2" ry="2" /> +<text x="1388.76" y="255.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="356.5" y="501" width="1.0" height="15.0" fill="rgb(0,237,109)" rx="2" ry="2" /> +<text x="359.46" y="511.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (20,202,020 samples, 0.08%)</title><rect x="153.8" y="629" width="1.0" height="15.0" fill="rgb(0,217,172)" rx="2" ry="2" /> +<text x="156.78" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="276.9" y="709" width="0.5" height="15.0" fill="rgb(0,225,164)" rx="2" ry="2" /> +<text x="279.87" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="277.9" y="709" width="1.1" height="15.0" fill="rgb(0,219,105)" rx="2" ry="2" /> +<text x="280.94" y="719.5" ></text> +</g> +<g > +<title>process_backlog (80,808,080 samples, 0.31%)</title><rect x="37.6" y="309" width="4.2" height="15.0" fill="rgb(0,199,37)" rx="2" ry="2" /> +<text x="40.59" y="319.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="346.4" y="709" width="0.5" height="15.0" fill="rgb(0,198,19)" rx="2" ry="2" /> +<text x="349.38" y="719.5" ></text> +</g> +<g > +<title>__libc_calloc (20,202,020 samples, 0.08%)</title><rect x="484.3" y="693" width="1.1" height="15.0" fill="rgb(0,236,36)" rx="2" ry="2" /> +<text x="487.33" y="703.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.04%)</title><rect x="306.1" y="645" width="0.5" height="15.0" fill="rgb(0,191,202)" rx="2" ry="2" /> +<text x="309.06" y="655.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.04%)</title><rect x="383.5" y="469" width="0.5" height="15.0" fill="rgb(0,216,147)" rx="2" ry="2" /> +<text x="386.52" y="479.5" ></text> +</g> +<g > +<title>vfs_write (30,303,030 samples, 0.12%)</title><rect x="303.9" y="549" width="1.6" height="15.0" fill="rgb(0,232,204)" rx="2" ry="2" /> +<text x="306.93" y="559.5" ></text> +</g> +<g > +<title>__dentry_kill (10,101,010 samples, 0.04%)</title><rect x="531.0" y="629" width="0.5" height="15.0" fill="rgb(0,227,152)" rx="2" ry="2" /> +<text x="534.01" y="639.5" ></text> +</g> +<g > +<title>json_object_put (10,101,010 samples, 0.04%)</title><rect x="10.0" y="901" width="0.5" height="15.0" fill="rgb(0,210,178)" rx="2" ry="2" /> +<text x="13.00" y="911.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="493.3" y="757" width="3.8" height="15.0" fill="rgb(0,206,77)" rx="2" ry="2" /> +<text x="496.34" y="767.5" ></text> +</g> +<g > +<title>new_sync_write (40,404,040 samples, 0.15%)</title><rect x="206.3" y="613" width="2.1" height="15.0" fill="rgb(0,231,80)" rx="2" ry="2" /> +<text x="209.31" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="411.1" y="725" width="0.5" height="15.0" fill="rgb(0,224,136)" rx="2" ry="2" /> +<text x="414.11" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.58%)</title><rect x="193.6" y="741" width="7.9" height="15.0" fill="rgb(0,221,186)" rx="2" ry="2" /> +<text x="196.58" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="185.6" y="613" width="0.5" height="15.0" fill="rgb(0,204,88)" rx="2" ry="2" /> +<text x="188.62" y="623.5" ></text> +</g> +<g > +<title>fstatat (70,707,070 samples, 0.27%)</title><rect x="427.6" y="757" width="3.7" height="15.0" fill="rgb(0,209,107)" rx="2" ry="2" /> +<text x="430.55" y="767.5" ></text> +</g> +<g > +<title>do_softirq (60,606,060 samples, 0.23%)</title><rect x="11.1" y="501" width="3.1" height="15.0" fill="rgb(0,224,154)" rx="2" ry="2" /> +<text x="14.06" y="511.5" ></text> +</g> +<g > +<title>git_odb_read_header (30,303,030 samples, 0.12%)</title><rect x="188.3" y="773" width="1.6" height="15.0" fill="rgb(0,235,62)" rx="2" ry="2" /> +<text x="191.27" y="783.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="455.7" y="565" width="0.5" height="15.0" fill="rgb(0,197,95)" rx="2" ry="2" /> +<text x="458.67" y="575.5" ></text> +</g> +<g > +<title>__blk_mq_delay_run_hw_queue (10,101,010 samples, 0.04%)</title><rect x="334.2" y="421" width="0.5" height="15.0" fill="rgb(0,195,209)" rx="2" ry="2" /> +<text x="337.18" y="431.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (90,909,090 samples, 0.35%)</title><rect x="461.0" y="565" width="4.8" height="15.0" fill="rgb(0,210,124)" rx="2" ry="2" /> +<text x="463.98" y="575.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.08%)</title><rect x="489.1" y="597" width="1.1" height="15.0" fill="rgb(0,230,171)" rx="2" ry="2" /> +<text x="492.10" y="607.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.04%)</title><rect x="280.6" y="501" width="0.5" height="15.0" fill="rgb(0,238,107)" rx="2" ry="2" /> +<text x="283.59" y="511.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="455.1" y="565" width="0.6" height="15.0" fill="rgb(0,210,59)" rx="2" ry="2" /> +<text x="458.14" y="575.5" ></text> +</g> +<g > +<title>__blk_mq_run_hw_queue (10,101,010 samples, 0.04%)</title><rect x="343.7" y="405" width="0.6" height="15.0" fill="rgb(0,208,163)" rx="2" ry="2" /> +<text x="346.73" y="415.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.08%)</title><rect x="348.5" y="549" width="1.1" height="15.0" fill="rgb(0,206,34)" rx="2" ry="2" /> +<text x="351.50" y="559.5" ></text> +</g> +<g > +<title>fdopendir (10,101,010 samples, 0.04%)</title><rect x="92.8" y="677" width="0.5" height="15.0" fill="rgb(0,193,44)" rx="2" ry="2" /> +<text x="95.77" y="687.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="617.0" y="709" width="0.5" height="15.0" fill="rgb(0,190,203)" rx="2" ry="2" /> +<text x="619.97" y="719.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (60,606,060 samples, 0.23%)</title><rect x="297.0" y="677" width="3.2" height="15.0" fill="rgb(0,215,37)" rx="2" ry="2" /> +<text x="300.04" y="687.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.12%)</title><rect x="194.1" y="645" width="1.6" height="15.0" fill="rgb(0,204,173)" rx="2" ry="2" /> +<text x="197.11" y="655.5" ></text> +</g> +<g > +<title>git_config_add_backend (60,606,060 samples, 0.23%)</title><rect x="361.2" y="693" width="3.2" height="15.0" fill="rgb(0,208,209)" rx="2" ry="2" /> +<text x="364.23" y="703.5" ></text> +</g> +<g > +<title>vfs_rmdir (30,303,030 samples, 0.12%)</title><rect x="179.3" y="693" width="1.5" height="15.0" fill="rgb(0,206,192)" rx="2" ry="2" /> +<text x="182.25" y="703.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="533" width="0.5" height="15.0" fill="rgb(0,209,115)" rx="2" ry="2" /> +<text x="1342.07" y="543.5" ></text> +</g> +<g > +<title>wbt_data_dir (10,101,010 samples, 0.04%)</title><rect x="444.0" y="485" width="0.5" height="15.0" fill="rgb(0,228,119)" rx="2" ry="2" /> +<text x="447.00" y="495.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.04%)</title><rect x="109.2" y="517" width="0.5" height="15.0" fill="rgb(0,226,162)" rx="2" ry="2" /> +<text x="112.22" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="478.5" y="597" width="0.5" height="15.0" fill="rgb(0,210,78)" rx="2" ry="2" /> +<text x="481.49" y="607.5" ></text> +</g> +<g > +<title>__ctype_tolower_loc (10,101,010 samples, 0.04%)</title><rect x="500.2" y="661" width="0.6" height="15.0" fill="rgb(0,232,36)" rx="2" ry="2" /> +<text x="503.24" y="671.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="898.7" y="805" width="0.5" height="15.0" fill="rgb(0,196,106)" rx="2" ry="2" /> +<text x="901.70" y="815.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="138.4" y="405" width="0.5" height="15.0" fill="rgb(0,238,205)" rx="2" ry="2" /> +<text x="141.40" y="415.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.04%)</title><rect x="440.3" y="501" width="0.5" height="15.0" fill="rgb(0,190,189)" rx="2" ry="2" /> +<text x="443.29" y="511.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.04%)</title><rect x="195.7" y="693" width="0.5" height="15.0" fill="rgb(0,229,135)" rx="2" ry="2" /> +<text x="198.70" y="703.5" ></text> +</g> +<g > +<title>inflateInit2_ (10,101,010 samples, 0.04%)</title><rect x="209.5" y="677" width="0.5" height="15.0" fill="rgb(0,220,182)" rx="2" ry="2" /> +<text x="212.49" y="687.5" ></text> +</g> +<g > +<title>free_rb_tree_fname (20,202,020 samples, 0.08%)</title><rect x="259.4" y="597" width="1.0" height="15.0" fill="rgb(0,210,18)" rx="2" ry="2" /> +<text x="262.37" y="607.5" ></text> +</g> +<g > +<title>sk_stop_timer (10,101,010 samples, 0.04%)</title><rect x="40.2" y="69" width="0.6" height="15.0" fill="rgb(0,226,191)" rx="2" ry="2" /> +<text x="43.24" y="79.5" ></text> +</g> +<g > +<title>ext4_evict_inode (40,404,040 samples, 0.15%)</title><rect x="340.5" y="533" width="2.2" height="15.0" fill="rgb(0,229,120)" rx="2" ry="2" /> +<text x="343.54" y="543.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="292.3" y="597" width="0.5" height="15.0" fill="rgb(0,218,28)" rx="2" ry="2" /> +<text x="295.26" y="607.5" ></text> +</g> +<g > +<title>ext4_read_block_bitmap (10,101,010 samples, 0.04%)</title><rect x="374.0" y="437" width="0.5" height="15.0" fill="rgb(0,225,190)" rx="2" ry="2" /> +<text x="376.97" y="447.5" ></text> +</g> +<g > +<title>rmdir (323,232,320 samples, 1.23%)</title><rect x="126.2" y="677" width="17.0" height="15.0" fill="rgb(0,218,193)" rx="2" ry="2" /> +<text x="129.19" y="687.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="273.2" y="533" width="0.5" height="15.0" fill="rgb(0,228,104)" rx="2" ry="2" /> +<text x="276.16" y="543.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="154.8" y="565" width="0.6" height="15.0" fill="rgb(0,215,2)" rx="2" ry="2" /> +<text x="157.84" y="575.5" ></text> +</g> +<g > +<title>nf_confirm (10,101,010 samples, 0.04%)</title><rect x="41.8" y="405" width="0.6" height="15.0" fill="rgb(0,237,162)" rx="2" ry="2" /> +<text x="44.83" y="415.5" ></text> +</g> +<g > +<title>get_page_from_freelist (101,010,100 samples, 0.38%)</title><rect x="1328.5" y="597" width="5.3" height="15.0" fill="rgb(0,197,33)" rx="2" ry="2" /> +<text x="1331.45" y="607.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.08%)</title><rect x="356.5" y="453" width="1.0" height="15.0" fill="rgb(0,193,166)" rx="2" ry="2" /> +<text x="359.46" y="463.5" ></text> +</g> +<g > +<title>ext4_mb_use_best_found (10,101,010 samples, 0.04%)</title><rect x="508.2" y="549" width="0.5" height="15.0" fill="rgb(0,201,201)" rx="2" ry="2" /> +<text x="511.20" y="559.5" ></text> +</g> +<g > +<title>errseq_check (10,101,010 samples, 0.04%)</title><rect x="68.4" y="757" width="0.5" height="15.0" fill="rgb(0,201,170)" rx="2" ry="2" /> +<text x="71.36" y="767.5" ></text> +</g> +<g > +<title>do_softirq (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="485" width="1.6" height="15.0" fill="rgb(0,239,62)" rx="2" ry="2" /> +<text x="1371.78" y="495.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="408.5" y="517" width="0.5" height="15.0" fill="rgb(0,205,3)" rx="2" ry="2" /> +<text x="411.45" y="527.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="492.3" y="693" width="0.5" height="15.0" fill="rgb(0,230,44)" rx="2" ry="2" /> +<text x="495.28" y="703.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.04%)</title><rect x="245.6" y="581" width="0.5" height="15.0" fill="rgb(0,201,3)" rx="2" ry="2" /> +<text x="248.57" y="591.5" ></text> +</g> +<g > +<title>ext4_getblk (20,202,020 samples, 0.08%)</title><rect x="508.2" y="645" width="1.1" height="15.0" fill="rgb(0,197,22)" rx="2" ry="2" /> +<text x="511.20" y="655.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (50,505,050 samples, 0.19%)</title><rect x="1301.4" y="629" width="2.6" height="15.0" fill="rgb(0,217,47)" rx="2" ry="2" /> +<text x="1304.40" y="639.5" ></text> +</g> +<g > +<title>readlink (20,202,020 samples, 0.08%)</title><rect x="490.7" y="725" width="1.1" height="15.0" fill="rgb(0,212,51)" rx="2" ry="2" /> +<text x="493.69" y="735.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (20,202,020 samples, 0.08%)</title><rect x="303.9" y="437" width="1.1" height="15.0" fill="rgb(0,197,52)" rx="2" ry="2" /> +<text x="306.93" y="447.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="602.1" y="773" width="0.5" height="15.0" fill="rgb(0,216,143)" rx="2" ry="2" /> +<text x="605.11" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_clone (373,737,370 samples, 1.42%)</title><rect x="510.3" y="757" width="19.7" height="15.0" fill="rgb(0,218,134)" rx="2" ry="2" /> +<text x="513.32" y="767.5" ></text> +</g> +<g > +<title>do_writepages (10,101,010 samples, 0.04%)</title><rect x="415.9" y="501" width="0.5" height="15.0" fill="rgb(0,209,35)" rx="2" ry="2" /> +<text x="418.88" y="511.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.04%)</title><rect x="898.7" y="741" width="0.5" height="15.0" fill="rgb(0,194,69)" rx="2" ry="2" /> +<text x="901.70" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="86.9" y="629" width="0.6" height="15.0" fill="rgb(0,221,58)" rx="2" ry="2" /> +<text x="89.93" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.19%)</title><rect x="376.6" y="725" width="2.7" height="15.0" fill="rgb(0,190,111)" rx="2" ry="2" /> +<text x="379.62" y="735.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="333.6" y="533" width="0.6" height="15.0" fill="rgb(0,208,111)" rx="2" ry="2" /> +<text x="336.64" y="543.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="58.3" y="613" width="0.5" height="15.0" fill="rgb(0,214,152)" rx="2" ry="2" /> +<text x="61.28" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="499.2" y="613" width="0.5" height="15.0" fill="rgb(0,223,195)" rx="2" ry="2" /> +<text x="502.18" y="623.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="128.3" y="517" width="0.5" height="15.0" fill="rgb(0,190,51)" rx="2" ry="2" /> +<text x="131.32" y="527.5" ></text> +</g> +<g > +<title>pcre_compile2 (30,303,030 samples, 0.12%)</title><rect x="335.2" y="741" width="1.6" height="15.0" fill="rgb(0,203,93)" rx="2" ry="2" /> +<text x="338.24" y="751.5" ></text> +</g> +<g > +<title>blk_update_request (10,101,010 samples, 0.04%)</title><rect x="275.3" y="229" width="0.5" height="15.0" fill="rgb(0,197,0)" rx="2" ry="2" /> +<text x="278.28" y="239.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="377.7" y="565" width="0.5" height="15.0" fill="rgb(0,196,177)" rx="2" ry="2" /> +<text x="380.68" y="575.5" ></text> +</g> +<g > +<title>do_wp_page (10,101,010 samples, 0.04%)</title><rect x="181.4" y="709" width="0.5" height="15.0" fill="rgb(0,225,47)" rx="2" ry="2" /> +<text x="184.37" y="719.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.04%)</title><rect x="365.5" y="533" width="0.5" height="15.0" fill="rgb(0,213,180)" rx="2" ry="2" /> +<text x="368.48" y="543.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.08%)</title><rect x="495.5" y="597" width="1.0" height="15.0" fill="rgb(0,203,158)" rx="2" ry="2" /> +<text x="498.47" y="607.5" ></text> +</g> +<g > +<title>mkdir (242,424,240 samples, 0.92%)</title><rect x="454.1" y="757" width="12.7" height="15.0" fill="rgb(0,215,71)" rx="2" ry="2" /> +<text x="457.08" y="767.5" ></text> +</g> +<g > +<title>file_modified (20,202,020 samples, 0.08%)</title><rect x="423.8" y="597" width="1.1" height="15.0" fill="rgb(0,231,193)" rx="2" ry="2" /> +<text x="426.84" y="607.5" ></text> +</g> +<g > +<title>git_object_peel (60,606,060 samples, 0.23%)</title><rect x="217.5" y="821" width="3.1" height="15.0" fill="rgb(0,209,162)" rx="2" ry="2" /> +<text x="220.45" y="831.5" ></text> +</g> +<g > +<title>list_lru_del (20,202,020 samples, 0.08%)</title><rect x="179.3" y="613" width="1.0" height="15.0" fill="rgb(0,229,35)" rx="2" ry="2" /> +<text x="182.25" y="623.5" ></text> +</g> +<g > +<title>git_config_get_string_buf (10,101,010 samples, 0.04%)</title><rect x="468.4" y="773" width="0.5" height="15.0" fill="rgb(0,212,188)" rx="2" ry="2" /> +<text x="471.41" y="783.5" ></text> +</g> +<g > +<title>bio_endio (10,101,010 samples, 0.04%)</title><rect x="94.9" y="293" width="0.5" height="15.0" fill="rgb(0,236,17)" rx="2" ry="2" /> +<text x="97.89" y="303.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="127.3" y="517" width="0.5" height="15.0" fill="rgb(0,201,184)" rx="2" ry="2" /> +<text x="130.25" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="288.0" y="677" width="0.5" height="15.0" fill="rgb(0,229,188)" rx="2" ry="2" /> +<text x="291.02" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="439.8" y="677" width="1.0" height="15.0" fill="rgb(0,226,45)" rx="2" ry="2" /> +<text x="442.76" y="687.5" ></text> +</g> +<g > +<title>ext4_free_blocks (60,606,060 samples, 0.23%)</title><rect x="137.3" y="453" width="3.2" height="15.0" fill="rgb(0,196,203)" rx="2" ry="2" /> +<text x="140.34" y="463.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (30,303,030 samples, 0.12%)</title><rect x="419.1" y="629" width="1.6" height="15.0" fill="rgb(0,212,201)" rx="2" ry="2" /> +<text x="422.07" y="639.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="219.6" y="709" width="1.0" height="15.0" fill="rgb(0,204,171)" rx="2" ry="2" /> +<text x="222.57" y="719.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.04%)</title><rect x="489.1" y="533" width="0.5" height="15.0" fill="rgb(0,225,186)" rx="2" ry="2" /> +<text x="492.10" y="543.5" ></text> +</g> +<g > +<title>release_sock (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="741" width="0.5" height="15.0" fill="rgb(0,215,28)" rx="2" ry="2" /> +<text x="1388.76" y="751.5" ></text> +</g> +<g > +<title>filemap_get_pages (10,101,010 samples, 0.04%)</title><rect x="76.3" y="773" width="0.6" height="15.0" fill="rgb(0,236,153)" rx="2" ry="2" /> +<text x="79.32" y="783.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (20,202,020 samples, 0.08%)</title><rect x="449.3" y="373" width="1.1" height="15.0" fill="rgb(0,206,146)" rx="2" ry="2" /> +<text x="452.31" y="383.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.04%)</title><rect x="146.9" y="565" width="0.5" height="15.0" fill="rgb(0,223,187)" rx="2" ry="2" /> +<text x="149.89" y="575.5" ></text> +</g> +<g > +<title>__ip_finish_output (20,202,020 samples, 0.08%)</title><rect x="1380.4" y="517" width="1.1" height="15.0" fill="rgb(0,210,165)" rx="2" ry="2" /> +<text x="1383.45" y="527.5" ></text> +</g> +<g > +<title>revert_creds (10,101,010 samples, 0.04%)</title><rect x="78.4" y="869" width="0.6" height="15.0" fill="rgb(0,222,139)" rx="2" ry="2" /> +<text x="81.44" y="879.5" ></text> +</g> +<g > +<title>tcp_close (131,313,130 samples, 0.50%)</title><rect x="36.0" y="597" width="6.9" height="15.0" fill="rgb(0,190,57)" rx="2" ry="2" /> +<text x="39.00" y="607.5" ></text> +</g> +<g > +<title>ext4_evict_inode (50,505,050 samples, 0.19%)</title><rect x="166.0" y="613" width="2.6" height="15.0" fill="rgb(0,230,25)" rx="2" ry="2" /> +<text x="168.99" y="623.5" ></text> +</g> +<g > +<title>futex_wait_queue_me (20,202,020 samples, 0.08%)</title><rect x="16.9" y="789" width="1.1" height="15.0" fill="rgb(0,194,96)" rx="2" ry="2" /> +<text x="19.90" y="799.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="282.7" y="597" width="0.5" height="15.0" fill="rgb(0,238,8)" rx="2" ry="2" /> +<text x="285.71" y="607.5" ></text> +</g> +<g > +<title>__open64 (20,202,020 samples, 0.08%)</title><rect x="281.6" y="645" width="1.1" height="15.0" fill="rgb(0,219,175)" rx="2" ry="2" /> +<text x="284.65" y="655.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="444.5" y="565" width="0.6" height="15.0" fill="rgb(0,208,207)" rx="2" ry="2" /> +<text x="447.53" y="575.5" ></text> +</g> +<g > +<title>do_eventfd (20,202,020 samples, 0.08%)</title><rect x="45.0" y="757" width="1.1" height="15.0" fill="rgb(0,214,60)" rx="2" ry="2" /> +<text x="48.02" y="767.5" ></text> +</g> +<g > +<title>do_sys_openat2 (30,303,030 samples, 0.12%)</title><rect x="500.8" y="597" width="1.6" height="15.0" fill="rgb(0,226,130)" rx="2" ry="2" /> +<text x="503.77" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="474.8" y="677" width="0.5" height="15.0" fill="rgb(0,209,52)" rx="2" ry="2" /> +<text x="477.78" y="687.5" ></text> +</g> +<g > +<title>d_splice_alias (20,202,020 samples, 0.08%)</title><rect x="81.1" y="757" width="1.1" height="15.0" fill="rgb(0,235,195)" rx="2" ry="2" /> +<text x="84.10" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="303.4" y="597" width="0.5" height="15.0" fill="rgb(0,236,178)" rx="2" ry="2" /> +<text x="306.40" y="607.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="134.7" y="453" width="0.5" height="15.0" fill="rgb(0,192,151)" rx="2" ry="2" /> +<text x="137.68" y="463.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.08%)</title><rect x="175.5" y="613" width="1.1" height="15.0" fill="rgb(0,222,109)" rx="2" ry="2" /> +<text x="178.54" y="623.5" ></text> +</g> +<g > +<title>handle_pte_fault (272,727,270 samples, 1.04%)</title><rect x="1321.6" y="661" width="14.3" height="15.0" fill="rgb(0,237,176)" rx="2" ry="2" /> +<text x="1324.56" y="671.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="645" width="1.6" height="15.0" fill="rgb(0,210,108)" rx="2" ry="2" /> +<text x="1371.78" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="288.5" y="597" width="0.6" height="15.0" fill="rgb(0,227,193)" rx="2" ry="2" /> +<text x="291.55" y="607.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.04%)</title><rect x="1356.0" y="581" width="0.6" height="15.0" fill="rgb(0,215,9)" rx="2" ry="2" /> +<text x="1359.04" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_write (30,303,030 samples, 0.12%)</title><rect x="392.0" y="597" width="1.6" height="15.0" fill="rgb(0,222,177)" rx="2" ry="2" /> +<text x="395.01" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (434,343,430 samples, 1.65%)</title><rect x="404.2" y="757" width="22.8" height="15.0" fill="rgb(0,194,160)" rx="2" ry="2" /> +<text x="407.21" y="767.5" >[..</text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="202.1" y="597" width="0.5" height="15.0" fill="rgb(0,234,69)" rx="2" ry="2" /> +<text x="205.06" y="607.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.04%)</title><rect x="429.1" y="501" width="0.6" height="15.0" fill="rgb(0,201,169)" rx="2" ry="2" /> +<text x="432.15" y="511.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.08%)</title><rect x="454.6" y="613" width="1.1" height="15.0" fill="rgb(0,203,143)" rx="2" ry="2" /> +<text x="457.61" y="623.5" ></text> +</g> +<g > +<title>json_object_object_get_ex (10,101,010 samples, 0.04%)</title><rect x="1378.3" y="757" width="0.6" height="15.0" fill="rgb(0,218,171)" rx="2" ry="2" /> +<text x="1381.33" y="767.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (20,202,020 samples, 0.08%)</title><rect x="236.0" y="469" width="1.1" height="15.0" fill="rgb(0,210,155)" rx="2" ry="2" /> +<text x="239.02" y="479.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.04%)</title><rect x="250.3" y="469" width="0.6" height="15.0" fill="rgb(0,228,11)" rx="2" ry="2" /> +<text x="253.35" y="479.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="72.1" y="725" width="0.5" height="15.0" fill="rgb(0,214,189)" rx="2" ry="2" /> +<text x="75.08" y="735.5" ></text> +</g> +<g > +<title>copy_p4d_range (121,212,120 samples, 0.46%)</title><rect x="516.2" y="645" width="6.3" height="15.0" fill="rgb(0,208,89)" rx="2" ry="2" /> +<text x="519.16" y="655.5" ></text> +</g> +<g > +<title>crypto_shash_update (20,202,020 samples, 0.08%)</title><rect x="237.6" y="549" width="1.1" height="15.0" fill="rgb(0,208,89)" rx="2" ry="2" /> +<text x="240.61" y="559.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="458.3" y="565" width="0.6" height="15.0" fill="rgb(0,223,80)" rx="2" ry="2" /> +<text x="461.33" y="575.5" ></text> +</g> +<g > +<title>storvsc_on_channel_callback (10,101,010 samples, 0.04%)</title><rect x="201.0" y="421" width="0.5" height="15.0" fill="rgb(0,230,38)" rx="2" ry="2" /> +<text x="204.00" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="295.4" y="677" width="1.6" height="15.0" fill="rgb(0,231,124)" rx="2" ry="2" /> +<text x="298.44" y="687.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="291.7" y="581" width="0.6" height="15.0" fill="rgb(0,198,68)" rx="2" ry="2" /> +<text x="294.73" y="591.5" ></text> +</g> +<g > +<title>git_reference_normalize_name (10,101,010 samples, 0.04%)</title><rect x="485.4" y="773" width="0.5" height="15.0" fill="rgb(0,228,130)" rx="2" ry="2" /> +<text x="488.39" y="783.5" ></text> +</g> +<g > +<title>vfs_unlink (10,101,010 samples, 0.04%)</title><rect x="216.9" y="677" width="0.6" height="15.0" fill="rgb(0,218,177)" rx="2" ry="2" /> +<text x="219.92" y="687.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.08%)</title><rect x="287.0" y="469" width="1.0" height="15.0" fill="rgb(0,201,180)" rx="2" ry="2" /> +<text x="289.96" y="479.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="207.4" y="469" width="0.5" height="15.0" fill="rgb(0,226,167)" rx="2" ry="2" /> +<text x="210.37" y="479.5" ></text> +</g> +<g > +<title>get_obj_cgroup_from_current (10,101,010 samples, 0.04%)</title><rect x="99.7" y="549" width="0.5" height="15.0" fill="rgb(0,213,31)" rx="2" ry="2" /> +<text x="102.67" y="559.5" ></text> +</g> +<g > +<title>ip_local_deliver (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="357" width="1.6" height="15.0" fill="rgb(0,237,95)" rx="2" ry="2" /> +<text x="1370.19" y="367.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.04%)</title><rect x="531.0" y="709" width="0.5" height="15.0" fill="rgb(0,234,14)" rx="2" ry="2" /> +<text x="534.01" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="221.7" y="677" width="0.5" height="15.0" fill="rgb(0,209,64)" rx="2" ry="2" /> +<text x="224.70" y="687.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="196.8" y="565" width="0.5" height="15.0" fill="rgb(0,230,200)" rx="2" ry="2" /> +<text x="199.76" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.04%)</title><rect x="381.9" y="581" width="0.6" height="15.0" fill="rgb(0,234,135)" rx="2" ry="2" /> +<text x="384.93" y="591.5" ></text> +</g> +<g > +<title>unlink (80,808,080 samples, 0.31%)</title><rect x="172.4" y="757" width="4.2" height="15.0" fill="rgb(0,191,201)" rx="2" ry="2" /> +<text x="175.35" y="767.5" ></text> +</g> +<g > +<title>tcp_clean_rtx_queue.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="39.2" y="133" width="0.5" height="15.0" fill="rgb(0,209,159)" rx="2" ry="2" /> +<text x="42.18" y="143.5" ></text> +</g> +<g > +<title>git_reference_is_valid_name (10,101,010 samples, 0.04%)</title><rect x="368.1" y="773" width="0.6" height="15.0" fill="rgb(0,227,29)" rx="2" ry="2" /> +<text x="371.13" y="783.5" ></text> +</g> +<g > +<title>generic_perform_write (40,404,040 samples, 0.15%)</title><rect x="424.9" y="597" width="2.1" height="15.0" fill="rgb(0,197,171)" rx="2" ry="2" /> +<text x="427.90" y="607.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.04%)</title><rect x="167.0" y="453" width="0.6" height="15.0" fill="rgb(0,216,175)" rx="2" ry="2" /> +<text x="170.05" y="463.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.04%)</title><rect x="300.2" y="501" width="0.5" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="303.22" y="511.5" ></text> +</g> +<g > +<title>ext4_xattr_security_get (10,101,010 samples, 0.04%)</title><rect x="413.2" y="421" width="0.6" height="15.0" fill="rgb(0,213,161)" rx="2" ry="2" /> +<text x="416.23" y="431.5" ></text> +</g> +<g > +<title>hv_ringbuffer_write (10,101,010 samples, 0.04%)</title><rect x="187.7" y="261" width="0.6" height="15.0" fill="rgb(0,233,76)" rx="2" ry="2" /> +<text x="190.74" y="271.5" ></text> +</g> +<g > +<title>__x64_sys_futex (40,404,040 samples, 0.15%)</title><rect x="30.2" y="773" width="2.1" height="15.0" fill="rgb(0,192,49)" rx="2" ry="2" /> +<text x="33.16" y="783.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.04%)</title><rect x="1372.0" y="629" width="0.5" height="15.0" fill="rgb(0,197,72)" rx="2" ry="2" /> +<text x="1374.96" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="83.7" y="757" width="1.1" height="15.0" fill="rgb(0,203,16)" rx="2" ry="2" /> +<text x="86.75" y="767.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="240.8" y="581" width="0.5" height="15.0" fill="rgb(0,213,182)" rx="2" ry="2" /> +<text x="243.80" y="591.5" ></text> +</g> +<g > +<title>shrink_dentry_list (10,101,010 samples, 0.04%)</title><rect x="161.2" y="597" width="0.5" height="15.0" fill="rgb(0,237,5)" rx="2" ry="2" /> +<text x="164.21" y="607.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (10,101,010 samples, 0.04%)</title><rect x="15.8" y="677" width="0.6" height="15.0" fill="rgb(0,225,56)" rx="2" ry="2" /> +<text x="18.84" y="687.5" ></text> +</g> +<g > +<title>rename (151,515,150 samples, 0.58%)</title><rect x="268.4" y="693" width="7.9" height="15.0" fill="rgb(0,204,89)" rx="2" ry="2" /> +<text x="271.39" y="703.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="285.9" y="341" width="0.5" height="15.0" fill="rgb(0,226,7)" rx="2" ry="2" /> +<text x="288.89" y="351.5" ></text> +</g> +<g > +<title>ip_finish_output (60,606,060 samples, 0.23%)</title><rect x="11.1" y="565" width="3.1" height="15.0" fill="rgb(0,200,166)" rx="2" ry="2" /> +<text x="14.06" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (373,737,370 samples, 1.42%)</title><rect x="510.3" y="789" width="19.7" height="15.0" fill="rgb(0,196,39)" rx="2" ry="2" /> +<text x="513.32" y="799.5" ></text> +</g> +<g > +<title>ext4_release_dir (20,202,020 samples, 0.08%)</title><rect x="259.4" y="613" width="1.0" height="15.0" fill="rgb(0,228,94)" rx="2" ry="2" /> +<text x="262.37" y="623.5" ></text> +</g> +<g > +<title>tcp_v6_syn_recv_sock (20,202,020 samples, 0.08%)</title><rect x="1368.8" y="277" width="1.0" height="15.0" fill="rgb(0,222,108)" rx="2" ry="2" /> +<text x="1371.78" y="287.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="408.5" y="501" width="0.5" height="15.0" fill="rgb(0,220,19)" rx="2" ry="2" /> +<text x="411.45" y="511.5" ></text> +</g> +<g > +<title>__lookup_mnt (10,101,010 samples, 0.04%)</title><rect x="467.9" y="581" width="0.5" height="15.0" fill="rgb(0,210,175)" rx="2" ry="2" /> +<text x="470.88" y="591.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.04%)</title><rect x="269.4" y="437" width="0.6" height="15.0" fill="rgb(0,191,52)" rx="2" ry="2" /> +<text x="272.45" y="447.5" ></text> +</g> +<g > +<title>fib_table_lookup (10,101,010 samples, 0.04%)</title><rect x="1386.3" y="693" width="0.5" height="15.0" fill="rgb(0,203,152)" rx="2" ry="2" /> +<text x="1389.29" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="276.9" y="725" width="0.5" height="15.0" fill="rgb(0,205,100)" rx="2" ry="2" /> +<text x="279.87" y="735.5" ></text> +</g> +<g > +<title>__fsnotify_inode_delete (10,101,010 samples, 0.04%)</title><rect x="95.4" y="517" width="0.6" height="15.0" fill="rgb(0,232,170)" rx="2" ry="2" /> +<text x="98.42" y="527.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (131,313,130 samples, 0.50%)</title><rect x="459.4" y="645" width="6.9" height="15.0" fill="rgb(0,226,177)" rx="2" ry="2" /> +<text x="462.39" y="655.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="370.3" y="517" width="0.5" height="15.0" fill="rgb(0,213,6)" rx="2" ry="2" /> +<text x="373.25" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_rename (121,212,120 samples, 0.46%)</title><rect x="447.2" y="645" width="6.4" height="15.0" fill="rgb(0,227,160)" rx="2" ry="2" /> +<text x="450.19" y="655.5" ></text> +</g> +<g > +<title>handle_pte_fault (10,101,010 samples, 0.04%)</title><rect x="92.8" y="533" width="0.5" height="15.0" fill="rgb(0,232,25)" rx="2" ry="2" /> +<text x="95.77" y="543.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="465.8" y="613" width="0.5" height="15.0" fill="rgb(0,203,30)" rx="2" ry="2" /> +<text x="468.76" y="623.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.04%)</title><rect x="240.3" y="565" width="0.5" height="15.0" fill="rgb(0,212,113)" rx="2" ry="2" /> +<text x="243.27" y="575.5" ></text> +</g> +<g > +<title>__add_to_page_cache_locked (10,101,010 samples, 0.04%)</title><rect x="393.1" y="421" width="0.5" height="15.0" fill="rgb(0,197,137)" rx="2" ry="2" /> +<text x="396.07" y="431.5" ></text> +</g> +<g > +<title>iput (202,020,200 samples, 0.77%)</title><rect x="131.0" y="581" width="10.6" height="15.0" fill="rgb(0,210,113)" rx="2" ry="2" /> +<text x="133.97" y="591.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="305.0" y="389" width="0.5" height="15.0" fill="rgb(0,194,5)" rx="2" ry="2" /> +<text x="307.99" y="399.5" ></text> +</g> +<g > +<title>__blk_mq_delay_run_hw_queue (20,202,020 samples, 0.08%)</title><rect x="436.0" y="389" width="1.1" height="15.0" fill="rgb(0,201,199)" rx="2" ry="2" /> +<text x="439.04" y="399.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (10,101,010 samples, 0.04%)</title><rect x="315.6" y="661" width="0.5" height="15.0" fill="rgb(0,216,144)" rx="2" ry="2" /> +<text x="318.61" y="671.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.04%)</title><rect x="383.5" y="453" width="0.5" height="15.0" fill="rgb(0,215,68)" rx="2" ry="2" /> +<text x="386.52" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="182.4" y="773" width="1.1" height="15.0" fill="rgb(0,233,136)" rx="2" ry="2" /> +<text x="185.43" y="783.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.04%)</title><rect x="15.8" y="757" width="0.6" height="15.0" fill="rgb(0,223,154)" rx="2" ry="2" /> +<text x="18.84" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="479.0" y="581" width="0.6" height="15.0" fill="rgb(0,203,13)" rx="2" ry="2" /> +<text x="482.02" y="591.5" ></text> +</g> +<g > +<title>rwsem_spin_on_owner (10,101,010 samples, 0.04%)</title><rect x="180.8" y="645" width="0.6" height="15.0" fill="rgb(0,207,119)" rx="2" ry="2" /> +<text x="183.84" y="655.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="517" width="0.5" height="15.0" fill="rgb(0,239,81)" rx="2" ry="2" /> +<text x="1389.82" y="527.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.04%)</title><rect x="62.5" y="773" width="0.6" height="15.0" fill="rgb(0,212,43)" rx="2" ry="2" /> +<text x="65.53" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="83.2" y="773" width="0.5" height="15.0" fill="rgb(0,219,114)" rx="2" ry="2" /> +<text x="86.22" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="480.1" y="757" width="3.2" height="15.0" fill="rgb(0,213,7)" rx="2" ry="2" /> +<text x="483.08" y="767.5" ></text> +</g> +<g > +<title>ext4_rmdir.part.0 (80,808,080 samples, 0.31%)</title><rect x="126.7" y="565" width="4.3" height="15.0" fill="rgb(0,204,53)" rx="2" ry="2" /> +<text x="129.72" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="467.3" y="741" width="1.1" height="15.0" fill="rgb(0,192,149)" rx="2" ry="2" /> +<text x="470.35" y="751.5" ></text> +</g> +<g > +<title>vmbus_sendpacket_mpb_desc (20,202,020 samples, 0.08%)</title><rect x="436.0" y="213" width="1.1" height="15.0" fill="rgb(0,202,123)" rx="2" ry="2" /> +<text x="439.04" y="223.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="285.9" y="677" width="1.1" height="15.0" fill="rgb(0,223,126)" rx="2" ry="2" /> +<text x="288.89" y="687.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="172.4" y="549" width="0.5" height="15.0" fill="rgb(0,233,49)" rx="2" ry="2" /> +<text x="175.35" y="559.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.04%)</title><rect x="188.3" y="677" width="0.5" height="15.0" fill="rgb(0,218,101)" rx="2" ry="2" /> +<text x="191.27" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="481.1" y="645" width="0.6" height="15.0" fill="rgb(0,227,206)" rx="2" ry="2" /> +<text x="484.14" y="655.5" ></text> +</g> +<g > +<title>ext4_writepages (10,101,010 samples, 0.04%)</title><rect x="187.7" y="549" width="0.6" height="15.0" fill="rgb(0,203,197)" rx="2" ry="2" /> +<text x="190.74" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (161,616,160 samples, 0.62%)</title><rect x="10.0" y="965" width="8.5" height="15.0" fill="rgb(0,209,201)" rx="2" ry="2" /> +<text x="13.00" y="975.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.04%)</title><rect x="350.1" y="469" width="0.5" height="15.0" fill="rgb(0,208,192)" rx="2" ry="2" /> +<text x="353.09" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (151,515,150 samples, 0.58%)</title><rect x="118.2" y="645" width="8.0" height="15.0" fill="rgb(0,212,75)" rx="2" ry="2" /> +<text x="121.24" y="655.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="602.1" y="741" width="0.5" height="15.0" fill="rgb(0,216,90)" rx="2" ry="2" /> +<text x="605.11" y="751.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="1337.5" y="661" width="0.5" height="15.0" fill="rgb(0,226,160)" rx="2" ry="2" /> +<text x="1340.47" y="671.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.04%)</title><rect x="400.5" y="485" width="0.5" height="15.0" fill="rgb(0,220,56)" rx="2" ry="2" /> +<text x="403.50" y="495.5" ></text> +</g> +<g > +<title>get_page_from_freelist (282,828,280 samples, 1.08%)</title><rect x="1340.1" y="597" width="14.9" height="15.0" fill="rgb(0,235,161)" rx="2" ry="2" /> +<text x="1343.13" y="607.5" ></text> +</g> +<g > +<title>__sbitmap_queue_get_shallow (10,101,010 samples, 0.04%)</title><rect x="450.4" y="357" width="0.5" height="15.0" fill="rgb(0,209,54)" rx="2" ry="2" /> +<text x="453.37" y="367.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (20,202,020 samples, 0.08%)</title><rect x="451.4" y="453" width="1.1" height="15.0" fill="rgb(0,230,193)" rx="2" ry="2" /> +<text x="454.43" y="463.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="589.4" y="645" width="0.5" height="15.0" fill="rgb(0,223,54)" rx="2" ry="2" /> +<text x="592.38" y="655.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="111.9" y="661" width="0.5" height="15.0" fill="rgb(0,224,131)" rx="2" ry="2" /> +<text x="114.87" y="671.5" ></text> +</g> +<g > +<title>dentry_free (10,101,010 samples, 0.04%)</title><rect x="531.0" y="613" width="0.5" height="15.0" fill="rgb(0,227,180)" rx="2" ry="2" /> +<text x="534.01" y="623.5" ></text> +</g> +<g > +<title>call_rcu (10,101,010 samples, 0.04%)</title><rect x="32.8" y="677" width="0.5" height="15.0" fill="rgb(0,224,115)" rx="2" ry="2" /> +<text x="35.81" y="687.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="84.8" y="725" width="0.5" height="15.0" fill="rgb(0,236,147)" rx="2" ry="2" /> +<text x="87.81" y="735.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="234.4" y="405" width="0.6" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="237.43" y="415.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="219.0" y="693" width="0.6" height="15.0" fill="rgb(0,236,35)" rx="2" ry="2" /> +<text x="222.04" y="703.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="136.3" y="389" width="0.5" height="15.0" fill="rgb(0,223,102)" rx="2" ry="2" /> +<text x="139.27" y="399.5" ></text> +</g> +<g > +<title>inflate (20,202,020 samples, 0.08%)</title><rect x="398.4" y="613" width="1.0" height="15.0" fill="rgb(0,228,182)" rx="2" ry="2" /> +<text x="401.37" y="623.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="455.1" y="581" width="0.6" height="15.0" fill="rgb(0,212,33)" rx="2" ry="2" /> +<text x="458.14" y="591.5" ></text> +</g> +<g > +<title>tcp_rcv_established (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="613" width="0.5" height="15.0" fill="rgb(0,202,204)" rx="2" ry="2" /> +<text x="1342.07" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="176.6" y="773" width="0.5" height="15.0" fill="rgb(0,196,5)" rx="2" ry="2" /> +<text x="179.60" y="783.5" ></text> +</g> +<g > +<title>lru_cache_add (30,303,030 samples, 0.12%)</title><rect x="1334.3" y="613" width="1.6" height="15.0" fill="rgb(0,201,129)" rx="2" ry="2" /> +<text x="1337.29" y="623.5" ></text> +</g> +<g > +<title>mpage_submit_page (10,101,010 samples, 0.04%)</title><rect x="452.5" y="453" width="0.5" height="15.0" fill="rgb(0,191,136)" rx="2" ry="2" /> +<text x="455.49" y="463.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="495.5" y="613" width="1.0" height="15.0" fill="rgb(0,203,117)" rx="2" ry="2" /> +<text x="498.47" y="623.5" ></text> +</g> +<g > +<title>ext4_orphan_add (20,202,020 samples, 0.08%)</title><rect x="175.5" y="629" width="1.1" height="15.0" fill="rgb(0,212,165)" rx="2" ry="2" /> +<text x="178.54" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="444.5" y="613" width="0.6" height="15.0" fill="rgb(0,234,111)" rx="2" ry="2" /> +<text x="447.53" y="623.5" ></text> +</g> +<g > +<title>i_callback (10,101,010 samples, 0.04%)</title><rect x="109.2" y="325" width="0.5" height="15.0" fill="rgb(0,232,151)" rx="2" ry="2" /> +<text x="112.22" y="335.5" ></text> +</g> +<g > +<title>slab_free_freelist_hook.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="496.0" y="533" width="0.5" height="15.0" fill="rgb(0,196,41)" rx="2" ry="2" /> +<text x="499.00" y="543.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (30,303,030 samples, 0.12%)</title><rect x="1297.7" y="709" width="1.6" height="15.0" fill="rgb(0,210,111)" rx="2" ry="2" /> +<text x="1300.68" y="719.5" ></text> +</g> +<g > +<title>start_this_handle (10,101,010 samples, 0.04%)</title><rect x="105.5" y="501" width="0.5" height="15.0" fill="rgb(0,218,187)" rx="2" ry="2" /> +<text x="108.50" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="402.1" y="597" width="1.0" height="15.0" fill="rgb(0,206,189)" rx="2" ry="2" /> +<text x="405.09" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="294.9" y="629" width="0.5" height="15.0" fill="rgb(0,211,168)" rx="2" ry="2" /> +<text x="297.91" y="639.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (20,202,020 samples, 0.08%)</title><rect x="416.9" y="661" width="1.1" height="15.0" fill="rgb(0,220,180)" rx="2" ry="2" /> +<text x="419.94" y="671.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="266.3" y="645" width="0.5" height="15.0" fill="rgb(0,236,46)" rx="2" ry="2" /> +<text x="269.26" y="655.5" ></text> +</g> +<g > +<title>ip_local_deliver (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="341" width="0.6" height="15.0" fill="rgb(0,198,11)" rx="2" ry="2" /> +<text x="1383.45" y="351.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="136.3" y="405" width="0.5" height="15.0" fill="rgb(0,231,112)" rx="2" ry="2" /> +<text x="139.27" y="415.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="472.7" y="741" width="0.5" height="15.0" fill="rgb(0,229,72)" rx="2" ry="2" /> +<text x="475.65" y="751.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="370.3" y="533" width="0.5" height="15.0" fill="rgb(0,203,67)" rx="2" ry="2" /> +<text x="373.25" y="543.5" ></text> +</g> +<g > +<title>ext4_rename2 (80,808,080 samples, 0.31%)</title><rect x="371.3" y="629" width="4.3" height="15.0" fill="rgb(0,208,105)" rx="2" ry="2" /> +<text x="374.31" y="639.5" ></text> +</g> +<g > +<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.04%)</title><rect x="390.4" y="389" width="0.5" height="15.0" fill="rgb(0,230,196)" rx="2" ry="2" /> +<text x="393.42" y="399.5" ></text> +</g> +<g > +<title>tcp_send_ack (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="245" width="0.5" height="15.0" fill="rgb(0,200,56)" rx="2" ry="2" /> +<text x="1370.19" y="255.5" ></text> +</g> +<g > +<title>__sock_release (20,202,020 samples, 0.08%)</title><rect x="1384.7" y="693" width="1.1" height="15.0" fill="rgb(0,239,142)" rx="2" ry="2" /> +<text x="1387.69" y="703.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.04%)</title><rect x="372.4" y="405" width="0.5" height="15.0" fill="rgb(0,200,63)" rx="2" ry="2" /> +<text x="375.38" y="415.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="337.9" y="629" width="0.5" height="15.0" fill="rgb(0,202,74)" rx="2" ry="2" /> +<text x="340.89" y="639.5" ></text> +</g> +<g > +<title>__ip_finish_output (40,404,040 samples, 0.15%)</title><rect x="1364.5" y="517" width="2.2" height="15.0" fill="rgb(0,220,86)" rx="2" ry="2" /> +<text x="1367.53" y="527.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.04%)</title><rect x="257.2" y="565" width="0.6" height="15.0" fill="rgb(0,211,193)" rx="2" ry="2" /> +<text x="260.24" y="575.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="467.3" y="709" width="0.6" height="15.0" fill="rgb(0,210,151)" rx="2" ry="2" /> +<text x="470.35" y="719.5" ></text> +</g> +<g > +<title>do_writepages (80,808,080 samples, 0.31%)</title><rect x="448.8" y="517" width="4.2" height="15.0" fill="rgb(0,229,32)" rx="2" ry="2" /> +<text x="451.78" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="306.1" y="629" width="0.5" height="15.0" fill="rgb(0,233,35)" rx="2" ry="2" /> +<text x="309.06" y="639.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.04%)</title><rect x="348.0" y="469" width="0.5" height="15.0" fill="rgb(0,238,7)" rx="2" ry="2" /> +<text x="350.97" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="201.0" y="677" width="0.5" height="15.0" fill="rgb(0,202,93)" rx="2" ry="2" /> +<text x="204.00" y="687.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="324.6" y="613" width="0.6" height="15.0" fill="rgb(0,199,94)" rx="2" ry="2" /> +<text x="327.63" y="623.5" ></text> +</g> +<g > +<title>update_blocked_averages (10,101,010 samples, 0.04%)</title><rect x="588.3" y="533" width="0.5" height="15.0" fill="rgb(0,236,118)" rx="2" ry="2" /> +<text x="591.32" y="543.5" ></text> +</g> +<g > +<title>lru_add_drain_cpu (10,101,010 samples, 0.04%)</title><rect x="415.9" y="437" width="0.5" height="15.0" fill="rgb(0,237,141)" rx="2" ry="2" /> +<text x="418.88" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="368.7" y="661" width="0.5" height="15.0" fill="rgb(0,210,12)" rx="2" ry="2" /> +<text x="371.66" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="164.9" y="709" width="1.1" height="15.0" fill="rgb(0,213,184)" rx="2" ry="2" /> +<text x="167.93" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="307.6" y="613" width="1.1" height="15.0" fill="rgb(0,191,190)" rx="2" ry="2" /> +<text x="310.65" y="623.5" ></text> +</g> +<g > +<title>getdents64 (20,202,020 samples, 0.08%)</title><rect x="353.8" y="613" width="1.1" height="15.0" fill="rgb(0,194,166)" rx="2" ry="2" /> +<text x="356.81" y="623.5" ></text> +</g> +<g > +<title>_find_next_bit (10,101,010 samples, 0.04%)</title><rect x="522.5" y="645" width="0.6" height="15.0" fill="rgb(0,209,93)" rx="2" ry="2" /> +<text x="525.53" y="655.5" ></text> +</g> +<g > +<title>submit_bio_noacct (20,202,020 samples, 0.08%)</title><rect x="450.4" y="453" width="1.0" height="15.0" fill="rgb(0,200,86)" rx="2" ry="2" /> +<text x="453.37" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="476.9" y="677" width="0.5" height="15.0" fill="rgb(0,216,88)" rx="2" ry="2" /> +<text x="479.90" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.31%)</title><rect x="433.9" y="661" width="4.3" height="15.0" fill="rgb(0,198,52)" rx="2" ry="2" /> +<text x="436.92" y="671.5" ></text> +</g> +<g > +<title>ext4_lookup.part.0 (10,101,010 samples, 0.04%)</title><rect x="365.5" y="565" width="0.5" height="15.0" fill="rgb(0,221,65)" rx="2" ry="2" /> +<text x="368.48" y="575.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (20,202,020 samples, 0.08%)</title><rect x="106.0" y="533" width="1.1" height="15.0" fill="rgb(0,223,111)" rx="2" ry="2" /> +<text x="109.03" y="543.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="172.4" y="629" width="0.5" height="15.0" fill="rgb(0,229,120)" rx="2" ry="2" /> +<text x="175.35" y="639.5" ></text> +</g> +<g > +<title>__open64 (40,404,040 samples, 0.15%)</title><rect x="405.3" y="709" width="2.1" height="15.0" fill="rgb(0,192,133)" rx="2" ry="2" /> +<text x="408.27" y="719.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.04%)</title><rect x="1376.7" y="677" width="0.6" height="15.0" fill="rgb(0,214,26)" rx="2" ry="2" /> +<text x="1379.74" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="345.8" y="725" width="0.6" height="15.0" fill="rgb(0,221,78)" rx="2" ry="2" /> +<text x="348.85" y="735.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="453.0" y="549" width="0.6" height="15.0" fill="rgb(0,224,95)" rx="2" ry="2" /> +<text x="456.02" y="559.5" ></text> +</g> +<g > +<title>cap_inode_need_killpriv (10,101,010 samples, 0.04%)</title><rect x="392.0" y="453" width="0.5" height="15.0" fill="rgb(0,212,84)" rx="2" ry="2" /> +<text x="395.01" y="463.5" ></text> +</g> +<g > +<title>nf_ct_acct_add (10,101,010 samples, 0.04%)</title><rect x="10.5" y="485" width="0.6" height="15.0" fill="rgb(0,202,34)" rx="2" ry="2" /> +<text x="13.53" y="495.5" ></text> +</g> +<g > +<title>unmap_vmas (80,808,080 samples, 0.31%)</title><rect x="937.4" y="645" width="4.3" height="15.0" fill="rgb(0,218,181)" rx="2" ry="2" /> +<text x="940.43" y="655.5" ></text> +</g> +<g > +<title>__srcu_read_unlock (10,101,010 samples, 0.04%)</title><rect x="95.4" y="469" width="0.6" height="15.0" fill="rgb(0,197,15)" rx="2" ry="2" /> +<text x="98.42" y="479.5" ></text> +</g> +<g > +<title>ext4_bread (121,212,120 samples, 0.46%)</title><rect x="459.4" y="613" width="6.4" height="15.0" fill="rgb(0,207,149)" rx="2" ry="2" /> +<text x="462.39" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (292,929,290 samples, 1.11%)</title><rect x="261.0" y="709" width="15.3" height="15.0" fill="rgb(0,214,138)" rx="2" ry="2" /> +<text x="263.96" y="719.5" ></text> +</g> +<g > +<title>__libc_calloc (40,404,040 samples, 0.15%)</title><rect x="618.0" y="853" width="2.1" height="15.0" fill="rgb(0,226,145)" rx="2" ry="2" /> +<text x="621.03" y="863.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.04%)</title><rect x="281.6" y="581" width="0.6" height="15.0" fill="rgb(0,234,79)" rx="2" ry="2" /> +<text x="284.65" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="311.4" y="661" width="0.5" height="15.0" fill="rgb(0,214,7)" rx="2" ry="2" /> +<text x="314.36" y="671.5" ></text> +</g> +<g > +<title>ext4_orphan_add (10,101,010 samples, 0.04%)</title><rect x="344.3" y="581" width="0.5" height="15.0" fill="rgb(0,190,117)" rx="2" ry="2" /> +<text x="347.26" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="292.3" y="565" width="0.5" height="15.0" fill="rgb(0,218,42)" rx="2" ry="2" /> +<text x="295.26" y="575.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.08%)</title><rect x="52.4" y="709" width="1.1" height="15.0" fill="rgb(0,210,178)" rx="2" ry="2" /> +<text x="55.45" y="719.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="285.9" y="389" width="0.5" height="15.0" fill="rgb(0,211,25)" rx="2" ry="2" /> +<text x="288.89" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.38%)</title><rect x="480.1" y="773" width="5.3" height="15.0" fill="rgb(0,229,118)" rx="2" ry="2" /> +<text x="483.08" y="783.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.04%)</title><rect x="58.3" y="677" width="0.5" height="15.0" fill="rgb(0,190,150)" rx="2" ry="2" /> +<text x="61.28" y="687.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="504.5" y="581" width="0.5" height="15.0" fill="rgb(0,209,67)" rx="2" ry="2" /> +<text x="507.49" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="406.9" y="533" width="0.5" height="15.0" fill="rgb(0,227,44)" rx="2" ry="2" /> +<text x="409.86" y="543.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.04%)</title><rect x="143.7" y="581" width="0.5" height="15.0" fill="rgb(0,231,158)" rx="2" ry="2" /> +<text x="146.70" y="591.5" ></text> +</g> +<g > +<title>strlen (10,101,010 samples, 0.04%)</title><rect x="439.8" y="421" width="0.5" height="15.0" fill="rgb(0,227,189)" rx="2" ry="2" /> +<text x="442.76" y="431.5" ></text> +</g> +<g > +<title>__open64_nocancel (20,202,020 samples, 0.08%)</title><rect x="489.1" y="661" width="1.1" height="15.0" fill="rgb(0,191,175)" rx="2" ry="2" /> +<text x="492.10" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.04%)</title><rect x="221.7" y="613" width="0.5" height="15.0" fill="rgb(0,221,91)" rx="2" ry="2" /> +<text x="224.70" y="623.5" ></text> +</g> +<g > +<title>__es_remove_extent (10,101,010 samples, 0.04%)</title><rect x="341.6" y="469" width="0.5" height="15.0" fill="rgb(0,199,119)" rx="2" ry="2" /> +<text x="344.60" y="479.5" ></text> +</g> +<g > +<title>close (20,202,020 samples, 0.08%)</title><rect x="410.6" y="741" width="1.0" height="15.0" fill="rgb(0,199,166)" rx="2" ry="2" /> +<text x="413.58" y="751.5" ></text> +</g> +<g > +<title>file_modified (10,101,010 samples, 0.04%)</title><rect x="439.8" y="517" width="0.5" height="15.0" fill="rgb(0,205,60)" rx="2" ry="2" /> +<text x="442.76" y="527.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (20,202,020 samples, 0.08%)</title><rect x="523.6" y="645" width="1.0" height="15.0" fill="rgb(0,208,112)" rx="2" ry="2" /> +<text x="526.59" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="366.0" y="709" width="0.5" height="15.0" fill="rgb(0,234,105)" rx="2" ry="2" /> +<text x="369.01" y="719.5" ></text> +</g> +<g > +<title>generic_write_end (10,101,010 samples, 0.04%)</title><rect x="432.9" y="469" width="0.5" height="15.0" fill="rgb(0,191,72)" rx="2" ry="2" /> +<text x="435.86" y="479.5" ></text> +</g> +<g > +<title>git_config_add_backend (60,606,060 samples, 0.23%)</title><rect x="297.0" y="661" width="3.2" height="15.0" fill="rgb(0,235,160)" rx="2" ry="2" /> +<text x="300.04" y="671.5" ></text> +</g> +<g > +<title>ext4_xattr_ibody_get (10,101,010 samples, 0.04%)</title><rect x="392.0" y="389" width="0.5" height="15.0" fill="rgb(0,226,38)" rx="2" ry="2" /> +<text x="395.01" y="399.5" ></text> +</g> +<g > +<title>d_lru_add (10,101,010 samples, 0.04%)</title><rect x="88.5" y="517" width="0.6" height="15.0" fill="rgb(0,221,96)" rx="2" ry="2" /> +<text x="91.52" y="527.5" ></text> +</g> +<g > +<title>do_anonymous_page (10,101,010 samples, 0.04%)</title><rect x="116.1" y="533" width="0.5" height="15.0" fill="rgb(0,222,102)" rx="2" ry="2" /> +<text x="119.11" y="543.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="220.6" y="533" width="0.6" height="15.0" fill="rgb(0,205,169)" rx="2" ry="2" /> +<text x="223.63" y="543.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.04%)</title><rect x="531.0" y="677" width="0.5" height="15.0" fill="rgb(0,221,93)" rx="2" ry="2" /> +<text x="534.01" y="687.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="1369.3" y="181" width="0.5" height="15.0" fill="rgb(0,195,1)" rx="2" ry="2" /> +<text x="1372.31" y="191.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="888.1" y="821" width="0.5" height="15.0" fill="rgb(0,238,63)" rx="2" ry="2" /> +<text x="891.09" y="831.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (7,525,252,450 samples, 28.64%)</title><rect x="942.7" y="789" width="395.3" height="15.0" fill="rgb(0,192,171)" rx="2" ry="2" /> +<text x="945.73" y="799.5" >[libjson-c.so.5.1.0]</text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.04%)</title><rect x="381.4" y="565" width="0.5" height="15.0" fill="rgb(0,235,47)" rx="2" ry="2" /> +<text x="384.40" y="575.5" ></text> +</g> +<g > +<title>git_buf_dispose (10,101,010 samples, 0.04%)</title><rect x="184.6" y="709" width="0.5" height="15.0" fill="rgb(0,235,43)" rx="2" ry="2" /> +<text x="187.56" y="719.5" ></text> +</g> +<g > +<title>inet_sendmsg (575,757,570 samples, 2.19%)</title><rect x="1338.5" y="709" width="30.3" height="15.0" fill="rgb(0,210,139)" rx="2" ry="2" /> +<text x="1341.54" y="719.5" >in..</text> +</g> +<g > +<title>ext4_clear_inode (10,101,010 samples, 0.04%)</title><rect x="421.7" y="597" width="0.5" height="15.0" fill="rgb(0,195,186)" rx="2" ry="2" /> +<text x="424.72" y="607.5" ></text> +</g> +<g > +<title>get_random_u64 (10,101,010 samples, 0.04%)</title><rect x="528.9" y="677" width="0.5" height="15.0" fill="rgb(0,223,62)" rx="2" ry="2" /> +<text x="531.89" y="687.5" ></text> +</g> +<g > +<title>ext4_append (60,606,060 samples, 0.23%)</title><rect x="56.2" y="789" width="3.1" height="15.0" fill="rgb(0,199,125)" rx="2" ry="2" /> +<text x="59.16" y="799.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (20,202,020 samples, 0.08%)</title><rect x="259.4" y="709" width="1.0" height="15.0" fill="rgb(0,190,147)" rx="2" ry="2" /> +<text x="262.37" y="719.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.04%)</title><rect x="76.3" y="789" width="0.6" height="15.0" fill="rgb(0,208,42)" rx="2" ry="2" /> +<text x="79.32" y="799.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="285.9" y="421" width="0.5" height="15.0" fill="rgb(0,210,186)" rx="2" ry="2" /> +<text x="288.89" y="431.5" ></text> +</g> +<g > +<title>net_send_buf (80,808,080 samples, 0.31%)</title><rect x="10.5" y="885" width="4.3" height="15.0" fill="rgb(0,211,27)" rx="2" ry="2" /> +<text x="13.53" y="895.5" ></text> +</g> +<g > +<title>exc_page_fault (474,747,470 samples, 1.81%)</title><rect x="1312.5" y="725" width="25.0" height="15.0" fill="rgb(0,232,31)" rx="2" ry="2" /> +<text x="1315.54" y="735.5" >e..</text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="246.6" y="709" width="0.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="249.63" y="719.5" ></text> +</g> +<g > +<title>security_inode_need_killpriv (10,101,010 samples, 0.04%)</title><rect x="439.8" y="485" width="0.5" height="15.0" fill="rgb(0,239,196)" rx="2" ry="2" /> +<text x="442.76" y="495.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="327.3" y="661" width="0.5" height="15.0" fill="rgb(0,224,6)" rx="2" ry="2" /> +<text x="330.28" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="292.3" y="709" width="1.0" height="15.0" fill="rgb(0,208,2)" rx="2" ry="2" /> +<text x="295.26" y="719.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (151,515,150 samples, 0.58%)</title><rect x="497.1" y="757" width="7.9" height="15.0" fill="rgb(0,202,48)" rx="2" ry="2" /> +<text x="500.06" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="602.1" y="821" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="605.11" y="831.5" ></text> +</g> +<g > +<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="131.0" y="421" width="0.5" height="15.0" fill="rgb(0,207,118)" rx="2" ry="2" /> +<text x="133.97" y="431.5" ></text> +</g> +<g > +<title>__rseq_handle_notify_resume (10,101,010 samples, 0.04%)</title><rect x="18.0" y="805" width="0.5" height="15.0" fill="rgb(0,198,194)" rx="2" ry="2" /> +<text x="20.96" y="815.5" ></text> +</g> +<g > +<title>git_object_lookup_prefix (50,505,050 samples, 0.19%)</title><rect x="208.4" y="773" width="2.7" height="15.0" fill="rgb(0,223,89)" rx="2" ry="2" /> +<text x="211.43" y="783.5" ></text> +</g> +<g > +<title>fscrypt_file_open (10,101,010 samples, 0.04%)</title><rect x="64.6" y="773" width="0.6" height="15.0" fill="rgb(0,203,170)" rx="2" ry="2" /> +<text x="67.65" y="783.5" ></text> +</g> +<g > +<title>git_repository_free (20,202,020 samples, 0.08%)</title><rect x="293.3" y="725" width="1.1" height="15.0" fill="rgb(0,192,35)" rx="2" ry="2" /> +<text x="296.32" y="735.5" ></text> +</g> +<g > +<title>ext4_getblk (101,010,100 samples, 0.38%)</title><rect x="232.3" y="533" width="5.3" height="15.0" fill="rgb(0,192,206)" rx="2" ry="2" /> +<text x="235.31" y="543.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="426.0" y="469" width="0.5" height="15.0" fill="rgb(0,216,98)" rx="2" ry="2" /> +<text x="428.96" y="479.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="131.0" y="485" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="133.97" y="495.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (20,202,020 samples, 0.08%)</title><rect x="439.8" y="533" width="1.0" height="15.0" fill="rgb(0,234,173)" rx="2" ry="2" /> +<text x="442.76" y="543.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.04%)</title><rect x="467.3" y="629" width="0.6" height="15.0" fill="rgb(0,213,53)" rx="2" ry="2" /> +<text x="470.35" y="639.5" ></text> +</g> +<g > +<title>gettid (10,101,010 samples, 0.04%)</title><rect x="49.8" y="853" width="0.5" height="15.0" fill="rgb(0,218,69)" rx="2" ry="2" /> +<text x="52.79" y="863.5" ></text> +</g> +<g > +<title>ext4_es_remove_extent (10,101,010 samples, 0.04%)</title><rect x="341.6" y="485" width="0.5" height="15.0" fill="rgb(0,199,101)" rx="2" ry="2" /> +<text x="344.60" y="495.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.04%)</title><rect x="343.7" y="341" width="0.6" height="15.0" fill="rgb(0,216,111)" rx="2" ry="2" /> +<text x="346.73" y="351.5" ></text> +</g> +<g > +<title>git_reference_create_matching (242,424,240 samples, 0.92%)</title><rect x="279.5" y="757" width="12.8" height="15.0" fill="rgb(0,237,26)" rx="2" ry="2" /> +<text x="282.53" y="767.5" ></text> +</g> +<g > +<title>add_to_page_cache_lru (10,101,010 samples, 0.04%)</title><rect x="393.1" y="437" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="396.07" y="447.5" ></text> +</g> +<g > +<title>do_filp_open (30,303,030 samples, 0.12%)</title><rect x="245.0" y="629" width="1.6" height="15.0" fill="rgb(0,192,131)" rx="2" ry="2" /> +<text x="248.04" y="639.5" ></text> +</g> +<g > +<title>getaddrinfo (10,101,010 samples, 0.04%)</title><rect x="1388.9" y="869" width="0.6" height="15.0" fill="rgb(0,231,130)" rx="2" ry="2" /> +<text x="1391.94" y="879.5" ></text> +</g> +<g > +<title>net_rx_action (80,808,080 samples, 0.31%)</title><rect x="37.6" y="341" width="4.2" height="15.0" fill="rgb(0,224,174)" rx="2" ry="2" /> +<text x="40.59" y="351.5" ></text> +</g> +<g > +<title>task_work_run (20,202,020 samples, 0.08%)</title><rect x="259.4" y="661" width="1.0" height="15.0" fill="rgb(0,217,15)" rx="2" ry="2" /> +<text x="262.37" y="671.5" ></text> +</g> +<g > +<title>__schedule (20,202,020 samples, 0.08%)</title><rect x="16.9" y="757" width="1.1" height="15.0" fill="rgb(0,228,134)" rx="2" ry="2" /> +<text x="19.90" y="767.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.04%)</title><rect x="14.8" y="725" width="0.5" height="15.0" fill="rgb(0,204,155)" rx="2" ry="2" /> +<text x="17.78" y="735.5" ></text> +</g> +<g > +<title>strerror_l (10,101,010 samples, 0.04%)</title><rect x="296.5" y="645" width="0.5" height="15.0" fill="rgb(0,191,52)" rx="2" ry="2" /> +<text x="299.51" y="655.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.04%)</title><rect x="187.7" y="405" width="0.6" height="15.0" fill="rgb(0,236,43)" rx="2" ry="2" /> +<text x="190.74" y="415.5" ></text> +</g> +<g > +<title>crc_52 (10,101,010 samples, 0.04%)</title><rect x="235.5" y="421" width="0.5" height="15.0" fill="rgb(0,209,159)" rx="2" ry="2" /> +<text x="238.49" y="431.5" ></text> +</g> +<g > +<title>do_softirq (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="485" width="1.6" height="15.0" fill="rgb(0,217,3)" rx="2" ry="2" /> +<text x="1370.19" y="495.5" ></text> +</g> +<g > +<title>git_signature_default (60,606,060 samples, 0.23%)</title><rect x="310.8" y="709" width="3.2" height="15.0" fill="rgb(0,219,195)" rx="2" ry="2" /> +<text x="313.83" y="719.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (20,202,020 samples, 0.08%)</title><rect x="137.9" y="421" width="1.0" height="15.0" fill="rgb(0,233,68)" rx="2" ry="2" /> +<text x="140.87" y="431.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (10,101,010 samples, 0.04%)</title><rect x="1387.3" y="469" width="0.6" height="15.0" fill="rgb(0,203,89)" rx="2" ry="2" /> +<text x="1390.35" y="479.5" ></text> +</g> +<g > +<title>ip_finish_output2 (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="517" width="1.6" height="15.0" fill="rgb(0,196,53)" rx="2" ry="2" /> +<text x="1371.78" y="527.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.04%)</title><rect x="315.1" y="469" width="0.5" height="15.0" fill="rgb(0,229,104)" rx="2" ry="2" /> +<text x="318.07" y="479.5" ></text> +</g> +<g > +<title>link (30,303,030 samples, 0.12%)</title><rect x="445.1" y="693" width="1.6" height="15.0" fill="rgb(0,200,53)" rx="2" ry="2" /> +<text x="448.06" y="703.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.04%)</title><rect x="352.2" y="453" width="0.5" height="15.0" fill="rgb(0,225,20)" rx="2" ry="2" /> +<text x="355.21" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="470.5" y="645" width="0.6" height="15.0" fill="rgb(0,216,21)" rx="2" ry="2" /> +<text x="473.53" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="200.5" y="693" width="0.5" height="15.0" fill="rgb(0,221,130)" rx="2" ry="2" /> +<text x="203.47" y="703.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.04%)</title><rect x="250.9" y="517" width="0.5" height="15.0" fill="rgb(0,208,169)" rx="2" ry="2" /> +<text x="253.88" y="527.5" ></text> +</g> +<g > +<title>__handle_mm_fault (282,828,280 samples, 1.08%)</title><rect x="1321.0" y="677" width="14.9" height="15.0" fill="rgb(0,190,38)" rx="2" ry="2" /> +<text x="1324.03" y="687.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.04%)</title><rect x="378.2" y="437" width="0.5" height="15.0" fill="rgb(0,210,18)" rx="2" ry="2" /> +<text x="381.21" y="447.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.04%)</title><rect x="432.9" y="485" width="0.5" height="15.0" fill="rgb(0,223,152)" rx="2" ry="2" /> +<text x="435.86" y="495.5" ></text> +</g> +<g > +<title>ext4_xattr_get (10,101,010 samples, 0.04%)</title><rect x="392.0" y="405" width="0.5" height="15.0" fill="rgb(0,232,158)" rx="2" ry="2" /> +<text x="395.01" y="415.5" ></text> +</g> +<g > +<title>_raw_spin_lock (20,202,020 samples, 0.08%)</title><rect x="67.3" y="757" width="1.1" height="15.0" fill="rgb(0,221,155)" rx="2" ry="2" /> +<text x="70.30" y="767.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (30,303,030 samples, 0.12%)</title><rect x="405.8" y="581" width="1.6" height="15.0" fill="rgb(0,191,52)" rx="2" ry="2" /> +<text x="408.80" y="591.5" ></text> +</g> +<g > +<title>nf_ct_get_tuple_ports.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="1379.9" y="469" width="0.5" height="15.0" fill="rgb(0,239,114)" rx="2" ry="2" /> +<text x="1382.92" y="479.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="146.4" y="597" width="0.5" height="15.0" fill="rgb(0,202,14)" rx="2" ry="2" /> +<text x="149.36" y="607.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.04%)</title><rect x="186.1" y="549" width="0.6" height="15.0" fill="rgb(0,216,48)" rx="2" ry="2" /> +<text x="189.15" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="144.2" y="709" width="1.1" height="15.0" fill="rgb(0,239,40)" rx="2" ry="2" /> +<text x="147.23" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="339.0" y="661" width="0.5" height="15.0" fill="rgb(0,190,101)" rx="2" ry="2" /> +<text x="341.95" y="671.5" ></text> +</g> +<g > +<title>do_unlinkat (20,202,020 samples, 0.08%)</title><rect x="318.3" y="645" width="1.0" height="15.0" fill="rgb(0,203,57)" rx="2" ry="2" /> +<text x="321.26" y="655.5" ></text> +</g> +<g > +<title>ext4_delete_entry (20,202,020 samples, 0.08%)</title><rect x="127.8" y="549" width="1.0" height="15.0" fill="rgb(0,201,126)" rx="2" ry="2" /> +<text x="130.79" y="559.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.04%)</title><rect x="239.7" y="629" width="0.6" height="15.0" fill="rgb(0,213,111)" rx="2" ry="2" /> +<text x="242.73" y="639.5" ></text> +</g> +<g > +<title>fscrypt_match_name (10,101,010 samples, 0.04%)</title><rect x="429.7" y="517" width="0.5" height="15.0" fill="rgb(0,213,25)" rx="2" ry="2" /> +<text x="432.68" y="527.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="387.8" y="469" width="0.5" height="15.0" fill="rgb(0,233,131)" rx="2" ry="2" /> +<text x="390.76" y="479.5" ></text> +</g> +<g > +<title>net_send_part (575,757,570 samples, 2.19%)</title><rect x="1338.5" y="821" width="30.3" height="15.0" fill="rgb(0,214,126)" rx="2" ry="2" /> +<text x="1341.54" y="831.5" >ne..</text> +</g> +<g > +<title>vmbus_on_event (10,101,010 samples, 0.04%)</title><rect x="201.0" y="437" width="0.5" height="15.0" fill="rgb(0,234,39)" rx="2" ry="2" /> +<text x="204.00" y="447.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.04%)</title><rect x="427.0" y="757" width="0.6" height="15.0" fill="rgb(0,237,181)" rx="2" ry="2" /> +<text x="430.02" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="473.2" y="693" width="1.6" height="15.0" fill="rgb(0,215,7)" rx="2" ry="2" /> +<text x="476.18" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="292.3" y="677" width="1.0" height="15.0" fill="rgb(0,208,137)" rx="2" ry="2" /> +<text x="295.26" y="687.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.04%)</title><rect x="348.5" y="533" width="0.5" height="15.0" fill="rgb(0,214,34)" rx="2" ry="2" /> +<text x="351.50" y="543.5" ></text> +</g> +<g > +<title>ext4_orphan_add (10,101,010 samples, 0.04%)</title><rect x="375.0" y="597" width="0.6" height="15.0" fill="rgb(0,217,14)" rx="2" ry="2" /> +<text x="378.03" y="607.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.04%)</title><rect x="93.8" y="421" width="0.6" height="15.0" fill="rgb(0,194,89)" rx="2" ry="2" /> +<text x="96.83" y="431.5" ></text> +</g> +<g > +<title>do_brk_flags (10,101,010 samples, 0.04%)</title><rect x="930.0" y="645" width="0.5" height="15.0" fill="rgb(0,233,33)" rx="2" ry="2" /> +<text x="933.00" y="655.5" ></text> +</g> +<g > +<title>__mutex_lock_slowpath (10,101,010 samples, 0.04%)</title><rect x="570.8" y="661" width="0.5" height="15.0" fill="rgb(0,211,179)" rx="2" ry="2" /> +<text x="573.81" y="671.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="453.0" y="485" width="0.6" height="15.0" fill="rgb(0,196,59)" rx="2" ry="2" /> +<text x="456.02" y="495.5" ></text> +</g> +<g > +<title>do_open (20,202,020 samples, 0.08%)</title><rect x="501.3" y="549" width="1.1" height="15.0" fill="rgb(0,237,16)" rx="2" ry="2" /> +<text x="504.30" y="559.5" ></text> +</g> +<g > +<title>percpu_counter_add_batch (10,101,010 samples, 0.04%)</title><rect x="331.0" y="517" width="0.5" height="15.0" fill="rgb(0,214,4)" rx="2" ry="2" /> +<text x="333.99" y="527.5" ></text> +</g> +<g > +<title>end_page_writeback (10,101,010 samples, 0.04%)</title><rect x="94.9" y="245" width="0.5" height="15.0" fill="rgb(0,227,99)" rx="2" ry="2" /> +<text x="97.89" y="255.5" ></text> +</g> +<g > +<title>__es_insert_extent (10,101,010 samples, 0.04%)</title><rect x="392.5" y="405" width="0.6" height="15.0" fill="rgb(0,193,175)" rx="2" ry="2" /> +<text x="395.54" y="415.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.08%)</title><rect x="150.6" y="629" width="1.1" height="15.0" fill="rgb(0,216,93)" rx="2" ry="2" /> +<text x="153.60" y="639.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.04%)</title><rect x="128.8" y="533" width="0.6" height="15.0" fill="rgb(0,201,120)" rx="2" ry="2" /> +<text x="131.85" y="543.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="134.2" y="485" width="0.5" height="15.0" fill="rgb(0,197,86)" rx="2" ry="2" /> +<text x="137.15" y="495.5" ></text> +</g> +<g > +<title>new_inode (10,101,010 samples, 0.04%)</title><rect x="418.5" y="613" width="0.6" height="15.0" fill="rgb(0,202,128)" rx="2" ry="2" /> +<text x="421.54" y="623.5" ></text> +</g> +<g > +<title>alloc_inode (10,101,010 samples, 0.04%)</title><rect x="229.7" y="549" width="0.5" height="15.0" fill="rgb(0,233,37)" rx="2" ry="2" /> +<text x="232.65" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_rename (101,010,100 samples, 0.38%)</title><rect x="340.0" y="661" width="5.3" height="15.0" fill="rgb(0,239,19)" rx="2" ry="2" /> +<text x="343.01" y="671.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="55.1" y="741" width="0.5" height="15.0" fill="rgb(0,226,139)" rx="2" ry="2" /> +<text x="58.10" y="751.5" ></text> +</g> +<g > +<title>__inode_wait_for_writeback (10,101,010 samples, 0.04%)</title><rect x="328.9" y="533" width="0.5" height="15.0" fill="rgb(0,211,209)" rx="2" ry="2" /> +<text x="331.87" y="543.5" ></text> +</g> +<g > +<title>tcp_in_window (10,101,010 samples, 0.04%)</title><rect x="1364.0" y="453" width="0.5" height="15.0" fill="rgb(0,212,15)" rx="2" ry="2" /> +<text x="1367.00" y="463.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.08%)</title><rect x="144.2" y="645" width="1.1" height="15.0" fill="rgb(0,191,73)" rx="2" ry="2" /> +<text x="147.23" y="655.5" ></text> +</g> +<g > +<title>crc_42 (10,101,010 samples, 0.04%)</title><rect x="437.6" y="501" width="0.6" height="15.0" fill="rgb(0,235,13)" rx="2" ry="2" /> +<text x="440.64" y="511.5" ></text> +</g> +<g > +<title>rseq_ip_fixup (10,101,010 samples, 0.04%)</title><rect x="411.1" y="629" width="0.5" height="15.0" fill="rgb(0,207,95)" rx="2" ry="2" /> +<text x="414.11" y="639.5" ></text> +</g> +<g > +<title>iput (10,101,010 samples, 0.04%)</title><rect x="15.8" y="661" width="0.6" height="15.0" fill="rgb(0,237,17)" rx="2" ry="2" /> +<text x="18.84" y="671.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.04%)</title><rect x="1299.3" y="677" width="0.5" height="15.0" fill="rgb(0,191,99)" rx="2" ry="2" /> +<text x="1302.27" y="687.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.04%)</title><rect x="374.5" y="549" width="0.5" height="15.0" fill="rgb(0,222,202)" rx="2" ry="2" /> +<text x="377.50" y="559.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (70,707,070 samples, 0.27%)</title><rect x="249.8" y="613" width="3.7" height="15.0" fill="rgb(0,232,195)" rx="2" ry="2" /> +<text x="252.82" y="623.5" ></text> +</g> +<g > +<title>ipv4_confirm (10,101,010 samples, 0.04%)</title><rect x="13.2" y="357" width="0.5" height="15.0" fill="rgb(0,200,10)" rx="2" ry="2" /> +<text x="16.18" y="367.5" ></text> +</g> +<g > +<title>__alloc_pages (20,202,020 samples, 0.08%)</title><rect x="895.5" y="709" width="1.1" height="15.0" fill="rgb(0,206,177)" rx="2" ry="2" /> +<text x="898.51" y="719.5" ></text> +</g> +<g > +<title>ip_finish_output (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="549" width="0.5" height="15.0" fill="rgb(0,207,129)" rx="2" ry="2" /> +<text x="1388.76" y="559.5" ></text> +</g> +<g > +<title>__open64 (20,202,020 samples, 0.08%)</title><rect x="348.5" y="645" width="1.1" height="15.0" fill="rgb(0,227,22)" rx="2" ry="2" /> +<text x="351.50" y="655.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="285.4" y="437" width="0.5" height="15.0" fill="rgb(0,225,104)" rx="2" ry="2" /> +<text x="288.36" y="447.5" ></text> +</g> +<g > +<title>__ext4_check_dir_entry (10,101,010 samples, 0.04%)</title><rect x="249.8" y="565" width="0.5" height="15.0" fill="rgb(0,237,59)" rx="2" ry="2" /> +<text x="252.82" y="575.5" ></text> +</g> +<g > +<title>do_rmdir (60,606,060 samples, 0.23%)</title><rect x="95.4" y="581" width="3.2" height="15.0" fill="rgb(0,208,93)" rx="2" ry="2" /> +<text x="98.42" y="591.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="149" width="0.5" height="15.0" fill="rgb(0,218,171)" rx="2" ry="2" /> +<text x="1342.07" y="159.5" ></text> +</g> +<g > +<title>scsi_queue_rq (10,101,010 samples, 0.04%)</title><rect x="449.3" y="293" width="0.5" height="15.0" fill="rgb(0,236,128)" rx="2" ry="2" /> +<text x="452.31" y="303.5" ></text> +</g> +<g > +<title>alloc_inode (10,101,010 samples, 0.04%)</title><rect x="47.7" y="677" width="0.5" height="15.0" fill="rgb(0,234,196)" rx="2" ry="2" /> +<text x="50.67" y="687.5" ></text> +</g> +<g > +<title>filename_parentat (20,202,020 samples, 0.08%)</title><rect x="240.3" y="613" width="1.0" height="15.0" fill="rgb(0,211,12)" rx="2" ry="2" /> +<text x="243.27" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="90.1" y="485" width="0.5" height="15.0" fill="rgb(0,225,94)" rx="2" ry="2" /> +<text x="93.12" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="350.1" y="581" width="1.1" height="15.0" fill="rgb(0,219,62)" rx="2" ry="2" /> +<text x="353.09" y="591.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.04%)</title><rect x="391.5" y="533" width="0.5" height="15.0" fill="rgb(0,215,157)" rx="2" ry="2" /> +<text x="394.48" y="543.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="294.4" y="581" width="0.5" height="15.0" fill="rgb(0,193,98)" rx="2" ry="2" /> +<text x="297.38" y="591.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.04%)</title><rect x="305.0" y="245" width="0.5" height="15.0" fill="rgb(0,239,170)" rx="2" ry="2" /> +<text x="307.99" y="255.5" ></text> +</g> +<g > +<title>dentry_kill (20,202,020 samples, 0.08%)</title><rect x="309.2" y="581" width="1.1" height="15.0" fill="rgb(0,195,191)" rx="2" ry="2" /> +<text x="312.24" y="591.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.04%)</title><rect x="473.2" y="629" width="0.5" height="15.0" fill="rgb(0,234,176)" rx="2" ry="2" /> +<text x="476.18" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="480.6" y="693" width="1.6" height="15.0" fill="rgb(0,228,8)" rx="2" ry="2" /> +<text x="483.61" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="194.1" y="693" width="1.6" height="15.0" fill="rgb(0,209,76)" rx="2" ry="2" /> +<text x="197.11" y="703.5" ></text> +</g> +<g > +<title>git_config_snapshot (20,202,020 samples, 0.08%)</title><rect x="189.9" y="757" width="1.0" height="15.0" fill="rgb(0,236,122)" rx="2" ry="2" /> +<text x="192.86" y="767.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.04%)</title><rect x="303.4" y="565" width="0.5" height="15.0" fill="rgb(0,211,168)" rx="2" ry="2" /> +<text x="306.40" y="575.5" ></text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="165" width="0.5" height="15.0" fill="rgb(0,222,68)" rx="2" ry="2" /> +<text x="1370.19" y="175.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="467.9" y="693" width="0.5" height="15.0" fill="rgb(0,191,85)" rx="2" ry="2" /> +<text x="470.88" y="703.5" ></text> +</g> +<g > +<title>charge_memcg (50,505,050 samples, 0.19%)</title><rect x="921.0" y="661" width="2.6" height="15.0" fill="rgb(0,223,170)" rx="2" ry="2" /> +<text x="923.98" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.19%)</title><rect x="418.0" y="725" width="2.7" height="15.0" fill="rgb(0,226,203)" rx="2" ry="2" /> +<text x="421.00" y="735.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="284.8" y="533" width="0.6" height="15.0" fill="rgb(0,193,202)" rx="2" ry="2" /> +<text x="287.83" y="543.5" ></text> +</g> +<g > +<title>get_mem_cgroup_from_mm (20,202,020 samples, 0.08%)</title><rect x="923.6" y="661" width="1.1" height="15.0" fill="rgb(0,210,70)" rx="2" ry="2" /> +<text x="926.63" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="930.0" y="789" width="0.5" height="15.0" fill="rgb(0,199,64)" rx="2" ry="2" /> +<text x="933.00" y="799.5" ></text> +</g> +<g > +<title>cmd_dispatcher_handle_event (80,808,080 samples, 0.31%)</title><rect x="1374.6" y="869" width="4.3" height="15.0" fill="rgb(0,234,151)" rx="2" ry="2" /> +<text x="1377.61" y="879.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.08%)</title><rect x="350.1" y="533" width="1.1" height="15.0" fill="rgb(0,194,208)" rx="2" ry="2" /> +<text x="353.09" y="543.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="160.1" y="453" width="0.6" height="15.0" fill="rgb(0,214,42)" rx="2" ry="2" /> +<text x="163.15" y="463.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.04%)</title><rect x="489.6" y="533" width="0.6" height="15.0" fill="rgb(0,198,168)" rx="2" ry="2" /> +<text x="492.63" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="359.1" y="661" width="0.5" height="15.0" fill="rgb(0,213,151)" rx="2" ry="2" /> +<text x="362.11" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="601.0" y="805" width="0.6" height="15.0" fill="rgb(0,228,26)" rx="2" ry="2" /> +<text x="604.05" y="815.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="84.3" y="709" width="0.5" height="15.0" fill="rgb(0,224,132)" rx="2" ry="2" /> +<text x="87.28" y="719.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="645" width="0.5" height="15.0" fill="rgb(0,209,113)" rx="2" ry="2" /> +<text x="1388.76" y="655.5" ></text> +</g> +<g > +<title>ext4_unlink (20,202,020 samples, 0.08%)</title><rect x="91.7" y="533" width="1.1" height="15.0" fill="rgb(0,206,107)" rx="2" ry="2" /> +<text x="94.71" y="543.5" ></text> +</g> +<g > +<title>tcp_queue_rcv (10,101,010 samples, 0.04%)</title><rect x="1368.2" y="245" width="0.6" height="15.0" fill="rgb(0,204,11)" rx="2" ry="2" /> +<text x="1371.25" y="255.5" ></text> +</g> +<g > +<title>ip_rcv (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="373" width="0.5" height="15.0" fill="rgb(0,206,186)" rx="2" ry="2" /> +<text x="1388.76" y="383.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="321.4" y="629" width="0.6" height="15.0" fill="rgb(0,196,194)" rx="2" ry="2" /> +<text x="324.44" y="639.5" ></text> +</g> +<g > +<title>free (131,313,130 samples, 0.50%)</title><rect x="934.8" y="837" width="6.9" height="15.0" fill="rgb(0,225,67)" rx="2" ry="2" /> +<text x="937.78" y="847.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="188.8" y="661" width="0.5" height="15.0" fill="rgb(0,192,167)" rx="2" ry="2" /> +<text x="191.80" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="413.2" y="709" width="3.7" height="15.0" fill="rgb(0,221,12)" rx="2" ry="2" /> +<text x="416.23" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.19%)</title><rect x="46.1" y="789" width="2.6" height="15.0" fill="rgb(0,235,179)" rx="2" ry="2" /> +<text x="49.08" y="799.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="470.5" y="629" width="0.6" height="15.0" fill="rgb(0,209,19)" rx="2" ry="2" /> +<text x="473.53" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="325.2" y="405" width="0.5" height="15.0" fill="rgb(0,203,21)" rx="2" ry="2" /> +<text x="328.16" y="415.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.04%)</title><rect x="185.6" y="469" width="0.5" height="15.0" fill="rgb(0,194,203)" rx="2" ry="2" /> +<text x="188.62" y="479.5" ></text> +</g> +<g > +<title>remove (70,707,070 samples, 0.27%)</title><rect x="166.0" y="741" width="3.7" height="15.0" fill="rgb(0,192,98)" rx="2" ry="2" /> +<text x="168.99" y="751.5" ></text> +</g> +<g > +<title>__get_vm_area_node.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="20.1" y="821" width="0.5" height="15.0" fill="rgb(0,223,148)" rx="2" ry="2" /> +<text x="23.08" y="831.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.04%)</title><rect x="76.3" y="933" width="0.6" height="15.0" fill="rgb(0,208,127)" rx="2" ry="2" /> +<text x="79.32" y="943.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="493.9" y="693" width="2.6" height="15.0" fill="rgb(0,227,93)" rx="2" ry="2" /> +<text x="496.88" y="703.5" ></text> +</g> +<g > +<title>ext4_lookup.part.0 (10,101,010 samples, 0.04%)</title><rect x="409.5" y="581" width="0.5" height="15.0" fill="rgb(0,206,147)" rx="2" ry="2" /> +<text x="412.52" y="591.5" ></text> +</g> +<g > +<title>evict (10,101,010 samples, 0.04%)</title><rect x="105.0" y="565" width="0.5" height="15.0" fill="rgb(0,239,164)" rx="2" ry="2" /> +<text x="107.97" y="575.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.04%)</title><rect x="47.1" y="501" width="0.6" height="15.0" fill="rgb(0,222,119)" rx="2" ry="2" /> +<text x="50.14" y="511.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.04%)</title><rect x="428.1" y="565" width="0.5" height="15.0" fill="rgb(0,209,150)" rx="2" ry="2" /> +<text x="431.09" y="575.5" ></text> +</g> +<g > +<title>__check_heap_object (10,101,010 samples, 0.04%)</title><rect x="503.4" y="485" width="0.6" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" /> +<text x="506.43" y="495.5" ></text> +</g> +<g > +<title>xas_find (10,101,010 samples, 0.04%)</title><rect x="275.8" y="437" width="0.5" height="15.0" fill="rgb(0,197,179)" rx="2" ry="2" /> +<text x="278.81" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (333,333,330 samples, 1.27%)</title><rect x="346.9" y="789" width="17.5" height="15.0" fill="rgb(0,205,124)" rx="2" ry="2" /> +<text x="349.91" y="799.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="359.1" y="629" width="0.5" height="15.0" fill="rgb(0,225,184)" rx="2" ry="2" /> +<text x="362.11" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_readlink (10,101,010 samples, 0.04%)</title><rect x="491.2" y="677" width="0.6" height="15.0" fill="rgb(0,222,67)" rx="2" ry="2" /> +<text x="494.22" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (40,404,040 samples, 0.15%)</title><rect x="86.9" y="661" width="2.2" height="15.0" fill="rgb(0,198,28)" rx="2" ry="2" /> +<text x="89.93" y="671.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="221.7" y="421" width="0.5" height="15.0" fill="rgb(0,223,204)" rx="2" ry="2" /> +<text x="224.70" y="431.5" ></text> +</g> +<g > +<title>sk_prot_alloc (10,101,010 samples, 0.04%)</title><rect x="1369.3" y="197" width="0.5" height="15.0" fill="rgb(0,199,2)" rx="2" ry="2" /> +<text x="1372.31" y="207.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.04%)</title><rect x="76.3" y="869" width="0.6" height="15.0" fill="rgb(0,234,169)" rx="2" ry="2" /> +<text x="79.32" y="879.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="356.5" y="581" width="1.6" height="15.0" fill="rgb(0,198,100)" rx="2" ry="2" /> +<text x="359.46" y="591.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="466.3" y="693" width="0.5" height="15.0" fill="rgb(0,230,127)" rx="2" ry="2" /> +<text x="469.29" y="703.5" ></text> +</g> +<g > +<title>vfs_statx (80,808,080 samples, 0.31%)</title><rect x="254.1" y="661" width="4.2" height="15.0" fill="rgb(0,230,134)" rx="2" ry="2" /> +<text x="257.06" y="671.5" ></text> +</g> +<g > +<title>ext4_file_open (10,101,010 samples, 0.04%)</title><rect x="376.6" y="597" width="0.6" height="15.0" fill="rgb(0,221,67)" rx="2" ry="2" /> +<text x="379.62" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="382.5" y="597" width="1.5" height="15.0" fill="rgb(0,195,49)" rx="2" ry="2" /> +<text x="385.46" y="607.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="284.8" y="581" width="0.6" height="15.0" fill="rgb(0,204,192)" rx="2" ry="2" /> +<text x="287.83" y="591.5" ></text> +</g> +<g > +<title>is_dx_dir (10,101,010 samples, 0.04%)</title><rect x="178.7" y="709" width="0.6" height="15.0" fill="rgb(0,200,23)" rx="2" ry="2" /> +<text x="181.72" y="719.5" ></text> +</g> +<g > +<title>ext4_alloc_inode (10,101,010 samples, 0.04%)</title><rect x="55.6" y="773" width="0.6" height="15.0" fill="rgb(0,223,134)" rx="2" ry="2" /> +<text x="58.63" y="783.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.04%)</title><rect x="75.3" y="805" width="0.5" height="15.0" fill="rgb(0,209,98)" rx="2" ry="2" /> +<text x="78.26" y="815.5" ></text> +</g> +<g > +<title>task_work_run (30,303,030 samples, 0.12%)</title><rect x="1384.2" y="757" width="1.6" height="15.0" fill="rgb(0,220,81)" rx="2" ry="2" /> +<text x="1387.16" y="767.5" ></text> +</g> +<g > +<title>ipv4_conntrack_local (10,101,010 samples, 0.04%)</title><rect x="1379.9" y="517" width="0.5" height="15.0" fill="rgb(0,211,166)" rx="2" ry="2" /> +<text x="1382.92" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="362.8" y="581" width="0.6" height="15.0" fill="rgb(0,223,175)" rx="2" ry="2" /> +<text x="365.83" y="591.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (30,303,030 samples, 0.12%)</title><rect x="1365.1" y="293" width="1.6" height="15.0" fill="rgb(0,203,71)" rx="2" ry="2" /> +<text x="1368.06" y="303.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (30,303,030 samples, 0.12%)</title><rect x="434.5" y="485" width="1.5" height="15.0" fill="rgb(0,212,165)" rx="2" ry="2" /> +<text x="437.45" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="353.8" y="581" width="1.1" height="15.0" fill="rgb(0,216,10)" rx="2" ry="2" /> +<text x="356.81" y="591.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.04%)</title><rect x="315.6" y="629" width="0.5" height="15.0" fill="rgb(0,214,70)" rx="2" ry="2" /> +<text x="318.61" y="639.5" ></text> +</g> +<g > +<title>_raw_spin_lock_irqsave (10,101,010 samples, 0.04%)</title><rect x="391.5" y="405" width="0.5" height="15.0" fill="rgb(0,220,12)" rx="2" ry="2" /> +<text x="394.48" y="415.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="259.4" y="741" width="1.0" height="15.0" fill="rgb(0,235,110)" rx="2" ry="2" /> +<text x="262.37" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="208.4" y="709" width="2.2" height="15.0" fill="rgb(0,221,166)" rx="2" ry="2" /> +<text x="211.43" y="719.5" ></text> +</g> +<g > +<title>ext4_mb_check_limits (10,101,010 samples, 0.04%)</title><rect x="464.2" y="501" width="0.5" height="15.0" fill="rgb(0,206,13)" rx="2" ry="2" /> +<text x="467.16" y="511.5" ></text> +</g> +<g > +<title>do_sys_openat2 (40,404,040 samples, 0.15%)</title><rect x="405.3" y="645" width="2.1" height="15.0" fill="rgb(0,215,120)" rx="2" ry="2" /> +<text x="408.27" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="387.8" y="453" width="0.5" height="15.0" fill="rgb(0,210,55)" rx="2" ry="2" /> +<text x="390.76" y="463.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.04%)</title><rect x="275.3" y="325" width="0.5" height="15.0" fill="rgb(0,198,26)" rx="2" ry="2" /> +<text x="278.28" y="335.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="83.7" y="725" width="1.1" height="15.0" fill="rgb(0,214,67)" rx="2" ry="2" /> +<text x="86.75" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="245.0" y="693" width="1.6" height="15.0" fill="rgb(0,211,177)" rx="2" ry="2" /> +<text x="248.04" y="703.5" ></text> +</g> +<g > +<title>try_to_release_page (10,101,010 samples, 0.04%)</title><rect x="105.0" y="453" width="0.5" height="15.0" fill="rgb(0,207,15)" rx="2" ry="2" /> +<text x="107.97" y="463.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="589.4" y="629" width="0.5" height="15.0" fill="rgb(0,230,34)" rx="2" ry="2" /> +<text x="592.38" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="52.4" y="773" width="1.1" height="15.0" fill="rgb(0,207,188)" rx="2" ry="2" /> +<text x="55.45" y="783.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (191,919,190 samples, 0.73%)</title><rect x="65.2" y="805" width="10.1" height="15.0" fill="rgb(0,192,24)" rx="2" ry="2" /> +<text x="68.18" y="815.5" ></text> +</g> +<g > +<title>read (20,202,020 samples, 0.08%)</title><rect x="1377.3" y="773" width="1.0" height="15.0" fill="rgb(0,238,1)" rx="2" ry="2" /> +<text x="1380.27" y="783.5" ></text> +</g> +<g > +<title>dentry_kill (10,101,010 samples, 0.04%)</title><rect x="531.0" y="645" width="0.5" height="15.0" fill="rgb(0,197,23)" rx="2" ry="2" /> +<text x="534.01" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.04%)</title><rect x="400.5" y="565" width="0.5" height="15.0" fill="rgb(0,194,178)" rx="2" ry="2" /> +<text x="403.50" y="575.5" ></text> +</g> +<g > +<title>call_filldir (10,101,010 samples, 0.04%)</title><rect x="353.8" y="501" width="0.5" height="15.0" fill="rgb(0,190,101)" rx="2" ry="2" /> +<text x="356.81" y="511.5" ></text> +</g> +<g > +<title>ext4_delete_entry (20,202,020 samples, 0.08%)</title><rect x="108.2" y="533" width="1.0" height="15.0" fill="rgb(0,236,192)" rx="2" ry="2" /> +<text x="111.15" y="543.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="693" width="1.6" height="15.0" fill="rgb(0,235,171)" rx="2" ry="2" /> +<text x="1371.78" y="703.5" ></text> +</g> +<g > +<title>ext4_rename2 (10,101,010 samples, 0.04%)</title><rect x="333.1" y="629" width="0.5" height="15.0" fill="rgb(0,231,72)" rx="2" ry="2" /> +<text x="336.11" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (303,030,300 samples, 1.15%)</title><rect x="380.3" y="677" width="16.0" height="15.0" fill="rgb(0,192,52)" rx="2" ry="2" /> +<text x="383.33" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="143.7" y="645" width="0.5" height="15.0" fill="rgb(0,228,140)" rx="2" ry="2" /> +<text x="146.70" y="655.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="157.0" y="581" width="0.5" height="15.0" fill="rgb(0,205,186)" rx="2" ry="2" /> +<text x="159.97" y="591.5" ></text> +</g> +<g > +<title>mutex_lock (10,101,010 samples, 0.04%)</title><rect x="344.3" y="565" width="0.5" height="15.0" fill="rgb(0,194,0)" rx="2" ry="2" /> +<text x="347.26" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="311.9" y="645" width="0.5" height="15.0" fill="rgb(0,200,207)" rx="2" ry="2" /> +<text x="314.89" y="655.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (20,202,020 samples, 0.08%)</title><rect x="508.2" y="693" width="1.1" height="15.0" fill="rgb(0,217,83)" rx="2" ry="2" /> +<text x="511.20" y="703.5" ></text> +</g> +<g > +<title>ext4_readdir (10,101,010 samples, 0.04%)</title><rect x="178.2" y="709" width="0.5" height="15.0" fill="rgb(0,224,180)" rx="2" ry="2" /> +<text x="181.19" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="469.5" y="709" width="0.5" height="15.0" fill="rgb(0,235,154)" rx="2" ry="2" /> +<text x="472.47" y="719.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="319.3" y="709" width="0.6" height="15.0" fill="rgb(0,218,199)" rx="2" ry="2" /> +<text x="322.32" y="719.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="353.3" y="533" width="0.5" height="15.0" fill="rgb(0,226,89)" rx="2" ry="2" /> +<text x="356.28" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="477.4" y="693" width="2.2" height="15.0" fill="rgb(0,226,205)" rx="2" ry="2" /> +<text x="480.43" y="703.5" ></text> +</g> +<g > +<title>user_path_at_empty (80,808,080 samples, 0.31%)</title><rect x="254.1" y="645" width="4.2" height="15.0" fill="rgb(0,208,124)" rx="2" ry="2" /> +<text x="257.06" y="655.5" ></text> +</g> +<g > +<title>ext4_inode_journal_mode (10,101,010 samples, 0.04%)</title><rect x="141.0" y="549" width="0.6" height="15.0" fill="rgb(0,211,9)" rx="2" ry="2" /> +<text x="144.05" y="559.5" ></text> +</g> +<g > +<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.04%)</title><rect x="463.1" y="517" width="0.5" height="15.0" fill="rgb(0,205,147)" rx="2" ry="2" /> +<text x="466.10" y="527.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="85" width="0.5" height="15.0" fill="rgb(0,220,164)" rx="2" ry="2" /> +<text x="1342.07" y="95.5" ></text> +</g> +<g > +<title>ext4_end_bio (10,101,010 samples, 0.04%)</title><rect x="94.9" y="277" width="0.5" height="15.0" fill="rgb(0,203,157)" rx="2" ry="2" /> +<text x="97.89" y="287.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (242,424,240 samples, 0.92%)</title><rect x="454.1" y="741" width="12.7" height="15.0" fill="rgb(0,195,4)" rx="2" ry="2" /> +<text x="457.08" y="751.5" ></text> +</g> +<g > +<title>up_read (10,101,010 samples, 0.04%)</title><rect x="530.0" y="773" width="0.5" height="15.0" fill="rgb(0,206,135)" rx="2" ry="2" /> +<text x="532.95" y="783.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.04%)</title><rect x="111.9" y="629" width="0.5" height="15.0" fill="rgb(0,225,175)" rx="2" ry="2" /> +<text x="114.87" y="639.5" ></text> +</g> +<g > +<title>copy_thread (10,101,010 samples, 0.04%)</title><rect x="511.4" y="693" width="0.5" height="15.0" fill="rgb(0,219,152)" rx="2" ry="2" /> +<text x="514.38" y="703.5" ></text> +</g> +<g > +<title>dup_task_struct (10,101,010 samples, 0.04%)</title><rect x="528.9" y="693" width="0.5" height="15.0" fill="rgb(0,227,198)" rx="2" ry="2" /> +<text x="531.89" y="703.5" ></text> +</g> +<g > +<title>filename_lookup (70,707,070 samples, 0.27%)</title><rect x="254.1" y="629" width="3.7" height="15.0" fill="rgb(0,193,116)" rx="2" ry="2" /> +<text x="257.06" y="639.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (20,202,020 samples, 0.08%)</title><rect x="887.0" y="757" width="1.1" height="15.0" fill="rgb(0,231,103)" rx="2" ry="2" /> +<text x="890.02" y="767.5" ></text> +</g> +<g > +<title>ip_output (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="501" width="0.5" height="15.0" fill="rgb(0,238,154)" rx="2" ry="2" /> +<text x="1342.07" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="493.9" y="677" width="0.5" height="15.0" fill="rgb(0,210,136)" rx="2" ry="2" /> +<text x="496.88" y="687.5" ></text> +</g> +<g > +<title>ext4_truncate (40,404,040 samples, 0.15%)</title><rect x="159.1" y="565" width="2.1" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="162.09" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="212.1" y="709" width="2.2" height="15.0" fill="rgb(0,219,209)" rx="2" ry="2" /> +<text x="215.15" y="719.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.04%)</title><rect x="394.7" y="485" width="0.5" height="15.0" fill="rgb(0,211,72)" rx="2" ry="2" /> +<text x="397.66" y="495.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.04%)</title><rect x="467.3" y="645" width="0.6" height="15.0" fill="rgb(0,219,18)" rx="2" ry="2" /> +<text x="470.35" y="655.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="549" width="0.5" height="15.0" fill="rgb(0,212,86)" rx="2" ry="2" /> +<text x="1342.07" y="559.5" ></text> +</g> +<g > +<title>git_reference_symbolic_create (272,727,270 samples, 1.04%)</title><rect x="301.3" y="757" width="14.3" height="15.0" fill="rgb(0,209,26)" rx="2" ry="2" /> +<text x="304.28" y="767.5" ></text> +</g> +<g > +<title>try_to_release_page (10,101,010 samples, 0.04%)</title><rect x="168.1" y="517" width="0.5" height="15.0" fill="rgb(0,217,38)" rx="2" ry="2" /> +<text x="171.11" y="527.5" ></text> +</g> +<g > +<title>git_remote_lookup (20,202,020 samples, 0.08%)</title><rect x="345.8" y="773" width="1.1" height="15.0" fill="rgb(0,220,138)" rx="2" ry="2" /> +<text x="348.85" y="783.5" ></text> +</g> +<g > +<title>git_branch_upstream_remote (20,202,020 samples, 0.08%)</title><rect x="379.3" y="757" width="1.0" height="15.0" fill="rgb(0,217,133)" rx="2" ry="2" /> +<text x="382.27" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.23%)</title><rect x="1385.8" y="837" width="3.1" height="15.0" fill="rgb(0,237,8)" rx="2" ry="2" /> +<text x="1388.76" y="847.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.23%)</title><rect x="1379.4" y="789" width="3.2" height="15.0" fill="rgb(0,194,141)" rx="2" ry="2" /> +<text x="1382.39" y="799.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="488.0" y="645" width="0.6" height="15.0" fill="rgb(0,198,39)" rx="2" ry="2" /> +<text x="491.04" y="655.5" ></text> +</g> +<g > +<title>jsonrpc_request_destroy (10,101,010 samples, 0.04%)</title><rect x="10.0" y="917" width="0.5" height="15.0" fill="rgb(0,226,54)" rx="2" ry="2" /> +<text x="13.00" y="927.5" ></text> +</g> +<g > +<title>d_splice_alias (10,101,010 samples, 0.04%)</title><rect x="378.7" y="581" width="0.6" height="15.0" fill="rgb(0,226,156)" rx="2" ry="2" /> +<text x="381.74" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1337.5" y="693" width="0.5" height="15.0" fill="rgb(0,233,144)" rx="2" ry="2" /> +<text x="1340.47" y="703.5" ></text> +</g> +<g > +<title>__kmalloc (10,101,010 samples, 0.04%)</title><rect x="277.4" y="581" width="0.5" height="15.0" fill="rgb(0,226,133)" rx="2" ry="2" /> +<text x="280.40" y="591.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.04%)</title><rect x="467.3" y="613" width="0.6" height="15.0" fill="rgb(0,221,187)" rx="2" ry="2" /> +<text x="470.35" y="623.5" ></text> +</g> +<g > +<title>rw_verify_area (10,101,010 samples, 0.04%)</title><rect x="53.0" y="693" width="0.5" height="15.0" fill="rgb(0,237,201)" rx="2" ry="2" /> +<text x="55.98" y="703.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (20,202,020 samples, 0.08%)</title><rect x="347.4" y="517" width="1.1" height="15.0" fill="rgb(0,203,41)" rx="2" ry="2" /> +<text x="350.44" y="527.5" ></text> +</g> +<g > +<title>shrink_dentry_list (10,101,010 samples, 0.04%)</title><rect x="142.1" y="565" width="0.5" height="15.0" fill="rgb(0,190,108)" rx="2" ry="2" /> +<text x="145.11" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="170.2" y="725" width="0.6" height="15.0" fill="rgb(0,209,57)" rx="2" ry="2" /> +<text x="173.23" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="491.8" y="757" width="0.5" height="15.0" fill="rgb(0,193,167)" rx="2" ry="2" /> +<text x="494.75" y="767.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="898.2" y="805" width="0.5" height="15.0" fill="rgb(0,194,88)" rx="2" ry="2" /> +<text x="901.17" y="815.5" ></text> +</g> +<g > +<title>__sys_connect_file (70,707,070 samples, 0.27%)</title><rect x="1368.8" y="789" width="3.7" height="15.0" fill="rgb(0,193,62)" rx="2" ry="2" /> +<text x="1371.78" y="799.5" ></text> +</g> +<g > +<title>destroy_inode (10,101,010 samples, 0.04%)</title><rect x="1384.2" y="613" width="0.5" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="1387.16" y="623.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.04%)</title><rect x="339.0" y="677" width="0.5" height="15.0" fill="rgb(0,237,180)" rx="2" ry="2" /> +<text x="341.95" y="687.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.04%)</title><rect x="280.6" y="533" width="0.5" height="15.0" fill="rgb(0,225,96)" rx="2" ry="2" /> +<text x="283.59" y="543.5" ></text> +</g> +<g > +<title>rwsem_down_write_slowpath (10,101,010 samples, 0.04%)</title><rect x="180.8" y="677" width="0.6" height="15.0" fill="rgb(0,204,136)" rx="2" ry="2" /> +<text x="183.84" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="498.7" y="645" width="1.0" height="15.0" fill="rgb(0,237,40)" rx="2" ry="2" /> +<text x="501.65" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="356.5" y="549" width="1.6" height="15.0" fill="rgb(0,234,167)" rx="2" ry="2" /> +<text x="359.46" y="559.5" ></text> +</g> +<g > +<title>__sys_connect (70,707,070 samples, 0.27%)</title><rect x="1368.8" y="805" width="3.7" height="15.0" fill="rgb(0,206,150)" rx="2" ry="2" /> +<text x="1371.78" y="815.5" ></text> +</g> +<g > +<title>__call_rcu (10,101,010 samples, 0.04%)</title><rect x="149.0" y="581" width="0.5" height="15.0" fill="rgb(0,231,76)" rx="2" ry="2" /> +<text x="152.01" y="591.5" ></text> +</g> +<g > +<title>map_id_up (10,101,010 samples, 0.04%)</title><rect x="387.8" y="437" width="0.5" height="15.0" fill="rgb(0,205,3)" rx="2" ry="2" /> +<text x="390.76" y="447.5" ></text> +</g> +<g > +<title>ktime_get_with_offset (10,101,010 samples, 0.04%)</title><rect x="22.2" y="869" width="0.5" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" /> +<text x="25.20" y="879.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="85.9" y="757" width="0.5" height="15.0" fill="rgb(0,214,208)" rx="2" ry="2" /> +<text x="88.87" y="767.5" ></text> +</g> +<g > +<title>half_md4_transform (20,202,020 samples, 0.08%)</title><rect x="121.9" y="517" width="1.1" height="15.0" fill="rgb(0,206,111)" rx="2" ry="2" /> +<text x="124.95" y="527.5" ></text> +</g> +<g > +<title>sk_stream_alloc_skb (30,303,030 samples, 0.12%)</title><rect x="1355.0" y="661" width="1.6" height="15.0" fill="rgb(0,197,69)" rx="2" ry="2" /> +<text x="1357.98" y="671.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="597" width="1.6" height="15.0" fill="rgb(0,215,14)" rx="2" ry="2" /> +<text x="1370.19" y="607.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="57.8" y="661" width="0.5" height="15.0" fill="rgb(0,219,48)" rx="2" ry="2" /> +<text x="60.75" y="671.5" ></text> +</g> +<g > +<title>tcp_sendmsg_locked (40,404,040 samples, 0.15%)</title><rect x="1379.9" y="677" width="2.1" height="15.0" fill="rgb(0,218,65)" rx="2" ry="2" /> +<text x="1382.92" y="687.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="363.9" y="581" width="0.5" height="15.0" fill="rgb(0,209,76)" rx="2" ry="2" /> +<text x="366.89" y="591.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (20,202,020 samples, 0.08%)</title><rect x="389.9" y="421" width="1.0" height="15.0" fill="rgb(0,207,111)" rx="2" ry="2" /> +<text x="392.88" y="431.5" ></text> +</g> +<g > +<title>__put_task_struct (10,101,010 samples, 0.04%)</title><rect x="281.6" y="405" width="0.6" height="15.0" fill="rgb(0,225,104)" rx="2" ry="2" /> +<text x="284.65" y="415.5" ></text> +</g> +<g > +<title>__ext4_find_entry (30,303,030 samples, 0.12%)</title><rect x="428.6" y="549" width="1.6" height="15.0" fill="rgb(0,226,70)" rx="2" ry="2" /> +<text x="431.62" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="189.3" y="677" width="0.6" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="192.33" y="687.5" ></text> +</g> +<g > +<title>tcp_send_fin (121,212,120 samples, 0.46%)</title><rect x="36.5" y="565" width="6.4" height="15.0" fill="rgb(0,208,50)" rx="2" ry="2" /> +<text x="39.53" y="575.5" ></text> +</g> +<g > +<title>inet_create (20,202,020 samples, 0.08%)</title><rect x="1372.5" y="773" width="1.1" height="15.0" fill="rgb(0,201,18)" rx="2" ry="2" /> +<text x="1375.49" y="783.5" ></text> +</g> +<g > +<title>ext4_file_getattr (10,101,010 samples, 0.04%)</title><rect x="165.5" y="645" width="0.5" height="15.0" fill="rgb(0,213,68)" rx="2" ry="2" /> +<text x="168.46" y="655.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="189.9" y="581" width="0.5" height="15.0" fill="rgb(0,225,87)" rx="2" ry="2" /> +<text x="192.86" y="591.5" ></text> +</g> +<g > +<title>sock_def_readable (10,101,010 samples, 0.04%)</title><rect x="1365.6" y="213" width="0.5" height="15.0" fill="rgb(0,219,71)" rx="2" ry="2" /> +<text x="1368.59" y="223.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (60,606,060 samples, 0.23%)</title><rect x="233.9" y="501" width="3.2" height="15.0" fill="rgb(0,223,133)" rx="2" ry="2" /> +<text x="236.90" y="511.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.08%)</title><rect x="231.2" y="533" width="1.1" height="15.0" fill="rgb(0,223,60)" rx="2" ry="2" /> +<text x="234.25" y="543.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.04%)</title><rect x="489.6" y="549" width="0.6" height="15.0" fill="rgb(0,235,205)" rx="2" ry="2" /> +<text x="492.63" y="559.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.04%)</title><rect x="530.5" y="773" width="0.5" height="15.0" fill="rgb(0,216,3)" rx="2" ry="2" /> +<text x="533.48" y="783.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="216.9" y="597" width="0.6" height="15.0" fill="rgb(0,233,44)" rx="2" ry="2" /> +<text x="219.92" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (181,818,180 samples, 0.69%)</title><rect x="181.9" y="837" width="9.6" height="15.0" fill="rgb(0,214,129)" rx="2" ry="2" /> +<text x="184.90" y="847.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="492.3" y="709" width="0.5" height="15.0" fill="rgb(0,192,184)" rx="2" ry="2" /> +<text x="495.28" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="477.4" y="677" width="2.2" height="15.0" fill="rgb(0,201,103)" rx="2" ry="2" /> +<text x="480.43" y="687.5" ></text> +</g> +<g > +<title>__ext4_new_inode (30,303,030 samples, 0.12%)</title><rect x="228.6" y="581" width="1.6" height="15.0" fill="rgb(0,224,140)" rx="2" ry="2" /> +<text x="231.59" y="591.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="588.3" y="629" width="0.5" height="15.0" fill="rgb(0,197,208)" rx="2" ry="2" /> +<text x="591.32" y="639.5" ></text> +</g> +<g > +<title>blk_mq_do_dispatch_sched (10,101,010 samples, 0.04%)</title><rect x="334.2" y="357" width="0.5" height="15.0" fill="rgb(0,226,39)" rx="2" ry="2" /> +<text x="337.18" y="367.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="134.7" y="469" width="0.5" height="15.0" fill="rgb(0,201,36)" rx="2" ry="2" /> +<text x="137.68" y="479.5" ></text> +</g> +<g > +<title>json_object_to_json_string_length (7,535,353,460 samples, 28.68%)</title><rect x="942.7" y="837" width="395.8" height="15.0" fill="rgb(0,233,65)" rx="2" ry="2" /> +<text x="945.73" y="847.5" >json_object_to_json_string_length</text> +</g> +<g > +<title>vfs_unlink (10,101,010 samples, 0.04%)</title><rect x="170.8" y="661" width="0.5" height="15.0" fill="rgb(0,216,59)" rx="2" ry="2" /> +<text x="173.76" y="671.5" ></text> +</g> +<g > +<title>rcu_all_qs (10,101,010 samples, 0.04%)</title><rect x="375.6" y="613" width="0.5" height="15.0" fill="rgb(0,234,3)" rx="2" ry="2" /> +<text x="378.56" y="623.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (30,303,030 samples, 0.12%)</title><rect x="1379.9" y="645" width="1.6" height="15.0" fill="rgb(0,202,107)" rx="2" ry="2" /> +<text x="1382.92" y="655.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.04%)</title><rect x="144.2" y="629" width="0.6" height="15.0" fill="rgb(0,203,167)" rx="2" ry="2" /> +<text x="147.23" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="363.9" y="549" width="0.5" height="15.0" fill="rgb(0,209,91)" rx="2" ry="2" /> +<text x="366.89" y="559.5" ></text> +</g> +<g > +<title>tcp_push (60,606,060 samples, 0.23%)</title><rect x="1364.0" y="661" width="3.2" height="15.0" fill="rgb(0,219,107)" rx="2" ry="2" /> +<text x="1367.00" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="198.9" y="661" width="1.0" height="15.0" fill="rgb(0,216,184)" rx="2" ry="2" /> +<text x="201.88" y="671.5" ></text> +</g> +<g > +<title>find_get_pages_range (10,101,010 samples, 0.04%)</title><rect x="275.8" y="453" width="0.5" height="15.0" fill="rgb(0,235,11)" rx="2" ry="2" /> +<text x="278.81" y="463.5" ></text> +</g> +<g > +<title>__dentry_kill (20,202,020 samples, 0.08%)</title><rect x="309.2" y="565" width="1.1" height="15.0" fill="rgb(0,201,157)" rx="2" ry="2" /> +<text x="312.24" y="575.5" ></text> +</g> +<g > +<title>getname (10,101,010 samples, 0.04%)</title><rect x="101.8" y="645" width="0.5" height="15.0" fill="rgb(0,209,41)" rx="2" ry="2" /> +<text x="104.79" y="655.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="15.8" y="821" width="0.6" height="15.0" fill="rgb(0,238,106)" rx="2" ry="2" /> +<text x="18.84" y="831.5" ></text> +</g> +<g > +<title>git_repository__cleanup (70,707,070 samples, 0.27%)</title><rect x="82.7" y="821" width="3.7" height="15.0" fill="rgb(0,226,201)" rx="2" ry="2" /> +<text x="85.69" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="299.2" y="565" width="0.5" height="15.0" fill="rgb(0,211,70)" rx="2" ry="2" /> +<text x="302.16" y="575.5" ></text> +</g> +<g > +<title>ext4_add_entry (50,505,050 samples, 0.19%)</title><rect x="456.7" y="645" width="2.7" height="15.0" fill="rgb(0,199,63)" rx="2" ry="2" /> +<text x="459.74" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="470.0" y="677" width="1.1" height="15.0" fill="rgb(0,222,54)" rx="2" ry="2" /> +<text x="473.00" y="687.5" ></text> +</g> +<g > +<title>inode_init_always (10,101,010 samples, 0.04%)</title><rect x="418.5" y="581" width="0.6" height="15.0" fill="rgb(0,219,40)" rx="2" ry="2" /> +<text x="421.54" y="591.5" ></text> +</g> +<g > +<title>git_filter_list_stream_data (40,404,040 samples, 0.15%)</title><rect x="206.3" y="757" width="2.1" height="15.0" fill="rgb(0,190,118)" rx="2" ry="2" /> +<text x="209.31" y="767.5" ></text> +</g> +<g > +<title>get_user_pages_fast (20,202,020 samples, 0.08%)</title><rect x="31.2" y="709" width="1.1" height="15.0" fill="rgb(0,235,85)" rx="2" ry="2" /> +<text x="34.22" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="444.5" y="645" width="0.6" height="15.0" fill="rgb(0,204,143)" rx="2" ry="2" /> +<text x="447.53" y="655.5" ></text> +</g> +<g > +<title>waitpid@plt (10,101,010 samples, 0.04%)</title><rect x="600.0" y="805" width="0.5" height="15.0" fill="rgb(0,206,147)" rx="2" ry="2" /> +<text x="602.99" y="815.5" ></text> +</g> +<g > +<title>copy_page_to_iter (10,101,010 samples, 0.04%)</title><rect x="499.7" y="485" width="0.5" height="15.0" fill="rgb(0,210,161)" rx="2" ry="2" /> +<text x="502.71" y="495.5" ></text> +</g> +<g > +<title>add_to_page_cache_lru (10,101,010 samples, 0.04%)</title><rect x="339.0" y="469" width="0.5" height="15.0" fill="rgb(0,198,133)" rx="2" ry="2" /> +<text x="341.95" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_openat (30,303,030 samples, 0.12%)</title><rect x="500.8" y="613" width="1.6" height="15.0" fill="rgb(0,239,182)" rx="2" ry="2" /> +<text x="503.77" y="623.5" ></text> +</g> +<g > +<title>_copy_to_user (10,101,010 samples, 0.04%)</title><rect x="476.9" y="613" width="0.5" height="15.0" fill="rgb(0,228,185)" rx="2" ry="2" /> +<text x="479.90" y="623.5" ></text> +</g> +<g > +<title>bio_endio (10,101,010 samples, 0.04%)</title><rect x="275.3" y="213" width="0.5" height="15.0" fill="rgb(0,214,54)" rx="2" ry="2" /> +<text x="278.28" y="223.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="290.1" y="597" width="1.1" height="15.0" fill="rgb(0,214,8)" rx="2" ry="2" /> +<text x="293.14" y="607.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="341" width="1.6" height="15.0" fill="rgb(0,209,182)" rx="2" ry="2" /> +<text x="1371.78" y="351.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="202.1" y="645" width="0.5" height="15.0" fill="rgb(0,228,188)" rx="2" ry="2" /> +<text x="205.06" y="655.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (20,202,020 samples, 0.08%)</title><rect x="887.0" y="773" width="1.1" height="15.0" fill="rgb(0,234,155)" rx="2" ry="2" /> +<text x="890.02" y="783.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="157.0" y="501" width="0.5" height="15.0" fill="rgb(0,217,52)" rx="2" ry="2" /> +<text x="159.97" y="511.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.04%)</title><rect x="1383.1" y="709" width="0.5" height="15.0" fill="rgb(0,202,190)" rx="2" ry="2" /> +<text x="1386.10" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="317.2" y="645" width="1.1" height="15.0" fill="rgb(0,216,155)" rx="2" ry="2" /> +<text x="320.20" y="655.5" ></text> +</g> +<g > +<title>____fput (40,404,040 samples, 0.15%)</title><rect x="32.3" y="709" width="2.1" height="15.0" fill="rgb(0,203,149)" rx="2" ry="2" /> +<text x="35.28" y="719.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.08%)</title><rect x="394.7" y="549" width="1.0" height="15.0" fill="rgb(0,230,23)" rx="2" ry="2" /> +<text x="397.66" y="559.5" ></text> +</g> +<g > +<title>git_config_add_backend (30,303,030 samples, 0.12%)</title><rect x="470.0" y="741" width="1.6" height="15.0" fill="rgb(0,220,21)" rx="2" ry="2" /> +<text x="473.00" y="751.5" ></text> +</g> +<g > +<title>realloc (70,707,070 samples, 0.27%)</title><rect x="594.2" y="805" width="3.7" height="15.0" fill="rgb(0,204,208)" rx="2" ry="2" /> +<text x="597.15" y="815.5" ></text> +</g> +<g > +<title>ext4_meta_trans_blocks (10,101,010 samples, 0.04%)</title><rect x="160.7" y="533" width="0.5" height="15.0" fill="rgb(0,234,87)" rx="2" ry="2" /> +<text x="163.68" y="543.5" ></text> +</g> +<g > +<title>fsnotify_perm.part.0 (10,101,010 samples, 0.04%)</title><rect x="253.5" y="613" width="0.6" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="256.53" y="623.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.04%)</title><rect x="452.5" y="469" width="0.5" height="15.0" fill="rgb(0,206,21)" rx="2" ry="2" /> +<text x="455.49" y="479.5" ></text> +</g> +<g > +<title>__ext4fs_dirhash (20,202,020 samples, 0.08%)</title><rect x="251.4" y="549" width="1.1" height="15.0" fill="rgb(0,220,167)" rx="2" ry="2" /> +<text x="254.41" y="559.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.04%)</title><rect x="365.5" y="581" width="0.5" height="15.0" fill="rgb(0,228,31)" rx="2" ry="2" /> +<text x="368.48" y="591.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (20,202,020 samples, 0.08%)</title><rect x="97.0" y="485" width="1.1" height="15.0" fill="rgb(0,218,77)" rx="2" ry="2" /> +<text x="100.01" y="495.5" ></text> +</g> +<g > +<title>apparmor_file_free_security (20,202,020 samples, 0.08%)</title><rect x="33.3" y="661" width="1.1" height="15.0" fill="rgb(0,227,56)" rx="2" ry="2" /> +<text x="36.34" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="345.3" y="693" width="0.5" height="15.0" fill="rgb(0,227,194)" rx="2" ry="2" /> +<text x="348.32" y="703.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="159.1" y="501" width="0.5" height="15.0" fill="rgb(0,225,82)" rx="2" ry="2" /> +<text x="162.09" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.04%)</title><rect x="284.3" y="597" width="0.5" height="15.0" fill="rgb(0,225,47)" rx="2" ry="2" /> +<text x="287.30" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 0.62%)</title><rect x="34.4" y="789" width="8.5" height="15.0" fill="rgb(0,220,205)" rx="2" ry="2" /> +<text x="37.41" y="799.5" ></text> +</g> +<g > +<title>__do_munmap (131,313,130 samples, 0.50%)</title><rect x="934.8" y="677" width="6.9" height="15.0" fill="rgb(0,212,33)" rx="2" ry="2" /> +<text x="937.78" y="687.5" ></text> +</g> +<g > +<title>dput (20,202,020 samples, 0.08%)</title><rect x="414.8" y="597" width="1.1" height="15.0" fill="rgb(0,235,156)" rx="2" ry="2" /> +<text x="417.82" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="284.8" y="629" width="0.6" height="15.0" fill="rgb(0,194,36)" rx="2" ry="2" /> +<text x="287.83" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="468.4" y="757" width="0.5" height="15.0" fill="rgb(0,216,123)" rx="2" ry="2" /> +<text x="471.41" y="767.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="136.3" y="469" width="1.0" height="15.0" fill="rgb(0,202,194)" rx="2" ry="2" /> +<text x="139.27" y="479.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="97.0" y="421" width="0.5" height="15.0" fill="rgb(0,200,79)" rx="2" ry="2" /> +<text x="100.01" y="431.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.04%)</title><rect x="277.4" y="613" width="0.5" height="15.0" fill="rgb(0,233,42)" rx="2" ry="2" /> +<text x="280.40" y="623.5" ></text> +</g> +<g > +<title>lookup_fast (20,202,020 samples, 0.08%)</title><rect x="256.7" y="581" width="1.1" height="15.0" fill="rgb(0,200,139)" rx="2" ry="2" /> +<text x="259.71" y="591.5" ></text> +</g> +<g > +<title>shrink_dcache_parent (10,101,010 samples, 0.04%)</title><rect x="161.2" y="613" width="0.5" height="15.0" fill="rgb(0,199,181)" rx="2" ry="2" /> +<text x="164.21" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="220.6" y="741" width="1.1" height="15.0" fill="rgb(0,197,80)" rx="2" ry="2" /> +<text x="223.63" y="751.5" ></text> +</g> +<g > +<title>new_inode (10,101,010 samples, 0.04%)</title><rect x="55.6" y="789" width="0.6" height="15.0" fill="rgb(0,217,15)" rx="2" ry="2" /> +<text x="58.63" y="799.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.04%)</title><rect x="185.6" y="517" width="0.5" height="15.0" fill="rgb(0,228,29)" rx="2" ry="2" /> +<text x="188.62" y="527.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (60,606,060 samples, 0.23%)</title><rect x="233.9" y="485" width="3.2" height="15.0" fill="rgb(0,202,2)" rx="2" ry="2" /> +<text x="236.90" y="495.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted.part.0 (10,101,010 samples, 0.04%)</title><rect x="204.2" y="549" width="0.5" height="15.0" fill="rgb(0,200,78)" rx="2" ry="2" /> +<text x="207.19" y="559.5" ></text> +</g> +<g > +<title>release_sock (10,101,010 samples, 0.04%)</title><rect x="47.1" y="693" width="0.6" height="15.0" fill="rgb(0,192,5)" rx="2" ry="2" /> +<text x="50.14" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.04%)</title><rect x="369.2" y="645" width="0.5" height="15.0" fill="rgb(0,199,117)" rx="2" ry="2" /> +<text x="372.19" y="655.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="366.0" y="677" width="0.5" height="15.0" fill="rgb(0,208,53)" rx="2" ry="2" /> +<text x="369.01" y="687.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.04%)</title><rect x="470.5" y="581" width="0.6" height="15.0" fill="rgb(0,205,160)" rx="2" ry="2" /> +<text x="473.53" y="591.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="933.7" y="805" width="0.5" height="15.0" fill="rgb(0,220,40)" rx="2" ry="2" /> +<text x="936.71" y="815.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="285.9" y="565" width="0.5" height="15.0" fill="rgb(0,206,192)" rx="2" ry="2" /> +<text x="288.89" y="575.5" ></text> +</g> +<g > +<title>__page_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="407.9" y="501" width="0.6" height="15.0" fill="rgb(0,199,67)" rx="2" ry="2" /> +<text x="410.92" y="511.5" ></text> +</g> +<g > +<title>__close_nocancel (20,202,020 samples, 0.08%)</title><rect x="259.4" y="757" width="1.0" height="15.0" fill="rgb(0,206,47)" rx="2" ry="2" /> +<text x="262.37" y="767.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.04%)</title><rect x="400.5" y="533" width="0.5" height="15.0" fill="rgb(0,232,191)" rx="2" ry="2" /> +<text x="403.50" y="543.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="473.7" y="533" width="0.5" height="15.0" fill="rgb(0,233,27)" rx="2" ry="2" /> +<text x="476.71" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1337.5" y="725" width="0.5" height="15.0" fill="rgb(0,230,30)" rx="2" ry="2" /> +<text x="1340.47" y="735.5" ></text> +</g> +<g > +<title>do_readlinkat (10,101,010 samples, 0.04%)</title><rect x="491.2" y="661" width="0.6" height="15.0" fill="rgb(0,207,173)" rx="2" ry="2" /> +<text x="494.22" y="671.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="451.4" y="389" width="0.6" height="15.0" fill="rgb(0,208,27)" rx="2" ry="2" /> +<text x="454.43" y="399.5" ></text> +</g> +<g > +<title>hv_ringbuffer_write (10,101,010 samples, 0.04%)</title><rect x="436.6" y="197" width="0.5" height="15.0" fill="rgb(0,199,111)" rx="2" ry="2" /> +<text x="439.57" y="207.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.04%)</title><rect x="509.3" y="709" width="0.5" height="15.0" fill="rgb(0,211,32)" rx="2" ry="2" /> +<text x="512.26" y="719.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.04%)</title><rect x="615.4" y="709" width="0.5" height="15.0" fill="rgb(0,224,24)" rx="2" ry="2" /> +<text x="618.37" y="719.5" ></text> +</g> +<g > +<title>file_remove_privs (10,101,010 samples, 0.04%)</title><rect x="185.1" y="549" width="0.5" height="15.0" fill="rgb(0,196,158)" rx="2" ry="2" /> +<text x="188.09" y="559.5" ></text> +</g> +<g > +<title>enqueue_to_backlog (10,101,010 samples, 0.04%)</title><rect x="1381.0" y="357" width="0.5" height="15.0" fill="rgb(0,199,161)" rx="2" ry="2" /> +<text x="1383.98" y="367.5" ></text> +</g> +<g > +<title>do_accept (40,404,040 samples, 0.15%)</title><rect x="46.6" y="725" width="2.1" height="15.0" fill="rgb(0,217,0)" rx="2" ry="2" /> +<text x="49.61" y="735.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="244.0" y="677" width="0.5" height="15.0" fill="rgb(0,227,168)" rx="2" ry="2" /> +<text x="246.98" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_access (90,909,090 samples, 0.35%)</title><rect x="77.4" y="901" width="4.8" height="15.0" fill="rgb(0,204,6)" rx="2" ry="2" /> +<text x="80.38" y="911.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="208.4" y="677" width="1.1" height="15.0" fill="rgb(0,201,156)" rx="2" ry="2" /> +<text x="211.43" y="687.5" ></text> +</g> +<g > +<title>obj_cgroup_charge_pages (10,101,010 samples, 0.04%)</title><rect x="520.9" y="533" width="0.6" height="15.0" fill="rgb(0,215,19)" rx="2" ry="2" /> +<text x="523.93" y="543.5" ></text> +</g> +<g > +<title>iput (10,101,010 samples, 0.04%)</title><rect x="1384.2" y="645" width="0.5" height="15.0" fill="rgb(0,194,69)" rx="2" ry="2" /> +<text x="1387.16" y="655.5" ></text> +</g> +<g > +<title>__find_get_block (20,202,020 samples, 0.08%)</title><rect x="120.9" y="485" width="1.0" height="15.0" fill="rgb(0,219,192)" rx="2" ry="2" /> +<text x="123.89" y="495.5" ></text> +</g> +<g > +<title>ext4_read_inode_bitmap (10,101,010 samples, 0.04%)</title><rect x="378.2" y="581" width="0.5" height="15.0" fill="rgb(0,226,186)" rx="2" ry="2" /> +<text x="381.21" y="591.5" ></text> +</g> +<g > +<title>wait_on_page_writeback (10,101,010 samples, 0.04%)</title><rect x="448.2" y="469" width="0.6" height="15.0" fill="rgb(0,196,110)" rx="2" ry="2" /> +<text x="451.25" y="479.5" ></text> +</g> +<g > +<title>opendir (10,101,010 samples, 0.04%)</title><rect x="201.0" y="725" width="0.5" height="15.0" fill="rgb(0,237,7)" rx="2" ry="2" /> +<text x="204.00" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="368.7" y="709" width="1.0" height="15.0" fill="rgb(0,192,165)" rx="2" ry="2" /> +<text x="371.66" y="719.5" ></text> +</g> +<g > +<title>ip_output (60,606,060 samples, 0.23%)</title><rect x="11.1" y="581" width="3.1" height="15.0" fill="rgb(0,213,163)" rx="2" ry="2" /> +<text x="14.06" y="591.5" ></text> +</g> +<g > +<title>file_close (10,101,010 samples, 0.04%)</title><rect x="531.0" y="821" width="0.5" height="15.0" fill="rgb(0,195,130)" rx="2" ry="2" /> +<text x="534.01" y="831.5" ></text> +</g> +<g > +<title>get_futex_key (20,202,020 samples, 0.08%)</title><rect x="30.2" y="709" width="1.0" height="15.0" fill="rgb(0,192,45)" rx="2" ry="2" /> +<text x="33.16" y="719.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="467.9" y="645" width="0.5" height="15.0" fill="rgb(0,195,8)" rx="2" ry="2" /> +<text x="470.88" y="655.5" ></text> +</g> +<g > +<title>ext4_add_nondir (10,101,010 samples, 0.04%)</title><rect x="406.9" y="549" width="0.5" height="15.0" fill="rgb(0,228,131)" rx="2" ry="2" /> +<text x="409.86" y="559.5" ></text> +</g> +<g > +<title>__fget_light (10,101,010 samples, 0.04%)</title><rect x="177.7" y="725" width="0.5" height="15.0" fill="rgb(0,217,32)" rx="2" ry="2" /> +<text x="180.66" y="735.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.04%)</title><rect x="149.0" y="661" width="0.5" height="15.0" fill="rgb(0,208,5)" rx="2" ry="2" /> +<text x="152.01" y="671.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="629" width="1.6" height="15.0" fill="rgb(0,202,182)" rx="2" ry="2" /> +<text x="1371.78" y="639.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.04%)</title><rect x="352.7" y="469" width="0.6" height="15.0" fill="rgb(0,199,203)" rx="2" ry="2" /> +<text x="355.75" y="479.5" ></text> +</g> +<g > +<title>clear_page_erms (10,101,010 samples, 0.04%)</title><rect x="92.8" y="453" width="0.5" height="15.0" fill="rgb(0,237,41)" rx="2" ry="2" /> +<text x="95.77" y="463.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="154.8" y="597" width="0.6" height="15.0" fill="rgb(0,238,208)" rx="2" ry="2" /> +<text x="157.84" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="221.7" y="725" width="0.5" height="15.0" fill="rgb(0,195,60)" rx="2" ry="2" /> +<text x="224.70" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="189.9" y="709" width="1.0" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="192.86" y="719.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="309.2" y="501" width="0.6" height="15.0" fill="rgb(0,223,78)" rx="2" ry="2" /> +<text x="312.24" y="511.5" ></text> +</g> +<g > +<title>__blk_mq_delay_run_hw_queue (20,202,020 samples, 0.08%)</title><rect x="273.7" y="405" width="1.1" height="15.0" fill="rgb(0,194,155)" rx="2" ry="2" /> +<text x="276.69" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="211.1" y="773" width="0.5" height="15.0" fill="rgb(0,217,89)" rx="2" ry="2" /> +<text x="214.08" y="783.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.04%)</title><rect x="285.9" y="517" width="0.5" height="15.0" fill="rgb(0,206,129)" rx="2" ry="2" /> +<text x="288.89" y="527.5" ></text> +</g> +<g > +<title>vmbus_on_event (10,101,010 samples, 0.04%)</title><rect x="64.1" y="629" width="0.5" height="15.0" fill="rgb(0,211,2)" rx="2" ry="2" /> +<text x="67.12" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="221.7" y="437" width="0.5" height="15.0" fill="rgb(0,198,121)" rx="2" ry="2" /> +<text x="224.70" y="447.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.04%)</title><rect x="92.8" y="469" width="0.5" height="15.0" fill="rgb(0,203,1)" rx="2" ry="2" /> +<text x="95.77" y="479.5" ></text> +</g> +<g > +<title>inode_io_list_del (10,101,010 samples, 0.04%)</title><rect x="98.1" y="517" width="0.5" height="15.0" fill="rgb(0,190,90)" rx="2" ry="2" /> +<text x="101.07" y="527.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="367.1" y="549" width="0.5" height="15.0" fill="rgb(0,212,6)" rx="2" ry="2" /> +<text x="370.07" y="559.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.08%)</title><rect x="462.0" y="469" width="1.1" height="15.0" fill="rgb(0,209,156)" rx="2" ry="2" /> +<text x="465.04" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="220.6" y="629" width="1.1" height="15.0" fill="rgb(0,197,76)" rx="2" ry="2" /> +<text x="223.63" y="639.5" ></text> +</g> +<g > +<title>tcp_send_ack (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="229" width="0.6" height="15.0" fill="rgb(0,233,157)" rx="2" ry="2" /> +<text x="1383.45" y="239.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="315.1" y="581" width="0.5" height="15.0" fill="rgb(0,235,87)" rx="2" ry="2" /> +<text x="318.07" y="591.5" ></text> +</g> +<g > +<title>__open64_nocancel (40,404,040 samples, 0.15%)</title><rect x="244.5" y="709" width="2.1" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" /> +<text x="247.51" y="719.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.04%)</title><rect x="469.5" y="565" width="0.5" height="15.0" fill="rgb(0,205,17)" rx="2" ry="2" /> +<text x="472.47" y="575.5" ></text> +</g> +<g > +<title>security_inode_need_killpriv (10,101,010 samples, 0.04%)</title><rect x="413.2" y="469" width="0.6" height="15.0" fill="rgb(0,190,145)" rx="2" ry="2" /> +<text x="416.23" y="479.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.04%)</title><rect x="530.5" y="821" width="0.5" height="15.0" fill="rgb(0,226,74)" rx="2" ry="2" /> +<text x="533.48" y="831.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="501" width="1.6" height="15.0" fill="rgb(0,236,4)" rx="2" ry="2" /> +<text x="1371.78" y="511.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="154.8" y="501" width="0.6" height="15.0" fill="rgb(0,194,10)" rx="2" ry="2" /> +<text x="157.84" y="511.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="898.2" y="821" width="0.5" height="15.0" fill="rgb(0,220,96)" rx="2" ry="2" /> +<text x="901.17" y="831.5" ></text> +</g> +<g > +<title>filp_close (10,101,010 samples, 0.04%)</title><rect x="328.3" y="629" width="0.6" height="15.0" fill="rgb(0,199,109)" rx="2" ry="2" /> +<text x="331.34" y="639.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="235.5" y="437" width="0.5" height="15.0" fill="rgb(0,237,61)" rx="2" ry="2" /> +<text x="238.49" y="447.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (80,808,080 samples, 0.31%)</title><rect x="37.6" y="357" width="4.2" height="15.0" fill="rgb(0,210,120)" rx="2" ry="2" /> +<text x="40.59" y="367.5" ></text> +</g> +<g > +<title>_raw_read_lock (10,101,010 samples, 0.04%)</title><rect x="129.4" y="469" width="0.5" height="15.0" fill="rgb(0,205,47)" rx="2" ry="2" /> +<text x="132.38" y="479.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.04%)</title><rect x="1376.7" y="693" width="0.6" height="15.0" fill="rgb(0,208,208)" rx="2" ry="2" /> +<text x="1379.74" y="703.5" ></text> +</g> +<g > +<title>hook_inode_free_security (10,101,010 samples, 0.04%)</title><rect x="157.5" y="549" width="0.5" height="15.0" fill="rgb(0,223,180)" rx="2" ry="2" /> +<text x="160.50" y="559.5" ></text> +</g> +<g > +<title>process_backlog (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="405" width="0.6" height="15.0" fill="rgb(0,235,3)" rx="2" ry="2" /> +<text x="1383.45" y="415.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (20,202,020 samples, 0.08%)</title><rect x="413.2" y="533" width="1.1" height="15.0" fill="rgb(0,231,120)" rx="2" ry="2" /> +<text x="416.23" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="930.0" y="709" width="0.5" height="15.0" fill="rgb(0,218,54)" rx="2" ry="2" /> +<text x="933.00" y="719.5" ></text> +</g> +<g > +<title>fscrypt_match_name (10,101,010 samples, 0.04%)</title><rect x="80.6" y="709" width="0.5" height="15.0" fill="rgb(0,229,18)" rx="2" ry="2" /> +<text x="83.57" y="719.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.04%)</title><rect x="183.0" y="741" width="0.5" height="15.0" fill="rgb(0,194,28)" rx="2" ry="2" /> +<text x="185.96" y="751.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="588.3" y="581" width="0.5" height="15.0" fill="rgb(0,190,26)" rx="2" ry="2" /> +<text x="591.32" y="591.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.04%)</title><rect x="378.2" y="453" width="0.5" height="15.0" fill="rgb(0,198,198)" rx="2" ry="2" /> +<text x="381.21" y="463.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (20,202,020 samples, 0.08%)</title><rect x="106.0" y="517" width="1.1" height="15.0" fill="rgb(0,235,105)" rx="2" ry="2" /> +<text x="109.03" y="527.5" ></text> +</g> +<g > +<title>try_to_free_buffers (10,101,010 samples, 0.04%)</title><rect x="168.1" y="469" width="0.5" height="15.0" fill="rgb(0,224,128)" rx="2" ry="2" /> +<text x="171.11" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="346.9" y="757" width="3.2" height="15.0" fill="rgb(0,212,199)" rx="2" ry="2" /> +<text x="349.91" y="767.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="470.0" y="629" width="0.5" height="15.0" fill="rgb(0,212,209)" rx="2" ry="2" /> +<text x="473.00" y="639.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="221.2" y="517" width="0.5" height="15.0" fill="rgb(0,214,176)" rx="2" ry="2" /> +<text x="224.16" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.23%)</title><rect x="1379.4" y="773" width="3.2" height="15.0" fill="rgb(0,239,157)" rx="2" ry="2" /> +<text x="1382.39" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="296.5" y="629" width="0.5" height="15.0" fill="rgb(0,204,47)" rx="2" ry="2" /> +<text x="299.51" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.04%)</title><rect x="285.4" y="613" width="0.5" height="15.0" fill="rgb(0,219,36)" rx="2" ry="2" /> +<text x="288.36" y="623.5" ></text> +</g> +<g > +<title>_copy_from_iter (20,202,020 samples, 0.08%)</title><rect x="1356.6" y="645" width="1.0" height="15.0" fill="rgb(0,207,130)" rx="2" ry="2" /> +<text x="1359.57" y="655.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (20,202,020 samples, 0.08%)</title><rect x="439.8" y="549" width="1.0" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" /> +<text x="442.76" y="559.5" ></text> +</g> +<g > +<title>__put_cred (10,101,010 samples, 0.04%)</title><rect x="1299.3" y="629" width="0.5" height="15.0" fill="rgb(0,214,26)" rx="2" ry="2" /> +<text x="1302.27" y="639.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.04%)</title><rect x="15.8" y="773" width="0.6" height="15.0" fill="rgb(0,213,179)" rx="2" ry="2" /> +<text x="18.84" y="783.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="320.9" y="485" width="0.5" height="15.0" fill="rgb(0,192,201)" rx="2" ry="2" /> +<text x="323.91" y="495.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="172.4" y="533" width="0.5" height="15.0" fill="rgb(0,224,190)" rx="2" ry="2" /> +<text x="175.35" y="543.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="389" width="1.6" height="15.0" fill="rgb(0,205,7)" rx="2" ry="2" /> +<text x="1370.19" y="399.5" ></text> +</g> +<g > +<title>security_task_alloc (10,101,010 samples, 0.04%)</title><rect x="529.4" y="693" width="0.6" height="15.0" fill="rgb(0,201,79)" rx="2" ry="2" /> +<text x="532.42" y="703.5" ></text> +</g> +<g > +<title>handle_mm_fault (181,818,180 samples, 0.69%)</title><rect x="919.9" y="741" width="9.6" height="15.0" fill="rgb(0,210,205)" rx="2" ry="2" /> +<text x="922.92" y="751.5" ></text> +</g> +<g > +<title>fdopendir (10,101,010 samples, 0.04%)</title><rect x="169.7" y="773" width="0.5" height="15.0" fill="rgb(0,211,126)" rx="2" ry="2" /> +<text x="172.70" y="783.5" ></text> +</g> +<g > +<title>__find_get_block_slow (10,101,010 samples, 0.04%)</title><rect x="93.8" y="437" width="0.6" height="15.0" fill="rgb(0,229,19)" rx="2" ry="2" /> +<text x="96.83" y="447.5" ></text> +</g> +<g > +<title>iput (70,707,070 samples, 0.27%)</title><rect x="268.4" y="549" width="3.7" height="15.0" fill="rgb(0,192,134)" rx="2" ry="2" /> +<text x="271.39" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="243.4" y="709" width="1.1" height="15.0" fill="rgb(0,227,84)" rx="2" ry="2" /> +<text x="246.45" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.15%)</title><rect x="206.3" y="693" width="2.1" height="15.0" fill="rgb(0,228,7)" rx="2" ry="2" /> +<text x="209.31" y="703.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.04%)</title><rect x="216.4" y="613" width="0.5" height="15.0" fill="rgb(0,194,73)" rx="2" ry="2" /> +<text x="219.39" y="623.5" ></text> +</g> +<g > +<title>__tcp_ack_snd_check (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="261" width="0.5" height="15.0" fill="rgb(0,212,95)" rx="2" ry="2" /> +<text x="1370.19" y="271.5" ></text> +</g> +<g > +<title>evict (30,303,030 samples, 0.12%)</title><rect x="172.4" y="661" width="1.5" height="15.0" fill="rgb(0,225,188)" rx="2" ry="2" /> +<text x="175.35" y="671.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="210.6" y="581" width="0.5" height="15.0" fill="rgb(0,209,101)" rx="2" ry="2" /> +<text x="213.55" y="591.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.04%)</title><rect x="105.0" y="517" width="0.5" height="15.0" fill="rgb(0,227,167)" rx="2" ry="2" /> +<text x="107.97" y="527.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.04%)</title><rect x="444.0" y="517" width="0.5" height="15.0" fill="rgb(0,208,164)" rx="2" ry="2" /> +<text x="447.00" y="527.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.04%)</title><rect x="303.4" y="453" width="0.5" height="15.0" fill="rgb(0,205,206)" rx="2" ry="2" /> +<text x="306.40" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (121,212,120 samples, 0.46%)</title><rect x="385.1" y="597" width="6.4" height="15.0" fill="rgb(0,235,93)" rx="2" ry="2" /> +<text x="388.11" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.23%)</title><rect x="89.6" y="597" width="3.2" height="15.0" fill="rgb(0,200,180)" rx="2" ry="2" /> +<text x="92.58" y="607.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.04%)</title><rect x="267.9" y="613" width="0.5" height="15.0" fill="rgb(0,200,37)" rx="2" ry="2" /> +<text x="270.85" y="623.5" ></text> +</g> +<g > +<title>neigh_hh_output (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="85" width="0.5" height="15.0" fill="rgb(0,210,90)" rx="2" ry="2" /> +<text x="1370.19" y="95.5" ></text> +</g> +<g > +<title>touch_atime (30,303,030 samples, 0.12%)</title><rect x="124.6" y="613" width="1.6" height="15.0" fill="rgb(0,208,140)" rx="2" ry="2" /> +<text x="127.60" y="623.5" ></text> +</g> +<g > +<title>ext4_unlink (20,202,020 samples, 0.08%)</title><rect x="318.3" y="613" width="1.0" height="15.0" fill="rgb(0,230,99)" rx="2" ry="2" /> +<text x="321.26" y="623.5" ></text> +</g> +<g > +<title>do_renameat2 (20,202,020 samples, 0.08%)</title><rect x="187.2" y="677" width="1.1" height="15.0" fill="rgb(0,193,101)" rx="2" ry="2" /> +<text x="190.21" y="687.5" ></text> +</g> +<g > +<title>ext4_rmdir (10,101,010 samples, 0.04%)</title><rect x="96.0" y="549" width="0.5" height="15.0" fill="rgb(0,223,93)" rx="2" ry="2" /> +<text x="98.95" y="559.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.04%)</title><rect x="597.3" y="661" width="0.6" height="15.0" fill="rgb(0,230,20)" rx="2" ry="2" /> +<text x="600.34" y="671.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.04%)</title><rect x="156.4" y="581" width="0.6" height="15.0" fill="rgb(0,232,44)" rx="2" ry="2" /> +<text x="159.44" y="591.5" ></text> +</g> +<g > +<title>filename_parentat (10,101,010 samples, 0.04%)</title><rect x="146.9" y="613" width="0.5" height="15.0" fill="rgb(0,221,168)" rx="2" ry="2" /> +<text x="149.89" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="167.6" y="565" width="0.5" height="15.0" fill="rgb(0,213,73)" rx="2" ry="2" /> +<text x="170.58" y="575.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="92.8" y="597" width="0.5" height="15.0" fill="rgb(0,220,186)" rx="2" ry="2" /> +<text x="95.77" y="607.5" ></text> +</g> +<g > +<title>inet_csk_clone_lock (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="229" width="0.5" height="15.0" fill="rgb(0,197,23)" rx="2" ry="2" /> +<text x="1388.76" y="239.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.04%)</title><rect x="281.6" y="597" width="0.6" height="15.0" fill="rgb(0,215,1)" rx="2" ry="2" /> +<text x="284.65" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="263.1" y="661" width="3.2" height="15.0" fill="rgb(0,193,117)" rx="2" ry="2" /> +<text x="266.08" y="671.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="167.6" y="485" width="0.5" height="15.0" fill="rgb(0,217,199)" rx="2" ry="2" /> +<text x="170.58" y="495.5" ></text> +</g> +<g > +<title>filldir64 (10,101,010 samples, 0.04%)</title><rect x="353.8" y="485" width="0.5" height="15.0" fill="rgb(0,223,8)" rx="2" ry="2" /> +<text x="356.81" y="495.5" ></text> +</g> +<g > +<title>evict (10,101,010 samples, 0.04%)</title><rect x="1384.2" y="629" width="0.5" height="15.0" fill="rgb(0,237,91)" rx="2" ry="2" /> +<text x="1387.16" y="639.5" ></text> +</g> +<g > +<title>__destroy_inode (10,101,010 samples, 0.04%)</title><rect x="157.5" y="565" width="0.5" height="15.0" fill="rgb(0,210,51)" rx="2" ry="2" /> +<text x="160.50" y="575.5" ></text> +</g> +<g > +<title>_IO_file_write (30,303,030 samples, 0.12%)</title><rect x="51.9" y="805" width="1.6" height="15.0" fill="rgb(0,235,22)" rx="2" ry="2" /> +<text x="54.91" y="815.5" ></text> +</g> +<g > +<title>__alloc_skb (30,303,030 samples, 0.12%)</title><rect x="1355.0" y="645" width="1.6" height="15.0" fill="rgb(0,214,96)" rx="2" ry="2" /> +<text x="1357.98" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="302.9" y="565" width="0.5" height="15.0" fill="rgb(0,215,203)" rx="2" ry="2" /> +<text x="305.87" y="575.5" ></text> +</g> +<g > +<title>ext4_rename (10,101,010 samples, 0.04%)</title><rect x="187.7" y="629" width="0.6" height="15.0" fill="rgb(0,218,182)" rx="2" ry="2" /> +<text x="190.74" y="639.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.04%)</title><rect x="337.4" y="629" width="0.5" height="15.0" fill="rgb(0,203,63)" rx="2" ry="2" /> +<text x="340.36" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="279.0" y="613" width="0.5" height="15.0" fill="rgb(0,239,35)" rx="2" ry="2" /> +<text x="282.00" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="212.1" y="677" width="1.6" height="15.0" fill="rgb(0,232,91)" rx="2" ry="2" /> +<text x="215.15" y="687.5" ></text> +</g> +<g > +<title>ip_local_deliver (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="357" width="0.5" height="15.0" fill="rgb(0,210,24)" rx="2" ry="2" /> +<text x="1342.60" y="367.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="173.9" y="629" width="0.6" height="15.0" fill="rgb(0,208,98)" rx="2" ry="2" /> +<text x="176.94" y="639.5" ></text> +</g> +<g > +<title>do_renameat2 (121,212,120 samples, 0.46%)</title><rect x="447.2" y="629" width="6.4" height="15.0" fill="rgb(0,227,89)" rx="2" ry="2" /> +<text x="450.19" y="639.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="209.5" y="661" width="0.5" height="15.0" fill="rgb(0,227,104)" rx="2" ry="2" /> +<text x="212.49" y="671.5" ></text> +</g> +<g > +<title>vfs_unlink (20,202,020 samples, 0.08%)</title><rect x="318.3" y="629" width="1.0" height="15.0" fill="rgb(0,228,169)" rx="2" ry="2" /> +<text x="321.26" y="639.5" ></text> +</g> +<g > +<title>__get_free_pages (10,101,010 samples, 0.04%)</title><rect x="527.3" y="645" width="0.5" height="15.0" fill="rgb(0,224,99)" rx="2" ry="2" /> +<text x="530.30" y="655.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.04%)</title><rect x="317.7" y="581" width="0.6" height="15.0" fill="rgb(0,228,103)" rx="2" ry="2" /> +<text x="320.73" y="591.5" ></text> +</g> +<g > +<title>sd_init_command (10,101,010 samples, 0.04%)</title><rect x="273.7" y="261" width="0.5" height="15.0" fill="rgb(0,202,103)" rx="2" ry="2" /> +<text x="276.69" y="271.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="428.1" y="533" width="0.5" height="15.0" fill="rgb(0,207,23)" rx="2" ry="2" /> +<text x="431.09" y="543.5" ></text> +</g> +<g > +<title>sbrk (10,101,010 samples, 0.04%)</title><rect x="930.0" y="741" width="0.5" height="15.0" fill="rgb(0,232,108)" rx="2" ry="2" /> +<text x="933.00" y="751.5" ></text> +</g> +<g > +<title>ip_send_check (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="69" width="0.5" height="15.0" fill="rgb(0,237,76)" rx="2" ry="2" /> +<text x="1342.07" y="79.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="313.5" y="597" width="0.5" height="15.0" fill="rgb(0,223,49)" rx="2" ry="2" /> +<text x="316.48" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="619.6" y="757" width="0.5" height="15.0" fill="rgb(0,209,67)" rx="2" ry="2" /> +<text x="622.62" y="767.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.04%)</title><rect x="149.0" y="629" width="0.5" height="15.0" fill="rgb(0,214,179)" rx="2" ry="2" /> +<text x="152.01" y="639.5" ></text> +</g> +<g > +<title>generic_file_read_iter (20,202,020 samples, 0.08%)</title><rect x="347.4" y="501" width="1.1" height="15.0" fill="rgb(0,190,77)" rx="2" ry="2" /> +<text x="350.44" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="194.6" y="597" width="0.6" height="15.0" fill="rgb(0,205,95)" rx="2" ry="2" /> +<text x="197.64" y="607.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.08%)</title><rect x="48.7" y="789" width="1.1" height="15.0" fill="rgb(0,227,205)" rx="2" ry="2" /> +<text x="51.73" y="799.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="597" width="0.5" height="15.0" fill="rgb(0,219,46)" rx="2" ry="2" /> +<text x="1389.82" y="607.5" ></text> +</g> +<g > +<title>net_rx_action (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="453" width="0.5" height="15.0" fill="rgb(0,217,137)" rx="2" ry="2" /> +<text x="1342.60" y="463.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.04%)</title><rect x="414.8" y="421" width="0.6" height="15.0" fill="rgb(0,236,39)" rx="2" ry="2" /> +<text x="417.82" y="431.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="367.1" y="661" width="0.5" height="15.0" fill="rgb(0,190,42)" rx="2" ry="2" /> +<text x="370.07" y="671.5" ></text> +</g> +<g > +<title>net_send_buf (60,606,060 samples, 0.23%)</title><rect x="1379.4" y="853" width="3.2" height="15.0" fill="rgb(0,228,146)" rx="2" ry="2" /> +<text x="1382.39" y="863.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="109.2" y="293" width="0.5" height="15.0" fill="rgb(0,217,205)" rx="2" ry="2" /> +<text x="112.22" y="303.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="453.0" y="533" width="0.6" height="15.0" fill="rgb(0,224,159)" rx="2" ry="2" /> +<text x="456.02" y="543.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="521.5" y="613" width="0.5" height="15.0" fill="rgb(0,221,207)" rx="2" ry="2" /> +<text x="524.46" y="623.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="492.3" y="645" width="0.5" height="15.0" fill="rgb(0,219,3)" rx="2" ry="2" /> +<text x="495.28" y="655.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="333.6" y="517" width="0.6" height="15.0" fill="rgb(0,225,197)" rx="2" ry="2" /> +<text x="336.64" y="527.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (60,606,060 samples, 0.23%)</title><rect x="371.3" y="597" width="3.2" height="15.0" fill="rgb(0,236,2)" rx="2" ry="2" /> +<text x="374.31" y="607.5" ></text> +</g> +<g > +<title>__add_to_page_cache_locked (10,101,010 samples, 0.04%)</title><rect x="339.0" y="453" width="0.5" height="15.0" fill="rgb(0,196,111)" rx="2" ry="2" /> +<text x="341.95" y="463.5" ></text> +</g> +<g > +<title>generic_write_end (10,101,010 samples, 0.04%)</title><rect x="391.5" y="453" width="0.5" height="15.0" fill="rgb(0,191,106)" rx="2" ry="2" /> +<text x="394.48" y="463.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.04%)</title><rect x="275.3" y="245" width="0.5" height="15.0" fill="rgb(0,208,178)" rx="2" ry="2" /> +<text x="278.28" y="255.5" ></text> +</g> +<g > +<title>anon_vma_fork (10,101,010 samples, 0.04%)</title><rect x="511.9" y="677" width="0.5" height="15.0" fill="rgb(0,219,175)" rx="2" ry="2" /> +<text x="514.91" y="687.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="581" width="0.6" height="15.0" fill="rgb(0,237,20)" rx="2" ry="2" /> +<text x="1388.22" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="277.9" y="677" width="1.1" height="15.0" fill="rgb(0,196,16)" rx="2" ry="2" /> +<text x="280.94" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.15%)</title><rect x="414.8" y="645" width="2.1" height="15.0" fill="rgb(0,232,188)" rx="2" ry="2" /> +<text x="417.82" y="655.5" ></text> +</g> +<g > +<title>cmd_dispatcher_handle_conn_internal (80,808,080 samples, 0.31%)</title><rect x="1374.6" y="853" width="4.3" height="15.0" fill="rgb(0,226,57)" rx="2" ry="2" /> +<text x="1377.61" y="863.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.04%)</title><rect x="354.3" y="421" width="0.6" height="15.0" fill="rgb(0,210,181)" rx="2" ry="2" /> +<text x="357.34" y="431.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="395.2" y="485" width="0.5" height="15.0" fill="rgb(0,204,195)" rx="2" ry="2" /> +<text x="398.19" y="495.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="366.0" y="661" width="0.5" height="15.0" fill="rgb(0,210,2)" rx="2" ry="2" /> +<text x="369.01" y="671.5" ></text> +</g> +<g > +<title>event_fd_create (10,101,010 samples, 0.04%)</title><rect x="44.5" y="805" width="0.5" height="15.0" fill="rgb(0,213,150)" rx="2" ry="2" /> +<text x="47.49" y="815.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="282.7" y="581" width="0.5" height="15.0" fill="rgb(0,206,206)" rx="2" ry="2" /> +<text x="285.71" y="591.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.04%)</title><rect x="97.5" y="437" width="0.6" height="15.0" fill="rgb(0,203,162)" rx="2" ry="2" /> +<text x="100.54" y="447.5" ></text> +</g> +<g > +<title>process_backlog (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="357" width="0.5" height="15.0" fill="rgb(0,202,144)" rx="2" ry="2" /> +<text x="1342.07" y="367.5" ></text> +</g> +<g > +<title>path_openat (40,404,040 samples, 0.15%)</title><rect x="408.5" y="645" width="2.1" height="15.0" fill="rgb(0,192,31)" rx="2" ry="2" /> +<text x="411.45" y="655.5" ></text> +</g> +<g > +<title>__srcu_read_lock (10,101,010 samples, 0.04%)</title><rect x="369.7" y="469" width="0.6" height="15.0" fill="rgb(0,205,149)" rx="2" ry="2" /> +<text x="372.72" y="479.5" ></text> +</g> +<g > +<title>pagevec_lookup_range (10,101,010 samples, 0.04%)</title><rect x="275.8" y="469" width="0.5" height="15.0" fill="rgb(0,235,34)" rx="2" ry="2" /> +<text x="278.81" y="479.5" ></text> +</g> +<g > +<title>call_filldir (20,202,020 samples, 0.08%)</title><rect x="119.8" y="581" width="1.1" height="15.0" fill="rgb(0,218,13)" rx="2" ry="2" /> +<text x="122.83" y="591.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.04%)</title><rect x="83.2" y="725" width="0.5" height="15.0" fill="rgb(0,211,5)" rx="2" ry="2" /> +<text x="86.22" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="307.6" y="549" width="0.6" height="15.0" fill="rgb(0,220,165)" rx="2" ry="2" /> +<text x="310.65" y="559.5" ></text> +</g> +<g > +<title>__pagevec_release (10,101,010 samples, 0.04%)</title><rect x="415.4" y="453" width="0.5" height="15.0" fill="rgb(0,203,163)" rx="2" ry="2" /> +<text x="418.35" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.04%)</title><rect x="391.5" y="581" width="0.5" height="15.0" fill="rgb(0,232,38)" rx="2" ry="2" /> +<text x="394.48" y="591.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.04%)</title><rect x="339.5" y="533" width="0.5" height="15.0" fill="rgb(0,229,23)" rx="2" ry="2" /> +<text x="342.48" y="543.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (20,202,020 samples, 0.08%)</title><rect x="259.4" y="693" width="1.0" height="15.0" fill="rgb(0,211,39)" rx="2" ry="2" /> +<text x="262.37" y="703.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.04%)</title><rect x="465.8" y="629" width="0.5" height="15.0" fill="rgb(0,215,143)" rx="2" ry="2" /> +<text x="468.76" y="639.5" ></text> +</g> +<g > +<title>tcp_v4_syn_recv_sock (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="261" width="0.5" height="15.0" fill="rgb(0,220,96)" rx="2" ry="2" /> +<text x="1388.76" y="271.5" ></text> +</g> +<g > +<title>tasklet_action (10,101,010 samples, 0.04%)</title><rect x="64.1" y="661" width="0.5" height="15.0" fill="rgb(0,202,83)" rx="2" ry="2" /> +<text x="67.12" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="194.6" y="613" width="1.1" height="15.0" fill="rgb(0,197,27)" rx="2" ry="2" /> +<text x="197.64" y="623.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.04%)</title><rect x="432.9" y="565" width="0.5" height="15.0" fill="rgb(0,227,148)" rx="2" ry="2" /> +<text x="435.86" y="575.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="329.4" y="485" width="0.5" height="15.0" fill="rgb(0,222,186)" rx="2" ry="2" /> +<text x="332.40" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="307.1" y="613" width="0.5" height="15.0" fill="rgb(0,190,49)" rx="2" ry="2" /> +<text x="310.12" y="623.5" ></text> +</g> +<g > +<title>json_send (8,131,313,050 samples, 30.95%)</title><rect x="941.7" y="869" width="427.1" height="15.0" fill="rgb(0,212,91)" rx="2" ry="2" /> +<text x="944.67" y="879.5" >json_send</text> +</g> +<g > +<title>__local_bh_enable_ip (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="501" width="0.5" height="15.0" fill="rgb(0,191,178)" rx="2" ry="2" /> +<text x="1388.76" y="511.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (20,202,020 samples, 0.08%)</title><rect x="898.7" y="837" width="1.1" height="15.0" fill="rgb(0,208,105)" rx="2" ry="2" /> +<text x="901.70" y="847.5" ></text> +</g> +<g > +<title>git_repository_config_snapshot (90,909,090 samples, 0.35%)</title><rect x="474.8" y="757" width="4.8" height="15.0" fill="rgb(0,190,101)" rx="2" ry="2" /> +<text x="477.78" y="767.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.04%)</title><rect x="325.2" y="453" width="0.5" height="15.0" fill="rgb(0,232,192)" rx="2" ry="2" /> +<text x="328.16" y="463.5" ></text> +</g> +<g > +<title>ip_finish_output (40,404,040 samples, 0.15%)</title><rect x="1364.5" y="533" width="2.2" height="15.0" fill="rgb(0,203,105)" rx="2" ry="2" /> +<text x="1367.53" y="543.5" ></text> +</g> +<g > +<title>close_fd (10,101,010 samples, 0.04%)</title><rect x="219.0" y="645" width="0.6" height="15.0" fill="rgb(0,218,157)" rx="2" ry="2" /> +<text x="222.04" y="655.5" ></text> +</g> +<g > +<title>add_to_page_cache_lru (10,101,010 samples, 0.04%)</title><rect x="325.7" y="469" width="0.5" height="15.0" fill="rgb(0,223,33)" rx="2" ry="2" /> +<text x="328.69" y="479.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="199.4" y="645" width="0.5" height="15.0" fill="rgb(0,191,173)" rx="2" ry="2" /> +<text x="202.41" y="655.5" ></text> +</g> +<g > +<title>io_schedule (20,202,020 samples, 0.08%)</title><rect x="435.0" y="405" width="1.0" height="15.0" fill="rgb(0,234,99)" rx="2" ry="2" /> +<text x="437.98" y="415.5" ></text> +</g> +<g > +<title>blk_finish_plug (20,202,020 samples, 0.08%)</title><rect x="436.0" y="469" width="1.1" height="15.0" fill="rgb(0,237,184)" rx="2" ry="2" /> +<text x="439.04" y="479.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.04%)</title><rect x="527.3" y="629" width="0.5" height="15.0" fill="rgb(0,207,196)" rx="2" ry="2" /> +<text x="530.30" y="639.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="294.4" y="693" width="0.5" height="15.0" fill="rgb(0,239,88)" rx="2" ry="2" /> +<text x="297.38" y="703.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="277" width="0.6" height="15.0" fill="rgb(0,221,137)" rx="2" ry="2" /> +<text x="1383.45" y="287.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="613" width="0.5" height="15.0" fill="rgb(0,234,69)" rx="2" ry="2" /> +<text x="1389.82" y="623.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.04%)</title><rect x="481.1" y="677" width="0.6" height="15.0" fill="rgb(0,202,167)" rx="2" ry="2" /> +<text x="484.14" y="687.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="241.3" y="629" width="0.6" height="15.0" fill="rgb(0,196,105)" rx="2" ry="2" /> +<text x="244.33" y="639.5" ></text> +</g> +<g > +<title>git_index_set_caps (20,202,020 samples, 0.08%)</title><rect x="220.6" y="789" width="1.1" height="15.0" fill="rgb(0,220,171)" rx="2" ry="2" /> +<text x="223.63" y="799.5" ></text> +</g> +<g > +<title>grab_cache_page_write_begin (10,101,010 samples, 0.04%)</title><rect x="339.0" y="501" width="0.5" height="15.0" fill="rgb(0,237,52)" rx="2" ry="2" /> +<text x="341.95" y="511.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="115.6" y="645" width="0.5" height="15.0" fill="rgb(0,211,184)" rx="2" ry="2" /> +<text x="118.58" y="655.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.04%)</title><rect x="303.4" y="629" width="0.5" height="15.0" fill="rgb(0,198,180)" rx="2" ry="2" /> +<text x="306.40" y="639.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="246.6" y="645" width="0.6" height="15.0" fill="rgb(0,211,138)" rx="2" ry="2" /> +<text x="249.63" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (40,404,040 samples, 0.15%)</title><rect x="146.9" y="645" width="2.1" height="15.0" fill="rgb(0,224,121)" rx="2" ry="2" /> +<text x="149.89" y="655.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="47.1" y="565" width="0.6" height="15.0" fill="rgb(0,198,146)" rx="2" ry="2" /> +<text x="50.14" y="575.5" ></text> +</g> +<g > +<title>tcp_send_ack (10,101,010 samples, 0.04%)</title><rect x="47.1" y="613" width="0.6" height="15.0" fill="rgb(0,225,38)" rx="2" ry="2" /> +<text x="50.14" y="623.5" ></text> +</g> +<g > +<title>ip_output (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="565" width="0.5" height="15.0" fill="rgb(0,193,157)" rx="2" ry="2" /> +<text x="1388.76" y="575.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="144.2" y="597" width="0.6" height="15.0" fill="rgb(0,201,62)" rx="2" ry="2" /> +<text x="147.23" y="607.5" ></text> +</g> +<g > +<title>do_anonymous_page (10,101,010 samples, 0.04%)</title><rect x="92.8" y="517" width="0.5" height="15.0" fill="rgb(0,203,186)" rx="2" ry="2" /> +<text x="95.77" y="527.5" ></text> +</g> +<g > +<title>__ext4_new_inode (121,212,120 samples, 0.46%)</title><rect x="65.7" y="773" width="6.4" height="15.0" fill="rgb(0,222,103)" rx="2" ry="2" /> +<text x="68.71" y="783.5" ></text> +</g> +<g > +<title>generic_set_encrypted_ci_d_ops (10,101,010 samples, 0.04%)</title><rect x="506.6" y="677" width="0.5" height="15.0" fill="rgb(0,228,86)" rx="2" ry="2" /> +<text x="509.61" y="687.5" ></text> +</g> +<g > +<title>ext4_free_inode (20,202,020 samples, 0.08%)</title><rect x="172.9" y="629" width="1.0" height="15.0" fill="rgb(0,213,18)" rx="2" ry="2" /> +<text x="175.88" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="116.6" y="645" width="0.6" height="15.0" fill="rgb(0,214,8)" rx="2" ry="2" /> +<text x="119.64" y="655.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="389" width="0.5" height="15.0" fill="rgb(0,227,148)" rx="2" ry="2" /> +<text x="1342.60" y="399.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.04%)</title><rect x="210.6" y="645" width="0.5" height="15.0" fill="rgb(0,202,173)" rx="2" ry="2" /> +<text x="213.55" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="396.3" y="645" width="1.0" height="15.0" fill="rgb(0,204,123)" rx="2" ry="2" /> +<text x="399.25" y="655.5" ></text> +</g> +<g > +<title>do_mkdirat (50,505,050 samples, 0.19%)</title><rect x="418.0" y="677" width="2.7" height="15.0" fill="rgb(0,214,173)" rx="2" ry="2" /> +<text x="421.00" y="687.5" ></text> +</g> +<g > +<title>tcp_connect (40,404,040 samples, 0.15%)</title><rect x="1386.8" y="725" width="2.1" height="15.0" fill="rgb(0,231,39)" rx="2" ry="2" /> +<text x="1389.82" y="735.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.04%)</title><rect x="440.8" y="613" width="0.5" height="15.0" fill="rgb(0,234,76)" rx="2" ry="2" /> +<text x="443.82" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="470.0" y="693" width="1.6" height="15.0" fill="rgb(0,238,7)" rx="2" ry="2" /> +<text x="473.00" y="703.5" ></text> +</g> +<g > +<title>_IO_fprintf (10,101,010 samples, 0.04%)</title><rect x="222.8" y="805" width="0.5" height="15.0" fill="rgb(0,236,71)" rx="2" ry="2" /> +<text x="225.76" y="815.5" ></text> +</g> +<g > +<title>mkdtemp (60,606,060 samples, 0.23%)</title><rect x="506.1" y="837" width="3.2" height="15.0" fill="rgb(0,222,200)" rx="2" ry="2" /> +<text x="509.08" y="847.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="494.9" y="597" width="0.6" height="15.0" fill="rgb(0,232,13)" rx="2" ry="2" /> +<text x="497.94" y="607.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="73.1" y="693" width="0.6" height="15.0" fill="rgb(0,206,3)" rx="2" ry="2" /> +<text x="76.14" y="703.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.04%)</title><rect x="47.1" y="517" width="0.6" height="15.0" fill="rgb(0,229,95)" rx="2" ry="2" /> +<text x="50.14" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="356.5" y="613" width="1.6" height="15.0" fill="rgb(0,217,185)" rx="2" ry="2" /> +<text x="359.46" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="190.4" y="645" width="0.5" height="15.0" fill="rgb(0,195,67)" rx="2" ry="2" /> +<text x="193.39" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_rename (111,111,110 samples, 0.42%)</title><rect x="328.9" y="661" width="5.8" height="15.0" fill="rgb(0,239,184)" rx="2" ry="2" /> +<text x="331.87" y="671.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="530.0" y="789" width="0.5" height="15.0" fill="rgb(0,238,36)" rx="2" ry="2" /> +<text x="532.95" y="799.5" ></text> +</g> +<g > +<title>d_lookup (10,101,010 samples, 0.04%)</title><rect x="203.1" y="613" width="0.6" height="15.0" fill="rgb(0,195,110)" rx="2" ry="2" /> +<text x="206.13" y="623.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.08%)</title><rect x="220.6" y="581" width="1.1" height="15.0" fill="rgb(0,221,170)" rx="2" ry="2" /> +<text x="223.63" y="591.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="201.5" y="741" width="1.1" height="15.0" fill="rgb(0,197,7)" rx="2" ry="2" /> +<text x="204.53" y="751.5" ></text> +</g> +<g > +<title>io_schedule (10,101,010 samples, 0.04%)</title><rect x="367.1" y="421" width="0.5" height="15.0" fill="rgb(0,195,85)" rx="2" ry="2" /> +<text x="370.07" y="431.5" ></text> +</g> +<g > +<title>unlink_cb (70,707,070 samples, 0.27%)</title><rect x="166.0" y="757" width="3.7" height="15.0" fill="rgb(0,194,95)" rx="2" ry="2" /> +<text x="168.99" y="767.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="597.3" y="693" width="0.6" height="15.0" fill="rgb(0,216,81)" rx="2" ry="2" /> +<text x="600.34" y="703.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="1369.8" y="245" width="0.6" height="15.0" fill="rgb(0,215,191)" rx="2" ry="2" /> +<text x="1372.84" y="255.5" ></text> +</g> +<g > +<title>_copy_to_user (10,101,010 samples, 0.04%)</title><rect x="189.9" y="549" width="0.5" height="15.0" fill="rgb(0,212,107)" rx="2" ry="2" /> +<text x="192.86" y="559.5" ></text> +</g> +<g > +<title>page_counter_uncharge (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="405" width="0.5" height="15.0" fill="rgb(0,223,70)" rx="2" ry="2" /> +<text x="1389.82" y="415.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="619.6" y="741" width="0.5" height="15.0" fill="rgb(0,231,186)" rx="2" ry="2" /> +<text x="622.62" y="751.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="588.3" y="613" width="0.5" height="15.0" fill="rgb(0,195,113)" rx="2" ry="2" /> +<text x="591.32" y="623.5" ></text> +</g> +<g > +<title>__find_get_block_slow (10,101,010 samples, 0.04%)</title><rect x="365.5" y="469" width="0.5" height="15.0" fill="rgb(0,198,174)" rx="2" ry="2" /> +<text x="368.48" y="479.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="275.3" y="357" width="0.5" height="15.0" fill="rgb(0,207,161)" rx="2" ry="2" /> +<text x="278.28" y="367.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="317.2" y="629" width="1.1" height="15.0" fill="rgb(0,227,89)" rx="2" ry="2" /> +<text x="320.20" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="288.5" y="693" width="0.6" height="15.0" fill="rgb(0,199,178)" rx="2" ry="2" /> +<text x="291.55" y="703.5" ></text> +</g> +<g > +<title>git_index_add (40,404,040 samples, 0.15%)</title><rect x="212.1" y="789" width="2.2" height="15.0" fill="rgb(0,203,145)" rx="2" ry="2" /> +<text x="215.15" y="799.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.04%)</title><rect x="463.1" y="533" width="0.5" height="15.0" fill="rgb(0,225,32)" rx="2" ry="2" /> +<text x="466.10" y="543.5" ></text> +</g> +<g > +<title>_IO_file_write (20,202,020 samples, 0.08%)</title><rect x="505.0" y="741" width="1.1" height="15.0" fill="rgb(0,195,101)" rx="2" ry="2" /> +<text x="508.02" y="751.5" ></text> +</g> +<g > +<title>vfs_mkdir (80,808,080 samples, 0.31%)</title><rect x="55.1" y="837" width="4.2" height="15.0" fill="rgb(0,214,92)" rx="2" ry="2" /> +<text x="58.10" y="847.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (131,313,130 samples, 0.50%)</title><rect x="497.6" y="709" width="6.9" height="15.0" fill="rgb(0,239,159)" rx="2" ry="2" /> +<text x="500.59" y="719.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.04%)</title><rect x="534.2" y="757" width="0.5" height="15.0" fill="rgb(0,236,155)" rx="2" ry="2" /> +<text x="537.20" y="767.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="366.0" y="741" width="0.5" height="15.0" fill="rgb(0,219,160)" rx="2" ry="2" /> +<text x="369.01" y="751.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="298.1" y="597" width="1.1" height="15.0" fill="rgb(0,228,45)" rx="2" ry="2" /> +<text x="301.10" y="607.5" ></text> +</g> +<g > +<title>wake_up_bit (10,101,010 samples, 0.04%)</title><rect x="91.2" y="533" width="0.5" height="15.0" fill="rgb(0,228,94)" rx="2" ry="2" /> +<text x="94.18" y="543.5" ></text> +</g> +<g > +<title>iput (40,404,040 samples, 0.15%)</title><rect x="96.5" y="549" width="2.1" height="15.0" fill="rgb(0,214,198)" rx="2" ry="2" /> +<text x="99.48" y="559.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="469.5" y="613" width="0.5" height="15.0" fill="rgb(0,223,144)" rx="2" ry="2" /> +<text x="472.47" y="623.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.08%)</title><rect x="287.0" y="453" width="1.0" height="15.0" fill="rgb(0,200,164)" rx="2" ry="2" /> +<text x="289.96" y="463.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.04%)</title><rect x="241.9" y="629" width="0.5" height="15.0" fill="rgb(0,227,59)" rx="2" ry="2" /> +<text x="244.86" y="639.5" ></text> +</g> +<g > +<title>event_loop_run (90,909,090 samples, 0.35%)</title><rect x="1374.6" y="885" width="4.8" height="15.0" fill="rgb(0,222,113)" rx="2" ry="2" /> +<text x="1377.61" y="895.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.04%)</title><rect x="352.7" y="453" width="0.6" height="15.0" fill="rgb(0,201,64)" rx="2" ry="2" /> +<text x="355.75" y="463.5" ></text> +</g> +<g > +<title>fsnotify_destroy_marks (10,101,010 samples, 0.04%)</title><rect x="369.7" y="501" width="0.6" height="15.0" fill="rgb(0,212,167)" rx="2" ry="2" /> +<text x="372.72" y="511.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="167.0" y="517" width="0.6" height="15.0" fill="rgb(0,205,47)" rx="2" ry="2" /> +<text x="170.05" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="401.6" y="661" width="1.5" height="15.0" fill="rgb(0,199,73)" rx="2" ry="2" /> +<text x="404.56" y="671.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="220.1" y="597" width="0.5" height="15.0" fill="rgb(0,195,131)" rx="2" ry="2" /> +<text x="223.10" y="607.5" ></text> +</g> +<g > +<title>evict (70,707,070 samples, 0.27%)</title><rect x="157.5" y="597" width="3.7" height="15.0" fill="rgb(0,190,209)" rx="2" ry="2" /> +<text x="160.50" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="361.2" y="629" width="2.2" height="15.0" fill="rgb(0,190,116)" rx="2" ry="2" /> +<text x="364.23" y="639.5" ></text> +</g> +<g > +<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.04%)</title><rect x="277.4" y="565" width="0.5" height="15.0" fill="rgb(0,203,183)" rx="2" ry="2" /> +<text x="280.40" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="368.7" y="693" width="0.5" height="15.0" fill="rgb(0,220,58)" rx="2" ry="2" /> +<text x="371.66" y="703.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (90,909,090 samples, 0.35%)</title><rect x="136.3" y="501" width="4.7" height="15.0" fill="rgb(0,193,86)" rx="2" ry="2" /> +<text x="139.27" y="511.5" ></text> +</g> +<g > +<title>events_to_string (10,101,010 samples, 0.04%)</title><rect x="42.9" y="869" width="0.5" height="15.0" fill="rgb(0,223,73)" rx="2" ry="2" /> +<text x="45.90" y="879.5" ></text> +</g> +<g > +<title>ip_local_out (70,707,070 samples, 0.27%)</title><rect x="10.5" y="597" width="3.7" height="15.0" fill="rgb(0,208,140)" rx="2" ry="2" /> +<text x="13.53" y="607.5" ></text> +</g> +<g > +<title>unlink (20,202,020 samples, 0.08%)</title><rect x="143.2" y="677" width="1.0" height="15.0" fill="rgb(0,234,37)" rx="2" ry="2" /> +<text x="146.17" y="687.5" ></text> +</g> +<g > +<title>ext4_get_group_no_and_offset (10,101,010 samples, 0.04%)</title><rect x="235.0" y="469" width="0.5" height="15.0" fill="rgb(0,218,36)" rx="2" ry="2" /> +<text x="237.96" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="264.1" y="629" width="1.1" height="15.0" fill="rgb(0,218,149)" rx="2" ry="2" /> +<text x="267.14" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="339.5" y="629" width="0.5" height="15.0" fill="rgb(0,212,149)" rx="2" ry="2" /> +<text x="342.48" y="639.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.04%)</title><rect x="284.3" y="453" width="0.5" height="15.0" fill="rgb(0,190,23)" rx="2" ry="2" /> +<text x="287.30" y="463.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.04%)</title><rect x="305.0" y="469" width="0.5" height="15.0" fill="rgb(0,225,41)" rx="2" ry="2" /> +<text x="307.99" y="479.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.04%)</title><rect x="154.8" y="613" width="0.6" height="15.0" fill="rgb(0,211,167)" rx="2" ry="2" /> +<text x="157.84" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_read (999,999,990 samples, 3.81%)</title><rect x="538.4" y="757" width="52.6" height="15.0" fill="rgb(0,197,18)" rx="2" ry="2" /> +<text x="541.44" y="767.5" >__x64..</text> +</g> +<g > +<title>tcp_ack (10,101,010 samples, 0.04%)</title><rect x="39.2" y="149" width="0.5" height="15.0" fill="rgb(0,201,18)" rx="2" ry="2" /> +<text x="42.18" y="159.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="297.0" y="645" width="3.2" height="15.0" fill="rgb(0,206,64)" rx="2" ry="2" /> +<text x="300.04" y="655.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="99.7" y="565" width="0.5" height="15.0" fill="rgb(0,192,33)" rx="2" ry="2" /> +<text x="102.67" y="575.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.04%)</title><rect x="285.4" y="565" width="0.5" height="15.0" fill="rgb(0,207,95)" rx="2" ry="2" /> +<text x="288.36" y="575.5" ></text> +</g> +<g > +<title>pipe_write (10,101,010 samples, 0.04%)</title><rect x="1383.1" y="677" width="0.5" height="15.0" fill="rgb(0,200,93)" rx="2" ry="2" /> +<text x="1386.10" y="687.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="211.1" y="741" width="0.5" height="15.0" fill="rgb(0,207,18)" rx="2" ry="2" /> +<text x="214.08" y="751.5" ></text> +</g> +<g > +<title>get_obj_cgroup_from_current (10,101,010 samples, 0.04%)</title><rect x="47.7" y="629" width="0.5" height="15.0" fill="rgb(0,191,162)" rx="2" ry="2" /> +<text x="50.67" y="639.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.04%)</title><rect x="430.2" y="597" width="0.5" height="15.0" fill="rgb(0,238,168)" rx="2" ry="2" /> +<text x="433.21" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="93.8" y="645" width="1.6" height="15.0" fill="rgb(0,197,185)" rx="2" ry="2" /> +<text x="96.83" y="655.5" ></text> +</g> +<g > +<title>security_file_permission (20,202,020 samples, 0.08%)</title><rect x="589.9" y="693" width="1.1" height="15.0" fill="rgb(0,202,59)" rx="2" ry="2" /> +<text x="592.91" y="703.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="172.4" y="613" width="0.5" height="15.0" fill="rgb(0,203,151)" rx="2" ry="2" /> +<text x="175.35" y="623.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.04%)</title><rect x="499.7" y="517" width="0.5" height="15.0" fill="rgb(0,223,194)" rx="2" ry="2" /> +<text x="502.71" y="527.5" ></text> +</g> +<g > +<title>ext4_map_blocks (111,111,110 samples, 0.42%)</title><rect x="459.9" y="581" width="5.9" height="15.0" fill="rgb(0,204,96)" rx="2" ry="2" /> +<text x="462.92" y="591.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="446.1" y="629" width="0.6" height="15.0" fill="rgb(0,220,107)" rx="2" ry="2" /> +<text x="449.12" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="125.1" y="565" width="1.1" height="15.0" fill="rgb(0,192,132)" rx="2" ry="2" /> +<text x="128.13" y="575.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="294.9" y="597" width="0.5" height="15.0" fill="rgb(0,221,203)" rx="2" ry="2" /> +<text x="297.91" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="348.5" y="629" width="1.1" height="15.0" fill="rgb(0,203,151)" rx="2" ry="2" /> +<text x="351.50" y="639.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.12%)</title><rect x="543.7" y="677" width="1.6" height="15.0" fill="rgb(0,195,177)" rx="2" ry="2" /> +<text x="546.75" y="687.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="257.8" y="597" width="0.5" height="15.0" fill="rgb(0,228,155)" rx="2" ry="2" /> +<text x="260.77" y="607.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="471.1" y="677" width="0.5" height="15.0" fill="rgb(0,203,27)" rx="2" ry="2" /> +<text x="474.06" y="687.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="238.7" y="629" width="0.5" height="15.0" fill="rgb(0,212,167)" rx="2" ry="2" /> +<text x="241.67" y="639.5" ></text> +</g> +<g > +<title>new_sync_read (10,101,010 samples, 0.04%)</title><rect x="76.3" y="837" width="0.6" height="15.0" fill="rgb(0,195,35)" rx="2" ry="2" /> +<text x="79.32" y="847.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (70,707,070 samples, 0.27%)</title><rect x="387.8" y="517" width="3.7" height="15.0" fill="rgb(0,215,88)" rx="2" ry="2" /> +<text x="390.76" y="527.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.04%)</title><rect x="48.2" y="645" width="0.5" height="15.0" fill="rgb(0,217,76)" rx="2" ry="2" /> +<text x="51.20" y="655.5" ></text> +</g> +<g > +<title>anon_vma_interval_tree_insert (20,202,020 samples, 0.08%)</title><rect x="513.5" y="629" width="1.1" height="15.0" fill="rgb(0,229,71)" rx="2" ry="2" /> +<text x="516.51" y="639.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (10,101,010 samples, 0.04%)</title><rect x="334.2" y="549" width="0.5" height="15.0" fill="rgb(0,239,6)" rx="2" ry="2" /> +<text x="337.18" y="559.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="455.7" y="629" width="0.5" height="15.0" fill="rgb(0,224,121)" rx="2" ry="2" /> +<text x="458.67" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="475.3" y="677" width="0.5" height="15.0" fill="rgb(0,211,27)" rx="2" ry="2" /> +<text x="478.31" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (111,111,110 samples, 0.42%)</title><rect x="248.2" y="677" width="5.9" height="15.0" fill="rgb(0,216,33)" rx="2" ry="2" /> +<text x="251.22" y="687.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="385.6" y="437" width="0.6" height="15.0" fill="rgb(0,229,144)" rx="2" ry="2" /> +<text x="388.64" y="447.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="163.3" y="629" width="0.6" height="15.0" fill="rgb(0,231,164)" rx="2" ry="2" /> +<text x="166.33" y="639.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (20,202,020 samples, 0.08%)</title><rect x="329.9" y="501" width="1.1" height="15.0" fill="rgb(0,229,171)" rx="2" ry="2" /> +<text x="332.93" y="511.5" ></text> +</g> +<g > +<title>unlink (20,202,020 samples, 0.08%)</title><rect x="318.3" y="709" width="1.0" height="15.0" fill="rgb(0,203,172)" rx="2" ry="2" /> +<text x="321.26" y="719.5" ></text> +</g> +<g > +<title>do_wp_page (10,101,010 samples, 0.04%)</title><rect x="596.8" y="661" width="0.5" height="15.0" fill="rgb(0,222,99)" rx="2" ry="2" /> +<text x="599.81" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (424,242,420 samples, 1.61%)</title><rect x="54.6" y="949" width="22.3" height="15.0" fill="rgb(0,219,132)" rx="2" ry="2" /> +<text x="57.57" y="959.5" >[..</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (171,717,170 samples, 0.65%)</title><rect x="301.3" y="709" width="9.0" height="15.0" fill="rgb(0,218,150)" rx="2" ry="2" /> +<text x="304.28" y="719.5" ></text> +</g> +<g > +<title>unmap_region (131,313,130 samples, 0.50%)</title><rect x="934.8" y="661" width="6.9" height="15.0" fill="rgb(0,200,127)" rx="2" ry="2" /> +<text x="937.78" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="432.3" y="581" width="0.6" height="15.0" fill="rgb(0,230,32)" rx="2" ry="2" /> +<text x="435.33" y="591.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.04%)</title><rect x="307.1" y="405" width="0.5" height="15.0" fill="rgb(0,197,173)" rx="2" ry="2" /> +<text x="310.12" y="415.5" ></text> +</g> +<g > +<title>server_main_thread (161,616,160 samples, 0.62%)</title><rect x="10.0" y="949" width="8.5" height="15.0" fill="rgb(0,193,72)" rx="2" ry="2" /> +<text x="13.00" y="959.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.15%)</title><rect x="32.3" y="789" width="2.1" height="15.0" fill="rgb(0,219,141)" rx="2" ry="2" /> +<text x="35.28" y="799.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.08%)</title><rect x="439.8" y="597" width="1.0" height="15.0" fill="rgb(0,200,147)" rx="2" ry="2" /> +<text x="442.76" y="607.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="325" width="1.6" height="15.0" fill="rgb(0,192,100)" rx="2" ry="2" /> +<text x="1371.78" y="335.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.04%)</title><rect x="186.1" y="565" width="0.6" height="15.0" fill="rgb(0,211,27)" rx="2" ry="2" /> +<text x="189.15" y="575.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.04%)</title><rect x="306.1" y="533" width="0.5" height="15.0" fill="rgb(0,225,198)" rx="2" ry="2" /> +<text x="309.06" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="394.7" y="629" width="1.0" height="15.0" fill="rgb(0,236,172)" rx="2" ry="2" /> +<text x="397.66" y="639.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (20,202,020 samples, 0.08%)</title><rect x="392.5" y="485" width="1.1" height="15.0" fill="rgb(0,197,69)" rx="2" ry="2" /> +<text x="395.54" y="495.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.04%)</title><rect x="419.1" y="421" width="0.5" height="15.0" fill="rgb(0,210,0)" rx="2" ry="2" /> +<text x="422.07" y="431.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="273.2" y="549" width="0.5" height="15.0" fill="rgb(0,191,160)" rx="2" ry="2" /> +<text x="276.16" y="559.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="128.3" y="501" width="0.5" height="15.0" fill="rgb(0,202,177)" rx="2" ry="2" /> +<text x="131.32" y="511.5" ></text> +</g> +<g > +<title>wp_page_reuse (20,202,020 samples, 0.08%)</title><rect x="616.4" y="725" width="1.1" height="15.0" fill="rgb(0,200,158)" rx="2" ry="2" /> +<text x="619.44" y="735.5" ></text> +</g> +<g > +<title>submit_bio_checks (10,101,010 samples, 0.04%)</title><rect x="450.9" y="421" width="0.5" height="15.0" fill="rgb(0,214,20)" rx="2" ry="2" /> +<text x="453.90" y="431.5" ></text> +</g> +<g > +<title>git_reference_name_to_id (20,202,020 samples, 0.08%)</title><rect x="287.0" y="677" width="1.0" height="15.0" fill="rgb(0,205,54)" rx="2" ry="2" /> +<text x="289.96" y="687.5" ></text> +</g> +<g > +<title>rcu_read_unlock_strict (10,101,010 samples, 0.04%)</title><rect x="465.2" y="501" width="0.6" height="15.0" fill="rgb(0,205,13)" rx="2" ry="2" /> +<text x="468.22" y="511.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="134.2" y="501" width="0.5" height="15.0" fill="rgb(0,198,144)" rx="2" ry="2" /> +<text x="137.15" y="511.5" ></text> +</g> +<g > +<title>filldir64 (20,202,020 samples, 0.08%)</title><rect x="119.8" y="565" width="1.1" height="15.0" fill="rgb(0,210,70)" rx="2" ry="2" /> +<text x="122.83" y="575.5" ></text> +</g> +<g > +<title>ext4_evict_inode (10,101,010 samples, 0.04%)</title><rect x="105.0" y="549" width="0.5" height="15.0" fill="rgb(0,234,72)" rx="2" ry="2" /> +<text x="107.97" y="559.5" ></text> +</g> +<g > +<title>alloc_file_pseudo (10,101,010 samples, 0.04%)</title><rect x="1373.6" y="773" width="0.5" height="15.0" fill="rgb(0,237,66)" rx="2" ry="2" /> +<text x="1376.55" y="783.5" ></text> +</g> +<g > +<title>alloc_inode (30,303,030 samples, 0.12%)</title><rect x="70.5" y="741" width="1.6" height="15.0" fill="rgb(0,199,4)" rx="2" ry="2" /> +<text x="73.48" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.31%)</title><rect x="25.4" y="853" width="4.2" height="15.0" fill="rgb(0,226,28)" rx="2" ry="2" /> +<text x="28.39" y="863.5" ></text> +</g> +<g > +<title>fdopendir (20,202,020 samples, 0.08%)</title><rect x="87.5" y="645" width="1.0" height="15.0" fill="rgb(0,235,143)" rx="2" ry="2" /> +<text x="90.46" y="655.5" ></text> +</g> +<g > +<title>inflateInit2_ (10,101,010 samples, 0.04%)</title><rect x="213.2" y="645" width="0.5" height="15.0" fill="rgb(0,204,69)" rx="2" ry="2" /> +<text x="216.21" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="487.5" y="645" width="0.5" height="15.0" fill="rgb(0,206,176)" rx="2" ry="2" /> +<text x="490.51" y="655.5" ></text> +</g> +<g > +<title>__find_get_block_slow (10,101,010 samples, 0.04%)</title><rect x="233.4" y="485" width="0.5" height="15.0" fill="rgb(0,221,78)" rx="2" ry="2" /> +<text x="236.37" y="495.5" ></text> +</g> +<g > +<title>inflate (20,202,020 samples, 0.08%)</title><rect x="277.9" y="661" width="1.1" height="15.0" fill="rgb(0,203,193)" rx="2" ry="2" /> +<text x="280.94" y="671.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="412.2" y="677" width="0.5" height="15.0" fill="rgb(0,203,184)" rx="2" ry="2" /> +<text x="415.17" y="687.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="267.3" y="629" width="1.1" height="15.0" fill="rgb(0,191,189)" rx="2" ry="2" /> +<text x="270.32" y="639.5" ></text> +</g> +<g > +<title>lh_table_free (10,101,010 samples, 0.04%)</title><rect x="10.0" y="885" width="0.5" height="15.0" fill="rgb(0,199,12)" rx="2" ry="2" /> +<text x="13.00" y="895.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.08%)</title><rect x="300.2" y="709" width="1.1" height="15.0" fill="rgb(0,225,198)" rx="2" ry="2" /> +<text x="303.22" y="719.5" ></text> +</g> +<g > +<title>jbd2_journal_get_create_access (10,101,010 samples, 0.04%)</title><rect x="388.3" y="437" width="0.5" height="15.0" fill="rgb(0,238,207)" rx="2" ry="2" /> +<text x="391.29" y="447.5" ></text> +</g> +<g > +<title>shrink_dcache_parent (20,202,020 samples, 0.08%)</title><rect x="141.6" y="581" width="1.0" height="15.0" fill="rgb(0,190,167)" rx="2" ry="2" /> +<text x="144.58" y="591.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.08%)</title><rect x="407.4" y="709" width="1.1" height="15.0" fill="rgb(0,223,161)" rx="2" ry="2" /> +<text x="410.39" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.04%)</title><rect x="445.6" y="661" width="0.5" height="15.0" fill="rgb(0,205,57)" rx="2" ry="2" /> +<text x="448.59" y="671.5" ></text> +</g> +<g > +<title>filemap_flush (10,101,010 samples, 0.04%)</title><rect x="334.2" y="565" width="0.5" height="15.0" fill="rgb(0,210,206)" rx="2" ry="2" /> +<text x="337.18" y="575.5" ></text> +</g> +<g > +<title>ip_local_out (50,505,050 samples, 0.19%)</title><rect x="1364.0" y="565" width="2.7" height="15.0" fill="rgb(0,217,183)" rx="2" ry="2" /> +<text x="1367.00" y="575.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="521.5" y="597" width="0.5" height="15.0" fill="rgb(0,195,208)" rx="2" ry="2" /> +<text x="524.46" y="607.5" ></text> +</g> +<g > +<title>handle_pte_fault (101,010,100 samples, 0.38%)</title><rect x="892.9" y="757" width="5.3" height="15.0" fill="rgb(0,223,159)" rx="2" ry="2" /> +<text x="895.86" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="307.6" y="645" width="1.6" height="15.0" fill="rgb(0,203,42)" rx="2" ry="2" /> +<text x="310.65" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.31%)</title><rect x="323.6" y="709" width="4.2" height="15.0" fill="rgb(0,235,65)" rx="2" ry="2" /> +<text x="326.56" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="194.1" y="725" width="3.7" height="15.0" fill="rgb(0,230,172)" rx="2" ry="2" /> +<text x="197.11" y="735.5" ></text> +</g> +<g > +<title>__handle_mm_fault (50,505,050 samples, 0.19%)</title><rect x="567.1" y="597" width="2.6" height="15.0" fill="rgb(0,233,13)" rx="2" ry="2" /> +<text x="570.09" y="607.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.08%)</title><rect x="454.6" y="629" width="1.1" height="15.0" fill="rgb(0,211,118)" rx="2" ry="2" /> +<text x="457.61" y="639.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="408.5" y="533" width="0.5" height="15.0" fill="rgb(0,215,19)" rx="2" ry="2" /> +<text x="411.45" y="543.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="150.1" y="629" width="0.5" height="15.0" fill="rgb(0,194,96)" rx="2" ry="2" /> +<text x="153.07" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (252,525,250 samples, 0.96%)</title><rect x="604.8" y="853" width="13.2" height="15.0" fill="rgb(0,238,101)" rx="2" ry="2" /> +<text x="607.76" y="863.5" ></text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="533" width="0.6" height="15.0" fill="rgb(0,218,98)" rx="2" ry="2" /> +<text x="1388.22" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (60,606,060 samples, 0.23%)</title><rect x="95.4" y="597" width="3.2" height="15.0" fill="rgb(0,235,172)" rx="2" ry="2" /> +<text x="98.42" y="607.5" ></text> +</g> +<g > +<title>ip_local_out (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="581" width="1.6" height="15.0" fill="rgb(0,237,140)" rx="2" ry="2" /> +<text x="1370.19" y="591.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="241.3" y="597" width="0.6" height="15.0" fill="rgb(0,190,140)" rx="2" ry="2" /> +<text x="244.33" y="607.5" ></text> +</g> +<g > +<title>git_config_add_backend (10,101,010 samples, 0.04%)</title><rect x="346.4" y="741" width="0.5" height="15.0" fill="rgb(0,212,80)" rx="2" ry="2" /> +<text x="349.38" y="751.5" ></text> +</g> +<g > +<title>errseq_sample (10,101,010 samples, 0.04%)</title><rect x="100.2" y="565" width="0.5" height="15.0" fill="rgb(0,191,201)" rx="2" ry="2" /> +<text x="103.20" y="575.5" ></text> +</g> +<g > +<title>remove (60,606,060 samples, 0.23%)</title><rect x="95.4" y="661" width="3.2" height="15.0" fill="rgb(0,200,36)" rx="2" ry="2" /> +<text x="98.42" y="671.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="281.1" y="549" width="0.5" height="15.0" fill="rgb(0,219,117)" rx="2" ry="2" /> +<text x="284.12" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="325.2" y="645" width="1.0" height="15.0" fill="rgb(0,211,24)" rx="2" ry="2" /> +<text x="328.16" y="655.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted.part.0 (10,101,010 samples, 0.04%)</title><rect x="58.3" y="597" width="0.5" height="15.0" fill="rgb(0,229,193)" rx="2" ry="2" /> +<text x="61.28" y="607.5" ></text> +</g> +<g > +<title>filemap_flush (60,606,060 samples, 0.23%)</title><rect x="371.3" y="581" width="3.2" height="15.0" fill="rgb(0,207,195)" rx="2" ry="2" /> +<text x="374.31" y="591.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="238.7" y="645" width="0.5" height="15.0" fill="rgb(0,193,166)" rx="2" ry="2" /> +<text x="241.67" y="655.5" ></text> +</g> +<g > +<title>git_repository_open_ext (282,828,280 samples, 1.08%)</title><rect x="490.2" y="805" width="14.8" height="15.0" fill="rgb(0,193,178)" rx="2" ry="2" /> +<text x="493.16" y="815.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.08%)</title><rect x="144.2" y="677" width="1.1" height="15.0" fill="rgb(0,208,95)" rx="2" ry="2" /> +<text x="147.23" y="687.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.08%)</title><rect x="52.4" y="725" width="1.1" height="15.0" fill="rgb(0,196,81)" rx="2" ry="2" /> +<text x="55.45" y="735.5" ></text> +</g> +<g > +<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="899.2" y="789" width="0.6" height="15.0" fill="rgb(0,213,58)" rx="2" ry="2" /> +<text x="902.23" y="799.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.08%)</title><rect x="283.8" y="645" width="1.0" height="15.0" fill="rgb(0,204,24)" rx="2" ry="2" /> +<text x="286.77" y="655.5" ></text> +</g> +<g > +<title>pthread_getspecific (10,101,010 samples, 0.04%)</title><rect x="276.3" y="741" width="0.6" height="15.0" fill="rgb(0,238,82)" rx="2" ry="2" /> +<text x="279.34" y="751.5" ></text> +</g> +<g > +<title>ip_route_output_flow (10,101,010 samples, 0.04%)</title><rect x="1370.4" y="725" width="0.5" height="15.0" fill="rgb(0,211,165)" rx="2" ry="2" /> +<text x="1373.37" y="735.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="125.7" y="533" width="0.5" height="15.0" fill="rgb(0,193,48)" rx="2" ry="2" /> +<text x="128.66" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="149.0" y="725" width="0.5" height="15.0" fill="rgb(0,197,102)" rx="2" ry="2" /> +<text x="152.01" y="735.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.08%)</title><rect x="161.7" y="597" width="1.1" height="15.0" fill="rgb(0,216,133)" rx="2" ry="2" /> +<text x="164.74" y="607.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="342.1" y="437" width="0.6" height="15.0" fill="rgb(0,229,172)" rx="2" ry="2" /> +<text x="345.13" y="447.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="294.4" y="629" width="0.5" height="15.0" fill="rgb(0,220,60)" rx="2" ry="2" /> +<text x="297.38" y="639.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.04%)</title><rect x="415.4" y="469" width="0.5" height="15.0" fill="rgb(0,201,100)" rx="2" ry="2" /> +<text x="418.35" y="479.5" ></text> +</g> +<g > +<title>block_invalidatepage (10,101,010 samples, 0.04%)</title><rect x="105.0" y="469" width="0.5" height="15.0" fill="rgb(0,209,30)" rx="2" ry="2" /> +<text x="107.97" y="479.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.08%)</title><rect x="287.0" y="485" width="1.0" height="15.0" fill="rgb(0,191,31)" rx="2" ry="2" /> +<text x="289.96" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="189.9" y="725" width="1.0" height="15.0" fill="rgb(0,222,156)" rx="2" ry="2" /> +<text x="192.86" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="346.4" y="725" width="0.5" height="15.0" fill="rgb(0,201,85)" rx="2" ry="2" /> +<text x="349.38" y="735.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.04%)</title><rect x="342.1" y="469" width="0.6" height="15.0" fill="rgb(0,191,45)" rx="2" ry="2" /> +<text x="345.13" y="479.5" ></text> +</g> +<g > +<title>blk_finish_plug (10,101,010 samples, 0.04%)</title><rect x="343.7" y="501" width="0.6" height="15.0" fill="rgb(0,224,33)" rx="2" ry="2" /> +<text x="346.73" y="511.5" ></text> +</g> +<g > +<title>memccpy (10,101,010 samples, 0.04%)</title><rect x="42.9" y="821" width="0.5" height="15.0" fill="rgb(0,217,177)" rx="2" ry="2" /> +<text x="45.90" y="831.5" ></text> +</g> +<g > +<title>_IO_default_xsputn (20,202,020 samples, 0.08%)</title><rect x="295.4" y="597" width="1.1" height="15.0" fill="rgb(0,198,32)" rx="2" ry="2" /> +<text x="298.44" y="607.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="213" width="0.6" height="15.0" fill="rgb(0,226,59)" rx="2" ry="2" /> +<text x="1383.45" y="223.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="530.5" y="805" width="0.5" height="15.0" fill="rgb(0,216,73)" rx="2" ry="2" /> +<text x="533.48" y="815.5" ></text> +</g> +<g > +<title>__x64_sys_fcntl (10,101,010 samples, 0.04%)</title><rect x="115.1" y="661" width="0.5" height="15.0" fill="rgb(0,215,130)" rx="2" ry="2" /> +<text x="118.05" y="671.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="79.5" y="773" width="0.5" height="15.0" fill="rgb(0,236,25)" rx="2" ry="2" /> +<text x="82.50" y="783.5" ></text> +</g> +<g > +<title>open_last_lookups (10,101,010 samples, 0.04%)</title><rect x="163.9" y="677" width="0.5" height="15.0" fill="rgb(0,235,163)" rx="2" ry="2" /> +<text x="166.86" y="687.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.04%)</title><rect x="888.1" y="741" width="0.5" height="15.0" fill="rgb(0,199,63)" rx="2" ry="2" /> +<text x="891.09" y="751.5" ></text> +</g> +<g > +<title>__ext4_unlink (20,202,020 samples, 0.08%)</title><rect x="168.6" y="613" width="1.1" height="15.0" fill="rgb(0,214,115)" rx="2" ry="2" /> +<text x="171.64" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="157.0" y="565" width="0.5" height="15.0" fill="rgb(0,199,146)" rx="2" ry="2" /> +<text x="159.97" y="575.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="373" width="0.6" height="15.0" fill="rgb(0,226,41)" rx="2" ry="2" /> +<text x="1383.45" y="383.5" ></text> +</g> +<g > +<title>ip_output (40,404,040 samples, 0.15%)</title><rect x="1364.5" y="549" width="2.2" height="15.0" fill="rgb(0,203,97)" rx="2" ry="2" /> +<text x="1367.53" y="559.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.04%)</title><rect x="344.8" y="565" width="0.5" height="15.0" fill="rgb(0,201,126)" rx="2" ry="2" /> +<text x="347.79" y="575.5" ></text> +</g> +<g > +<title>anon_vma_interval_tree_remove (10,101,010 samples, 0.04%)</title><rect x="619.6" y="645" width="0.5" height="15.0" fill="rgb(0,238,75)" rx="2" ry="2" /> +<text x="622.62" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="291.7" y="677" width="0.6" height="15.0" fill="rgb(0,222,172)" rx="2" ry="2" /> +<text x="294.73" y="687.5" ></text> +</g> +<g > +<title>unlink (40,404,040 samples, 0.15%)</title><rect x="146.9" y="693" width="2.1" height="15.0" fill="rgb(0,209,89)" rx="2" ry="2" /> +<text x="149.89" y="703.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (20,202,020 samples, 0.08%)</title><rect x="451.4" y="437" width="1.1" height="15.0" fill="rgb(0,200,78)" rx="2" ry="2" /> +<text x="454.43" y="447.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="84.3" y="693" width="0.5" height="15.0" fill="rgb(0,232,178)" rx="2" ry="2" /> +<text x="87.28" y="703.5" ></text> +</g> +<g > +<title>__find_get_block (20,202,020 samples, 0.08%)</title><rect x="138.9" y="389" width="1.1" height="15.0" fill="rgb(0,232,116)" rx="2" ry="2" /> +<text x="141.93" y="399.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (30,303,030 samples, 0.12%)</title><rect x="434.5" y="469" width="1.5" height="15.0" fill="rgb(0,210,185)" rx="2" ry="2" /> +<text x="437.45" y="479.5" ></text> +</g> +<g > +<title>jsonrpc_notification_create (10,101,010 samples, 0.04%)</title><rect x="899.8" y="869" width="0.5" height="15.0" fill="rgb(0,234,68)" rx="2" ry="2" /> +<text x="902.76" y="879.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="216.4" y="693" width="0.5" height="15.0" fill="rgb(0,216,8)" rx="2" ry="2" /> +<text x="219.39" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (70,707,070 samples, 0.27%)</title><rect x="239.7" y="677" width="3.7" height="15.0" fill="rgb(0,239,146)" rx="2" ry="2" /> +<text x="242.73" y="687.5" ></text> +</g> +<g > +<title>difftime (10,101,010 samples, 0.04%)</title><rect x="190.9" y="757" width="0.6" height="15.0" fill="rgb(0,200,27)" rx="2" ry="2" /> +<text x="193.92" y="767.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="444.5" y="581" width="0.6" height="15.0" fill="rgb(0,239,80)" rx="2" ry="2" /> +<text x="447.53" y="591.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.04%)</title><rect x="241.3" y="549" width="0.6" height="15.0" fill="rgb(0,202,63)" rx="2" ry="2" /> +<text x="244.33" y="559.5" ></text> +</g> +<g > +<title>copy_page_from_iter (10,101,010 samples, 0.04%)</title><rect x="14.8" y="709" width="0.5" height="15.0" fill="rgb(0,208,162)" rx="2" ry="2" /> +<text x="17.78" y="719.5" ></text> +</g> +<g > +<title>prepare_creds (10,101,010 samples, 0.04%)</title><rect x="279.0" y="629" width="0.5" height="15.0" fill="rgb(0,239,124)" rx="2" ry="2" /> +<text x="282.00" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1304.0" y="757" width="0.6" height="15.0" fill="rgb(0,214,29)" rx="2" ry="2" /> +<text x="1307.05" y="767.5" ></text> +</g> +<g > +<title>dev_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1381.0" y="469" width="0.5" height="15.0" fill="rgb(0,239,99)" rx="2" ry="2" /> +<text x="1383.98" y="479.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.04%)</title><rect x="111.9" y="645" width="0.5" height="15.0" fill="rgb(0,193,55)" rx="2" ry="2" /> +<text x="114.87" y="655.5" ></text> +</g> +<g > +<title>ext4_writepages (10,101,010 samples, 0.04%)</title><rect x="415.9" y="485" width="0.5" height="15.0" fill="rgb(0,230,136)" rx="2" ry="2" /> +<text x="418.88" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="503.4" y="645" width="0.6" height="15.0" fill="rgb(0,203,48)" rx="2" ry="2" /> +<text x="506.43" y="655.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="597.3" y="757" width="0.6" height="15.0" fill="rgb(0,223,200)" rx="2" ry="2" /> +<text x="600.34" y="767.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (575,757,570 samples, 2.19%)</title><rect x="900.3" y="821" width="30.2" height="15.0" fill="rgb(0,205,8)" rx="2" ry="2" /> +<text x="903.29" y="831.5" >[l..</text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (20,202,020 samples, 0.08%)</title><rect x="898.7" y="821" width="1.1" height="15.0" fill="rgb(0,197,182)" rx="2" ry="2" /> +<text x="901.70" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="379.3" y="693" width="1.0" height="15.0" fill="rgb(0,225,57)" rx="2" ry="2" /> +<text x="382.27" y="703.5" ></text> +</g> +<g > +<title>git_remote_update_tips (666,666,660 samples, 2.54%)</title><rect x="368.7" y="789" width="35.0" height="15.0" fill="rgb(0,201,117)" rx="2" ry="2" /> +<text x="371.66" y="799.5" >gi..</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (292,929,290 samples, 1.11%)</title><rect x="438.7" y="725" width="15.4" height="15.0" fill="rgb(0,213,50)" rx="2" ry="2" /> +<text x="441.70" y="735.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="126.7" y="533" width="0.6" height="15.0" fill="rgb(0,195,52)" rx="2" ry="2" /> +<text x="129.72" y="543.5" ></text> +</g> +<g > +<title>ext4_lookup (30,303,030 samples, 0.12%)</title><rect x="428.6" y="581" width="1.6" height="15.0" fill="rgb(0,233,155)" rx="2" ry="2" /> +<text x="431.62" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="266.3" y="661" width="0.5" height="15.0" fill="rgb(0,223,128)" rx="2" ry="2" /> +<text x="269.26" y="671.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.04%)</title><rect x="244.0" y="661" width="0.5" height="15.0" fill="rgb(0,215,119)" rx="2" ry="2" /> +<text x="246.98" y="671.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (20,202,020 samples, 0.08%)</title><rect x="373.4" y="517" width="1.1" height="15.0" fill="rgb(0,212,9)" rx="2" ry="2" /> +<text x="376.44" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (101,010,100 samples, 0.38%)</title><rect x="54.6" y="885" width="5.3" height="15.0" fill="rgb(0,231,178)" rx="2" ry="2" /> +<text x="57.57" y="895.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="339.5" y="645" width="0.5" height="15.0" fill="rgb(0,225,61)" rx="2" ry="2" /> +<text x="342.48" y="655.5" ></text> +</g> +<g > +<title>inflateInit2_ (10,101,010 samples, 0.04%)</title><rect x="188.8" y="677" width="0.5" height="15.0" fill="rgb(0,191,17)" rx="2" ry="2" /> +<text x="191.80" y="687.5" ></text> +</g> +<g > +<title>git_reference_create (151,515,150 samples, 0.58%)</title><rect x="183.5" y="821" width="8.0" height="15.0" fill="rgb(0,203,154)" rx="2" ry="2" /> +<text x="186.49" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (565,656,560 samples, 2.15%)</title><rect x="224.3" y="741" width="29.8" height="15.0" fill="rgb(0,238,90)" rx="2" ry="2" /> +<text x="227.35" y="751.5" >[l..</text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.27%)</title><rect x="98.6" y="693" width="3.7" height="15.0" fill="rgb(0,205,136)" rx="2" ry="2" /> +<text x="101.60" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="320.9" y="597" width="0.5" height="15.0" fill="rgb(0,193,111)" rx="2" ry="2" /> +<text x="323.91" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (30,303,030 samples, 0.12%)</title><rect x="16.9" y="885" width="1.6" height="15.0" fill="rgb(0,206,22)" rx="2" ry="2" /> +<text x="19.90" y="895.5" ></text> +</g> +<g > +<title>[libc.so.6] (131,313,130 samples, 0.50%)</title><rect x="934.8" y="805" width="6.9" height="15.0" fill="rgb(0,231,188)" rx="2" ry="2" /> +<text x="937.78" y="815.5" ></text> +</g> +<g > +<title>git_config_get_string (10,101,010 samples, 0.04%)</title><rect x="311.9" y="693" width="0.5" height="15.0" fill="rgb(0,202,198)" rx="2" ry="2" /> +<text x="314.89" y="703.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="134.7" y="517" width="0.5" height="15.0" fill="rgb(0,234,129)" rx="2" ry="2" /> +<text x="137.68" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.04%)</title><rect x="279.0" y="661" width="0.5" height="15.0" fill="rgb(0,237,191)" rx="2" ry="2" /> +<text x="282.00" y="671.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="437" width="0.5" height="15.0" fill="rgb(0,238,110)" rx="2" ry="2" /> +<text x="1342.07" y="447.5" ></text> +</g> +<g > +<title>xas_load (10,101,010 samples, 0.04%)</title><rect x="233.4" y="453" width="0.5" height="15.0" fill="rgb(0,215,18)" rx="2" ry="2" /> +<text x="236.37" y="463.5" ></text> +</g> +<g > +<title>__ext4_unlink (10,101,010 samples, 0.04%)</title><rect x="216.9" y="645" width="0.6" height="15.0" fill="rgb(0,220,15)" rx="2" ry="2" /> +<text x="219.92" y="655.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.04%)</title><rect x="84.8" y="709" width="0.5" height="15.0" fill="rgb(0,236,140)" rx="2" ry="2" /> +<text x="87.81" y="719.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="135.2" y="485" width="0.5" height="15.0" fill="rgb(0,218,186)" rx="2" ry="2" /> +<text x="138.21" y="495.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="339.5" y="581" width="0.5" height="15.0" fill="rgb(0,204,39)" rx="2" ry="2" /> +<text x="342.48" y="591.5" ></text> +</g> +<g > +<title>__sys_sendto (50,505,050 samples, 0.19%)</title><rect x="1379.4" y="741" width="2.6" height="15.0" fill="rgb(0,217,148)" rx="2" ry="2" /> +<text x="1382.39" y="751.5" ></text> +</g> +<g > +<title>git_remote_create_with_opts (444,444,440 samples, 1.69%)</title><rect x="323.6" y="789" width="23.3" height="15.0" fill="rgb(0,191,125)" rx="2" ry="2" /> +<text x="326.56" y="799.5" >g..</text> +</g> +<g > +<title>git_reference_create_matching (444,444,440 samples, 1.69%)</title><rect x="380.3" y="741" width="23.4" height="15.0" fill="rgb(0,206,85)" rx="2" ry="2" /> +<text x="383.33" y="751.5" >g..</text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="87.5" y="613" width="0.5" height="15.0" fill="rgb(0,214,136)" rx="2" ry="2" /> +<text x="90.46" y="623.5" ></text> +</g> +<g > +<title>rcu_read_unlock_strict (10,101,010 samples, 0.04%)</title><rect x="350.1" y="437" width="0.5" height="15.0" fill="rgb(0,206,90)" rx="2" ry="2" /> +<text x="353.09" y="447.5" ></text> +</g> +<g > +<title>do_open (40,404,040 samples, 0.15%)</title><rect x="63.1" y="821" width="2.1" height="15.0" fill="rgb(0,235,27)" rx="2" ry="2" /> +<text x="66.06" y="831.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="34.9" y="597" width="0.6" height="15.0" fill="rgb(0,231,101)" rx="2" ry="2" /> +<text x="37.94" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="470.0" y="613" width="0.5" height="15.0" fill="rgb(0,213,26)" rx="2" ry="2" /> +<text x="473.00" y="623.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.04%)</title><rect x="127.8" y="517" width="0.5" height="15.0" fill="rgb(0,203,154)" rx="2" ry="2" /> +<text x="130.79" y="527.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="447.7" y="453" width="0.5" height="15.0" fill="rgb(0,231,160)" rx="2" ry="2" /> +<text x="450.72" y="463.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (20,202,020 samples, 0.08%)</title><rect x="159.6" y="517" width="1.1" height="15.0" fill="rgb(0,220,158)" rx="2" ry="2" /> +<text x="162.62" y="527.5" ></text> +</g> +<g > +<title>block_invalidatepage (10,101,010 samples, 0.04%)</title><rect x="168.1" y="533" width="0.5" height="15.0" fill="rgb(0,230,144)" rx="2" ry="2" /> +<text x="171.11" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (303,030,300 samples, 1.15%)</title><rect x="60.4" y="917" width="15.9" height="15.0" fill="rgb(0,215,129)" rx="2" ry="2" /> +<text x="63.40" y="927.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (20,202,020 samples, 0.08%)</title><rect x="353.8" y="565" width="1.1" height="15.0" fill="rgb(0,202,93)" rx="2" ry="2" /> +<text x="356.81" y="575.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="346.4" y="645" width="0.5" height="15.0" fill="rgb(0,193,79)" rx="2" ry="2" /> +<text x="349.38" y="655.5" ></text> +</g> +<g > +<title>fdopendir (40,404,040 samples, 0.15%)</title><rect x="149.5" y="741" width="2.2" height="15.0" fill="rgb(0,206,75)" rx="2" ry="2" /> +<text x="152.54" y="751.5" ></text> +</g> +<g > +<title>fsnotify_grab_connector (10,101,010 samples, 0.04%)</title><rect x="369.7" y="485" width="0.6" height="15.0" fill="rgb(0,222,8)" rx="2" ry="2" /> +<text x="372.72" y="495.5" ></text> +</g> +<g > +<title>__es_insert_extent (10,101,010 samples, 0.04%)</title><rect x="388.8" y="421" width="0.6" height="15.0" fill="rgb(0,201,194)" rx="2" ry="2" /> +<text x="391.82" y="431.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.04%)</title><rect x="146.9" y="549" width="0.5" height="15.0" fill="rgb(0,191,148)" rx="2" ry="2" /> +<text x="149.89" y="559.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (30,303,030 samples, 0.12%)</title><rect x="425.4" y="581" width="1.6" height="15.0" fill="rgb(0,220,87)" rx="2" ry="2" /> +<text x="428.43" y="591.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.04%)</title><rect x="124.6" y="565" width="0.5" height="15.0" fill="rgb(0,227,185)" rx="2" ry="2" /> +<text x="127.60" y="575.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.04%)</title><rect x="233.4" y="469" width="0.5" height="15.0" fill="rgb(0,220,206)" rx="2" ry="2" /> +<text x="236.37" y="479.5" ></text> +</g> +<g > +<title>handle_mm_fault (111,111,110 samples, 0.42%)</title><rect x="892.3" y="789" width="5.9" height="15.0" fill="rgb(0,239,202)" rx="2" ry="2" /> +<text x="895.33" y="799.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.04%)</title><rect x="285.9" y="501" width="0.5" height="15.0" fill="rgb(0,222,79)" rx="2" ry="2" /> +<text x="288.89" y="511.5" ></text> +</g> +<g > +<title>mpage_prepare_extent_to_map (10,101,010 samples, 0.04%)</title><rect x="415.9" y="469" width="0.5" height="15.0" fill="rgb(0,237,12)" rx="2" ry="2" /> +<text x="418.88" y="479.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.04%)</title><rect x="92.8" y="565" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="95.77" y="575.5" ></text> +</g> +<g > +<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.04%)</title><rect x="419.1" y="485" width="0.5" height="15.0" fill="rgb(0,206,94)" rx="2" ry="2" /> +<text x="422.07" y="495.5" ></text> +</g> +<g > +<title>__netif_receive_skb_core.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="11.6" y="389" width="0.5" height="15.0" fill="rgb(0,230,149)" rx="2" ry="2" /> +<text x="14.59" y="399.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.19%)</title><rect x="418.0" y="709" width="2.7" height="15.0" fill="rgb(0,225,133)" rx="2" ry="2" /> +<text x="421.00" y="719.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="462.0" y="533" width="1.1" height="15.0" fill="rgb(0,210,159)" rx="2" ry="2" /> +<text x="465.04" y="543.5" ></text> +</g> +<g > +<title>ext4_es_insert_extent (10,101,010 samples, 0.04%)</title><rect x="303.9" y="389" width="0.6" height="15.0" fill="rgb(0,195,60)" rx="2" ry="2" /> +<text x="306.93" y="399.5" ></text> +</g> +<g > +<title>_IO_fprintf (20,202,020 samples, 0.08%)</title><rect x="505.0" y="789" width="1.1" height="15.0" fill="rgb(0,194,52)" rx="2" ry="2" /> +<text x="508.02" y="799.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.04%)</title><rect x="164.9" y="645" width="0.6" height="15.0" fill="rgb(0,214,94)" rx="2" ry="2" /> +<text x="167.93" y="655.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_node (10,101,010 samples, 0.04%)</title><rect x="12.7" y="213" width="0.5" height="15.0" fill="rgb(0,237,95)" rx="2" ry="2" /> +<text x="15.65" y="223.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="133" width="0.6" height="15.0" fill="rgb(0,217,65)" rx="2" ry="2" /> +<text x="1383.45" y="143.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="503.4" y="581" width="0.6" height="15.0" fill="rgb(0,197,129)" rx="2" ry="2" /> +<text x="506.43" y="591.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="127.3" y="533" width="0.5" height="15.0" fill="rgb(0,197,125)" rx="2" ry="2" /> +<text x="130.25" y="543.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="116.6" y="597" width="0.6" height="15.0" fill="rgb(0,196,44)" rx="2" ry="2" /> +<text x="119.64" y="607.5" ></text> +</g> +<g > +<title>sock_alloc_file (10,101,010 samples, 0.04%)</title><rect x="48.2" y="709" width="0.5" height="15.0" fill="rgb(0,195,110)" rx="2" ry="2" /> +<text x="51.20" y="719.5" ></text> +</g> +<g > +<title>__release_sock (10,101,010 samples, 0.04%)</title><rect x="47.1" y="677" width="0.6" height="15.0" fill="rgb(0,233,18)" rx="2" ry="2" /> +<text x="50.14" y="687.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.04%)</title><rect x="166.5" y="597" width="0.5" height="15.0" fill="rgb(0,216,74)" rx="2" ry="2" /> +<text x="169.52" y="607.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.04%)</title><rect x="1364.0" y="533" width="0.5" height="15.0" fill="rgb(0,221,146)" rx="2" ry="2" /> +<text x="1367.00" y="543.5" ></text> +</g> +<g > +<title>generic_perform_write (20,202,020 samples, 0.08%)</title><rect x="407.4" y="565" width="1.1" height="15.0" fill="rgb(0,223,48)" rx="2" ry="2" /> +<text x="410.39" y="575.5" ></text> +</g> +<g > +<title>__page_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="440.3" y="453" width="0.5" height="15.0" fill="rgb(0,234,4)" rx="2" ry="2" /> +<text x="443.29" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (60,606,060 samples, 0.23%)</title><rect x="89.6" y="581" width="3.2" height="15.0" fill="rgb(0,218,131)" rx="2" ry="2" /> +<text x="92.58" y="591.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (40,404,040 samples, 0.15%)</title><rect x="1383.6" y="789" width="2.2" height="15.0" fill="rgb(0,190,69)" rx="2" ry="2" /> +<text x="1386.63" y="799.5" ></text> +</g> +<g > +<title>do_sys_openat2 (40,404,040 samples, 0.15%)</title><rect x="408.5" y="677" width="2.1" height="15.0" fill="rgb(0,218,89)" rx="2" ry="2" /> +<text x="411.45" y="687.5" ></text> +</g> +<g > +<title>inode_permission (20,202,020 samples, 0.08%)</title><rect x="382.5" y="469" width="1.0" height="15.0" fill="rgb(0,214,197)" rx="2" ry="2" /> +<text x="385.46" y="479.5" ></text> +</g> +<g > +<title>sysvec_reschedule_ipi (10,101,010 samples, 0.04%)</title><rect x="1376.7" y="741" width="0.6" height="15.0" fill="rgb(0,233,129)" rx="2" ry="2" /> +<text x="1379.74" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.15%)</title><rect x="408.5" y="725" width="2.1" height="15.0" fill="rgb(0,238,101)" rx="2" ry="2" /> +<text x="411.45" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.23%)</title><rect x="506.1" y="789" width="3.2" height="15.0" fill="rgb(0,216,174)" rx="2" ry="2" /> +<text x="509.08" y="799.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.12%)</title><rect x="150.1" y="661" width="1.6" height="15.0" fill="rgb(0,196,71)" rx="2" ry="2" /> +<text x="153.07" y="671.5" ></text> +</g> +<g > +<title>try_charge_memcg (10,101,010 samples, 0.04%)</title><rect x="520.9" y="517" width="0.6" height="15.0" fill="rgb(0,234,168)" rx="2" ry="2" /> +<text x="523.93" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="396.3" y="661" width="1.0" height="15.0" fill="rgb(0,239,202)" rx="2" ry="2" /> +<text x="399.25" y="671.5" ></text> +</g> +<g > +<title>hook_file_open (10,101,010 samples, 0.04%)</title><rect x="350.6" y="437" width="0.6" height="15.0" fill="rgb(0,221,147)" rx="2" ry="2" /> +<text x="353.62" y="447.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.04%)</title><rect x="285.4" y="533" width="0.5" height="15.0" fill="rgb(0,231,153)" rx="2" ry="2" /> +<text x="288.36" y="543.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.08%)</title><rect x="382.5" y="485" width="1.0" height="15.0" fill="rgb(0,205,167)" rx="2" ry="2" /> +<text x="385.46" y="495.5" ></text> +</g> +<g > +<title>tcp_rcv_synsent_state_process (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="677" width="1.6" height="15.0" fill="rgb(0,207,62)" rx="2" ry="2" /> +<text x="1371.78" y="687.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="305.0" y="405" width="0.5" height="15.0" fill="rgb(0,208,180)" rx="2" ry="2" /> +<text x="307.99" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="477.4" y="645" width="2.2" height="15.0" fill="rgb(0,195,136)" rx="2" ry="2" /> +<text x="480.43" y="655.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.04%)</title><rect x="527.3" y="613" width="0.5" height="15.0" fill="rgb(0,198,69)" rx="2" ry="2" /> +<text x="530.30" y="623.5" ></text> +</g> +<g > +<title>git_reference__alloc (10,101,010 samples, 0.04%)</title><rect x="308.2" y="581" width="0.5" height="15.0" fill="rgb(0,192,110)" rx="2" ry="2" /> +<text x="311.18" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="294.9" y="645" width="0.5" height="15.0" fill="rgb(0,196,71)" rx="2" ry="2" /> +<text x="297.91" y="655.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.08%)</title><rect x="505.0" y="725" width="1.1" height="15.0" fill="rgb(0,207,78)" rx="2" ry="2" /> +<text x="508.02" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="397.8" y="693" width="3.2" height="15.0" fill="rgb(0,205,178)" rx="2" ry="2" /> +<text x="400.84" y="703.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="83.2" y="741" width="0.5" height="15.0" fill="rgb(0,238,91)" rx="2" ry="2" /> +<text x="86.22" y="751.5" ></text> +</g> +<g > +<title>__legitimize_mnt (10,101,010 samples, 0.04%)</title><rect x="146.9" y="533" width="0.5" height="15.0" fill="rgb(0,191,152)" rx="2" ry="2" /> +<text x="149.89" y="543.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="201.0" y="629" width="0.5" height="15.0" fill="rgb(0,210,143)" rx="2" ry="2" /> +<text x="204.00" y="639.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="1299.3" y="725" width="0.5" height="15.0" fill="rgb(0,216,26)" rx="2" ry="2" /> +<text x="1302.27" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.46%)</title><rect x="497.6" y="693" width="6.4" height="15.0" fill="rgb(0,226,89)" rx="2" ry="2" /> +<text x="500.59" y="703.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="549" width="0.5" height="15.0" fill="rgb(0,220,168)" rx="2" ry="2" /> +<text x="1389.82" y="559.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.04%)</title><rect x="413.8" y="501" width="0.5" height="15.0" fill="rgb(0,207,140)" rx="2" ry="2" /> +<text x="416.76" y="511.5" ></text> +</g> +<g > +<title>realpath (30,303,030 samples, 0.12%)</title><rect x="466.8" y="757" width="1.6" height="15.0" fill="rgb(0,211,55)" rx="2" ry="2" /> +<text x="469.82" y="767.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (60,606,060 samples, 0.23%)</title><rect x="1364.0" y="645" width="3.2" height="15.0" fill="rgb(0,222,78)" rx="2" ry="2" /> +<text x="1367.00" y="655.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.08%)</title><rect x="164.9" y="677" width="1.1" height="15.0" fill="rgb(0,202,21)" rx="2" ry="2" /> +<text x="167.93" y="687.5" ></text> +</g> +<g > +<title>__open64 (50,505,050 samples, 0.19%)</title><rect x="376.6" y="757" width="2.7" height="15.0" fill="rgb(0,211,20)" rx="2" ry="2" /> +<text x="379.62" y="767.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="135.2" y="501" width="0.5" height="15.0" fill="rgb(0,215,10)" rx="2" ry="2" /> +<text x="138.21" y="511.5" ></text> +</g> +<g > +<title>sd_init_command (10,101,010 samples, 0.04%)</title><rect x="334.2" y="293" width="0.5" height="15.0" fill="rgb(0,206,163)" rx="2" ry="2" /> +<text x="337.18" y="303.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="395.7" y="645" width="0.6" height="15.0" fill="rgb(0,213,12)" rx="2" ry="2" /> +<text x="398.72" y="655.5" ></text> +</g> +<g > +<title>tcp_sendmsg (575,757,570 samples, 2.19%)</title><rect x="1338.5" y="693" width="30.3" height="15.0" fill="rgb(0,219,126)" rx="2" ry="2" /> +<text x="1341.54" y="703.5" >tc..</text> +</g> +<g > +<title>call_rcu (10,101,010 samples, 0.04%)</title><rect x="149.0" y="597" width="0.5" height="15.0" fill="rgb(0,209,187)" rx="2" ry="2" /> +<text x="152.01" y="607.5" ></text> +</g> +<g > +<title>delayed_put_task_struct (10,101,010 samples, 0.04%)</title><rect x="281.6" y="421" width="0.6" height="15.0" fill="rgb(0,212,158)" rx="2" ry="2" /> +<text x="284.65" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="218.0" y="773" width="2.6" height="15.0" fill="rgb(0,229,52)" rx="2" ry="2" /> +<text x="220.98" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="220.6" y="773" width="1.1" height="15.0" fill="rgb(0,198,144)" rx="2" ry="2" /> +<text x="223.63" y="783.5" ></text> +</g> +<g > +<title>tcp_write_xmit (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="581" width="0.5" height="15.0" fill="rgb(0,222,73)" rx="2" ry="2" /> +<text x="1342.07" y="591.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (20,202,020 samples, 0.08%)</title><rect x="353.8" y="517" width="1.1" height="15.0" fill="rgb(0,238,6)" rx="2" ry="2" /> +<text x="356.81" y="527.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="367.6" y="725" width="0.5" height="15.0" fill="rgb(0,215,170)" rx="2" ry="2" /> +<text x="370.60" y="735.5" ></text> +</g> +<g > +<title>ext4_lookup.part.0 (10,101,010 samples, 0.04%)</title><rect x="506.1" y="677" width="0.5" height="15.0" fill="rgb(0,195,84)" rx="2" ry="2" /> +<text x="509.08" y="687.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="466.3" y="677" width="0.5" height="15.0" fill="rgb(0,211,177)" rx="2" ry="2" /> +<text x="469.29" y="687.5" ></text> +</g> +<g > +<title>git_signature_now (10,101,010 samples, 0.04%)</title><rect x="190.9" y="773" width="0.6" height="15.0" fill="rgb(0,198,166)" rx="2" ry="2" /> +<text x="193.92" y="783.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="197" width="0.5" height="15.0" fill="rgb(0,236,139)" rx="2" ry="2" /> +<text x="1370.19" y="207.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="97.0" y="437" width="0.5" height="15.0" fill="rgb(0,198,197)" rx="2" ry="2" /> +<text x="100.01" y="447.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.08%)</title><rect x="407.4" y="661" width="1.1" height="15.0" fill="rgb(0,195,25)" rx="2" ry="2" /> +<text x="410.39" y="671.5" ></text> +</g> +<g > +<title>nft_nat_do_chain (10,101,010 samples, 0.04%)</title><rect x="1372.0" y="581" width="0.5" height="15.0" fill="rgb(0,222,64)" rx="2" ry="2" /> +<text x="1374.96" y="591.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (20,202,020 samples, 0.08%)</title><rect x="436.0" y="309" width="1.1" height="15.0" fill="rgb(0,216,6)" rx="2" ry="2" /> +<text x="439.04" y="319.5" ></text> +</g> +<g > +<title>tcp_sendmsg (50,505,050 samples, 0.19%)</title><rect x="1379.4" y="693" width="2.6" height="15.0" fill="rgb(0,203,72)" rx="2" ry="2" /> +<text x="1382.39" y="703.5" ></text> +</g> +<g > +<title>__ext4_check_dir_entry (10,101,010 samples, 0.04%)</title><rect x="315.6" y="613" width="0.5" height="15.0" fill="rgb(0,198,44)" rx="2" ry="2" /> +<text x="318.61" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="395.7" y="549" width="0.6" height="15.0" fill="rgb(0,219,80)" rx="2" ry="2" /> +<text x="398.72" y="559.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="888.1" y="805" width="0.5" height="15.0" fill="rgb(0,235,186)" rx="2" ry="2" /> +<text x="891.09" y="815.5" ></text> +</g> +<g > +<title>tcp_send_mss (10,101,010 samples, 0.04%)</title><rect x="1381.5" y="661" width="0.5" height="15.0" fill="rgb(0,236,160)" rx="2" ry="2" /> +<text x="1384.51" y="671.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="431.8" y="677" width="0.5" height="15.0" fill="rgb(0,193,54)" rx="2" ry="2" /> +<text x="434.80" y="687.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="462.6" y="405" width="0.5" height="15.0" fill="rgb(0,201,52)" rx="2" ry="2" /> +<text x="465.57" y="415.5" ></text> +</g> +<g > +<title>tcp_write_xmit (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="597" width="0.6" height="15.0" fill="rgb(0,192,39)" rx="2" ry="2" /> +<text x="1388.22" y="607.5" ></text> +</g> +<g > +<title>do_sys_openat2 (50,505,050 samples, 0.19%)</title><rect x="376.6" y="693" width="2.7" height="15.0" fill="rgb(0,206,75)" rx="2" ry="2" /> +<text x="379.62" y="703.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="494.9" y="645" width="0.6" height="15.0" fill="rgb(0,210,186)" rx="2" ry="2" /> +<text x="497.94" y="655.5" ></text> +</g> +<g > +<title>rmdir (10,101,010 samples, 0.04%)</title><rect x="88.5" y="613" width="0.6" height="15.0" fill="rgb(0,200,154)" rx="2" ry="2" /> +<text x="91.52" y="623.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.04%)</title><rect x="440.3" y="517" width="0.5" height="15.0" fill="rgb(0,225,33)" rx="2" ry="2" /> +<text x="443.29" y="527.5" ></text> +</g> +<g > +<title>__strdup (10,101,010 samples, 0.04%)</title><rect x="265.7" y="645" width="0.6" height="15.0" fill="rgb(0,238,99)" rx="2" ry="2" /> +<text x="268.73" y="655.5" ></text> +</g> +<g > +<title>blk_mq_do_dispatch_sched (10,101,010 samples, 0.04%)</title><rect x="187.7" y="389" width="0.6" height="15.0" fill="rgb(0,190,5)" rx="2" ry="2" /> +<text x="190.74" y="399.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (121,212,120 samples, 0.46%)</title><rect x="103.4" y="613" width="6.3" height="15.0" fill="rgb(0,207,84)" rx="2" ry="2" /> +<text x="106.38" y="623.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.04%)</title><rect x="285.4" y="501" width="0.5" height="15.0" fill="rgb(0,208,140)" rx="2" ry="2" /> +<text x="288.36" y="511.5" ></text> +</g> +<g > +<title>ip_finish_output (10,101,010 samples, 0.04%)</title><rect x="1387.3" y="629" width="0.6" height="15.0" fill="rgb(0,221,117)" rx="2" ry="2" /> +<text x="1390.35" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (60,606,060 samples, 0.23%)</title><rect x="506.1" y="821" width="3.2" height="15.0" fill="rgb(0,224,83)" rx="2" ry="2" /> +<text x="509.08" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="316.1" y="709" width="2.2" height="15.0" fill="rgb(0,232,125)" rx="2" ry="2" /> +<text x="319.14" y="719.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="116.6" y="549" width="0.6" height="15.0" fill="rgb(0,212,75)" rx="2" ry="2" /> +<text x="119.64" y="559.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="353.3" y="469" width="0.5" height="15.0" fill="rgb(0,194,20)" rx="2" ry="2" /> +<text x="356.28" y="479.5" ></text> +</g> +<g > +<title>__ext4_unlink (40,404,040 samples, 0.15%)</title><rect x="174.5" y="645" width="2.1" height="15.0" fill="rgb(0,221,17)" rx="2" ry="2" /> +<text x="177.48" y="655.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="58.3" y="629" width="0.5" height="15.0" fill="rgb(0,229,168)" rx="2" ry="2" /> +<text x="61.28" y="639.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.04%)</title><rect x="121.4" y="453" width="0.5" height="15.0" fill="rgb(0,201,32)" rx="2" ry="2" /> +<text x="124.42" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="403.1" y="677" width="0.6" height="15.0" fill="rgb(0,209,94)" rx="2" ry="2" /> +<text x="406.15" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="502.4" y="661" width="1.0" height="15.0" fill="rgb(0,219,20)" rx="2" ry="2" /> +<text x="505.36" y="671.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="302.9" y="485" width="0.5" height="15.0" fill="rgb(0,220,141)" rx="2" ry="2" /> +<text x="305.87" y="495.5" ></text> +</g> +<g > +<title>__put_page (10,101,010 samples, 0.04%)</title><rect x="545.9" y="661" width="0.5" height="15.0" fill="rgb(0,212,50)" rx="2" ry="2" /> +<text x="548.87" y="671.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="265.2" y="629" width="0.5" height="15.0" fill="rgb(0,226,109)" rx="2" ry="2" /> +<text x="268.20" y="639.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="195.2" y="597" width="0.5" height="15.0" fill="rgb(0,199,128)" rx="2" ry="2" /> +<text x="198.17" y="607.5" ></text> +</g> +<g > +<title>xattr_resolve_name (20,202,020 samples, 0.08%)</title><rect x="423.8" y="533" width="1.1" height="15.0" fill="rgb(0,194,192)" rx="2" ry="2" /> +<text x="426.84" y="543.5" ></text> +</g> +<g > +<title>free_rb_tree_fname (10,101,010 samples, 0.04%)</title><rect x="244.0" y="565" width="0.5" height="15.0" fill="rgb(0,237,73)" rx="2" ry="2" /> +<text x="246.98" y="575.5" ></text> +</g> +<g > +<title>loopback_xmit (10,101,010 samples, 0.04%)</title><rect x="1381.0" y="405" width="0.5" height="15.0" fill="rgb(0,233,177)" rx="2" ry="2" /> +<text x="1383.98" y="415.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.04%)</title><rect x="387.2" y="485" width="0.6" height="15.0" fill="rgb(0,234,37)" rx="2" ry="2" /> +<text x="390.23" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="116.6" y="677" width="0.6" height="15.0" fill="rgb(0,229,7)" rx="2" ry="2" /> +<text x="119.64" y="687.5" ></text> +</g> +<g > +<title>ext4_superblock_csum_set (10,101,010 samples, 0.04%)</title><rect x="437.6" y="533" width="0.6" height="15.0" fill="rgb(0,231,108)" rx="2" ry="2" /> +<text x="440.64" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (30,303,030 samples, 0.12%)</title><rect x="351.2" y="549" width="1.5" height="15.0" fill="rgb(0,232,141)" rx="2" ry="2" /> +<text x="354.15" y="559.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="395.7" y="437" width="0.6" height="15.0" fill="rgb(0,211,54)" rx="2" ry="2" /> +<text x="398.72" y="447.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.12%)</title><rect x="145.3" y="725" width="1.6" height="15.0" fill="rgb(0,237,121)" rx="2" ry="2" /> +<text x="148.29" y="735.5" ></text> +</g> +<g > +<title>vfs_link (10,101,010 samples, 0.04%)</title><rect x="215.9" y="677" width="0.5" height="15.0" fill="rgb(0,215,85)" rx="2" ry="2" /> +<text x="218.86" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (30,303,030 samples, 0.12%)</title><rect x="314.0" y="661" width="1.6" height="15.0" fill="rgb(0,190,177)" rx="2" ry="2" /> +<text x="317.01" y="671.5" ></text> +</g> +<g > +<title>git_signature_now (10,101,010 samples, 0.04%)</title><rect x="403.1" y="709" width="0.6" height="15.0" fill="rgb(0,191,95)" rx="2" ry="2" /> +<text x="406.15" y="719.5" ></text> +</g> +<g > +<title>tcp_write_xmit (30,303,030 samples, 0.12%)</title><rect x="1379.9" y="629" width="1.6" height="15.0" fill="rgb(0,214,156)" rx="2" ry="2" /> +<text x="1382.92" y="639.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="322.5" y="805" width="0.5" height="15.0" fill="rgb(0,211,87)" rx="2" ry="2" /> +<text x="325.50" y="815.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.04%)</title><rect x="186.1" y="469" width="0.6" height="15.0" fill="rgb(0,191,137)" rx="2" ry="2" /> +<text x="189.15" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="212.1" y="661" width="1.6" height="15.0" fill="rgb(0,210,79)" rx="2" ry="2" /> +<text x="215.15" y="671.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="315.1" y="533" width="0.5" height="15.0" fill="rgb(0,223,158)" rx="2" ry="2" /> +<text x="318.07" y="543.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.04%)</title><rect x="151.1" y="565" width="0.6" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" /> +<text x="154.13" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="347.4" y="725" width="2.7" height="15.0" fill="rgb(0,234,162)" rx="2" ry="2" /> +<text x="350.44" y="735.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.04%)</title><rect x="97.0" y="453" width="0.5" height="15.0" fill="rgb(0,207,9)" rx="2" ry="2" /> +<text x="100.01" y="463.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="385.6" y="485" width="0.6" height="15.0" fill="rgb(0,223,23)" rx="2" ry="2" /> +<text x="388.64" y="495.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.04%)</title><rect x="185.6" y="485" width="0.5" height="15.0" fill="rgb(0,197,159)" rx="2" ry="2" /> +<text x="188.62" y="495.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="137.9" y="437" width="1.0" height="15.0" fill="rgb(0,231,181)" rx="2" ry="2" /> +<text x="140.87" y="447.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (50,505,050 samples, 0.19%)</title><rect x="120.9" y="581" width="2.6" height="15.0" fill="rgb(0,195,106)" rx="2" ry="2" /> +<text x="123.89" y="591.5" ></text> +</g> +<g > +<title>mb_find_order_for_block (10,101,010 samples, 0.04%)</title><rect x="236.0" y="389" width="0.6" height="15.0" fill="rgb(0,204,160)" rx="2" ry="2" /> +<text x="239.02" y="399.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (70,707,070 samples, 0.27%)</title><rect x="268.4" y="565" width="3.7" height="15.0" fill="rgb(0,233,67)" rx="2" ry="2" /> +<text x="271.39" y="575.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="146.4" y="645" width="0.5" height="15.0" fill="rgb(0,235,157)" rx="2" ry="2" /> +<text x="149.36" y="655.5" ></text> +</g> +<g > +<title>ksys_read (989,898,980 samples, 3.77%)</title><rect x="539.0" y="741" width="52.0" height="15.0" fill="rgb(0,234,18)" rx="2" ry="2" /> +<text x="541.97" y="751.5" >ksys_..</text> +</g> +<g > +<title>ext4_add_nondir (60,606,060 samples, 0.23%)</title><rect x="72.1" y="773" width="3.2" height="15.0" fill="rgb(0,202,62)" rx="2" ry="2" /> +<text x="75.08" y="783.5" ></text> +</g> +<g > +<title>tcp_rcv_established (10,101,010 samples, 0.04%)</title><rect x="47.1" y="645" width="0.6" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="50.14" y="655.5" ></text> +</g> +<g > +<title>__ip_finish_output (60,606,060 samples, 0.23%)</title><rect x="11.1" y="549" width="3.1" height="15.0" fill="rgb(0,233,92)" rx="2" ry="2" /> +<text x="14.06" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="318.3" y="693" width="1.0" height="15.0" fill="rgb(0,202,184)" rx="2" ry="2" /> +<text x="321.26" y="703.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="215.9" y="565" width="0.5" height="15.0" fill="rgb(0,218,100)" rx="2" ry="2" /> +<text x="218.86" y="575.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (40,404,040 samples, 0.15%)</title><rect x="206.3" y="581" width="2.1" height="15.0" fill="rgb(0,226,103)" rx="2" ry="2" /> +<text x="209.31" y="591.5" ></text> +</g> +<g > +<title>_IO_fprintf (20,202,020 samples, 0.08%)</title><rect x="48.7" y="853" width="1.1" height="15.0" fill="rgb(0,210,131)" rx="2" ry="2" /> +<text x="51.73" y="863.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.04%)</title><rect x="288.5" y="565" width="0.6" height="15.0" fill="rgb(0,193,132)" rx="2" ry="2" /> +<text x="291.55" y="575.5" ></text> +</g> +<g > +<title>__fdget_pos (10,101,010 samples, 0.04%)</title><rect x="538.4" y="741" width="0.6" height="15.0" fill="rgb(0,230,36)" rx="2" ry="2" /> +<text x="541.44" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.42%)</title><rect x="328.9" y="693" width="5.8" height="15.0" fill="rgb(0,222,145)" rx="2" ry="2" /> +<text x="331.87" y="703.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.04%)</title><rect x="186.1" y="533" width="0.6" height="15.0" fill="rgb(0,232,158)" rx="2" ry="2" /> +<text x="189.15" y="543.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="62.5" y="789" width="0.6" height="15.0" fill="rgb(0,210,83)" rx="2" ry="2" /> +<text x="65.53" y="799.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="355.4" y="565" width="0.5" height="15.0" fill="rgb(0,238,162)" rx="2" ry="2" /> +<text x="358.40" y="575.5" ></text> +</g> +<g > +<title>ksys_write (30,303,030 samples, 0.12%)</title><rect x="303.9" y="565" width="1.6" height="15.0" fill="rgb(0,237,20)" rx="2" ry="2" /> +<text x="306.93" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (131,313,130 samples, 0.50%)</title><rect x="934.8" y="821" width="6.9" height="15.0" fill="rgb(0,238,39)" rx="2" ry="2" /> +<text x="937.78" y="831.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="492.3" y="725" width="0.5" height="15.0" fill="rgb(0,220,59)" rx="2" ry="2" /> +<text x="495.28" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="183.5" y="725" width="2.1" height="15.0" fill="rgb(0,197,120)" rx="2" ry="2" /> +<text x="186.49" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="196.8" y="677" width="0.5" height="15.0" fill="rgb(0,213,150)" rx="2" ry="2" /> +<text x="199.76" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="353.3" y="581" width="0.5" height="15.0" fill="rgb(0,197,103)" rx="2" ry="2" /> +<text x="356.28" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.58%)</title><rect x="268.4" y="677" width="7.9" height="15.0" fill="rgb(0,235,128)" rx="2" ry="2" /> +<text x="271.39" y="687.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (80,808,080 samples, 0.31%)</title><rect x="328.9" y="581" width="4.2" height="15.0" fill="rgb(0,201,83)" rx="2" ry="2" /> +<text x="331.87" y="591.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.04%)</title><rect x="207.4" y="485" width="0.5" height="15.0" fill="rgb(0,238,80)" rx="2" ry="2" /> +<text x="210.37" y="495.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="408.5" y="485" width="0.5" height="15.0" fill="rgb(0,205,5)" rx="2" ry="2" /> +<text x="411.45" y="495.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1374.6" y="709" width="0.5" height="15.0" fill="rgb(0,230,59)" rx="2" ry="2" /> +<text x="1377.61" y="719.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="888.1" y="789" width="0.5" height="15.0" fill="rgb(0,224,20)" rx="2" ry="2" /> +<text x="891.09" y="799.5" ></text> +</g> +<g > +<title>libgit_checkout (787,878,780 samples, 3.00%)</title><rect x="181.9" y="853" width="41.4" height="15.0" fill="rgb(0,194,45)" rx="2" ry="2" /> +<text x="184.90" y="863.5" >lib..</text> +</g> +<g > +<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.12%)</title><rect x="68.9" y="741" width="1.6" height="15.0" fill="rgb(0,229,146)" rx="2" ry="2" /> +<text x="71.89" y="751.5" ></text> +</g> +<g > +<title>git_odb_backend_pack (30,303,030 samples, 0.12%)</title><rect x="366.5" y="741" width="1.6" height="15.0" fill="rgb(0,219,204)" rx="2" ry="2" /> +<text x="369.54" y="751.5" ></text> +</g> +<g > +<title>blk_mq_free_request (10,101,010 samples, 0.04%)</title><rect x="285.9" y="213" width="0.5" height="15.0" fill="rgb(0,200,18)" rx="2" ry="2" /> +<text x="288.89" y="223.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (20,202,020 samples, 0.08%)</title><rect x="462.0" y="517" width="1.1" height="15.0" fill="rgb(0,220,101)" rx="2" ry="2" /> +<text x="465.04" y="527.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="446.1" y="597" width="0.6" height="15.0" fill="rgb(0,191,2)" rx="2" ry="2" /> +<text x="449.12" y="607.5" ></text> +</g> +<g > +<title>tcp_init_sock (10,101,010 samples, 0.04%)</title><rect x="1372.5" y="725" width="0.5" height="15.0" fill="rgb(0,223,56)" rx="2" ry="2" /> +<text x="1375.49" y="735.5" ></text> +</g> +<g > +<title>ip_finish_output (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="549" width="0.5" height="15.0" fill="rgb(0,217,197)" rx="2" ry="2" /> +<text x="1342.60" y="559.5" ></text> +</g> +<g > +<title>tcp_rcv_established (10,101,010 samples, 0.04%)</title><rect x="12.7" y="293" width="0.5" height="15.0" fill="rgb(0,218,81)" rx="2" ry="2" /> +<text x="15.65" y="303.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.04%)</title><rect x="306.1" y="549" width="0.5" height="15.0" fill="rgb(0,235,82)" rx="2" ry="2" /> +<text x="309.06" y="559.5" ></text> +</g> +<g > +<title>ip_rcv (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="357" width="0.6" height="15.0" fill="rgb(0,236,4)" rx="2" ry="2" /> +<text x="1383.45" y="367.5" ></text> +</g> +<g > +<title>ip_finish_output2 (80,808,080 samples, 0.31%)</title><rect x="37.6" y="405" width="4.2" height="15.0" fill="rgb(0,218,135)" rx="2" ry="2" /> +<text x="40.59" y="415.5" ></text> +</g> +<g > +<title>lockref_get_not_dead (10,101,010 samples, 0.04%)</title><rect x="240.3" y="549" width="0.5" height="15.0" fill="rgb(0,234,171)" rx="2" ry="2" /> +<text x="243.27" y="559.5" ></text> +</g> +<g > +<title>__blk_mq_alloc_request (10,101,010 samples, 0.04%)</title><rect x="450.4" y="405" width="0.5" height="15.0" fill="rgb(0,238,92)" rx="2" ry="2" /> +<text x="453.37" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="474.8" y="725" width="1.0" height="15.0" fill="rgb(0,228,95)" rx="2" ry="2" /> +<text x="477.78" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="503.4" y="661" width="0.6" height="15.0" fill="rgb(0,194,39)" rx="2" ry="2" /> +<text x="506.43" y="671.5" ></text> +</g> +<g > +<title>evict (40,404,040 samples, 0.15%)</title><rect x="433.9" y="517" width="2.1" height="15.0" fill="rgb(0,225,51)" rx="2" ry="2" /> +<text x="436.92" y="527.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.04%)</title><rect x="266.3" y="597" width="0.5" height="15.0" fill="rgb(0,201,140)" rx="2" ry="2" /> +<text x="269.26" y="607.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="238.7" y="581" width="0.5" height="15.0" fill="rgb(0,232,14)" rx="2" ry="2" /> +<text x="241.67" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="292.3" y="693" width="1.0" height="15.0" fill="rgb(0,200,21)" rx="2" ry="2" /> +<text x="295.26" y="703.5" ></text> +</g> +<g > +<title>rcu_all_qs (10,101,010 samples, 0.04%)</title><rect x="272.6" y="533" width="0.6" height="15.0" fill="rgb(0,224,186)" rx="2" ry="2" /> +<text x="275.63" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="326.7" y="661" width="0.6" height="15.0" fill="rgb(0,209,134)" rx="2" ry="2" /> +<text x="329.75" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="169.7" y="757" width="0.5" height="15.0" fill="rgb(0,222,98)" rx="2" ry="2" /> +<text x="172.70" y="767.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="528.9" y="661" width="0.5" height="15.0" fill="rgb(0,200,7)" rx="2" ry="2" /> +<text x="531.89" y="671.5" ></text> +</g> +<g > +<title>git_reference_dwim (10,101,010 samples, 0.04%)</title><rect x="221.7" y="789" width="0.5" height="15.0" fill="rgb(0,192,34)" rx="2" ry="2" /> +<text x="224.70" y="799.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="395.7" y="565" width="0.6" height="15.0" fill="rgb(0,197,162)" rx="2" ry="2" /> +<text x="398.72" y="575.5" ></text> +</g> +<g > +<title>git_oid_fromstrn (10,101,010 samples, 0.04%)</title><rect x="186.7" y="629" width="0.5" height="15.0" fill="rgb(0,230,89)" rx="2" ry="2" /> +<text x="189.68" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="432.9" y="629" width="0.5" height="15.0" fill="rgb(0,234,40)" rx="2" ry="2" /> +<text x="435.86" y="639.5" ></text> +</g> +<g > +<title>tcp_done (10,101,010 samples, 0.04%)</title><rect x="40.2" y="101" width="0.6" height="15.0" fill="rgb(0,210,101)" rx="2" ry="2" /> +<text x="43.24" y="111.5" ></text> +</g> +<g > +<title>tcp_v4_connect (50,505,050 samples, 0.19%)</title><rect x="1386.3" y="741" width="2.6" height="15.0" fill="rgb(0,234,126)" rx="2" ry="2" /> +<text x="1389.29" y="751.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="238.7" y="613" width="0.5" height="15.0" fill="rgb(0,230,191)" rx="2" ry="2" /> +<text x="241.67" y="623.5" ></text> +</g> +<g > +<title>opendir (20,202,020 samples, 0.08%)</title><rect x="489.1" y="677" width="1.1" height="15.0" fill="rgb(0,192,122)" rx="2" ry="2" /> +<text x="492.10" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="246.6" y="677" width="0.6" height="15.0" fill="rgb(0,192,159)" rx="2" ry="2" /> +<text x="249.63" y="687.5" ></text> +</g> +<g > +<title>[libsodium.so.23.3.0] (3,242,424,210 samples, 12.34%)</title><rect x="718.3" y="837" width="170.3" height="15.0" fill="rgb(0,215,103)" rx="2" ry="2" /> +<text x="721.30" y="847.5" >[libsodium.so.23.3.0]</text> +</g> +<g > +<title>__fsnotify_inode_delete (10,101,010 samples, 0.04%)</title><rect x="340.0" y="565" width="0.5" height="15.0" fill="rgb(0,196,84)" rx="2" ry="2" /> +<text x="343.01" y="575.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="134.2" y="517" width="0.5" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="137.15" y="527.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (10,101,010 samples, 0.04%)</title><rect x="381.9" y="501" width="0.6" height="15.0" fill="rgb(0,226,27)" rx="2" ry="2" /> +<text x="384.93" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="277.9" y="741" width="1.6" height="15.0" fill="rgb(0,201,57)" rx="2" ry="2" /> +<text x="280.94" y="751.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.04%)</title><rect x="505.5" y="629" width="0.6" height="15.0" fill="rgb(0,210,82)" rx="2" ry="2" /> +<text x="508.55" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.42%)</title><rect x="480.1" y="789" width="5.8" height="15.0" fill="rgb(0,220,149)" rx="2" ry="2" /> +<text x="483.08" y="799.5" ></text> +</g> +<g > +<title>hook_cred_prepare (10,101,010 samples, 0.04%)</title><rect x="77.9" y="853" width="0.5" height="15.0" fill="rgb(0,200,200)" rx="2" ry="2" /> +<text x="80.91" y="863.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="483.8" y="549" width="0.5" height="15.0" fill="rgb(0,207,36)" rx="2" ry="2" /> +<text x="486.79" y="559.5" ></text> +</g> +<g > +<title>try_charge_memcg (30,303,030 samples, 0.12%)</title><rect x="893.4" y="693" width="1.6" height="15.0" fill="rgb(0,205,1)" rx="2" ry="2" /> +<text x="896.39" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="319.9" y="661" width="2.6" height="15.0" fill="rgb(0,208,168)" rx="2" ry="2" /> +<text x="322.85" y="671.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="84.8" y="741" width="0.5" height="15.0" fill="rgb(0,200,3)" rx="2" ry="2" /> +<text x="87.81" y="751.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.04%)</title><rect x="280.6" y="517" width="0.5" height="15.0" fill="rgb(0,239,60)" rx="2" ry="2" /> +<text x="283.59" y="527.5" ></text> +</g> +<g > +<title>__call_rcu (10,101,010 samples, 0.04%)</title><rect x="161.2" y="533" width="0.5" height="15.0" fill="rgb(0,204,167)" rx="2" ry="2" /> +<text x="164.21" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="320.9" y="565" width="0.5" height="15.0" fill="rgb(0,213,106)" rx="2" ry="2" /> +<text x="323.91" y="575.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.04%)</title><rect x="407.9" y="453" width="0.6" height="15.0" fill="rgb(0,221,196)" rx="2" ry="2" /> +<text x="410.92" y="463.5" ></text> +</g> +<g > +<title>git_repository_init_ext (1,444,444,430 samples, 5.50%)</title><rect x="403.7" y="789" width="75.9" height="15.0" fill="rgb(0,209,206)" rx="2" ry="2" /> +<text x="406.68" y="799.5" >git_repo..</text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="320.9" y="581" width="0.5" height="15.0" fill="rgb(0,196,115)" rx="2" ry="2" /> +<text x="323.91" y="591.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="144.8" y="629" width="0.5" height="15.0" fill="rgb(0,202,201)" rx="2" ry="2" /> +<text x="147.76" y="639.5" ></text> +</g> +<g > +<title>new_sync_write (20,202,020 samples, 0.08%)</title><rect x="413.2" y="549" width="1.1" height="15.0" fill="rgb(0,233,25)" rx="2" ry="2" /> +<text x="416.23" y="559.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (40,404,040 samples, 0.15%)</title><rect x="32.3" y="773" width="2.1" height="15.0" fill="rgb(0,213,129)" rx="2" ry="2" /> +<text x="35.28" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="320.9" y="629" width="0.5" height="15.0" fill="rgb(0,235,67)" rx="2" ry="2" /> +<text x="323.91" y="639.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="352.2" y="389" width="0.5" height="15.0" fill="rgb(0,238,168)" rx="2" ry="2" /> +<text x="355.21" y="399.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="59.3" y="853" width="0.6" height="15.0" fill="rgb(0,233,175)" rx="2" ry="2" /> +<text x="62.34" y="863.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (10,101,010 samples, 0.04%)</title><rect x="508.2" y="581" width="0.5" height="15.0" fill="rgb(0,200,79)" rx="2" ry="2" /> +<text x="511.20" y="591.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.04%)</title><rect x="187.2" y="389" width="0.5" height="15.0" fill="rgb(0,191,48)" rx="2" ry="2" /> +<text x="190.21" y="399.5" ></text> +</g> +<g > +<title>lockref_put_return (10,101,010 samples, 0.04%)</title><rect x="242.4" y="629" width="0.5" height="15.0" fill="rgb(0,236,63)" rx="2" ry="2" /> +<text x="245.39" y="639.5" ></text> +</g> +<g > +<title>shrink_dentry_list (10,101,010 samples, 0.04%)</title><rect x="180.3" y="661" width="0.5" height="15.0" fill="rgb(0,214,53)" rx="2" ry="2" /> +<text x="183.31" y="671.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="165" width="0.5" height="15.0" fill="rgb(0,215,0)" rx="2" ry="2" /> +<text x="1342.07" y="175.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.04%)</title><rect x="187.2" y="533" width="0.5" height="15.0" fill="rgb(0,211,26)" rx="2" ry="2" /> +<text x="190.21" y="543.5" ></text> +</g> +<g > +<title>do_unlinkat (30,303,030 samples, 0.12%)</title><rect x="161.7" y="645" width="1.6" height="15.0" fill="rgb(0,203,12)" rx="2" ry="2" /> +<text x="164.74" y="655.5" ></text> +</g> +<g > +<title>nf_ct_deliver_cached_events (10,101,010 samples, 0.04%)</title><rect x="41.8" y="389" width="0.6" height="15.0" fill="rgb(0,216,89)" rx="2" ry="2" /> +<text x="44.83" y="399.5" ></text> +</g> +<g > +<title>xas_load (10,101,010 samples, 0.04%)</title><rect x="139.5" y="341" width="0.5" height="15.0" fill="rgb(0,209,117)" rx="2" ry="2" /> +<text x="142.46" y="351.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.04%)</title><rect x="167.0" y="485" width="0.6" height="15.0" fill="rgb(0,234,88)" rx="2" ry="2" /> +<text x="170.05" y="495.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="495.5" y="549" width="0.5" height="15.0" fill="rgb(0,190,170)" rx="2" ry="2" /> +<text x="498.47" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="189.3" y="693" width="0.6" height="15.0" fill="rgb(0,210,30)" rx="2" ry="2" /> +<text x="192.33" y="703.5" ></text> +</g> +<g > +<title>locked_inode_to_wb_and_lock_list (10,101,010 samples, 0.04%)</title><rect x="98.1" y="501" width="0.5" height="15.0" fill="rgb(0,199,57)" rx="2" ry="2" /> +<text x="101.07" y="511.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.04%)</title><rect x="284.3" y="549" width="0.5" height="15.0" fill="rgb(0,204,91)" rx="2" ry="2" /> +<text x="287.30" y="559.5" ></text> +</g> +<g > +<title>_IO_fprintf (10,101,010 samples, 0.04%)</title><rect x="191.5" y="837" width="0.5" height="15.0" fill="rgb(0,213,194)" rx="2" ry="2" /> +<text x="194.45" y="847.5" ></text> +</g> +<g > +<title>kfree (20,202,020 samples, 0.08%)</title><rect x="259.4" y="581" width="1.0" height="15.0" fill="rgb(0,223,11)" rx="2" ry="2" /> +<text x="262.37" y="591.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="325" width="0.6" height="15.0" fill="rgb(0,221,93)" rx="2" ry="2" /> +<text x="1383.45" y="335.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="474.8" y="709" width="0.5" height="15.0" fill="rgb(0,204,50)" rx="2" ry="2" /> +<text x="477.78" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="146.4" y="693" width="0.5" height="15.0" fill="rgb(0,239,159)" rx="2" ry="2" /> +<text x="149.36" y="703.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (20,202,020 samples, 0.08%)</title><rect x="441.3" y="677" width="1.1" height="15.0" fill="rgb(0,196,5)" rx="2" ry="2" /> +<text x="444.35" y="687.5" ></text> +</g> +<g > +<title>mutex_lock (20,202,020 samples, 0.08%)</title><rect x="570.3" y="677" width="1.0" height="15.0" fill="rgb(0,237,102)" rx="2" ry="2" /> +<text x="573.28" y="687.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="530.5" y="789" width="0.5" height="15.0" fill="rgb(0,218,50)" rx="2" ry="2" /> +<text x="533.48" y="799.5" ></text> +</g> +<g > +<title>__dentry_kill (10,101,010 samples, 0.04%)</title><rect x="180.3" y="645" width="0.5" height="15.0" fill="rgb(0,224,95)" rx="2" ry="2" /> +<text x="183.31" y="655.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.04%)</title><rect x="1337.5" y="741" width="0.5" height="15.0" fill="rgb(0,209,33)" rx="2" ry="2" /> +<text x="1340.47" y="751.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.04%)</title><rect x="383.5" y="437" width="0.5" height="15.0" fill="rgb(0,209,199)" rx="2" ry="2" /> +<text x="386.52" y="447.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="299.2" y="485" width="0.5" height="15.0" fill="rgb(0,230,179)" rx="2" ry="2" /> +<text x="302.16" y="495.5" ></text> +</g> +<g > +<title>readdir64 (10,101,010 samples, 0.04%)</title><rect x="277.4" y="757" width="0.5" height="15.0" fill="rgb(0,202,94)" rx="2" ry="2" /> +<text x="280.40" y="767.5" ></text> +</g> +<g > +<title>ext4_es_free_extent (10,101,010 samples, 0.04%)</title><rect x="135.7" y="469" width="0.6" height="15.0" fill="rgb(0,216,138)" rx="2" ry="2" /> +<text x="138.74" y="479.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1378.9" y="821" width="0.5" height="15.0" fill="rgb(0,205,84)" rx="2" ry="2" /> +<text x="1381.86" y="831.5" ></text> +</g> +<g > +<title>do_mkdirat (111,111,110 samples, 0.42%)</title><rect x="385.6" y="565" width="5.9" height="15.0" fill="rgb(0,204,29)" rx="2" ry="2" /> +<text x="388.64" y="575.5" ></text> +</g> +<g > +<title>ext4_validate_block_bitmap (10,101,010 samples, 0.04%)</title><rect x="452.0" y="373" width="0.5" height="15.0" fill="rgb(0,195,191)" rx="2" ry="2" /> +<text x="454.96" y="383.5" ></text> +</g> +<g > +<title>_start (24,888,888,640 samples, 94.73%)</title><rect x="82.7" y="981" width="1307.3" height="15.0" fill="rgb(0,200,53)" rx="2" ry="2" /> +<text x="85.69" y="991.5" >_start</text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="75.3" y="837" width="0.5" height="15.0" fill="rgb(0,205,118)" rx="2" ry="2" /> +<text x="78.26" y="847.5" ></text> +</g> +<g > +<title>cap_inode_need_killpriv (20,202,020 samples, 0.08%)</title><rect x="423.8" y="549" width="1.1" height="15.0" fill="rgb(0,221,34)" rx="2" ry="2" /> +<text x="426.84" y="559.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="503.4" y="533" width="0.6" height="15.0" fill="rgb(0,204,82)" rx="2" ry="2" /> +<text x="506.43" y="543.5" ></text> +</g> +<g > +<title>get_obj_cgroup_from_current (10,101,010 samples, 0.04%)</title><rect x="515.1" y="629" width="0.5" height="15.0" fill="rgb(0,227,97)" rx="2" ry="2" /> +<text x="518.10" y="639.5" ></text> +</g> +<g > +<title>tcp_create_openreq_child (10,101,010 samples, 0.04%)</title><rect x="1369.3" y="245" width="0.5" height="15.0" fill="rgb(0,235,40)" rx="2" ry="2" /> +<text x="1372.31" y="255.5" ></text> +</g> +<g > +<title>__x64_sys_access (20,202,020 samples, 0.08%)</title><rect x="364.9" y="693" width="1.1" height="15.0" fill="rgb(0,228,48)" rx="2" ry="2" /> +<text x="367.95" y="703.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.04%)</title><rect x="34.9" y="581" width="0.6" height="15.0" fill="rgb(0,201,170)" rx="2" ry="2" /> +<text x="37.94" y="591.5" ></text> +</g> +<g > +<title>rcu_read_unlock_strict (10,101,010 samples, 0.04%)</title><rect x="406.9" y="469" width="0.5" height="15.0" fill="rgb(0,192,40)" rx="2" ry="2" /> +<text x="409.86" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="185.6" y="661" width="1.6" height="15.0" fill="rgb(0,206,185)" rx="2" ry="2" /> +<text x="188.62" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="483.8" y="677" width="0.5" height="15.0" fill="rgb(0,221,76)" rx="2" ry="2" /> +<text x="486.79" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="311.9" y="661" width="0.5" height="15.0" fill="rgb(0,194,72)" rx="2" ry="2" /> +<text x="314.89" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="264.1" y="613" width="0.6" height="15.0" fill="rgb(0,196,146)" rx="2" ry="2" /> +<text x="267.14" y="623.5" ></text> +</g> +<g > +<title>ext4_rename (40,404,040 samples, 0.15%)</title><rect x="436.0" y="565" width="2.2" height="15.0" fill="rgb(0,198,61)" rx="2" ry="2" /> +<text x="439.04" y="575.5" ></text> +</g> +<g > +<title>path_openat (50,505,050 samples, 0.19%)</title><rect x="376.6" y="661" width="2.7" height="15.0" fill="rgb(0,238,125)" rx="2" ry="2" /> +<text x="379.62" y="671.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (30,303,030 samples, 0.12%)</title><rect x="342.7" y="549" width="1.6" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="345.66" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="368.7" y="725" width="1.0" height="15.0" fill="rgb(0,233,137)" rx="2" ry="2" /> +<text x="371.66" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="504.5" y="693" width="0.5" height="15.0" fill="rgb(0,224,87)" rx="2" ry="2" /> +<text x="507.49" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="352.7" y="581" width="0.6" height="15.0" fill="rgb(0,195,80)" rx="2" ry="2" /> +<text x="355.75" y="591.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (20,202,020 samples, 0.08%)</title><rect x="14.8" y="901" width="1.0" height="15.0" fill="rgb(0,237,70)" rx="2" ry="2" /> +<text x="17.78" y="911.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.04%)</title><rect x="284.3" y="533" width="0.5" height="15.0" fill="rgb(0,234,23)" rx="2" ry="2" /> +<text x="287.30" y="543.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="597" width="0.5" height="15.0" fill="rgb(0,230,0)" rx="2" ry="2" /> +<text x="1342.60" y="607.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.04%)</title><rect x="94.9" y="325" width="0.5" height="15.0" fill="rgb(0,228,94)" rx="2" ry="2" /> +<text x="97.89" y="335.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.04%)</title><rect x="392.5" y="469" width="0.6" height="15.0" fill="rgb(0,196,204)" rx="2" ry="2" /> +<text x="395.54" y="479.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.04%)</title><rect x="329.4" y="517" width="0.5" height="15.0" fill="rgb(0,191,98)" rx="2" ry="2" /> +<text x="332.40" y="527.5" ></text> +</g> +<g > +<title>__alloc_skb (10,101,010 samples, 0.04%)</title><rect x="12.7" y="229" width="0.5" height="15.0" fill="rgb(0,232,15)" rx="2" ry="2" /> +<text x="15.65" y="239.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="176.6" y="789" width="0.5" height="15.0" fill="rgb(0,228,54)" rx="2" ry="2" /> +<text x="179.60" y="799.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.04%)</title><rect x="124.6" y="549" width="0.5" height="15.0" fill="rgb(0,224,167)" rx="2" ry="2" /> +<text x="127.60" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="473.2" y="661" width="1.0" height="15.0" fill="rgb(0,190,61)" rx="2" ry="2" /> +<text x="476.18" y="671.5" ></text> +</g> +<g > +<title>dput (30,303,030 samples, 0.12%)</title><rect x="447.2" y="613" width="1.6" height="15.0" fill="rgb(0,205,202)" rx="2" ry="2" /> +<text x="450.19" y="623.5" ></text> +</g> +<g > +<title>git_config_free (10,101,010 samples, 0.04%)</title><rect x="211.1" y="789" width="0.5" height="15.0" fill="rgb(0,212,174)" rx="2" ry="2" /> +<text x="214.08" y="799.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (50,505,050 samples, 0.19%)</title><rect x="27.0" y="709" width="2.6" height="15.0" fill="rgb(0,232,209)" rx="2" ry="2" /> +<text x="29.98" y="719.5" ></text> +</g> +<g > +<title>do_sys_poll (80,808,080 samples, 0.31%)</title><rect x="25.4" y="805" width="4.2" height="15.0" fill="rgb(0,192,34)" rx="2" ry="2" /> +<text x="28.39" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="361.2" y="645" width="2.2" height="15.0" fill="rgb(0,223,179)" rx="2" ry="2" /> +<text x="364.23" y="655.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="231.8" y="453" width="0.5" height="15.0" fill="rgb(0,230,23)" rx="2" ry="2" /> +<text x="234.78" y="463.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="596.8" y="629" width="0.5" height="15.0" fill="rgb(0,223,113)" rx="2" ry="2" /> +<text x="599.81" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (50,505,050 samples, 0.19%)</title><rect x="428.1" y="709" width="2.6" height="15.0" fill="rgb(0,219,67)" rx="2" ry="2" /> +<text x="431.09" y="719.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.04%)</title><rect x="221.7" y="661" width="0.5" height="15.0" fill="rgb(0,199,194)" rx="2" ry="2" /> +<text x="224.70" y="671.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.04%)</title><rect x="266.3" y="693" width="0.5" height="15.0" fill="rgb(0,199,114)" rx="2" ry="2" /> +<text x="269.26" y="703.5" ></text> +</g> +<g > +<title>scsi_mq_done (10,101,010 samples, 0.04%)</title><rect x="131.0" y="357" width="0.5" height="15.0" fill="rgb(0,208,193)" rx="2" ry="2" /> +<text x="133.97" y="367.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.04%)</title><rect x="531.0" y="805" width="0.5" height="15.0" fill="rgb(0,225,114)" rx="2" ry="2" /> +<text x="534.01" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (161,616,160 samples, 0.62%)</title><rect x="336.8" y="741" width="8.5" height="15.0" fill="rgb(0,208,169)" rx="2" ry="2" /> +<text x="339.83" y="751.5" ></text> +</g> +<g > +<title>vfs_rename (80,808,080 samples, 0.31%)</title><rect x="371.3" y="645" width="4.3" height="15.0" fill="rgb(0,206,133)" rx="2" ry="2" /> +<text x="374.31" y="655.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.04%)</title><rect x="481.7" y="677" width="0.5" height="15.0" fill="rgb(0,226,41)" rx="2" ry="2" /> +<text x="484.67" y="687.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (474,747,470 samples, 1.81%)</title><rect x="1312.5" y="741" width="25.0" height="15.0" fill="rgb(0,225,116)" rx="2" ry="2" /> +<text x="1315.54" y="751.5" >a..</text> +</g> +<g > +<title>new_inode (10,101,010 samples, 0.04%)</title><rect x="229.7" y="565" width="0.5" height="15.0" fill="rgb(0,212,187)" rx="2" ry="2" /> +<text x="232.65" y="575.5" ></text> +</g> +<g > +<title>d_alloc_pseudo (10,101,010 samples, 0.04%)</title><rect x="1373.6" y="757" width="0.5" height="15.0" fill="rgb(0,194,182)" rx="2" ry="2" /> +<text x="1376.55" y="767.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="399.4" y="565" width="0.6" height="15.0" fill="rgb(0,233,62)" rx="2" ry="2" /> +<text x="402.43" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="224.3" y="725" width="0.6" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="227.35" y="735.5" ></text> +</g> +<g > +<title>git_reference_normalize_name (10,101,010 samples, 0.04%)</title><rect x="310.3" y="709" width="0.5" height="15.0" fill="rgb(0,207,174)" rx="2" ry="2" /> +<text x="313.30" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (60,606,060 samples, 0.23%)</title><rect x="506.1" y="757" width="3.2" height="15.0" fill="rgb(0,222,200)" rx="2" ry="2" /> +<text x="509.08" y="767.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="163.3" y="645" width="0.6" height="15.0" fill="rgb(0,205,96)" rx="2" ry="2" /> +<text x="166.33" y="655.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="355.4" y="581" width="0.5" height="15.0" fill="rgb(0,217,151)" rx="2" ry="2" /> +<text x="358.40" y="591.5" ></text> +</g> +<g > +<title>lookup_fast (20,202,020 samples, 0.08%)</title><rect x="254.6" y="565" width="1.1" height="15.0" fill="rgb(0,236,124)" rx="2" ry="2" /> +<text x="257.59" y="575.5" ></text> +</g> +<g > +<title>ext4_release_dir (10,101,010 samples, 0.04%)</title><rect x="244.0" y="581" width="0.5" height="15.0" fill="rgb(0,207,148)" rx="2" ry="2" /> +<text x="246.98" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (242,424,240 samples, 0.92%)</title><rect x="380.9" y="661" width="12.7" height="15.0" fill="rgb(0,227,160)" rx="2" ry="2" /> +<text x="383.87" y="671.5" ></text> +</g> +<g > +<title>_IO_default_xsputn (10,101,010 samples, 0.04%)</title><rect x="480.6" y="597" width="0.5" height="15.0" fill="rgb(0,226,121)" rx="2" ry="2" /> +<text x="483.61" y="607.5" ></text> +</g> +<g > +<title>map_id_up (10,101,010 samples, 0.04%)</title><rect x="267.9" y="581" width="0.5" height="15.0" fill="rgb(0,234,182)" rx="2" ry="2" /> +<text x="270.85" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="308.7" y="597" width="0.5" height="15.0" fill="rgb(0,205,194)" rx="2" ry="2" /> +<text x="311.71" y="607.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (70,707,070 samples, 0.27%)</title><rect x="10.5" y="613" width="3.7" height="15.0" fill="rgb(0,201,16)" rx="2" ry="2" /> +<text x="13.53" y="623.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="377.7" y="549" width="0.5" height="15.0" fill="rgb(0,225,53)" rx="2" ry="2" /> +<text x="380.68" y="559.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="521.5" y="549" width="0.5" height="15.0" fill="rgb(0,231,105)" rx="2" ry="2" /> +<text x="524.46" y="559.5" ></text> +</g> +<g > +<title>vfs_rename (40,404,040 samples, 0.15%)</title><rect x="436.0" y="597" width="2.2" height="15.0" fill="rgb(0,196,167)" rx="2" ry="2" /> +<text x="439.04" y="607.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.04%)</title><rect x="343.7" y="373" width="0.6" height="15.0" fill="rgb(0,213,175)" rx="2" ry="2" /> +<text x="346.73" y="383.5" ></text> +</g> +<g > +<title>filename_parentat (20,202,020 samples, 0.08%)</title><rect x="161.7" y="629" width="1.1" height="15.0" fill="rgb(0,223,22)" rx="2" ry="2" /> +<text x="164.74" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="379.3" y="677" width="1.0" height="15.0" fill="rgb(0,206,14)" rx="2" ry="2" /> +<text x="382.27" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="486.4" y="757" width="3.8" height="15.0" fill="rgb(0,224,47)" rx="2" ry="2" /> +<text x="489.45" y="767.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.04%)</title><rect x="162.3" y="581" width="0.5" height="15.0" fill="rgb(0,210,72)" rx="2" ry="2" /> +<text x="165.27" y="591.5" ></text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="581" width="0.5" height="15.0" fill="rgb(0,209,159)" rx="2" ry="2" /> +<text x="1388.76" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="212.1" y="693" width="2.2" height="15.0" fill="rgb(0,199,128)" rx="2" ry="2" /> +<text x="215.15" y="703.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.04%)</title><rect x="65.7" y="757" width="0.5" height="15.0" fill="rgb(0,199,208)" rx="2" ry="2" /> +<text x="68.71" y="767.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.04%)</title><rect x="355.4" y="469" width="0.5" height="15.0" fill="rgb(0,215,84)" rx="2" ry="2" /> +<text x="358.40" y="479.5" ></text> +</g> +<g > +<title>__handle_mm_fault (60,606,060 samples, 0.23%)</title><rect x="614.3" y="773" width="3.2" height="15.0" fill="rgb(0,239,48)" rx="2" ry="2" /> +<text x="617.31" y="783.5" ></text> +</g> +<g > +<title>__es_insert_extent (10,101,010 samples, 0.04%)</title><rect x="303.9" y="373" width="0.6" height="15.0" fill="rgb(0,206,162)" rx="2" ry="2" /> +<text x="306.93" y="383.5" ></text> +</g> +<g > +<title>ext4_map_blocks (40,404,040 samples, 0.15%)</title><rect x="57.2" y="741" width="2.1" height="15.0" fill="rgb(0,232,1)" rx="2" ry="2" /> +<text x="60.22" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="267.3" y="677" width="1.1" height="15.0" fill="rgb(0,217,83)" rx="2" ry="2" /> +<text x="270.32" y="687.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (40,404,040 samples, 0.15%)</title><rect x="51.4" y="821" width="2.1" height="15.0" fill="rgb(0,234,32)" rx="2" ry="2" /> +<text x="54.38" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="347.4" y="677" width="2.7" height="15.0" fill="rgb(0,234,16)" rx="2" ry="2" /> +<text x="350.44" y="687.5" ></text> +</g> +<g > +<title>dup_task_struct (50,505,050 samples, 0.19%)</title><rect x="19.6" y="869" width="2.6" height="15.0" fill="rgb(0,194,141)" rx="2" ry="2" /> +<text x="22.55" y="879.5" ></text> +</g> +<g > +<title>path_openat (40,404,040 samples, 0.15%)</title><rect x="405.3" y="613" width="2.1" height="15.0" fill="rgb(0,238,54)" rx="2" ry="2" /> +<text x="408.27" y="623.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="202.1" y="613" width="0.5" height="15.0" fill="rgb(0,192,166)" rx="2" ry="2" /> +<text x="205.06" y="623.5" ></text> +</g> +<g > +<title>git_config_snapshot (40,404,040 samples, 0.15%)</title><rect x="289.6" y="709" width="2.1" height="15.0" fill="rgb(0,224,180)" rx="2" ry="2" /> +<text x="292.61" y="719.5" ></text> +</g> +<g > +<title>filename_parentat (10,101,010 samples, 0.04%)</title><rect x="143.7" y="597" width="0.5" height="15.0" fill="rgb(0,220,36)" rx="2" ry="2" /> +<text x="146.70" y="607.5" ></text> +</g> +<g > +<title>ext4_invalidatepage (10,101,010 samples, 0.04%)</title><rect x="105.0" y="485" width="0.5" height="15.0" fill="rgb(0,215,41)" rx="2" ry="2" /> +<text x="107.97" y="495.5" ></text> +</g> +<g > +<title>send (60,606,060 samples, 0.23%)</title><rect x="1379.4" y="805" width="3.2" height="15.0" fill="rgb(0,193,117)" rx="2" ry="2" /> +<text x="1382.39" y="815.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="75.8" y="853" width="0.5" height="15.0" fill="rgb(0,220,60)" rx="2" ry="2" /> +<text x="78.79" y="863.5" ></text> +</g> +<g > +<title>filename_lookup (40,404,040 samples, 0.15%)</title><rect x="428.1" y="645" width="2.1" height="15.0" fill="rgb(0,207,199)" rx="2" ry="2" /> +<text x="431.09" y="655.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (10,101,010 samples, 0.04%)</title><rect x="431.8" y="741" width="0.5" height="15.0" fill="rgb(0,208,62)" rx="2" ry="2" /> +<text x="434.80" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="488.0" y="629" width="0.6" height="15.0" fill="rgb(0,204,46)" rx="2" ry="2" /> +<text x="491.04" y="639.5" ></text> +</g> +<g > +<title>sbrk (131,313,130 samples, 0.50%)</title><rect x="934.8" y="773" width="6.9" height="15.0" fill="rgb(0,219,82)" rx="2" ry="2" /> +<text x="937.78" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="188.8" y="645" width="0.5" height="15.0" fill="rgb(0,236,33)" rx="2" ry="2" /> +<text x="191.80" y="655.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="693" width="0.5" height="15.0" fill="rgb(0,202,165)" rx="2" ry="2" /> +<text x="1388.76" y="703.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="469" width="0.5" height="15.0" fill="rgb(0,206,62)" rx="2" ry="2" /> +<text x="1388.76" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.08%)</title><rect x="413.2" y="597" width="1.1" height="15.0" fill="rgb(0,206,26)" rx="2" ry="2" /> +<text x="416.23" y="607.5" ></text> +</g> +<g > +<title>evict (50,505,050 samples, 0.19%)</title><rect x="166.0" y="629" width="2.6" height="15.0" fill="rgb(0,201,142)" rx="2" ry="2" /> +<text x="168.99" y="639.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.04%)</title><rect x="502.9" y="581" width="0.5" height="15.0" fill="rgb(0,214,129)" rx="2" ry="2" /> +<text x="505.90" y="591.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="494.9" y="629" width="0.6" height="15.0" fill="rgb(0,217,51)" rx="2" ry="2" /> +<text x="497.94" y="639.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="201.0" y="485" width="0.5" height="15.0" fill="rgb(0,221,194)" rx="2" ry="2" /> +<text x="204.00" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.35%)</title><rect x="183.5" y="757" width="4.8" height="15.0" fill="rgb(0,223,98)" rx="2" ry="2" /> +<text x="186.49" y="767.5" ></text> +</g> +<g > +<title>wake_up_bit (10,101,010 samples, 0.04%)</title><rect x="508.7" y="629" width="0.6" height="15.0" fill="rgb(0,203,162)" rx="2" ry="2" /> +<text x="511.73" y="639.5" ></text> +</g> +<g > +<title>ext4_da_write_end (40,404,040 samples, 0.15%)</title><rect x="206.3" y="549" width="2.1" height="15.0" fill="rgb(0,223,139)" rx="2" ry="2" /> +<text x="209.31" y="559.5" ></text> +</g> +<g > +<title>crc_84 (10,101,010 samples, 0.04%)</title><rect x="158.6" y="517" width="0.5" height="15.0" fill="rgb(0,222,43)" rx="2" ry="2" /> +<text x="161.56" y="527.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.04%)</title><rect x="288.5" y="533" width="0.6" height="15.0" fill="rgb(0,238,191)" rx="2" ry="2" /> +<text x="291.55" y="543.5" ></text> +</g> +<g > +<title>__find_get_block_slow (10,101,010 samples, 0.04%)</title><rect x="250.3" y="485" width="0.6" height="15.0" fill="rgb(0,196,207)" rx="2" ry="2" /> +<text x="253.35" y="495.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="92.8" y="661" width="0.5" height="15.0" fill="rgb(0,220,136)" rx="2" ry="2" /> +<text x="95.77" y="671.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="116.6" y="613" width="0.6" height="15.0" fill="rgb(0,209,109)" rx="2" ry="2" /> +<text x="119.64" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="228.6" y="549" width="0.5" height="15.0" fill="rgb(0,217,46)" rx="2" ry="2" /> +<text x="231.59" y="559.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.04%)</title><rect x="147.4" y="565" width="0.5" height="15.0" fill="rgb(0,205,147)" rx="2" ry="2" /> +<text x="150.42" y="575.5" ></text> +</g> +<g > +<title>ip_local_out (30,303,030 samples, 0.12%)</title><rect x="1379.9" y="565" width="1.6" height="15.0" fill="rgb(0,234,19)" rx="2" ry="2" /> +<text x="1382.92" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,808,080,790 samples, 6.88%)</title><rect x="86.4" y="837" width="95.0" height="15.0" fill="rgb(0,230,89)" rx="2" ry="2" /> +<text x="89.40" y="847.5" >[libc.so.6]</text> +</g> +<g > +<title>__x64_sys_openat (70,707,070 samples, 0.27%)</title><rect x="98.6" y="661" width="3.7" height="15.0" fill="rgb(0,224,7)" rx="2" ry="2" /> +<text x="101.60" y="671.5" ></text> +</g> +<g > +<title>crc_111 (10,101,010 samples, 0.04%)</title><rect x="373.4" y="405" width="0.6" height="15.0" fill="rgb(0,195,157)" rx="2" ry="2" /> +<text x="376.44" y="415.5" ></text> +</g> +<g > +<title>pipe_read (909,090,900 samples, 3.46%)</title><rect x="541.1" y="693" width="47.7" height="15.0" fill="rgb(0,194,88)" rx="2" ry="2" /> +<text x="544.10" y="703.5" >pipe..</text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="406.9" y="485" width="0.5" height="15.0" fill="rgb(0,194,70)" rx="2" ry="2" /> +<text x="409.86" y="495.5" ></text> +</g> +<g > +<title>iterate_dir (20,202,020 samples, 0.08%)</title><rect x="353.8" y="549" width="1.1" height="15.0" fill="rgb(0,233,112)" rx="2" ry="2" /> +<text x="356.81" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="214.3" y="773" width="0.5" height="15.0" fill="rgb(0,223,48)" rx="2" ry="2" /> +<text x="217.27" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="485.4" y="725" width="0.5" height="15.0" fill="rgb(0,208,72)" rx="2" ry="2" /> +<text x="488.39" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (303,030,300 samples, 1.15%)</title><rect x="60.4" y="901" width="15.9" height="15.0" fill="rgb(0,234,130)" rx="2" ry="2" /> +<text x="63.40" y="911.5" ></text> +</g> +<g > +<title>vfs_link (10,101,010 samples, 0.04%)</title><rect x="242.9" y="629" width="0.5" height="15.0" fill="rgb(0,201,146)" rx="2" ry="2" /> +<text x="245.92" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="302.9" y="581" width="0.5" height="15.0" fill="rgb(0,196,52)" rx="2" ry="2" /> +<text x="305.87" y="591.5" ></text> +</g> +<g > +<title>anon_inode_getfile (10,101,010 samples, 0.04%)</title><rect x="45.5" y="741" width="0.6" height="15.0" fill="rgb(0,203,93)" rx="2" ry="2" /> +<text x="48.55" y="751.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.04%)</title><rect x="370.8" y="533" width="0.5" height="15.0" fill="rgb(0,208,206)" rx="2" ry="2" /> +<text x="373.78" y="543.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="602.1" y="693" width="0.5" height="15.0" fill="rgb(0,197,170)" rx="2" ry="2" /> +<text x="605.11" y="703.5" ></text> +</g> +<g > +<title>blk_mq_start_request (10,101,010 samples, 0.04%)</title><rect x="449.3" y="277" width="0.5" height="15.0" fill="rgb(0,221,155)" rx="2" ry="2" /> +<text x="452.31" y="287.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.04%)</title><rect x="234.4" y="245" width="0.6" height="15.0" fill="rgb(0,211,191)" rx="2" ry="2" /> +<text x="237.43" y="255.5" ></text> +</g> +<g > +<title>file_free_rcu (10,101,010 samples, 0.04%)</title><rect x="898.7" y="709" width="0.5" height="15.0" fill="rgb(0,190,53)" rx="2" ry="2" /> +<text x="901.70" y="719.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.04%)</title><rect x="285.9" y="261" width="0.5" height="15.0" fill="rgb(0,219,82)" rx="2" ry="2" /> +<text x="288.89" y="271.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="367.1" y="581" width="0.5" height="15.0" fill="rgb(0,218,111)" rx="2" ry="2" /> +<text x="370.07" y="591.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (20,202,020 samples, 0.08%)</title><rect x="303.9" y="469" width="1.1" height="15.0" fill="rgb(0,218,0)" rx="2" ry="2" /> +<text x="306.93" y="479.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="480.6" y="613" width="0.5" height="15.0" fill="rgb(0,199,167)" rx="2" ry="2" /> +<text x="483.61" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_brk (131,313,130 samples, 0.50%)</title><rect x="934.8" y="709" width="6.9" height="15.0" fill="rgb(0,220,131)" rx="2" ry="2" /> +<text x="937.78" y="719.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (30,303,030 samples, 0.12%)</title><rect x="392.0" y="517" width="1.6" height="15.0" fill="rgb(0,232,36)" rx="2" ry="2" /> +<text x="395.01" y="527.5" ></text> +</g> +<g > +<title>inet_release (131,313,130 samples, 0.50%)</title><rect x="36.0" y="613" width="6.9" height="15.0" fill="rgb(0,230,121)" rx="2" ry="2" /> +<text x="39.00" y="623.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.04%)</title><rect x="433.4" y="677" width="0.5" height="15.0" fill="rgb(0,203,151)" rx="2" ry="2" /> +<text x="436.39" y="687.5" ></text> +</g> +<g > +<title>copy_page_range (121,212,120 samples, 0.46%)</title><rect x="516.2" y="661" width="6.3" height="15.0" fill="rgb(0,210,111)" rx="2" ry="2" /> +<text x="519.16" y="671.5" ></text> +</g> +<g > +<title>git_config_snapshot (10,101,010 samples, 0.04%)</title><rect x="345.3" y="773" width="0.5" height="15.0" fill="rgb(0,201,13)" rx="2" ry="2" /> +<text x="348.32" y="783.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="483.8" y="629" width="0.5" height="15.0" fill="rgb(0,231,87)" rx="2" ry="2" /> +<text x="486.79" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="397.8" y="661" width="3.2" height="15.0" fill="rgb(0,217,52)" rx="2" ry="2" /> +<text x="400.84" y="671.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="887.6" y="597" width="0.5" height="15.0" fill="rgb(0,196,109)" rx="2" ry="2" /> +<text x="890.55" y="607.5" ></text> +</g> +<g > +<title>get_page_from_freelist (70,707,070 samples, 0.27%)</title><rect x="925.2" y="645" width="3.7" height="15.0" fill="rgb(0,202,104)" rx="2" ry="2" /> +<text x="928.22" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="381.4" y="581" width="0.5" height="15.0" fill="rgb(0,196,91)" rx="2" ry="2" /> +<text x="384.40" y="591.5" ></text> +</g> +<g > +<title>ext4_read_block_bitmap (20,202,020 samples, 0.08%)</title><rect x="138.9" y="437" width="1.1" height="15.0" fill="rgb(0,231,122)" rx="2" ry="2" /> +<text x="141.93" y="447.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.04%)</title><rect x="303.4" y="533" width="0.5" height="15.0" fill="rgb(0,223,185)" rx="2" ry="2" /> +<text x="306.40" y="543.5" ></text> +</g> +<g > +<title>ext4_writepage_trans_blocks (10,101,010 samples, 0.04%)</title><rect x="160.7" y="549" width="0.5" height="15.0" fill="rgb(0,191,136)" rx="2" ry="2" /> +<text x="163.68" y="559.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.04%)</title><rect x="887.6" y="677" width="0.5" height="15.0" fill="rgb(0,215,73)" rx="2" ry="2" /> +<text x="890.55" y="687.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="136.8" y="437" width="0.5" height="15.0" fill="rgb(0,201,185)" rx="2" ry="2" /> +<text x="139.81" y="447.5" ></text> +</g> +<g > +<title>path_parentat (20,202,020 samples, 0.08%)</title><rect x="240.3" y="597" width="1.0" height="15.0" fill="rgb(0,211,142)" rx="2" ry="2" /> +<text x="243.27" y="607.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.04%)</title><rect x="499.7" y="645" width="0.5" height="15.0" fill="rgb(0,210,68)" rx="2" ry="2" /> +<text x="502.71" y="655.5" ></text> +</g> +<g > +<title>inet_lookup_ifaddr_rcu (10,101,010 samples, 0.04%)</title><rect x="1370.4" y="693" width="0.5" height="15.0" fill="rgb(0,219,177)" rx="2" ry="2" /> +<text x="1373.37" y="703.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="228.6" y="565" width="0.5" height="15.0" fill="rgb(0,204,40)" rx="2" ry="2" /> +<text x="231.59" y="575.5" ></text> +</g> +<g > +<title>__mem_cgroup_charge (10,101,010 samples, 0.04%)</title><rect x="76.3" y="725" width="0.6" height="15.0" fill="rgb(0,236,96)" rx="2" ry="2" /> +<text x="79.32" y="735.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="365.5" y="485" width="0.5" height="15.0" fill="rgb(0,201,167)" rx="2" ry="2" /> +<text x="368.48" y="495.5" ></text> +</g> +<g > +<title>ext4_journal_check_start (10,101,010 samples, 0.04%)</title><rect x="272.6" y="549" width="0.6" height="15.0" fill="rgb(0,204,176)" rx="2" ry="2" /> +<text x="275.63" y="559.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="430.2" y="613" width="0.5" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="433.21" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="181.9" y="805" width="1.6" height="15.0" fill="rgb(0,227,61)" rx="2" ry="2" /> +<text x="184.90" y="815.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="233.4" y="501" width="0.5" height="15.0" fill="rgb(0,197,171)" rx="2" ry="2" /> +<text x="236.37" y="511.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="463.1" y="501" width="0.5" height="15.0" fill="rgb(0,212,23)" rx="2" ry="2" /> +<text x="466.10" y="511.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="221.2" y="533" width="0.5" height="15.0" fill="rgb(0,220,30)" rx="2" ry="2" /> +<text x="224.16" y="543.5" ></text> +</g> +<g > +<title>ip_finish_output (20,202,020 samples, 0.08%)</title><rect x="1380.4" y="533" width="1.1" height="15.0" fill="rgb(0,223,207)" rx="2" ry="2" /> +<text x="1383.45" y="543.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="396.8" y="581" width="0.5" height="15.0" fill="rgb(0,190,19)" rx="2" ry="2" /> +<text x="399.78" y="591.5" ></text> +</g> +<g > +<title>__legitimize_mnt (10,101,010 samples, 0.04%)</title><rect x="410.0" y="581" width="0.6" height="15.0" fill="rgb(0,219,203)" rx="2" ry="2" /> +<text x="413.05" y="591.5" ></text> +</g> +<g > +<title>git_config_add_backend (10,101,010 samples, 0.04%)</title><rect x="345.3" y="757" width="0.5" height="15.0" fill="rgb(0,213,8)" rx="2" ry="2" /> +<text x="348.32" y="767.5" ></text> +</g> +<g > +<title>sock_alloc (10,101,010 samples, 0.04%)</title><rect x="47.7" y="709" width="0.5" height="15.0" fill="rgb(0,213,77)" rx="2" ry="2" /> +<text x="50.67" y="719.5" ></text> +</g> +<g > +<title>ext4_lookup.part.0 (10,101,010 samples, 0.04%)</title><rect x="300.2" y="533" width="0.5" height="15.0" fill="rgb(0,194,3)" rx="2" ry="2" /> +<text x="303.22" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="411.1" y="709" width="0.5" height="15.0" fill="rgb(0,219,82)" rx="2" ry="2" /> +<text x="414.11" y="719.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (80,808,080 samples, 0.31%)</title><rect x="1299.8" y="693" width="4.2" height="15.0" fill="rgb(0,201,144)" rx="2" ry="2" /> +<text x="1302.80" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (171,717,170 samples, 0.65%)</title><rect x="279.5" y="725" width="9.0" height="15.0" fill="rgb(0,238,131)" rx="2" ry="2" /> +<text x="282.53" y="735.5" ></text> +</g> +<g > +<title>git_repository_config_snapshot (90,909,090 samples, 0.35%)</title><rect x="295.4" y="709" width="4.8" height="15.0" fill="rgb(0,218,48)" rx="2" ry="2" /> +<text x="298.44" y="719.5" ></text> +</g> +<g > +<title>mkdir (141,414,140 samples, 0.54%)</title><rect x="384.0" y="629" width="7.5" height="15.0" fill="rgb(0,227,121)" rx="2" ry="2" /> +<text x="387.05" y="639.5" ></text> +</g> +<g > +<title>jsonrpc_request_destroy (161,616,160 samples, 0.62%)</title><rect x="933.2" y="885" width="8.5" height="15.0" fill="rgb(0,209,66)" rx="2" ry="2" /> +<text x="936.18" y="895.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.04%)</title><rect x="888.1" y="725" width="0.5" height="15.0" fill="rgb(0,210,116)" rx="2" ry="2" /> +<text x="891.09" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="114.5" y="661" width="0.6" height="15.0" fill="rgb(0,191,50)" rx="2" ry="2" /> +<text x="117.52" y="671.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.04%)</title><rect x="185.6" y="533" width="0.5" height="15.0" fill="rgb(0,190,74)" rx="2" ry="2" /> +<text x="188.62" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="116.1" y="661" width="0.5" height="15.0" fill="rgb(0,191,152)" rx="2" ry="2" /> +<text x="119.11" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="337.4" y="645" width="0.5" height="15.0" fill="rgb(0,205,179)" rx="2" ry="2" /> +<text x="340.36" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="188.8" y="629" width="0.5" height="15.0" fill="rgb(0,222,96)" rx="2" ry="2" /> +<text x="191.80" y="639.5" ></text> +</g> +<g > +<title>exc_page_fault (20,202,020 samples, 0.08%)</title><rect x="593.1" y="661" width="1.1" height="15.0" fill="rgb(0,199,129)" rx="2" ry="2" /> +<text x="596.09" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="414.3" y="629" width="0.5" height="15.0" fill="rgb(0,236,73)" rx="2" ry="2" /> +<text x="417.29" y="639.5" ></text> +</g> +<g > +<title>free (20,202,020 samples, 0.08%)</title><rect x="310.8" y="677" width="1.1" height="15.0" fill="rgb(0,222,201)" rx="2" ry="2" /> +<text x="313.83" y="687.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.04%)</title><rect x="281.1" y="437" width="0.5" height="15.0" fill="rgb(0,208,45)" rx="2" ry="2" /> +<text x="284.12" y="447.5" ></text> +</g> +<g > +<title>dput (80,808,080 samples, 0.31%)</title><rect x="328.9" y="629" width="4.2" height="15.0" fill="rgb(0,190,123)" rx="2" ry="2" /> +<text x="331.87" y="639.5" ></text> +</g> +<g > +<title>blk_throtl_bio (10,101,010 samples, 0.04%)</title><rect x="450.9" y="405" width="0.5" height="15.0" fill="rgb(0,226,3)" rx="2" ry="2" /> +<text x="453.90" y="415.5" ></text> +</g> +<g > +<title>current_time (10,101,010 samples, 0.04%)</title><rect x="509.3" y="645" width="0.5" height="15.0" fill="rgb(0,206,11)" rx="2" ry="2" /> +<text x="512.26" y="655.5" ></text> +</g> +<g > +<title>__handle_mm_fault (181,818,180 samples, 0.69%)</title><rect x="919.9" y="725" width="9.6" height="15.0" fill="rgb(0,238,72)" rx="2" ry="2" /> +<text x="922.92" y="735.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.04%)</title><rect x="228.1" y="597" width="0.5" height="15.0" fill="rgb(0,194,23)" rx="2" ry="2" /> +<text x="231.06" y="607.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="285.9" y="581" width="0.5" height="15.0" fill="rgb(0,205,74)" rx="2" ry="2" /> +<text x="288.89" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="471.6" y="741" width="1.1" height="15.0" fill="rgb(0,203,152)" rx="2" ry="2" /> +<text x="474.59" y="751.5" ></text> +</g> +<g > +<title>dev_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="69" width="0.5" height="15.0" fill="rgb(0,199,3)" rx="2" ry="2" /> +<text x="1370.19" y="79.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="72.1" y="757" width="0.5" height="15.0" fill="rgb(0,191,72)" rx="2" ry="2" /> +<text x="75.08" y="767.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.04%)</title><rect x="426.5" y="549" width="0.5" height="15.0" fill="rgb(0,236,25)" rx="2" ry="2" /> +<text x="429.49" y="559.5" ></text> +</g> +<g > +<title>blk_mq_submit_bio (10,101,010 samples, 0.04%)</title><rect x="450.4" y="421" width="0.5" height="15.0" fill="rgb(0,221,173)" rx="2" ry="2" /> +<text x="453.37" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="188.3" y="741" width="1.6" height="15.0" fill="rgb(0,228,158)" rx="2" ry="2" /> +<text x="191.27" y="751.5" ></text> +</g> +<g > +<title>inflate (10,101,010 samples, 0.04%)</title><rect x="209.0" y="661" width="0.5" height="15.0" fill="rgb(0,210,129)" rx="2" ry="2" /> +<text x="211.96" y="671.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="414.3" y="549" width="0.5" height="15.0" fill="rgb(0,239,98)" rx="2" ry="2" /> +<text x="417.29" y="559.5" ></text> +</g> +<g > +<title>__kmalloc (10,101,010 samples, 0.04%)</title><rect x="189.3" y="597" width="0.6" height="15.0" fill="rgb(0,236,160)" rx="2" ry="2" /> +<text x="192.33" y="607.5" ></text> +</g> +<g > +<title>try_charge_memcg (10,101,010 samples, 0.04%)</title><rect x="1326.3" y="597" width="0.6" height="15.0" fill="rgb(0,202,177)" rx="2" ry="2" /> +<text x="1329.33" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="469.5" y="725" width="0.5" height="15.0" fill="rgb(0,219,101)" rx="2" ry="2" /> +<text x="472.47" y="735.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="230.2" y="549" width="0.5" height="15.0" fill="rgb(0,235,56)" rx="2" ry="2" /> +<text x="233.18" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_connect (70,707,070 samples, 0.27%)</title><rect x="1368.8" y="821" width="3.7" height="15.0" fill="rgb(0,230,191)" rx="2" ry="2" /> +<text x="1371.78" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="345.3" y="725" width="0.5" height="15.0" fill="rgb(0,215,7)" rx="2" ry="2" /> +<text x="348.32" y="735.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.04%)</title><rect x="409.0" y="549" width="0.5" height="15.0" fill="rgb(0,234,208)" rx="2" ry="2" /> +<text x="411.99" y="559.5" ></text> +</g> +<g > +<title>opendir (10,101,010 samples, 0.04%)</title><rect x="488.0" y="661" width="0.6" height="15.0" fill="rgb(0,203,186)" rx="2" ry="2" /> +<text x="491.04" y="671.5" ></text> +</g> +<g > +<title>__schedule (50,505,050 samples, 0.19%)</title><rect x="1301.4" y="645" width="2.6" height="15.0" fill="rgb(0,191,32)" rx="2" ry="2" /> +<text x="1304.40" y="655.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.04%)</title><rect x="139.5" y="357" width="0.5" height="15.0" fill="rgb(0,213,4)" rx="2" ry="2" /> +<text x="142.46" y="367.5" ></text> +</g> +<g > +<title>path_openat (30,303,030 samples, 0.12%)</title><rect x="99.1" y="613" width="1.6" height="15.0" fill="rgb(0,195,137)" rx="2" ry="2" /> +<text x="102.13" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="316.1" y="741" width="3.2" height="15.0" fill="rgb(0,201,94)" rx="2" ry="2" /> +<text x="319.14" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="169.7" y="725" width="0.5" height="15.0" fill="rgb(0,195,43)" rx="2" ry="2" /> +<text x="172.70" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="470.0" y="661" width="0.5" height="15.0" fill="rgb(0,224,74)" rx="2" ry="2" /> +<text x="473.00" y="671.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.04%)</title><rect x="507.7" y="661" width="0.5" height="15.0" fill="rgb(0,198,203)" rx="2" ry="2" /> +<text x="510.67" y="671.5" ></text> +</g> +<g > +<title>vfs_rename (10,101,010 samples, 0.04%)</title><rect x="187.7" y="661" width="0.6" height="15.0" fill="rgb(0,228,36)" rx="2" ry="2" /> +<text x="190.74" y="671.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="457.8" y="549" width="0.5" height="15.0" fill="rgb(0,239,72)" rx="2" ry="2" /> +<text x="460.80" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="277.4" y="725" width="0.5" height="15.0" fill="rgb(0,199,103)" rx="2" ry="2" /> +<text x="280.40" y="735.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="329.9" y="485" width="1.1" height="15.0" fill="rgb(0,212,169)" rx="2" ry="2" /> +<text x="332.93" y="495.5" ></text> +</g> +<g > +<title>blk_flush_plug_list (20,202,020 samples, 0.08%)</title><rect x="372.4" y="501" width="1.0" height="15.0" fill="rgb(0,200,36)" rx="2" ry="2" /> +<text x="375.38" y="511.5" ></text> +</g> +<g > +<title>git_config_add_backend (10,101,010 samples, 0.04%)</title><rect x="294.9" y="693" width="0.5" height="15.0" fill="rgb(0,194,81)" rx="2" ry="2" /> +<text x="297.91" y="703.5" ></text> +</g> +<g > +<title>inet_csk_clear_xmit_timers (10,101,010 samples, 0.04%)</title><rect x="40.2" y="85" width="0.6" height="15.0" fill="rgb(0,237,23)" rx="2" ry="2" /> +<text x="43.24" y="95.5" ></text> +</g> +<g > +<title>do_syscall_64 (101,010,100 samples, 0.38%)</title><rect x="340.0" y="677" width="5.3" height="15.0" fill="rgb(0,229,132)" rx="2" ry="2" /> +<text x="343.01" y="687.5" ></text> +</g> +<g > +<title>do_renameat2 (80,808,080 samples, 0.31%)</title><rect x="433.9" y="613" width="4.3" height="15.0" fill="rgb(0,236,84)" rx="2" ry="2" /> +<text x="436.92" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="281.1" y="581" width="0.5" height="15.0" fill="rgb(0,230,149)" rx="2" ry="2" /> +<text x="284.12" y="591.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.04%)</title><rect x="432.9" y="549" width="0.5" height="15.0" fill="rgb(0,238,77)" rx="2" ry="2" /> +<text x="435.86" y="559.5" ></text> +</g> +<g > +<title>close (20,202,020 samples, 0.08%)</title><rect x="327.8" y="709" width="1.1" height="15.0" fill="rgb(0,230,202)" rx="2" ry="2" /> +<text x="330.81" y="719.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (10,101,010 samples, 0.04%)</title><rect x="334.2" y="581" width="0.5" height="15.0" fill="rgb(0,215,207)" rx="2" ry="2" /> +<text x="337.18" y="591.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.04%)</title><rect x="531.0" y="725" width="0.5" height="15.0" fill="rgb(0,220,123)" rx="2" ry="2" /> +<text x="534.01" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="284.3" y="629" width="0.5" height="15.0" fill="rgb(0,206,52)" rx="2" ry="2" /> +<text x="287.30" y="639.5" ></text> +</g> +<g > +<title>kernel_fpu_begin_mask (10,101,010 samples, 0.04%)</title><rect x="128.3" y="485" width="0.5" height="15.0" fill="rgb(0,229,56)" rx="2" ry="2" /> +<text x="131.32" y="495.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="295.4" y="629" width="1.1" height="15.0" fill="rgb(0,193,91)" rx="2" ry="2" /> +<text x="298.44" y="639.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="366.0" y="629" width="0.5" height="15.0" fill="rgb(0,203,176)" rx="2" ry="2" /> +<text x="369.01" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="394.1" y="645" width="1.6" height="15.0" fill="rgb(0,196,194)" rx="2" ry="2" /> +<text x="397.13" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="381.4" y="597" width="0.5" height="15.0" fill="rgb(0,204,179)" rx="2" ry="2" /> +<text x="384.40" y="607.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (111,111,110 samples, 0.42%)</title><rect x="37.1" y="517" width="5.8" height="15.0" fill="rgb(0,192,73)" rx="2" ry="2" /> +<text x="40.06" y="527.5" ></text> +</g> +<g > +<title>tcp_initialize_rcv_mss (10,101,010 samples, 0.04%)</title><rect x="1388.4" y="709" width="0.5" height="15.0" fill="rgb(0,190,123)" rx="2" ry="2" /> +<text x="1391.41" y="719.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (161,616,160 samples, 0.62%)</title><rect x="34.4" y="725" width="8.5" height="15.0" fill="rgb(0,207,65)" rx="2" ry="2" /> +<text x="37.41" y="735.5" ></text> +</g> +<g > +<title>ip_local_deliver (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="309" width="0.6" height="15.0" fill="rgb(0,191,80)" rx="2" ry="2" /> +<text x="1388.22" y="319.5" ></text> +</g> +<g > +<title>ext4_getblk (20,202,020 samples, 0.08%)</title><rect x="168.6" y="549" width="1.1" height="15.0" fill="rgb(0,193,21)" rx="2" ry="2" /> +<text x="171.64" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="188.3" y="725" width="1.6" height="15.0" fill="rgb(0,220,98)" rx="2" ry="2" /> +<text x="191.27" y="735.5" ></text> +</g> +<g > +<title>block_invalidatepage (10,101,010 samples, 0.04%)</title><rect x="187.2" y="485" width="0.5" height="15.0" fill="rgb(0,228,141)" rx="2" ry="2" /> +<text x="190.21" y="495.5" ></text> +</g> +<g > +<title>charge_memcg (10,101,010 samples, 0.04%)</title><rect x="615.9" y="725" width="0.5" height="15.0" fill="rgb(0,195,130)" rx="2" ry="2" /> +<text x="618.91" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.08%)</title><rect x="52.4" y="741" width="1.1" height="15.0" fill="rgb(0,206,115)" rx="2" ry="2" /> +<text x="55.45" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="221.7" y="805" width="0.5" height="15.0" fill="rgb(0,207,56)" rx="2" ry="2" /> +<text x="224.70" y="815.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.04%)</title><rect x="469.5" y="677" width="0.5" height="15.0" fill="rgb(0,201,158)" rx="2" ry="2" /> +<text x="472.47" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_wait4 (10,101,010 samples, 0.04%)</title><rect x="598.9" y="773" width="0.6" height="15.0" fill="rgb(0,216,125)" rx="2" ry="2" /> +<text x="601.93" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="200.5" y="677" width="0.5" height="15.0" fill="rgb(0,222,9)" rx="2" ry="2" /> +<text x="203.47" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="339.5" y="661" width="0.5" height="15.0" fill="rgb(0,195,205)" rx="2" ry="2" /> +<text x="342.48" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="183.5" y="693" width="1.1" height="15.0" fill="rgb(0,194,186)" rx="2" ry="2" /> +<text x="186.49" y="703.5" ></text> +</g> +<g > +<title>tcp_send_ack (10,101,010 samples, 0.04%)</title><rect x="12.7" y="261" width="0.5" height="15.0" fill="rgb(0,200,30)" rx="2" ry="2" /> +<text x="15.65" y="271.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.08%)</title><rect x="220.6" y="565" width="1.1" height="15.0" fill="rgb(0,233,60)" rx="2" ry="2" /> +<text x="223.63" y="575.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="478.5" y="565" width="0.5" height="15.0" fill="rgb(0,233,36)" rx="2" ry="2" /> +<text x="481.49" y="575.5" ></text> +</g> +<g > +<title>tcp_time_wait (20,202,020 samples, 0.08%)</title><rect x="39.7" y="117" width="1.1" height="15.0" fill="rgb(0,219,27)" rx="2" ry="2" /> +<text x="42.71" y="127.5" ></text> +</g> +<g > +<title>get_zeroed_page (10,101,010 samples, 0.04%)</title><rect x="516.7" y="613" width="0.5" height="15.0" fill="rgb(0,233,77)" rx="2" ry="2" /> +<text x="519.69" y="623.5" ></text> +</g> +<g > +<title>__put_user_nocheck_8 (20,202,020 samples, 0.08%)</title><rect x="593.1" y="693" width="1.1" height="15.0" fill="rgb(0,192,43)" rx="2" ry="2" /> +<text x="596.09" y="703.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.04%)</title><rect x="372.4" y="389" width="0.5" height="15.0" fill="rgb(0,196,52)" rx="2" ry="2" /> +<text x="375.38" y="399.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.04%)</title><rect x="129.9" y="517" width="0.5" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="132.91" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_link (70,707,070 samples, 0.27%)</title><rect x="239.7" y="661" width="3.7" height="15.0" fill="rgb(0,222,174)" rx="2" ry="2" /> +<text x="242.73" y="671.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="353.3" y="549" width="0.5" height="15.0" fill="rgb(0,235,22)" rx="2" ry="2" /> +<text x="356.28" y="559.5" ></text> +</g> +<g > +<title>alloc_inode (10,101,010 samples, 0.04%)</title><rect x="418.5" y="597" width="0.6" height="15.0" fill="rgb(0,203,116)" rx="2" ry="2" /> +<text x="421.54" y="607.5" ></text> +</g> +<g > +<title>my_chdir (50,505,050 samples, 0.19%)</title><rect x="601.6" y="869" width="2.6" height="15.0" fill="rgb(0,235,59)" rx="2" ry="2" /> +<text x="604.58" y="879.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="293.3" y="693" width="1.1" height="15.0" fill="rgb(0,204,184)" rx="2" ry="2" /> +<text x="296.32" y="703.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.04%)</title><rect x="432.9" y="501" width="0.5" height="15.0" fill="rgb(0,200,4)" rx="2" ry="2" /> +<text x="435.86" y="511.5" ></text> +</g> +<g > +<title>rmqueue (10,101,010 samples, 0.04%)</title><rect x="407.9" y="437" width="0.6" height="15.0" fill="rgb(0,211,134)" rx="2" ry="2" /> +<text x="410.92" y="447.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="126.7" y="501" width="0.6" height="15.0" fill="rgb(0,221,23)" rx="2" ry="2" /> +<text x="129.72" y="511.5" ></text> +</g> +<g > +<title>jsonrpc_request_set_param_string (626,262,620 samples, 2.38%)</title><rect x="900.3" y="869" width="32.9" height="15.0" fill="rgb(0,234,152)" rx="2" ry="2" /> +<text x="903.29" y="879.5" >js..</text> +</g> +<g > +<title>blk_mq_flush_plug_list (10,101,010 samples, 0.04%)</title><rect x="187.7" y="501" width="0.6" height="15.0" fill="rgb(0,239,46)" rx="2" ry="2" /> +<text x="190.74" y="511.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="302.9" y="469" width="0.5" height="15.0" fill="rgb(0,232,121)" rx="2" ry="2" /> +<text x="305.87" y="479.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="197" width="0.6" height="15.0" fill="rgb(0,195,150)" rx="2" ry="2" /> +<text x="1383.45" y="207.5" ></text> +</g> +<g > +<title>__jbd2_journal_temp_unlink_buffer (10,101,010 samples, 0.04%)</title><rect x="232.3" y="485" width="0.5" height="15.0" fill="rgb(0,198,108)" rx="2" ry="2" /> +<text x="235.31" y="495.5" ></text> +</g> +<g > +<title>[libz.so.1.2.11] (10,101,010 samples, 0.04%)</title><rect x="209.0" y="645" width="0.5" height="15.0" fill="rgb(0,214,40)" rx="2" ry="2" /> +<text x="211.96" y="655.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="350.1" y="453" width="0.5" height="15.0" fill="rgb(0,212,3)" rx="2" ry="2" /> +<text x="353.09" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.35%)</title><rect x="301.8" y="661" width="4.8" height="15.0" fill="rgb(0,227,209)" rx="2" ry="2" /> +<text x="304.81" y="671.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.04%)</title><rect x="182.4" y="725" width="0.6" height="15.0" fill="rgb(0,207,150)" rx="2" ry="2" /> +<text x="185.43" y="735.5" ></text> +</g> +<g > +<title>create_pipe_files (10,101,010 samples, 0.04%)</title><rect x="598.4" y="741" width="0.5" height="15.0" fill="rgb(0,190,54)" rx="2" ry="2" /> +<text x="601.40" y="751.5" ></text> +</g> +<g > +<title>storvsc_do_io (20,202,020 samples, 0.08%)</title><rect x="436.0" y="229" width="1.1" height="15.0" fill="rgb(0,221,206)" rx="2" ry="2" /> +<text x="439.04" y="239.5" ></text> +</g> +<g > +<title>do_sys_openat2 (60,606,060 samples, 0.23%)</title><rect x="98.6" y="645" width="3.2" height="15.0" fill="rgb(0,239,193)" rx="2" ry="2" /> +<text x="101.60" y="655.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.04%)</title><rect x="279.0" y="645" width="0.5" height="15.0" fill="rgb(0,226,71)" rx="2" ry="2" /> +<text x="282.00" y="655.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="196.8" y="629" width="0.5" height="15.0" fill="rgb(0,197,105)" rx="2" ry="2" /> +<text x="199.76" y="639.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.04%)</title><rect x="285.4" y="597" width="0.5" height="15.0" fill="rgb(0,215,18)" rx="2" ry="2" /> +<text x="288.36" y="607.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="367.1" y="517" width="0.5" height="15.0" fill="rgb(0,191,121)" rx="2" ry="2" /> +<text x="370.07" y="527.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (20,202,020 samples, 0.08%)</title><rect x="593.1" y="677" width="1.1" height="15.0" fill="rgb(0,213,108)" rx="2" ry="2" /> +<text x="596.09" y="687.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.04%)</title><rect x="285.9" y="485" width="0.5" height="15.0" fill="rgb(0,226,51)" rx="2" ry="2" /> +<text x="288.89" y="495.5" ></text> +</g> +<g > +<title>iput (40,404,040 samples, 0.15%)</title><rect x="433.9" y="533" width="2.1" height="15.0" fill="rgb(0,230,15)" rx="2" ry="2" /> +<text x="436.92" y="543.5" ></text> +</g> +<g > +<title>open_last_lookups (40,404,040 samples, 0.15%)</title><rect x="405.3" y="597" width="2.1" height="15.0" fill="rgb(0,236,32)" rx="2" ry="2" /> +<text x="408.27" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (212,121,210 samples, 0.81%)</title><rect x="380.9" y="645" width="11.1" height="15.0" fill="rgb(0,201,150)" rx="2" ry="2" /> +<text x="383.87" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="57.2" y="645" width="0.6" height="15.0" fill="rgb(0,211,46)" rx="2" ry="2" /> +<text x="60.22" y="655.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.04%)</title><rect x="280.6" y="629" width="0.5" height="15.0" fill="rgb(0,196,58)" rx="2" ry="2" /> +<text x="283.59" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (111,111,110 samples, 0.42%)</title><rect x="86.9" y="677" width="5.9" height="15.0" fill="rgb(0,239,194)" rx="2" ry="2" /> +<text x="89.93" y="687.5" ></text> +</g> +<g > +<title>__sk_dst_check (10,101,010 samples, 0.04%)</title><rect x="42.4" y="485" width="0.5" height="15.0" fill="rgb(0,193,105)" rx="2" ry="2" /> +<text x="45.36" y="495.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.04%)</title><rect x="41.3" y="261" width="0.5" height="15.0" fill="rgb(0,197,132)" rx="2" ry="2" /> +<text x="44.30" y="271.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="211.6" y="757" width="0.5" height="15.0" fill="rgb(0,213,160)" rx="2" ry="2" /> +<text x="214.61" y="767.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="430.7" y="709" width="0.6" height="15.0" fill="rgb(0,219,186)" rx="2" ry="2" /> +<text x="433.74" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="102.8" y="645" width="0.6" height="15.0" fill="rgb(0,235,17)" rx="2" ry="2" /> +<text x="105.85" y="655.5" ></text> +</g> +<g > +<title>do_unlinkat (40,404,040 samples, 0.15%)</title><rect x="420.7" y="677" width="2.1" height="15.0" fill="rgb(0,195,171)" rx="2" ry="2" /> +<text x="423.66" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="315.1" y="597" width="0.5" height="15.0" fill="rgb(0,202,51)" rx="2" ry="2" /> +<text x="318.07" y="607.5" ></text> +</g> +<g > +<title>ext4_find_entry (10,101,010 samples, 0.04%)</title><rect x="109.2" y="533" width="0.5" height="15.0" fill="rgb(0,216,84)" rx="2" ry="2" /> +<text x="112.22" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (111,111,110 samples, 0.42%)</title><rect x="385.6" y="581" width="5.9" height="15.0" fill="rgb(0,191,20)" rx="2" ry="2" /> +<text x="388.64" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="487.5" y="597" width="0.5" height="15.0" fill="rgb(0,206,59)" rx="2" ry="2" /> +<text x="490.51" y="607.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.08%)</title><rect x="68.9" y="709" width="1.1" height="15.0" fill="rgb(0,198,206)" rx="2" ry="2" /> +<text x="71.89" y="719.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (10,101,010 samples, 0.04%)</title><rect x="12.7" y="309" width="0.5" height="15.0" fill="rgb(0,234,179)" rx="2" ry="2" /> +<text x="15.65" y="319.5" ></text> +</g> +<g > +<title>mm_init (10,101,010 samples, 0.04%)</title><rect x="527.3" y="677" width="0.5" height="15.0" fill="rgb(0,225,17)" rx="2" ry="2" /> +<text x="530.30" y="687.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="238.7" y="565" width="0.5" height="15.0" fill="rgb(0,217,27)" rx="2" ry="2" /> +<text x="241.67" y="575.5" ></text> +</g> +<g > +<title>ipv4_confirm (10,101,010 samples, 0.04%)</title><rect x="41.8" y="421" width="0.6" height="15.0" fill="rgb(0,224,21)" rx="2" ry="2" /> +<text x="44.83" y="431.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="1299.3" y="709" width="0.5" height="15.0" fill="rgb(0,210,112)" rx="2" ry="2" /> +<text x="1302.27" y="719.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.04%)</title><rect x="86.9" y="565" width="0.6" height="15.0" fill="rgb(0,191,132)" rx="2" ry="2" /> +<text x="89.93" y="575.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="171.3" y="789" width="0.5" height="15.0" fill="rgb(0,205,84)" rx="2" ry="2" /> +<text x="174.29" y="799.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="437.1" y="421" width="0.5" height="15.0" fill="rgb(0,213,208)" rx="2" ry="2" /> +<text x="440.10" y="431.5" ></text> +</g> +<g > +<title>tcp_sendmsg_locked (575,757,570 samples, 2.19%)</title><rect x="1338.5" y="677" width="30.3" height="15.0" fill="rgb(0,220,11)" rx="2" ry="2" /> +<text x="1341.54" y="687.5" >tc..</text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="491.8" y="709" width="0.5" height="15.0" fill="rgb(0,225,195)" rx="2" ry="2" /> +<text x="494.75" y="719.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="277" width="0.6" height="15.0" fill="rgb(0,224,172)" rx="2" ry="2" /> +<text x="1388.22" y="287.5" ></text> +</g> +<g > +<title>storvsc_on_channel_callback (10,101,010 samples, 0.04%)</title><rect x="131.0" y="389" width="0.5" height="15.0" fill="rgb(0,212,116)" rx="2" ry="2" /> +<text x="133.97" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="185.6" y="629" width="1.1" height="15.0" fill="rgb(0,209,189)" rx="2" ry="2" /> +<text x="188.62" y="639.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.04%)</title><rect x="376.6" y="645" width="0.6" height="15.0" fill="rgb(0,209,159)" rx="2" ry="2" /> +<text x="379.62" y="655.5" ></text> +</g> +<g > +<title>rm_rf (1,818,181,800 samples, 6.92%)</title><rect x="86.4" y="853" width="95.5" height="15.0" fill="rgb(0,230,167)" rx="2" ry="2" /> +<text x="89.40" y="863.5" >rm_rf</text> +</g> +<g > +<title>ext4_htree_fill_tree (30,303,030 samples, 0.12%)</title><rect x="93.8" y="549" width="1.6" height="15.0" fill="rgb(0,217,172)" rx="2" ry="2" /> +<text x="96.83" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="265.2" y="613" width="0.5" height="15.0" fill="rgb(0,219,192)" rx="2" ry="2" /> +<text x="268.20" y="623.5" ></text> +</g> +<g > +<title>truncate_cleanup_page (10,101,010 samples, 0.04%)</title><rect x="187.2" y="517" width="0.5" height="15.0" fill="rgb(0,200,159)" rx="2" ry="2" /> +<text x="190.21" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="356.5" y="597" width="1.6" height="15.0" fill="rgb(0,233,151)" rx="2" ry="2" /> +<text x="359.46" y="607.5" ></text> +</g> +<g > +<title>storvsc_on_io_completion (10,101,010 samples, 0.04%)</title><rect x="201.0" y="405" width="0.5" height="15.0" fill="rgb(0,212,67)" rx="2" ry="2" /> +<text x="204.00" y="415.5" ></text> +</g> +<g > +<title>ext4_end_bio (10,101,010 samples, 0.04%)</title><rect x="275.3" y="197" width="0.5" height="15.0" fill="rgb(0,228,3)" rx="2" ry="2" /> +<text x="278.28" y="207.5" ></text> +</g> +<g > +<title>server_listen_thread (585,858,580 samples, 2.23%)</title><rect x="23.8" y="901" width="30.8" height="15.0" fill="rgb(0,207,106)" rx="2" ry="2" /> +<text x="26.79" y="911.5" >se..</text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.04%)</title><rect x="899.2" y="757" width="0.6" height="15.0" fill="rgb(0,236,97)" rx="2" ry="2" /> +<text x="902.23" y="767.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.04%)</title><rect x="89.6" y="485" width="0.5" height="15.0" fill="rgb(0,209,89)" rx="2" ry="2" /> +<text x="92.58" y="495.5" ></text> +</g> +<g > +<title>get_mem_cgroup_from_mm (20,202,020 samples, 0.08%)</title><rect x="1326.9" y="613" width="1.0" height="15.0" fill="rgb(0,235,34)" rx="2" ry="2" /> +<text x="1329.86" y="623.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.04%)</title><rect x="887.6" y="693" width="0.5" height="15.0" fill="rgb(0,212,6)" rx="2" ry="2" /> +<text x="890.55" y="703.5" ></text> +</g> +<g > +<title>cgroup_can_fork (10,101,010 samples, 0.04%)</title><rect x="19.0" y="869" width="0.6" height="15.0" fill="rgb(0,197,181)" rx="2" ry="2" /> +<text x="22.02" y="879.5" ></text> +</g> +<g > +<title>tcp_send_fin (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="629" width="0.6" height="15.0" fill="rgb(0,230,75)" rx="2" ry="2" /> +<text x="1388.22" y="639.5" ></text> +</g> +<g > +<title>schedule (20,202,020 samples, 0.08%)</title><rect x="16.9" y="773" width="1.1" height="15.0" fill="rgb(0,231,151)" rx="2" ry="2" /> +<text x="19.90" y="783.5" ></text> +</g> +<g > +<title>__legitimize_mnt (10,101,010 samples, 0.04%)</title><rect x="352.7" y="437" width="0.6" height="15.0" fill="rgb(0,195,171)" rx="2" ry="2" /> +<text x="355.75" y="447.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="349.0" y="533" width="0.6" height="15.0" fill="rgb(0,231,71)" rx="2" ry="2" /> +<text x="352.03" y="543.5" ></text> +</g> +<g > +<title>ext4_evict_inode (10,101,010 samples, 0.04%)</title><rect x="187.2" y="565" width="0.5" height="15.0" fill="rgb(0,196,42)" rx="2" ry="2" /> +<text x="190.21" y="575.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="147.9" y="533" width="0.6" height="15.0" fill="rgb(0,223,125)" rx="2" ry="2" /> +<text x="150.95" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="412.2" y="693" width="0.5" height="15.0" fill="rgb(0,238,149)" rx="2" ry="2" /> +<text x="415.17" y="703.5" ></text> +</g> +<g > +<title>readdir64 (10,101,010 samples, 0.04%)</title><rect x="315.6" y="773" width="0.5" height="15.0" fill="rgb(0,233,49)" rx="2" ry="2" /> +<text x="318.61" y="783.5" ></text> +</g> +<g > +<title>close (30,303,030 samples, 0.12%)</title><rect x="218.0" y="709" width="1.6" height="15.0" fill="rgb(0,203,17)" rx="2" ry="2" /> +<text x="220.98" y="719.5" ></text> +</g> +<g > +<title>git_config_open_default (50,505,050 samples, 0.19%)</title><rect x="468.9" y="773" width="2.7" height="15.0" fill="rgb(0,213,97)" rx="2" ry="2" /> +<text x="471.94" y="783.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="294.4" y="613" width="0.5" height="15.0" fill="rgb(0,190,38)" rx="2" ry="2" /> +<text x="297.38" y="623.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="419.1" y="469" width="0.5" height="15.0" fill="rgb(0,226,206)" rx="2" ry="2" /> +<text x="422.07" y="479.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.04%)</title><rect x="48.2" y="613" width="0.5" height="15.0" fill="rgb(0,234,172)" rx="2" ry="2" /> +<text x="51.20" y="623.5" ></text> +</g> +<g > +<title>__mod_node_page_state (10,101,010 samples, 0.04%)</title><rect x="941.1" y="517" width="0.6" height="15.0" fill="rgb(0,230,91)" rx="2" ry="2" /> +<text x="944.14" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="346.4" y="677" width="0.5" height="15.0" fill="rgb(0,207,174)" rx="2" ry="2" /> +<text x="349.38" y="687.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="469" width="0.5" height="15.0" fill="rgb(0,224,173)" rx="2" ry="2" /> +<text x="1342.60" y="479.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="399.4" y="597" width="0.6" height="15.0" fill="rgb(0,215,174)" rx="2" ry="2" /> +<text x="402.43" y="607.5" ></text> +</g> +<g > +<title>__d_alloc (10,101,010 samples, 0.04%)</title><rect x="1373.6" y="741" width="0.5" height="15.0" fill="rgb(0,203,13)" rx="2" ry="2" /> +<text x="1376.55" y="751.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="412.2" y="661" width="0.5" height="15.0" fill="rgb(0,208,94)" rx="2" ry="2" /> +<text x="415.17" y="671.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.04%)</title><rect x="79.5" y="789" width="0.5" height="15.0" fill="rgb(0,190,79)" rx="2" ry="2" /> +<text x="82.50" y="799.5" ></text> +</g> +<g > +<title>__find_get_block_slow (10,101,010 samples, 0.04%)</title><rect x="139.5" y="373" width="0.5" height="15.0" fill="rgb(0,210,153)" rx="2" ry="2" /> +<text x="142.46" y="383.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="201.0" y="517" width="0.5" height="15.0" fill="rgb(0,193,71)" rx="2" ry="2" /> +<text x="204.00" y="527.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="305.0" y="373" width="0.5" height="15.0" fill="rgb(0,217,92)" rx="2" ry="2" /> +<text x="307.99" y="383.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.04%)</title><rect x="105.5" y="533" width="0.5" height="15.0" fill="rgb(0,213,49)" rx="2" ry="2" /> +<text x="108.50" y="543.5" ></text> +</g> +<g > +<title>git_config_add_backend (141,414,140 samples, 0.54%)</title><rect x="497.6" y="741" width="7.4" height="15.0" fill="rgb(0,220,165)" rx="2" ry="2" /> +<text x="500.59" y="751.5" ></text> +</g> +<g > +<title>iput (20,202,020 samples, 0.08%)</title><rect x="147.4" y="613" width="1.1" height="15.0" fill="rgb(0,234,134)" rx="2" ry="2" /> +<text x="150.42" y="623.5" ></text> +</g> +<g > +<title>file_modified (10,101,010 samples, 0.04%)</title><rect x="185.1" y="565" width="0.5" height="15.0" fill="rgb(0,228,49)" rx="2" ry="2" /> +<text x="188.09" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="490.2" y="757" width="0.5" height="15.0" fill="rgb(0,233,71)" rx="2" ry="2" /> +<text x="493.16" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (151,515,150 samples, 0.58%)</title><rect x="118.2" y="677" width="8.0" height="15.0" fill="rgb(0,220,43)" rx="2" ry="2" /> +<text x="121.24" y="687.5" ></text> +</g> +<g > +<title>path_openat (282,828,280 samples, 1.08%)</title><rect x="60.4" y="837" width="14.9" height="15.0" fill="rgb(0,191,141)" rx="2" ry="2" /> +<text x="63.40" y="847.5" ></text> +</g> +<g > +<title>git_config_get_string (10,101,010 samples, 0.04%)</title><rect x="289.1" y="709" width="0.5" height="15.0" fill="rgb(0,239,111)" rx="2" ry="2" /> +<text x="292.08" y="719.5" ></text> +</g> +<g > +<title>dput (20,202,020 samples, 0.08%)</title><rect x="34.9" y="661" width="1.1" height="15.0" fill="rgb(0,226,37)" rx="2" ry="2" /> +<text x="37.94" y="671.5" ></text> +</g> +<g > +<title>tcp_close (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="661" width="0.6" height="15.0" fill="rgb(0,192,181)" rx="2" ry="2" /> +<text x="1388.22" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="164.9" y="725" width="1.1" height="15.0" fill="rgb(0,195,85)" rx="2" ry="2" /> +<text x="167.93" y="735.5" ></text> +</g> +<g > +<title>new_sync_write (30,303,030 samples, 0.12%)</title><rect x="303.9" y="533" width="1.6" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="306.93" y="543.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="206.8" y="517" width="1.1" height="15.0" fill="rgb(0,221,188)" rx="2" ry="2" /> +<text x="209.84" y="527.5" ></text> +</g> +<g > +<title>ext4_evict_inode (30,303,030 samples, 0.12%)</title><rect x="172.4" y="645" width="1.5" height="15.0" fill="rgb(0,216,55)" rx="2" ry="2" /> +<text x="175.35" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (1,060,606,050 samples, 4.04%)</title><rect x="538.4" y="789" width="55.8" height="15.0" fill="rgb(0,221,209)" rx="2" ry="2" /> +<text x="541.44" y="799.5" >entry..</text> +</g> +<g > +<title>flockfile (10,101,010 samples, 0.04%)</title><rect x="181.4" y="821" width="0.5" height="15.0" fill="rgb(0,221,134)" rx="2" ry="2" /> +<text x="184.37" y="831.5" ></text> +</g> +<g > +<title>__ext4_unlink (20,202,020 samples, 0.08%)</title><rect x="91.7" y="517" width="1.1" height="15.0" fill="rgb(0,198,59)" rx="2" ry="2" /> +<text x="94.71" y="527.5" ></text> +</g> +<g > +<title>ext4_es_insert_extent (10,101,010 samples, 0.04%)</title><rect x="325.2" y="437" width="0.5" height="15.0" fill="rgb(0,194,14)" rx="2" ry="2" /> +<text x="328.16" y="447.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="378.7" y="517" width="0.6" height="15.0" fill="rgb(0,212,5)" rx="2" ry="2" /> +<text x="381.74" y="527.5" ></text> +</g> +<g > +<title>ext4_finish_bio (10,101,010 samples, 0.04%)</title><rect x="94.9" y="261" width="0.5" height="15.0" fill="rgb(0,208,117)" rx="2" ry="2" /> +<text x="97.89" y="271.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.04%)</title><rect x="15.8" y="741" width="0.6" height="15.0" fill="rgb(0,195,142)" rx="2" ry="2" /> +<text x="18.84" y="751.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="528.9" y="645" width="0.5" height="15.0" fill="rgb(0,230,121)" rx="2" ry="2" /> +<text x="531.89" y="655.5" ></text> +</g> +<g > +<title>prepare_creds (10,101,010 samples, 0.04%)</title><rect x="189.3" y="629" width="0.6" height="15.0" fill="rgb(0,203,12)" rx="2" ry="2" /> +<text x="192.33" y="639.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="135.2" y="469" width="0.5" height="15.0" fill="rgb(0,227,4)" rx="2" ry="2" /> +<text x="138.21" y="479.5" ></text> +</g> +<g > +<title>wait_on_page_bit_common (20,202,020 samples, 0.08%)</title><rect x="435.0" y="421" width="1.0" height="15.0" fill="rgb(0,207,2)" rx="2" ry="2" /> +<text x="437.98" y="431.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (20,202,020 samples, 0.08%)</title><rect x="110.8" y="661" width="1.1" height="15.0" fill="rgb(0,200,110)" rx="2" ry="2" /> +<text x="113.81" y="671.5" ></text> +</g> +<g > +<title>do_mkdirat (60,606,060 samples, 0.23%)</title><rect x="506.1" y="741" width="3.2" height="15.0" fill="rgb(0,207,56)" rx="2" ry="2" /> +<text x="509.08" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (90,909,090 samples, 0.35%)</title><rect x="77.4" y="917" width="4.8" height="15.0" fill="rgb(0,206,103)" rx="2" ry="2" /> +<text x="80.38" y="927.5" ></text> +</g> +<g > +<title>filename_create (10,101,010 samples, 0.04%)</title><rect x="454.1" y="677" width="0.5" height="15.0" fill="rgb(0,199,165)" rx="2" ry="2" /> +<text x="457.08" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (50,505,050 samples, 0.19%)</title><rect x="418.0" y="693" width="2.7" height="15.0" fill="rgb(0,198,43)" rx="2" ry="2" /> +<text x="421.00" y="703.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.04%)</title><rect x="394.7" y="437" width="0.5" height="15.0" fill="rgb(0,200,19)" rx="2" ry="2" /> +<text x="397.66" y="447.5" ></text> +</g> +<g > +<title>git_repository_is_empty (202,020,200 samples, 0.77%)</title><rect x="479.6" y="805" width="10.6" height="15.0" fill="rgb(0,201,24)" rx="2" ry="2" /> +<text x="482.55" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (1,888,888,870 samples, 7.19%)</title><rect x="223.3" y="805" width="99.2" height="15.0" fill="rgb(0,221,39)" rx="2" ry="2" /> +<text x="226.29" y="815.5" >[libgit2.so...</text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.04%)</title><rect x="367.1" y="565" width="0.5" height="15.0" fill="rgb(0,199,85)" rx="2" ry="2" /> +<text x="370.07" y="575.5" ></text> +</g> +<g > +<title>__cgroup_bpf_run_filter_skb (10,101,010 samples, 0.04%)</title><rect x="1371.4" y="613" width="0.6" height="15.0" fill="rgb(0,196,108)" rx="2" ry="2" /> +<text x="1374.43" y="623.5" ></text> +</g> +<g > +<title>ext4_es_free_extent (10,101,010 samples, 0.04%)</title><rect x="268.9" y="437" width="0.5" height="15.0" fill="rgb(0,211,192)" rx="2" ry="2" /> +<text x="271.92" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="284.3" y="613" width="0.5" height="15.0" fill="rgb(0,211,129)" rx="2" ry="2" /> +<text x="287.30" y="623.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="471.1" y="629" width="0.5" height="15.0" fill="rgb(0,227,165)" rx="2" ry="2" /> +<text x="474.06" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (141,414,140 samples, 0.54%)</title><rect x="497.6" y="725" width="7.4" height="15.0" fill="rgb(0,227,45)" rx="2" ry="2" /> +<text x="500.59" y="735.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.08%)</title><rect x="439.8" y="661" width="1.0" height="15.0" fill="rgb(0,234,197)" rx="2" ry="2" /> +<text x="442.76" y="671.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="307.1" y="533" width="0.5" height="15.0" fill="rgb(0,228,82)" rx="2" ry="2" /> +<text x="310.12" y="543.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.04%)</title><rect x="221.7" y="469" width="0.5" height="15.0" fill="rgb(0,214,183)" rx="2" ry="2" /> +<text x="224.70" y="479.5" ></text> +</g> +<g > +<title>ext4_superblock_csum_set (10,101,010 samples, 0.04%)</title><rect x="329.4" y="501" width="0.5" height="15.0" fill="rgb(0,211,183)" rx="2" ry="2" /> +<text x="332.40" y="511.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="170.2" y="661" width="0.6" height="15.0" fill="rgb(0,228,83)" rx="2" ry="2" /> +<text x="173.23" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="413.2" y="693" width="3.7" height="15.0" fill="rgb(0,223,7)" rx="2" ry="2" /> +<text x="416.23" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="1382.6" y="773" width="1.0" height="15.0" fill="rgb(0,236,173)" rx="2" ry="2" /> +<text x="1385.57" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="149.5" y="725" width="0.6" height="15.0" fill="rgb(0,192,82)" rx="2" ry="2" /> +<text x="152.54" y="735.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.04%)</title><rect x="470.5" y="661" width="0.6" height="15.0" fill="rgb(0,230,120)" rx="2" ry="2" /> +<text x="473.53" y="671.5" ></text> +</g> +<g > +<title>vfs_write (40,404,040 samples, 0.15%)</title><rect x="206.3" y="629" width="2.1" height="15.0" fill="rgb(0,216,125)" rx="2" ry="2" /> +<text x="209.31" y="639.5" ></text> +</g> +<g > +<title>__d_rehash (10,101,010 samples, 0.04%)</title><rect x="81.1" y="725" width="0.5" height="15.0" fill="rgb(0,194,96)" rx="2" ry="2" /> +<text x="84.10" y="735.5" ></text> +</g> +<g > +<title>ext4_writepages (50,505,050 samples, 0.19%)</title><rect x="371.8" y="533" width="2.7" height="15.0" fill="rgb(0,218,18)" rx="2" ry="2" /> +<text x="374.85" y="543.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="219.6" y="629" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="222.57" y="639.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="300.2" y="629" width="0.5" height="15.0" fill="rgb(0,238,162)" rx="2" ry="2" /> +<text x="303.22" y="639.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="97.0" y="389" width="0.5" height="15.0" fill="rgb(0,230,161)" rx="2" ry="2" /> +<text x="100.01" y="399.5" ></text> +</g> +<g > +<title>opendir (10,101,010 samples, 0.04%)</title><rect x="276.9" y="757" width="0.5" height="15.0" fill="rgb(0,227,67)" rx="2" ry="2" /> +<text x="279.87" y="767.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (20,202,020 samples, 0.08%)</title><rect x="258.3" y="693" width="1.1" height="15.0" fill="rgb(0,231,82)" rx="2" ry="2" /> +<text x="261.30" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.08%)</title><rect x="1382.6" y="741" width="1.0" height="15.0" fill="rgb(0,215,123)" rx="2" ry="2" /> +<text x="1385.57" y="751.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="471.1" y="613" width="0.5" height="15.0" fill="rgb(0,216,65)" rx="2" ry="2" /> +<text x="474.06" y="623.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="284.8" y="517" width="0.6" height="15.0" fill="rgb(0,202,172)" rx="2" ry="2" /> +<text x="287.83" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (70,707,070 samples, 0.27%)</title><rect x="202.6" y="725" width="3.7" height="15.0" fill="rgb(0,237,186)" rx="2" ry="2" /> +<text x="205.60" y="735.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.04%)</title><rect x="378.2" y="421" width="0.5" height="15.0" fill="rgb(0,199,30)" rx="2" ry="2" /> +<text x="381.21" y="431.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="136.3" y="421" width="0.5" height="15.0" fill="rgb(0,234,134)" rx="2" ry="2" /> +<text x="139.27" y="431.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="333.6" y="501" width="0.6" height="15.0" fill="rgb(0,195,13)" rx="2" ry="2" /> +<text x="336.64" y="511.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="437.1" y="453" width="0.5" height="15.0" fill="rgb(0,212,12)" rx="2" ry="2" /> +<text x="440.10" y="463.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="315.1" y="565" width="0.5" height="15.0" fill="rgb(0,232,66)" rx="2" ry="2" /> +<text x="318.07" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="485.9" y="725" width="0.5" height="15.0" fill="rgb(0,218,54)" rx="2" ry="2" /> +<text x="488.92" y="735.5" ></text> +</g> +<g > +<title>git_signature_default (60,606,060 samples, 0.23%)</title><rect x="319.3" y="741" width="3.2" height="15.0" fill="rgb(0,220,53)" rx="2" ry="2" /> +<text x="322.32" y="751.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="107.6" y="517" width="0.6" height="15.0" fill="rgb(0,203,42)" rx="2" ry="2" /> +<text x="110.62" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="298.1" y="565" width="1.1" height="15.0" fill="rgb(0,197,48)" rx="2" ry="2" /> +<text x="301.10" y="575.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.04%)</title><rect x="185.6" y="597" width="0.5" height="15.0" fill="rgb(0,190,54)" rx="2" ry="2" /> +<text x="188.62" y="607.5" ></text> +</g> +<g > +<title>evict (40,404,040 samples, 0.15%)</title><rect x="96.5" y="533" width="2.1" height="15.0" fill="rgb(0,235,57)" rx="2" ry="2" /> +<text x="99.48" y="543.5" ></text> +</g> +<g > +<title>tcp_check_req (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="293" width="0.5" height="15.0" fill="rgb(0,229,80)" rx="2" ry="2" /> +<text x="1388.76" y="303.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="322.5" y="789" width="0.5" height="15.0" fill="rgb(0,209,209)" rx="2" ry="2" /> +<text x="325.50" y="799.5" ></text> +</g> +<g > +<title>grab_cache_page_write_begin (10,101,010 samples, 0.04%)</title><rect x="284.3" y="469" width="0.5" height="15.0" fill="rgb(0,199,168)" rx="2" ry="2" /> +<text x="287.30" y="479.5" ></text> +</g> +<g > +<title>copy_p4d_range (10,101,010 samples, 0.04%)</title><rect x="515.6" y="661" width="0.6" height="15.0" fill="rgb(0,209,9)" rx="2" ry="2" /> +<text x="518.63" y="671.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.04%)</title><rect x="65.7" y="741" width="0.5" height="15.0" fill="rgb(0,229,24)" rx="2" ry="2" /> +<text x="68.71" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (10,101,010 samples, 0.04%)</title><rect x="88.5" y="565" width="0.6" height="15.0" fill="rgb(0,216,75)" rx="2" ry="2" /> +<text x="91.52" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="531.0" y="789" width="0.5" height="15.0" fill="rgb(0,202,84)" rx="2" ry="2" /> +<text x="534.01" y="799.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.04%)</title><rect x="339.0" y="565" width="0.5" height="15.0" fill="rgb(0,218,29)" rx="2" ry="2" /> +<text x="341.95" y="575.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="390.9" y="485" width="0.6" height="15.0" fill="rgb(0,230,36)" rx="2" ry="2" /> +<text x="393.95" y="495.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.04%)</title><rect x="432.9" y="645" width="0.5" height="15.0" fill="rgb(0,226,129)" rx="2" ry="2" /> +<text x="435.86" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.08%)</title><rect x="329.9" y="453" width="1.1" height="15.0" fill="rgb(0,217,179)" rx="2" ry="2" /> +<text x="332.93" y="463.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (20,202,020 samples, 0.08%)</title><rect x="416.9" y="613" width="1.1" height="15.0" fill="rgb(0,195,50)" rx="2" ry="2" /> +<text x="419.94" y="623.5" ></text> +</g> +<g > +<title>__connect (60,606,060 samples, 0.23%)</title><rect x="1385.8" y="869" width="3.1" height="15.0" fill="rgb(0,221,56)" rx="2" ry="2" /> +<text x="1388.76" y="879.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (20,202,020 samples, 0.08%)</title><rect x="1371.4" y="677" width="1.1" height="15.0" fill="rgb(0,230,5)" rx="2" ry="2" /> +<text x="1374.43" y="687.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.04%)</title><rect x="410.0" y="613" width="0.6" height="15.0" fill="rgb(0,209,140)" rx="2" ry="2" /> +<text x="413.05" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="497.1" y="709" width="0.5" height="15.0" fill="rgb(0,218,39)" rx="2" ry="2" /> +<text x="500.06" y="719.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="473.7" y="517" width="0.5" height="15.0" fill="rgb(0,228,27)" rx="2" ry="2" /> +<text x="476.71" y="527.5" ></text> +</g> +<g > +<title>file_close (161,616,160 samples, 0.62%)</title><rect x="34.4" y="821" width="8.5" height="15.0" fill="rgb(0,197,171)" rx="2" ry="2" /> +<text x="37.41" y="831.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.04%)</title><rect x="215.9" y="613" width="0.5" height="15.0" fill="rgb(0,209,112)" rx="2" ry="2" /> +<text x="218.86" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="125.1" y="549" width="0.6" height="15.0" fill="rgb(0,221,150)" rx="2" ry="2" /> +<text x="128.13" y="559.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.04%)</title><rect x="137.9" y="405" width="0.5" height="15.0" fill="rgb(0,239,52)" rx="2" ry="2" /> +<text x="140.87" y="415.5" ></text> +</g> +<g > +<title>ip_rcv (30,303,030 samples, 0.12%)</title><rect x="1365.1" y="357" width="1.6" height="15.0" fill="rgb(0,236,134)" rx="2" ry="2" /> +<text x="1368.06" y="367.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.04%)</title><rect x="187.2" y="549" width="0.5" height="15.0" fill="rgb(0,216,61)" rx="2" ry="2" /> +<text x="190.21" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="16.9" y="853" width="1.6" height="15.0" fill="rgb(0,237,46)" rx="2" ry="2" /> +<text x="19.90" y="863.5" ></text> +</g> +<g > +<title>dput (30,303,030 samples, 0.12%)</title><rect x="369.7" y="645" width="1.6" height="15.0" fill="rgb(0,208,71)" rx="2" ry="2" /> +<text x="372.72" y="655.5" ></text> +</g> +<g > +<title>dentry_free (10,101,010 samples, 0.04%)</title><rect x="34.9" y="613" width="0.6" height="15.0" fill="rgb(0,204,65)" rx="2" ry="2" /> +<text x="37.94" y="623.5" ></text> +</g> +<g > +<title>ext4_rename2 (50,505,050 samples, 0.19%)</title><rect x="342.7" y="613" width="2.6" height="15.0" fill="rgb(0,226,205)" rx="2" ry="2" /> +<text x="345.66" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="292.3" y="645" width="1.0" height="15.0" fill="rgb(0,190,12)" rx="2" ry="2" /> +<text x="295.26" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.04%)</title><rect x="182.4" y="677" width="0.6" height="15.0" fill="rgb(0,230,175)" rx="2" ry="2" /> +<text x="185.43" y="687.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="55.1" y="773" width="0.5" height="15.0" fill="rgb(0,203,68)" rx="2" ry="2" /> +<text x="58.10" y="783.5" ></text> +</g> +<g > +<title>new_sync_write (30,303,030 samples, 0.12%)</title><rect x="392.0" y="549" width="1.6" height="15.0" fill="rgb(0,205,174)" rx="2" ry="2" /> +<text x="395.01" y="559.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="238.7" y="709" width="0.5" height="15.0" fill="rgb(0,218,165)" rx="2" ry="2" /> +<text x="241.67" y="719.5" ></text> +</g> +<g > +<title>__dentry_kill (20,202,020 samples, 0.08%)</title><rect x="34.9" y="629" width="1.1" height="15.0" fill="rgb(0,212,146)" rx="2" ry="2" /> +<text x="37.94" y="639.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.04%)</title><rect x="52.4" y="693" width="0.6" height="15.0" fill="rgb(0,220,154)" rx="2" ry="2" /> +<text x="55.45" y="703.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.04%)</title><rect x="615.4" y="693" width="0.5" height="15.0" fill="rgb(0,228,198)" rx="2" ry="2" /> +<text x="618.37" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="440.8" y="661" width="0.5" height="15.0" fill="rgb(0,223,191)" rx="2" ry="2" /> +<text x="443.82" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (111,111,110 samples, 0.42%)</title><rect x="328.9" y="677" width="5.8" height="15.0" fill="rgb(0,230,62)" rx="2" ry="2" /> +<text x="331.87" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_openat (40,404,040 samples, 0.15%)</title><rect x="408.5" y="693" width="2.1" height="15.0" fill="rgb(0,212,90)" rx="2" ry="2" /> +<text x="411.45" y="703.5" ></text> +</g> +<g > +<title>clear_page_erms (10,101,010 samples, 0.04%)</title><rect x="615.4" y="677" width="0.5" height="15.0" fill="rgb(0,237,50)" rx="2" ry="2" /> +<text x="618.37" y="687.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="355.4" y="501" width="0.5" height="15.0" fill="rgb(0,196,98)" rx="2" ry="2" /> +<text x="358.40" y="511.5" ></text> +</g> +<g > +<title>slab_free_freelist_hook.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="317.7" y="549" width="0.6" height="15.0" fill="rgb(0,220,152)" rx="2" ry="2" /> +<text x="320.73" y="559.5" ></text> +</g> +<g > +<title>server_assign_run (121,212,120 samples, 0.46%)</title><rect x="10.0" y="933" width="6.4" height="15.0" fill="rgb(0,215,104)" rx="2" ry="2" /> +<text x="13.00" y="943.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="246.6" y="629" width="0.6" height="15.0" fill="rgb(0,201,189)" rx="2" ry="2" /> +<text x="249.63" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="182.4" y="789" width="1.1" height="15.0" fill="rgb(0,227,2)" rx="2" ry="2" /> +<text x="185.43" y="799.5" ></text> +</g> +<g > +<title>prepend (10,101,010 samples, 0.04%)</title><rect x="603.7" y="741" width="0.5" height="15.0" fill="rgb(0,235,185)" rx="2" ry="2" /> +<text x="606.70" y="751.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.04%)</title><rect x="444.0" y="581" width="0.5" height="15.0" fill="rgb(0,227,194)" rx="2" ry="2" /> +<text x="447.00" y="591.5" ></text> +</g> +<g > +<title>net_rx_action (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="405" width="0.6" height="15.0" fill="rgb(0,226,150)" rx="2" ry="2" /> +<text x="1388.22" y="415.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="234.4" y="357" width="0.6" height="15.0" fill="rgb(0,213,86)" rx="2" ry="2" /> +<text x="237.43" y="367.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.04%)</title><rect x="516.7" y="565" width="0.5" height="15.0" fill="rgb(0,229,138)" rx="2" ry="2" /> +<text x="519.69" y="575.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.08%)</title><rect x="394.7" y="565" width="1.0" height="15.0" fill="rgb(0,239,60)" rx="2" ry="2" /> +<text x="397.66" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.31%)</title><rect x="10.5" y="821" width="4.3" height="15.0" fill="rgb(0,238,26)" rx="2" ry="2" /> +<text x="13.53" y="831.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="1337.5" y="677" width="0.5" height="15.0" fill="rgb(0,215,23)" rx="2" ry="2" /> +<text x="1340.47" y="687.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="125.7" y="517" width="0.5" height="15.0" fill="rgb(0,220,115)" rx="2" ry="2" /> +<text x="128.66" y="527.5" ></text> +</g> +<g > +<title>ip_rcv (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="373" width="0.5" height="15.0" fill="rgb(0,218,130)" rx="2" ry="2" /> +<text x="1342.60" y="383.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="337.4" y="661" width="1.0" height="15.0" fill="rgb(0,211,122)" rx="2" ry="2" /> +<text x="340.36" y="671.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.04%)</title><rect x="508.2" y="629" width="0.5" height="15.0" fill="rgb(0,214,82)" rx="2" ry="2" /> +<text x="511.20" y="639.5" ></text> +</g> +<g > +<title>mb_clear_bits (10,101,010 samples, 0.04%)</title><rect x="140.0" y="437" width="0.5" height="15.0" fill="rgb(0,235,133)" rx="2" ry="2" /> +<text x="142.99" y="447.5" ></text> +</g> +<g > +<title>getdents64 (30,303,030 samples, 0.12%)</title><rect x="351.2" y="597" width="1.5" height="15.0" fill="rgb(0,230,36)" rx="2" ry="2" /> +<text x="354.15" y="607.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.04%)</title><rect x="133.6" y="517" width="0.6" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="136.62" y="527.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="1374.1" y="869" width="0.5" height="15.0" fill="rgb(0,210,61)" rx="2" ry="2" /> +<text x="1377.08" y="879.5" ></text> +</g> +<g > +<title>ext4_empty_dir (10,101,010 samples, 0.04%)</title><rect x="128.8" y="549" width="0.6" height="15.0" fill="rgb(0,231,194)" rx="2" ry="2" /> +<text x="131.85" y="559.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="246.1" y="581" width="0.5" height="15.0" fill="rgb(0,227,15)" rx="2" ry="2" /> +<text x="249.10" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="483.8" y="661" width="0.5" height="15.0" fill="rgb(0,201,75)" rx="2" ry="2" /> +<text x="486.79" y="671.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.04%)</title><rect x="273.7" y="309" width="0.5" height="15.0" fill="rgb(0,231,147)" rx="2" ry="2" /> +<text x="276.69" y="319.5" ></text> +</g> +<g > +<title>ext4_mb_pa_free (10,101,010 samples, 0.04%)</title><rect x="419.6" y="517" width="0.5" height="15.0" fill="rgb(0,205,155)" rx="2" ry="2" /> +<text x="422.60" y="527.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.04%)</title><rect x="407.9" y="549" width="0.6" height="15.0" fill="rgb(0,192,119)" rx="2" ry="2" /> +<text x="410.92" y="559.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="294.4" y="549" width="0.5" height="15.0" fill="rgb(0,231,11)" rx="2" ry="2" /> +<text x="297.38" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (101,010,100 samples, 0.38%)</title><rect x="54.6" y="869" width="5.3" height="15.0" fill="rgb(0,223,185)" rx="2" ry="2" /> +<text x="57.57" y="879.5" ></text> +</g> +<g > +<title>scsi_queue_rq (10,101,010 samples, 0.04%)</title><rect x="343.7" y="309" width="0.6" height="15.0" fill="rgb(0,214,31)" rx="2" ry="2" /> +<text x="346.73" y="319.5" ></text> +</g> +<g > +<title>[libc.so.6] (40,404,040 samples, 0.15%)</title><rect x="30.2" y="837" width="2.1" height="15.0" fill="rgb(0,220,69)" rx="2" ry="2" /> +<text x="33.16" y="847.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="221.7" y="453" width="0.5" height="15.0" fill="rgb(0,237,86)" rx="2" ry="2" /> +<text x="224.70" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1338.0" y="773" width="0.5" height="15.0" fill="rgb(0,197,3)" rx="2" ry="2" /> +<text x="1341.00" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.15%)</title><rect x="414.8" y="661" width="2.1" height="15.0" fill="rgb(0,196,95)" rx="2" ry="2" /> +<text x="417.82" y="671.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="88.0" y="613" width="0.5" height="15.0" fill="rgb(0,233,28)" rx="2" ry="2" /> +<text x="90.99" y="623.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.04%)</title><rect x="94.9" y="341" width="0.5" height="15.0" fill="rgb(0,229,92)" rx="2" ry="2" /> +<text x="97.89" y="351.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="320.9" y="549" width="0.5" height="15.0" fill="rgb(0,208,135)" rx="2" ry="2" /> +<text x="323.91" y="559.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.04%)</title><rect x="10.5" y="581" width="0.6" height="15.0" fill="rgb(0,229,169)" rx="2" ry="2" /> +<text x="13.53" y="591.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.04%)</title><rect x="381.9" y="549" width="0.6" height="15.0" fill="rgb(0,195,196)" rx="2" ry="2" /> +<text x="384.93" y="559.5" ></text> +</g> +<g > +<title>ext4_mb_complex_scan_group (20,202,020 samples, 0.08%)</title><rect x="464.2" y="517" width="1.0" height="15.0" fill="rgb(0,236,117)" rx="2" ry="2" /> +<text x="467.16" y="527.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.04%)</title><rect x="306.1" y="469" width="0.5" height="15.0" fill="rgb(0,190,53)" rx="2" ry="2" /> +<text x="309.06" y="479.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.04%)</title><rect x="426.0" y="549" width="0.5" height="15.0" fill="rgb(0,231,131)" rx="2" ry="2" /> +<text x="428.96" y="559.5" ></text> +</g> +<g > +<title>__d_alloc (10,101,010 samples, 0.04%)</title><rect x="285.9" y="469" width="0.5" height="15.0" fill="rgb(0,219,104)" rx="2" ry="2" /> +<text x="288.89" y="479.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.04%)</title><rect x="105.0" y="533" width="0.5" height="15.0" fill="rgb(0,194,43)" rx="2" ry="2" /> +<text x="107.97" y="543.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (20,202,020 samples, 0.08%)</title><rect x="97.0" y="469" width="1.1" height="15.0" fill="rgb(0,221,73)" rx="2" ry="2" /> +<text x="100.01" y="479.5" ></text> +</g> +<g > +<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="467.3" y="677" width="0.6" height="15.0" fill="rgb(0,222,117)" rx="2" ry="2" /> +<text x="470.35" y="687.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (40,404,040 samples, 0.15%)</title><rect x="11.6" y="405" width="2.1" height="15.0" fill="rgb(0,223,87)" rx="2" ry="2" /> +<text x="14.59" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="336.8" y="709" width="2.7" height="15.0" fill="rgb(0,220,73)" rx="2" ry="2" /> +<text x="339.83" y="719.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.04%)</title><rect x="134.2" y="533" width="0.5" height="15.0" fill="rgb(0,211,80)" rx="2" ry="2" /> +<text x="137.15" y="543.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.04%)</title><rect x="292.8" y="613" width="0.5" height="15.0" fill="rgb(0,214,94)" rx="2" ry="2" /> +<text x="295.79" y="623.5" ></text> +</g> +<g > +<title>tcp_v4_init_sock (10,101,010 samples, 0.04%)</title><rect x="1372.5" y="741" width="0.5" height="15.0" fill="rgb(0,192,178)" rx="2" ry="2" /> +<text x="1375.49" y="751.5" ></text> +</g> +<g > +<title>write (30,303,030 samples, 0.12%)</title><rect x="51.9" y="789" width="1.6" height="15.0" fill="rgb(0,204,46)" rx="2" ry="2" /> +<text x="54.91" y="799.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="459.4" y="565" width="0.5" height="15.0" fill="rgb(0,204,75)" rx="2" ry="2" /> +<text x="462.39" y="575.5" ></text> +</g> +<g > +<title>__build_skb_around (10,101,010 samples, 0.04%)</title><rect x="1355.5" y="629" width="0.5" height="15.0" fill="rgb(0,236,68)" rx="2" ry="2" /> +<text x="1358.51" y="639.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.04%)</title><rect x="100.2" y="581" width="0.5" height="15.0" fill="rgb(0,234,28)" rx="2" ry="2" /> +<text x="103.20" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (212,121,210 samples, 0.81%)</title><rect x="323.6" y="741" width="11.1" height="15.0" fill="rgb(0,225,38)" rx="2" ry="2" /> +<text x="326.56" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_clone3 (90,909,090 samples, 0.35%)</title><rect x="18.5" y="933" width="4.8" height="15.0" fill="rgb(0,193,154)" rx="2" ry="2" /> +<text x="21.49" y="943.5" ></text> +</g> +<g > +<title>worker_get_run (292,929,290 samples, 1.11%)</title><rect x="1374.6" y="901" width="15.4" height="15.0" fill="rgb(0,239,87)" rx="2" ry="2" /> +<text x="1377.61" y="911.5" ></text> +</g> +<g > +<title>net_send (60,606,060 samples, 0.23%)</title><rect x="1379.4" y="837" width="3.2" height="15.0" fill="rgb(0,191,163)" rx="2" ry="2" /> +<text x="1382.39" y="847.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.04%)</title><rect x="306.1" y="565" width="0.5" height="15.0" fill="rgb(0,200,85)" rx="2" ry="2" /> +<text x="309.06" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (121,212,120 samples, 0.46%)</title><rect x="447.2" y="661" width="6.4" height="15.0" fill="rgb(0,228,58)" rx="2" ry="2" /> +<text x="450.19" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (575,757,570 samples, 2.19%)</title><rect x="1338.5" y="789" width="30.3" height="15.0" fill="rgb(0,236,189)" rx="2" ry="2" /> +<text x="1341.54" y="799.5" >en..</text> +</g> +<g > +<title>clear_page_erms (262,626,260 samples, 1.00%)</title><rect x="1340.1" y="581" width="13.8" height="15.0" fill="rgb(0,230,149)" rx="2" ry="2" /> +<text x="1343.13" y="591.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="521.5" y="565" width="0.5" height="15.0" fill="rgb(0,193,127)" rx="2" ry="2" /> +<text x="524.46" y="575.5" ></text> +</g> +<g > +<title>git_odb_read_header (10,101,010 samples, 0.04%)</title><rect x="288.5" y="725" width="0.6" height="15.0" fill="rgb(0,219,100)" rx="2" ry="2" /> +<text x="291.55" y="735.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="420.7" y="565" width="0.5" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="423.66" y="575.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="337.9" y="645" width="0.5" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="340.89" y="655.5" ></text> +</g> +<g > +<title>__kmalloc (10,101,010 samples, 0.04%)</title><rect x="94.4" y="501" width="0.5" height="15.0" fill="rgb(0,191,125)" rx="2" ry="2" /> +<text x="97.36" y="511.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="897.1" y="693" width="0.5" height="15.0" fill="rgb(0,224,203)" rx="2" ry="2" /> +<text x="900.10" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="220.6" y="757" width="1.1" height="15.0" fill="rgb(0,239,188)" rx="2" ry="2" /> +<text x="223.63" y="767.5" ></text> +</g> +<g > +<title>ip_output (90,909,090 samples, 0.35%)</title><rect x="37.6" y="453" width="4.8" height="15.0" fill="rgb(0,211,23)" rx="2" ry="2" /> +<text x="40.59" y="463.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.04%)</title><rect x="381.4" y="613" width="0.5" height="15.0" fill="rgb(0,225,12)" rx="2" ry="2" /> +<text x="384.40" y="623.5" ></text> +</g> +<g > +<title>task_work_add (10,101,010 samples, 0.04%)</title><rect x="219.0" y="597" width="0.6" height="15.0" fill="rgb(0,192,51)" rx="2" ry="2" /> +<text x="222.04" y="607.5" ></text> +</g> +<g > +<title>ext4_inode_attach_jinode (10,101,010 samples, 0.04%)</title><rect x="376.6" y="581" width="0.6" height="15.0" fill="rgb(0,206,79)" rx="2" ry="2" /> +<text x="379.62" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="246.6" y="661" width="0.6" height="15.0" fill="rgb(0,225,65)" rx="2" ry="2" /> +<text x="249.63" y="671.5" ></text> +</g> +<g > +<title>ext4_rmdir.part.0 (20,202,020 samples, 0.08%)</title><rect x="156.4" y="597" width="1.1" height="15.0" fill="rgb(0,207,5)" rx="2" ry="2" /> +<text x="159.44" y="607.5" ></text> +</g> +<g > +<title>ext4_find_extent (10,101,010 samples, 0.04%)</title><rect x="389.4" y="421" width="0.5" height="15.0" fill="rgb(0,238,179)" rx="2" ry="2" /> +<text x="392.35" y="431.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="97.5" y="421" width="0.6" height="15.0" fill="rgb(0,194,110)" rx="2" ry="2" /> +<text x="100.54" y="431.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="377.7" y="517" width="0.5" height="15.0" fill="rgb(0,206,111)" rx="2" ry="2" /> +<text x="380.68" y="527.5" ></text> +</g> +<g > +<title>git_config_snapshot (80,808,080 samples, 0.31%)</title><rect x="492.8" y="789" width="4.3" height="15.0" fill="rgb(0,195,112)" rx="2" ry="2" /> +<text x="495.81" y="799.5" ></text> +</g> +<g > +<title>git_config_add_backend (70,707,070 samples, 0.27%)</title><rect x="493.3" y="773" width="3.8" height="15.0" fill="rgb(0,205,11)" rx="2" ry="2" /> +<text x="496.34" y="783.5" ></text> +</g> +<g > +<title>__fget_light (10,101,010 samples, 0.04%)</title><rect x="1382.6" y="709" width="0.5" height="15.0" fill="rgb(0,227,47)" rx="2" ry="2" /> +<text x="1385.57" y="719.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="80.0" y="709" width="0.6" height="15.0" fill="rgb(0,190,118)" rx="2" ry="2" /> +<text x="83.03" y="719.5" ></text> +</g> +<g > +<title>nf_conntrack_handle_packet (10,101,010 samples, 0.04%)</title><rect x="1364.0" y="485" width="0.5" height="15.0" fill="rgb(0,211,28)" rx="2" ry="2" /> +<text x="1367.00" y="495.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="125.7" y="549" width="0.5" height="15.0" fill="rgb(0,206,92)" rx="2" ry="2" /> +<text x="128.66" y="559.5" ></text> +</g> +<g > +<title>exc_page_fault (20,202,020 samples, 0.08%)</title><rect x="441.3" y="661" width="1.1" height="15.0" fill="rgb(0,193,122)" rx="2" ry="2" /> +<text x="444.35" y="671.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.04%)</title><rect x="409.5" y="597" width="0.5" height="15.0" fill="rgb(0,191,73)" rx="2" ry="2" /> +<text x="412.52" y="607.5" ></text> +</g> +<g > +<title>crc_56 (10,101,010 samples, 0.04%)</title><rect x="465.8" y="597" width="0.5" height="15.0" fill="rgb(0,214,163)" rx="2" ry="2" /> +<text x="468.76" y="607.5" ></text> +</g> +<g > +<title>send (80,808,080 samples, 0.31%)</title><rect x="10.5" y="837" width="4.3" height="15.0" fill="rgb(0,200,204)" rx="2" ry="2" /> +<text x="13.53" y="847.5" ></text> +</g> +<g > +<title>__handle_mm_fault (10,101,010 samples, 0.04%)</title><rect x="181.4" y="741" width="0.5" height="15.0" fill="rgb(0,221,1)" rx="2" ry="2" /> +<text x="184.37" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="474.2" y="645" width="0.6" height="15.0" fill="rgb(0,209,140)" rx="2" ry="2" /> +<text x="477.24" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="432.3" y="565" width="0.6" height="15.0" fill="rgb(0,230,189)" rx="2" ry="2" /> +<text x="435.33" y="575.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="359.6" y="661" width="0.6" height="15.0" fill="rgb(0,216,114)" rx="2" ry="2" /> +<text x="362.64" y="671.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.04%)</title><rect x="1376.7" y="645" width="0.6" height="15.0" fill="rgb(0,214,33)" rx="2" ry="2" /> +<text x="1379.74" y="655.5" ></text> +</g> +<g > +<title>alloc_file (10,101,010 samples, 0.04%)</title><rect x="48.2" y="677" width="0.5" height="15.0" fill="rgb(0,209,193)" rx="2" ry="2" /> +<text x="51.20" y="687.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.04%)</title><rect x="499.7" y="581" width="0.5" height="15.0" fill="rgb(0,199,17)" rx="2" ry="2" /> +<text x="502.71" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="219.0" y="677" width="0.6" height="15.0" fill="rgb(0,197,195)" rx="2" ry="2" /> +<text x="222.04" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.46%)</title><rect x="385.1" y="613" width="6.4" height="15.0" fill="rgb(0,210,134)" rx="2" ry="2" /> +<text x="388.11" y="623.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (30,303,030 samples, 0.12%)</title><rect x="451.4" y="485" width="1.6" height="15.0" fill="rgb(0,225,176)" rx="2" ry="2" /> +<text x="454.43" y="495.5" ></text> +</g> +<g > +<title>ext4fs_dirhash (20,202,020 samples, 0.08%)</title><rect x="251.4" y="565" width="1.1" height="15.0" fill="rgb(0,210,44)" rx="2" ry="2" /> +<text x="254.41" y="575.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.04%)</title><rect x="426.0" y="453" width="0.5" height="15.0" fill="rgb(0,213,173)" rx="2" ry="2" /> +<text x="428.96" y="463.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="273.2" y="565" width="0.5" height="15.0" fill="rgb(0,237,30)" rx="2" ry="2" /> +<text x="276.16" y="575.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.08%)</title><rect x="317.2" y="613" width="1.1" height="15.0" fill="rgb(0,204,137)" rx="2" ry="2" /> +<text x="320.20" y="623.5" ></text> +</g> +<g > +<title>shrink_dcache_parent (30,303,030 samples, 0.12%)</title><rect x="179.3" y="677" width="1.5" height="15.0" fill="rgb(0,225,202)" rx="2" ry="2" /> +<text x="182.25" y="687.5" ></text> +</g> +<g > +<title>ip_send_check (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="117" width="0.6" height="15.0" fill="rgb(0,235,89)" rx="2" ry="2" /> +<text x="1383.45" y="127.5" ></text> +</g> +<g > +<title>__add_to_page_cache_locked (10,101,010 samples, 0.04%)</title><rect x="76.3" y="741" width="0.6" height="15.0" fill="rgb(0,198,109)" rx="2" ry="2" /> +<text x="79.32" y="751.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="131.0" y="453" width="0.5" height="15.0" fill="rgb(0,192,172)" rx="2" ry="2" /> +<text x="133.97" y="463.5" ></text> +</g> +<g > +<title>git_config_iterator_glob_new (30,303,030 samples, 0.12%)</title><rect x="335.2" y="757" width="1.6" height="15.0" fill="rgb(0,207,119)" rx="2" ry="2" /> +<text x="338.24" y="767.5" ></text> +</g> +<g > +<title>file_remove_privs (10,101,010 samples, 0.04%)</title><rect x="392.0" y="485" width="0.5" height="15.0" fill="rgb(0,192,113)" rx="2" ry="2" /> +<text x="395.01" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="324.6" y="661" width="0.6" height="15.0" fill="rgb(0,204,123)" rx="2" ry="2" /> +<text x="327.63" y="671.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="58.3" y="645" width="0.5" height="15.0" fill="rgb(0,215,126)" rx="2" ry="2" /> +<text x="61.28" y="655.5" ></text> +</g> +<g > +<title>link (80,808,080 samples, 0.31%)</title><rect x="239.2" y="709" width="4.2" height="15.0" fill="rgb(0,232,168)" rx="2" ry="2" /> +<text x="242.20" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="391.5" y="597" width="0.5" height="15.0" fill="rgb(0,213,157)" rx="2" ry="2" /> +<text x="394.48" y="607.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="507.1" y="677" width="0.6" height="15.0" fill="rgb(0,198,186)" rx="2" ry="2" /> +<text x="510.14" y="687.5" ></text> +</g> +<g > +<title>wait_on_page_bit_common (10,101,010 samples, 0.04%)</title><rect x="448.2" y="437" width="0.6" height="15.0" fill="rgb(0,212,90)" rx="2" ry="2" /> +<text x="451.25" y="447.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1304.0" y="741" width="0.6" height="15.0" fill="rgb(0,227,203)" rx="2" ry="2" /> +<text x="1307.05" y="751.5" ></text> +</g> +<g > +<title>copy_user_generic_unrolled (10,101,010 samples, 0.04%)</title><rect x="505.5" y="597" width="0.6" height="15.0" fill="rgb(0,206,108)" rx="2" ry="2" /> +<text x="508.55" y="607.5" ></text> +</g> +<g > +<title>get_obj_cgroup_from_current (10,101,010 samples, 0.04%)</title><rect x="144.2" y="581" width="0.6" height="15.0" fill="rgb(0,228,5)" rx="2" ry="2" /> +<text x="147.23" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="86.9" y="613" width="0.6" height="15.0" fill="rgb(0,237,8)" rx="2" ry="2" /> +<text x="89.93" y="623.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="378.2" y="485" width="0.5" height="15.0" fill="rgb(0,197,157)" rx="2" ry="2" /> +<text x="381.21" y="495.5" ></text> +</g> +<g > +<title>[libc.so.6] (40,404,040 samples, 0.15%)</title><rect x="930.5" y="805" width="2.2" height="15.0" fill="rgb(0,195,145)" rx="2" ry="2" /> +<text x="933.53" y="815.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (30,303,030 samples, 0.12%)</title><rect x="342.7" y="581" width="1.6" height="15.0" fill="rgb(0,235,65)" rx="2" ry="2" /> +<text x="345.66" y="591.5" ></text> +</g> +<g > +<title>git_config_set_string (70,707,070 samples, 0.27%)</title><rect x="413.2" y="741" width="3.7" height="15.0" fill="rgb(0,227,83)" rx="2" ry="2" /> +<text x="416.23" y="751.5" ></text> +</g> +<g > +<title>tcp_write_xmit (111,111,110 samples, 0.42%)</title><rect x="37.1" y="533" width="5.8" height="15.0" fill="rgb(0,200,134)" rx="2" ry="2" /> +<text x="40.06" y="543.5" ></text> +</g> +<g > +<title>__pthread_rwlock_unlock (10,101,010 samples, 0.04%)</title><rect x="474.8" y="661" width="0.5" height="15.0" fill="rgb(0,216,150)" rx="2" ry="2" /> +<text x="477.78" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="350.1" y="629" width="2.6" height="15.0" fill="rgb(0,207,151)" rx="2" ry="2" /> +<text x="353.09" y="639.5" ></text> +</g> +<g > +<title>blk_mq_do_dispatch_sched (20,202,020 samples, 0.08%)</title><rect x="436.0" y="325" width="1.1" height="15.0" fill="rgb(0,207,146)" rx="2" ry="2" /> +<text x="439.04" y="335.5" ></text> +</g> +<g > +<title>__blk_mq_get_tag (10,101,010 samples, 0.04%)</title><rect x="450.4" y="373" width="0.5" height="15.0" fill="rgb(0,228,72)" rx="2" ry="2" /> +<text x="453.37" y="383.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.04%)</title><rect x="216.9" y="629" width="0.6" height="15.0" fill="rgb(0,200,57)" rx="2" ry="2" /> +<text x="219.92" y="639.5" ></text> +</g> +<g > +<title>__inet_inherit_port (10,101,010 samples, 0.04%)</title><rect x="1368.8" y="261" width="0.5" height="15.0" fill="rgb(0,193,85)" rx="2" ry="2" /> +<text x="1371.78" y="271.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="201.0" y="581" width="0.5" height="15.0" fill="rgb(0,201,176)" rx="2" ry="2" /> +<text x="204.00" y="591.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (10,101,010 samples, 0.04%)</title><rect x="1387.3" y="581" width="0.6" height="15.0" fill="rgb(0,208,35)" rx="2" ry="2" /> +<text x="1390.35" y="591.5" ></text> +</g> +<g > +<title>__mem_cgroup_charge (80,808,080 samples, 0.31%)</title><rect x="920.4" y="677" width="4.3" height="15.0" fill="rgb(0,220,132)" rx="2" ry="2" /> +<text x="923.45" y="687.5" ></text> +</g> +<g > +<title>__es_insert_extent (10,101,010 samples, 0.04%)</title><rect x="426.0" y="485" width="0.5" height="15.0" fill="rgb(0,221,75)" rx="2" ry="2" /> +<text x="428.96" y="495.5" ></text> +</g> +<g > +<title>ip_queue_xmit (30,303,030 samples, 0.12%)</title><rect x="1379.9" y="597" width="1.6" height="15.0" fill="rgb(0,224,190)" rx="2" ry="2" /> +<text x="1382.92" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="481.1" y="661" width="0.6" height="15.0" fill="rgb(0,197,123)" rx="2" ry="2" /> +<text x="484.14" y="671.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="159.1" y="517" width="0.5" height="15.0" fill="rgb(0,224,135)" rx="2" ry="2" /> +<text x="162.09" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (262,626,260 samples, 1.00%)</title><rect x="10.0" y="981" width="13.8" height="15.0" fill="rgb(0,225,209)" rx="2" ry="2" /> +<text x="13.00" y="991.5" ></text> +</g> +<g > +<title>__netif_receive_skb_core.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="37.6" y="261" width="0.5" height="15.0" fill="rgb(0,209,0)" rx="2" ry="2" /> +<text x="40.59" y="271.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.04%)</title><rect x="479.0" y="501" width="0.6" height="15.0" fill="rgb(0,224,102)" rx="2" ry="2" /> +<text x="482.02" y="511.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="228.6" y="485" width="0.5" height="15.0" fill="rgb(0,223,30)" rx="2" ry="2" /> +<text x="231.59" y="495.5" ></text> +</g> +<g > +<title>common_perm_cond (10,101,010 samples, 0.04%)</title><rect x="164.9" y="629" width="0.6" height="15.0" fill="rgb(0,215,82)" rx="2" ry="2" /> +<text x="167.93" y="639.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="587.8" y="565" width="0.5" height="15.0" fill="rgb(0,200,136)" rx="2" ry="2" /> +<text x="590.79" y="575.5" ></text> +</g> +<g > +<title>__alloc_file (50,505,050 samples, 0.19%)</title><rect x="60.4" y="805" width="2.7" height="15.0" fill="rgb(0,233,129)" rx="2" ry="2" /> +<text x="63.40" y="815.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="587.8" y="613" width="0.5" height="15.0" fill="rgb(0,213,135)" rx="2" ry="2" /> +<text x="590.79" y="623.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="165" width="0.6" height="15.0" fill="rgb(0,226,59)" rx="2" ry="2" /> +<text x="1383.45" y="175.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (10,101,010 samples, 0.04%)</title><rect x="35.5" y="613" width="0.5" height="15.0" fill="rgb(0,237,162)" rx="2" ry="2" /> +<text x="38.47" y="623.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.04%)</title><rect x="339.0" y="597" width="0.5" height="15.0" fill="rgb(0,229,57)" rx="2" ry="2" /> +<text x="341.95" y="607.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (20,202,020 samples, 0.08%)</title><rect x="303.9" y="421" width="1.1" height="15.0" fill="rgb(0,230,54)" rx="2" ry="2" /> +<text x="306.93" y="431.5" ></text> +</g> +<g > +<title>__open64 (313,131,310 samples, 1.19%)</title><rect x="59.9" y="933" width="16.4" height="15.0" fill="rgb(0,219,89)" rx="2" ry="2" /> +<text x="62.87" y="943.5" ></text> +</g> +<g > +<title>__ext4_find_entry (20,202,020 samples, 0.08%)</title><rect x="129.4" y="533" width="1.0" height="15.0" fill="rgb(0,215,115)" rx="2" ry="2" /> +<text x="132.38" y="543.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="228.6" y="533" width="0.5" height="15.0" fill="rgb(0,198,125)" rx="2" ry="2" /> +<text x="231.59" y="543.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="330.5" y="405" width="0.5" height="15.0" fill="rgb(0,194,203)" rx="2" ry="2" /> +<text x="333.46" y="415.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.04%)</title><rect x="284.3" y="517" width="0.5" height="15.0" fill="rgb(0,196,10)" rx="2" ry="2" /> +<text x="287.30" y="527.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="96.0" y="485" width="0.5" height="15.0" fill="rgb(0,219,86)" rx="2" ry="2" /> +<text x="98.95" y="495.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.04%)</title><rect x="448.2" y="405" width="0.6" height="15.0" fill="rgb(0,230,108)" rx="2" ry="2" /> +<text x="451.25" y="415.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.04%)</title><rect x="413.8" y="485" width="0.5" height="15.0" fill="rgb(0,206,108)" rx="2" ry="2" /> +<text x="416.76" y="495.5" ></text> +</g> +<g > +<title>vfs_unlink (10,101,010 samples, 0.04%)</title><rect x="148.5" y="613" width="0.5" height="15.0" fill="rgb(0,234,81)" rx="2" ry="2" /> +<text x="151.48" y="623.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="241.3" y="613" width="0.6" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="244.33" y="623.5" ></text> +</g> +<g > +<title>ip_finish_output2 (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="469" width="0.6" height="15.0" fill="rgb(0,207,207)" rx="2" ry="2" /> +<text x="1388.22" y="479.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.04%)</title><rect x="186.1" y="501" width="0.6" height="15.0" fill="rgb(0,196,67)" rx="2" ry="2" /> +<text x="189.15" y="511.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (333,333,330 samples, 1.27%)</title><rect x="571.3" y="645" width="17.5" height="15.0" fill="rgb(0,221,49)" rx="2" ry="2" /> +<text x="574.34" y="655.5" ></text> +</g> +<g > +<title>do_writepages (10,101,010 samples, 0.04%)</title><rect x="334.2" y="533" width="0.5" height="15.0" fill="rgb(0,227,2)" rx="2" ry="2" /> +<text x="337.18" y="543.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="138.4" y="373" width="0.5" height="15.0" fill="rgb(0,239,20)" rx="2" ry="2" /> +<text x="141.40" y="383.5" ></text> +</g> +<g > +<title>__netif_receive_skb_core.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="1387.3" y="453" width="0.6" height="15.0" fill="rgb(0,221,96)" rx="2" ry="2" /> +<text x="1390.35" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="294.9" y="677" width="0.5" height="15.0" fill="rgb(0,206,37)" rx="2" ry="2" /> +<text x="297.91" y="687.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (80,808,080 samples, 0.31%)</title><rect x="37.6" y="389" width="4.2" height="15.0" fill="rgb(0,203,53)" rx="2" ry="2" /> +<text x="40.59" y="399.5" ></text> +</g> +<g > +<title>scsi_dma_map (10,101,010 samples, 0.04%)</title><rect x="372.4" y="277" width="0.5" height="15.0" fill="rgb(0,238,13)" rx="2" ry="2" /> +<text x="375.38" y="287.5" ></text> +</g> +<g > +<title>vfs_mkdir (222,222,220 samples, 0.85%)</title><rect x="454.6" y="677" width="11.7" height="15.0" fill="rgb(0,197,79)" rx="2" ry="2" /> +<text x="457.61" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_rename (40,404,040 samples, 0.15%)</title><rect x="414.8" y="629" width="2.1" height="15.0" fill="rgb(0,222,41)" rx="2" ry="2" /> +<text x="417.82" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.23%)</title><rect x="428.1" y="741" width="3.2" height="15.0" fill="rgb(0,239,162)" rx="2" ry="2" /> +<text x="431.09" y="751.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="307.1" y="565" width="0.5" height="15.0" fill="rgb(0,194,153)" rx="2" ry="2" /> +<text x="310.12" y="575.5" ></text> +</g> +<g > +<title>process_backlog (40,404,040 samples, 0.15%)</title><rect x="11.6" y="437" width="2.1" height="15.0" fill="rgb(0,212,9)" rx="2" ry="2" /> +<text x="14.59" y="447.5" ></text> +</g> +<g > +<title>_IO_file_write (10,101,010 samples, 0.04%)</title><rect x="509.3" y="805" width="0.5" height="15.0" fill="rgb(0,200,91)" rx="2" ry="2" /> +<text x="512.26" y="815.5" ></text> +</g> +<g > +<title>crc_32 (10,101,010 samples, 0.04%)</title><rect x="173.4" y="581" width="0.5" height="15.0" fill="rgb(0,234,32)" rx="2" ry="2" /> +<text x="176.41" y="591.5" ></text> +</g> +<g > +<title>d_lru_del (20,202,020 samples, 0.08%)</title><rect x="179.3" y="629" width="1.0" height="15.0" fill="rgb(0,232,54)" rx="2" ry="2" /> +<text x="182.25" y="639.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="430.2" y="645" width="0.5" height="15.0" fill="rgb(0,215,97)" rx="2" ry="2" /> +<text x="433.21" y="655.5" ></text> +</g> +<g > +<title>vfs_unlink (20,202,020 samples, 0.08%)</title><rect x="168.6" y="645" width="1.1" height="15.0" fill="rgb(0,207,7)" rx="2" ry="2" /> +<text x="171.64" y="655.5" ></text> +</g> +<g > +<title>ip_finish_output2 (60,606,060 samples, 0.23%)</title><rect x="11.1" y="533" width="3.1" height="15.0" fill="rgb(0,232,144)" rx="2" ry="2" /> +<text x="14.06" y="543.5" ></text> +</g> +<g > +<title>__sys_accept4_file (40,404,040 samples, 0.15%)</title><rect x="46.6" y="741" width="2.1" height="15.0" fill="rgb(0,215,195)" rx="2" ry="2" /> +<text x="49.61" y="751.5" ></text> +</g> +<g > +<title>copy_user_enhanced_fast_string (121,212,120 samples, 0.46%)</title><rect x="1357.6" y="645" width="6.4" height="15.0" fill="rgb(0,231,56)" rx="2" ry="2" /> +<text x="1360.64" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (80,808,080 samples, 0.31%)</title><rect x="10.5" y="805" width="4.3" height="15.0" fill="rgb(0,193,155)" rx="2" ry="2" /> +<text x="13.53" y="815.5" ></text> +</g> +<g > +<title>__submit_bio (10,101,010 samples, 0.04%)</title><rect x="274.8" y="437" width="0.5" height="15.0" fill="rgb(0,232,87)" rx="2" ry="2" /> +<text x="277.75" y="447.5" ></text> +</g> +<g > +<title>__ext4_find_entry (20,202,020 samples, 0.08%)</title><rect x="168.6" y="581" width="1.1" height="15.0" fill="rgb(0,207,175)" rx="2" ry="2" /> +<text x="171.64" y="591.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="201.0" y="645" width="0.5" height="15.0" fill="rgb(0,223,116)" rx="2" ry="2" /> +<text x="204.00" y="655.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (30,303,030 samples, 0.12%)</title><rect x="436.0" y="549" width="1.6" height="15.0" fill="rgb(0,233,8)" rx="2" ry="2" /> +<text x="439.04" y="559.5" ></text> +</g> +<g > +<title>ktime_get_coarse_real_ts64 (10,101,010 samples, 0.04%)</title><rect x="130.4" y="549" width="0.6" height="15.0" fill="rgb(0,220,207)" rx="2" ry="2" /> +<text x="133.44" y="559.5" ></text> +</g> +<g > +<title>jsonrpc_request_send (8,131,313,050 samples, 30.95%)</title><rect x="941.7" y="885" width="427.1" height="15.0" fill="rgb(0,232,66)" rx="2" ry="2" /> +<text x="944.67" y="895.5" >jsonrpc_request_send</text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="381.9" y="405" width="0.6" height="15.0" fill="rgb(0,237,152)" rx="2" ry="2" /> +<text x="384.93" y="415.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="381.9" y="613" width="0.6" height="15.0" fill="rgb(0,224,47)" rx="2" ry="2" /> +<text x="384.93" y="623.5" ></text> +</g> +<g > +<title>net_send (575,757,570 samples, 2.19%)</title><rect x="1338.5" y="837" width="30.3" height="15.0" fill="rgb(0,197,145)" rx="2" ry="2" /> +<text x="1341.54" y="847.5" >ne..</text> +</g> +<g > +<title>__netif_receive_skb (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="357" width="0.6" height="15.0" fill="rgb(0,208,52)" rx="2" ry="2" /> +<text x="1388.22" y="367.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.08%)</title><rect x="325.2" y="677" width="1.0" height="15.0" fill="rgb(0,200,13)" rx="2" ry="2" /> +<text x="328.16" y="687.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="103.9" y="517" width="0.5" height="15.0" fill="rgb(0,194,0)" rx="2" ry="2" /> +<text x="106.91" y="527.5" ></text> +</g> +<g > +<title>copy_process (363,636,360 samples, 1.38%)</title><rect x="510.9" y="709" width="19.1" height="15.0" fill="rgb(0,202,206)" rx="2" ry="2" /> +<text x="513.85" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="307.1" y="629" width="0.5" height="15.0" fill="rgb(0,209,199)" rx="2" ry="2" /> +<text x="310.12" y="639.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="45.0" y="741" width="0.5" height="15.0" fill="rgb(0,198,50)" rx="2" ry="2" /> +<text x="48.02" y="751.5" ></text> +</g> +<g > +<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.04%)</title><rect x="407.4" y="549" width="0.5" height="15.0" fill="rgb(0,231,201)" rx="2" ry="2" /> +<text x="410.39" y="559.5" ></text> +</g> +<g > +<title>__socket (30,303,030 samples, 0.12%)</title><rect x="1372.5" y="869" width="1.6" height="15.0" fill="rgb(0,233,102)" rx="2" ry="2" /> +<text x="1375.49" y="879.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="462.6" y="453" width="0.5" height="15.0" fill="rgb(0,221,143)" rx="2" ry="2" /> +<text x="465.57" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="480.6" y="661" width="0.5" height="15.0" fill="rgb(0,226,108)" rx="2" ry="2" /> +<text x="483.61" y="671.5" ></text> +</g> +<g > +<title>apparmor_file_open (10,101,010 samples, 0.04%)</title><rect x="501.3" y="501" width="0.5" height="15.0" fill="rgb(0,212,125)" rx="2" ry="2" /> +<text x="504.30" y="511.5" ></text> +</g> +<g > +<title>ext4_bread_batch (20,202,020 samples, 0.08%)</title><rect x="168.6" y="565" width="1.1" height="15.0" fill="rgb(0,205,199)" rx="2" ry="2" /> +<text x="171.64" y="575.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="458.3" y="581" width="0.6" height="15.0" fill="rgb(0,199,100)" rx="2" ry="2" /> +<text x="461.33" y="591.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="194.6" y="565" width="0.6" height="15.0" fill="rgb(0,218,1)" rx="2" ry="2" /> +<text x="197.64" y="575.5" ></text> +</g> +<g > +<title>inet_accept (20,202,020 samples, 0.08%)</title><rect x="46.6" y="709" width="1.1" height="15.0" fill="rgb(0,219,135)" rx="2" ry="2" /> +<text x="49.61" y="719.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.04%)</title><rect x="89.6" y="501" width="0.5" height="15.0" fill="rgb(0,225,91)" rx="2" ry="2" /> +<text x="92.58" y="511.5" ></text> +</g> +<g > +<title>fstatat (40,404,040 samples, 0.15%)</title><rect x="442.9" y="693" width="2.2" height="15.0" fill="rgb(0,237,56)" rx="2" ry="2" /> +<text x="445.94" y="703.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="55.1" y="757" width="0.5" height="15.0" fill="rgb(0,206,23)" rx="2" ry="2" /> +<text x="58.10" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="83.7" y="773" width="1.6" height="15.0" fill="rgb(0,220,67)" rx="2" ry="2" /> +<text x="86.75" y="783.5" ></text> +</g> +<g > +<title>ext4_create (10,101,010 samples, 0.04%)</title><rect x="381.9" y="485" width="0.6" height="15.0" fill="rgb(0,220,74)" rx="2" ry="2" /> +<text x="384.93" y="495.5" ></text> +</g> +<g > +<title>ext4_evict_inode (70,707,070 samples, 0.27%)</title><rect x="329.4" y="533" width="3.7" height="15.0" fill="rgb(0,210,52)" rx="2" ry="2" /> +<text x="332.40" y="543.5" ></text> +</g> +<g > +<title>blk_flush_plug_list (20,202,020 samples, 0.08%)</title><rect x="436.0" y="453" width="1.1" height="15.0" fill="rgb(0,215,17)" rx="2" ry="2" /> +<text x="439.04" y="463.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="467.9" y="597" width="0.5" height="15.0" fill="rgb(0,237,102)" rx="2" ry="2" /> +<text x="470.88" y="607.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="55.1" y="805" width="0.5" height="15.0" fill="rgb(0,229,154)" rx="2" ry="2" /> +<text x="58.10" y="815.5" ></text> +</g> +<g > +<title>ext4_find_entry (10,101,010 samples, 0.04%)</title><rect x="318.8" y="581" width="0.5" height="15.0" fill="rgb(0,210,191)" rx="2" ry="2" /> +<text x="321.79" y="591.5" ></text> +</g> +<g > +<title>link (20,202,020 samples, 0.08%)</title><rect x="416.9" y="741" width="1.1" height="15.0" fill="rgb(0,199,112)" rx="2" ry="2" /> +<text x="419.94" y="751.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="355.4" y="533" width="0.5" height="15.0" fill="rgb(0,227,145)" rx="2" ry="2" /> +<text x="358.40" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="492.8" y="773" width="0.5" height="15.0" fill="rgb(0,195,84)" rx="2" ry="2" /> +<text x="495.81" y="783.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.04%)</title><rect x="93.8" y="485" width="0.6" height="15.0" fill="rgb(0,233,170)" rx="2" ry="2" /> +<text x="96.83" y="495.5" ></text> +</g> +<g > +<title>rmdir (101,010,100 samples, 0.38%)</title><rect x="156.4" y="709" width="5.3" height="15.0" fill="rgb(0,206,47)" rx="2" ry="2" /> +<text x="159.44" y="719.5" ></text> +</g> +<g > +<title>strerror_l (10,101,010 samples, 0.04%)</title><rect x="474.8" y="693" width="0.5" height="15.0" fill="rgb(0,220,171)" rx="2" ry="2" /> +<text x="477.78" y="703.5" ></text> +</g> +<g > +<title>sock_close (20,202,020 samples, 0.08%)</title><rect x="1384.7" y="709" width="1.1" height="15.0" fill="rgb(0,200,16)" rx="2" ry="2" /> +<text x="1387.69" y="719.5" ></text> +</g> +<g > +<title>nf_conntrack_handle_packet (10,101,010 samples, 0.04%)</title><rect x="10.5" y="517" width="0.6" height="15.0" fill="rgb(0,226,156)" rx="2" ry="2" /> +<text x="13.53" y="527.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.04%)</title><rect x="187.7" y="421" width="0.6" height="15.0" fill="rgb(0,235,110)" rx="2" ry="2" /> +<text x="190.74" y="431.5" ></text> +</g> +<g > +<title>__do_sys_clone3 (90,909,090 samples, 0.35%)</title><rect x="18.5" y="917" width="4.8" height="15.0" fill="rgb(0,213,68)" rx="2" ry="2" /> +<text x="21.49" y="927.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.04%)</title><rect x="394.7" y="469" width="0.5" height="15.0" fill="rgb(0,191,158)" rx="2" ry="2" /> +<text x="397.66" y="479.5" ></text> +</g> +<g > +<title>__close_nocancel (10,101,010 samples, 0.04%)</title><rect x="176.6" y="805" width="0.5" height="15.0" fill="rgb(0,216,202)" rx="2" ry="2" /> +<text x="179.60" y="815.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="285.9" y="613" width="0.5" height="15.0" fill="rgb(0,236,114)" rx="2" ry="2" /> +<text x="288.89" y="623.5" ></text> +</g> +<g > +<title>process_backlog (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="421" width="0.5" height="15.0" fill="rgb(0,213,204)" rx="2" ry="2" /> +<text x="1388.76" y="431.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (10,101,010 samples, 0.04%)</title><rect x="415.9" y="517" width="0.5" height="15.0" fill="rgb(0,197,6)" rx="2" ry="2" /> +<text x="418.88" y="527.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="345.8" y="709" width="0.6" height="15.0" fill="rgb(0,199,163)" rx="2" ry="2" /> +<text x="348.85" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="214.8" y="789" width="2.7" height="15.0" fill="rgb(0,203,159)" rx="2" ry="2" /> +<text x="217.80" y="799.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="1382.6" y="757" width="1.0" height="15.0" fill="rgb(0,205,94)" rx="2" ry="2" /> +<text x="1385.57" y="767.5" ></text> +</g> +<g > +<title>terminate_walk (10,101,010 samples, 0.04%)</title><rect x="205.2" y="645" width="0.6" height="15.0" fill="rgb(0,205,99)" rx="2" ry="2" /> +<text x="208.25" y="655.5" ></text> +</g> +<g > +<title>git_oid_fromstrn (10,101,010 samples, 0.04%)</title><rect x="184.0" y="677" width="0.6" height="15.0" fill="rgb(0,216,167)" rx="2" ry="2" /> +<text x="187.03" y="687.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="320.9" y="501" width="0.5" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" /> +<text x="323.91" y="511.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.04%)</title><rect x="411.1" y="677" width="0.5" height="15.0" fill="rgb(0,235,136)" rx="2" ry="2" /> +<text x="414.11" y="687.5" ></text> +</g> +<g > +<title>ipv4_conntrack_local (10,101,010 samples, 0.04%)</title><rect x="1364.0" y="517" width="0.5" height="15.0" fill="rgb(0,236,163)" rx="2" ry="2" /> +<text x="1367.00" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="934.2" y="757" width="0.6" height="15.0" fill="rgb(0,201,177)" rx="2" ry="2" /> +<text x="937.24" y="767.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="56.7" y="725" width="0.5" height="15.0" fill="rgb(0,199,146)" rx="2" ry="2" /> +<text x="59.69" y="735.5" ></text> +</g> +<g > +<title>nf_nat_ipv4_out (10,101,010 samples, 0.04%)</title><rect x="1387.9" y="613" width="0.5" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="1390.88" y="623.5" ></text> +</g> +<g > +<title>inflateInit2_ (10,101,010 samples, 0.04%)</title><rect x="399.4" y="613" width="0.6" height="15.0" fill="rgb(0,201,121)" rx="2" ry="2" /> +<text x="402.43" y="623.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="102.8" y="565" width="0.6" height="15.0" fill="rgb(0,226,31)" rx="2" ry="2" /> +<text x="105.85" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_poll (80,808,080 samples, 0.31%)</title><rect x="25.4" y="821" width="4.2" height="15.0" fill="rgb(0,226,122)" rx="2" ry="2" /> +<text x="28.39" y="831.5" ></text> +</g> +<g > +<title>all (26,272,727,010 samples, 100%)</title><rect x="10.0" y="1013" width="1380.0" height="15.0" fill="rgb(0,237,44)" rx="2" ry="2" /> +<text x="13.00" y="1023.5" ></text> +</g> +<g > +<title>ext4_create (10,101,010 samples, 0.04%)</title><rect x="303.4" y="485" width="0.5" height="15.0" fill="rgb(0,235,42)" rx="2" ry="2" /> +<text x="306.40" y="495.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="629" width="1.6" height="15.0" fill="rgb(0,233,95)" rx="2" ry="2" /> +<text x="1370.19" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="221.7" y="629" width="0.5" height="15.0" fill="rgb(0,238,48)" rx="2" ry="2" /> +<text x="224.70" y="639.5" ></text> +</g> +<g > +<title>__d_free (10,101,010 samples, 0.04%)</title><rect x="378.2" y="405" width="0.5" height="15.0" fill="rgb(0,227,53)" rx="2" ry="2" /> +<text x="381.21" y="415.5" ></text> +</g> +<g > +<title>log_entry_start (20,202,020 samples, 0.08%)</title><rect x="505.0" y="821" width="1.1" height="15.0" fill="rgb(0,214,42)" rx="2" ry="2" /> +<text x="508.02" y="831.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.38%)</title><rect x="156.4" y="693" width="5.3" height="15.0" fill="rgb(0,193,77)" rx="2" ry="2" /> +<text x="159.44" y="703.5" ></text> +</g> +<g > +<title>__sk_flush_backlog (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="661" width="0.5" height="15.0" fill="rgb(0,214,55)" rx="2" ry="2" /> +<text x="1342.07" y="671.5" ></text> +</g> +<g > +<title>vmbus_sendpacket_mpb_desc (10,101,010 samples, 0.04%)</title><rect x="187.7" y="277" width="0.6" height="15.0" fill="rgb(0,198,200)" rx="2" ry="2" /> +<text x="190.74" y="287.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="365.5" y="501" width="0.5" height="15.0" fill="rgb(0,215,119)" rx="2" ry="2" /> +<text x="368.48" y="511.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.04%)</title><rect x="432.9" y="533" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="435.86" y="543.5" ></text> +</g> +<g > +<title>ext4_map_blocks (20,202,020 samples, 0.08%)</title><rect x="373.4" y="501" width="1.1" height="15.0" fill="rgb(0,237,172)" rx="2" ry="2" /> +<text x="376.44" y="511.5" ></text> +</g> +<g > +<title>__es_insert_extent (10,101,010 samples, 0.04%)</title><rect x="325.2" y="421" width="0.5" height="15.0" fill="rgb(0,229,102)" rx="2" ry="2" /> +<text x="328.16" y="431.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (20,202,020 samples, 0.08%)</title><rect x="425.4" y="565" width="1.1" height="15.0" fill="rgb(0,216,31)" rx="2" ry="2" /> +<text x="428.43" y="575.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="73.1" y="677" width="0.6" height="15.0" fill="rgb(0,221,104)" rx="2" ry="2" /> +<text x="76.14" y="687.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (30,303,030 samples, 0.12%)</title><rect x="93.8" y="565" width="1.6" height="15.0" fill="rgb(0,213,91)" rx="2" ry="2" /> +<text x="96.83" y="575.5" ></text> +</g> +<g > +<title>ip_queue_xmit (101,010,100 samples, 0.38%)</title><rect x="37.6" y="501" width="5.3" height="15.0" fill="rgb(0,217,105)" rx="2" ry="2" /> +<text x="40.59" y="511.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.04%)</title><rect x="315.6" y="693" width="0.5" height="15.0" fill="rgb(0,213,138)" rx="2" ry="2" /> +<text x="318.61" y="703.5" ></text> +</g> +<g > +<title>vfs_statx (30,303,030 samples, 0.12%)</title><rect x="150.1" y="645" width="1.6" height="15.0" fill="rgb(0,191,144)" rx="2" ry="2" /> +<text x="153.07" y="655.5" ></text> +</g> +<g > +<title>read (20,202,020 samples, 0.08%)</title><rect x="362.3" y="597" width="1.1" height="15.0" fill="rgb(0,228,193)" rx="2" ry="2" /> +<text x="365.30" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (242,424,240 samples, 0.92%)</title><rect x="454.1" y="725" width="12.7" height="15.0" fill="rgb(0,222,208)" rx="2" ry="2" /> +<text x="457.08" y="735.5" ></text> +</g> +<g > +<title>_raw_read_lock (10,101,010 samples, 0.04%)</title><rect x="124.6" y="533" width="0.5" height="15.0" fill="rgb(0,226,126)" rx="2" ry="2" /> +<text x="127.60" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="1382.6" y="837" width="1.0" height="15.0" fill="rgb(0,199,114)" rx="2" ry="2" /> +<text x="1385.57" y="847.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (30,303,030 samples, 0.12%)</title><rect x="73.7" y="741" width="1.6" height="15.0" fill="rgb(0,219,89)" rx="2" ry="2" /> +<text x="76.67" y="751.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.04%)</title><rect x="202.6" y="629" width="0.5" height="15.0" fill="rgb(0,195,68)" rx="2" ry="2" /> +<text x="205.60" y="639.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.04%)</title><rect x="287.0" y="421" width="0.5" height="15.0" fill="rgb(0,205,198)" rx="2" ry="2" /> +<text x="289.96" y="431.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="234.4" y="293" width="0.6" height="15.0" fill="rgb(0,198,145)" rx="2" ry="2" /> +<text x="237.43" y="303.5" ></text> +</g> +<g > +<title>filldir64 (10,101,010 samples, 0.04%)</title><rect x="252.5" y="597" width="0.5" height="15.0" fill="rgb(0,204,92)" rx="2" ry="2" /> +<text x="255.47" y="607.5" ></text> +</g> +<g > +<title>ipv4_conntrack_local (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="629" width="0.5" height="15.0" fill="rgb(0,225,177)" rx="2" ry="2" /> +<text x="1389.82" y="639.5" ></text> +</g> +<g > +<title>ext4_link (10,101,010 samples, 0.04%)</title><rect x="396.3" y="581" width="0.5" height="15.0" fill="rgb(0,196,15)" rx="2" ry="2" /> +<text x="399.25" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="315.6" y="725" width="0.5" height="15.0" fill="rgb(0,200,3)" rx="2" ry="2" /> +<text x="318.61" y="735.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="127.8" y="501" width="0.5" height="15.0" fill="rgb(0,214,39)" rx="2" ry="2" /> +<text x="130.79" y="511.5" ></text> +</g> +<g > +<title>git_repository_config_snapshot (80,808,080 samples, 0.31%)</title><rect x="360.2" y="741" width="4.2" height="15.0" fill="rgb(0,226,105)" rx="2" ry="2" /> +<text x="363.17" y="751.5" ></text> +</g> +<g > +<title>generic_write_end (10,101,010 samples, 0.04%)</title><rect x="305.0" y="453" width="0.5" height="15.0" fill="rgb(0,223,68)" rx="2" ry="2" /> +<text x="307.99" y="463.5" ></text> +</g> +<g > +<title>blk_flush_plug_list (10,101,010 samples, 0.04%)</title><rect x="343.7" y="485" width="0.6" height="15.0" fill="rgb(0,192,67)" rx="2" ry="2" /> +<text x="346.73" y="495.5" ></text> +</g> +<g > +<title>qdisc_pkt_len_init (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="37" width="0.5" height="15.0" fill="rgb(0,194,187)" rx="2" ry="2" /> +<text x="1370.19" y="47.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.04%)</title><rect x="419.1" y="437" width="0.5" height="15.0" fill="rgb(0,221,79)" rx="2" ry="2" /> +<text x="422.07" y="447.5" ></text> +</g> +<g > +<title>ext4_htree_store_dirent (10,101,010 samples, 0.04%)</title><rect x="154.3" y="581" width="0.5" height="15.0" fill="rgb(0,231,20)" rx="2" ry="2" /> +<text x="157.31" y="591.5" ></text> +</g> +<g > +<title>evict (20,202,020 samples, 0.08%)</title><rect x="90.1" y="533" width="1.1" height="15.0" fill="rgb(0,198,117)" rx="2" ry="2" /> +<text x="93.12" y="543.5" ></text> +</g> +<g > +<title>do_writepages (50,505,050 samples, 0.19%)</title><rect x="273.7" y="517" width="2.6" height="15.0" fill="rgb(0,223,83)" rx="2" ry="2" /> +<text x="276.69" y="527.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (20,202,020 samples, 0.08%)</title><rect x="58.3" y="709" width="1.0" height="15.0" fill="rgb(0,203,77)" rx="2" ry="2" /> +<text x="61.28" y="719.5" ></text> +</g> +<g > +<title>page_remove_rmap (20,202,020 samples, 0.08%)</title><rect x="940.6" y="565" width="1.1" height="15.0" fill="rgb(0,209,45)" rx="2" ry="2" /> +<text x="943.61" y="575.5" ></text> +</g> +<g > +<title>mkdir (50,505,050 samples, 0.19%)</title><rect x="418.0" y="741" width="2.7" height="15.0" fill="rgb(0,227,104)" rx="2" ry="2" /> +<text x="421.00" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="198.9" y="677" width="1.0" height="15.0" fill="rgb(0,210,170)" rx="2" ry="2" /> +<text x="201.88" y="687.5" ></text> +</g> +<g > +<title>__put_cred (10,101,010 samples, 0.04%)</title><rect x="167.0" y="421" width="0.6" height="15.0" fill="rgb(0,192,14)" rx="2" ry="2" /> +<text x="170.05" y="431.5" ></text> +</g> +<g > +<title>ext4_io_submit (10,101,010 samples, 0.04%)</title><rect x="274.8" y="485" width="0.5" height="15.0" fill="rgb(0,218,164)" rx="2" ry="2" /> +<text x="277.75" y="495.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.04%)</title><rect x="86.9" y="549" width="0.6" height="15.0" fill="rgb(0,195,52)" rx="2" ry="2" /> +<text x="89.93" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="475.8" y="709" width="0.6" height="15.0" fill="rgb(0,217,189)" rx="2" ry="2" /> +<text x="478.84" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="598.4" y="789" width="0.5" height="15.0" fill="rgb(0,226,51)" rx="2" ry="2" /> +<text x="601.40" y="799.5" ></text> +</g> +<g > +<title>__check_object_size (20,202,020 samples, 0.08%)</title><rect x="416.9" y="629" width="1.1" height="15.0" fill="rgb(0,229,20)" rx="2" ry="2" /> +<text x="419.94" y="639.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.04%)</title><rect x="348.5" y="501" width="0.5" height="15.0" fill="rgb(0,237,62)" rx="2" ry="2" /> +<text x="351.50" y="511.5" ></text> +</g> +<g > +<title>ext4_bread (20,202,020 samples, 0.08%)</title><rect x="419.1" y="597" width="1.0" height="15.0" fill="rgb(0,232,181)" rx="2" ry="2" /> +<text x="422.07" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_rename (80,808,080 samples, 0.31%)</title><rect x="433.9" y="629" width="4.3" height="15.0" fill="rgb(0,210,150)" rx="2" ry="2" /> +<text x="436.92" y="639.5" ></text> +</g> +<g > +<title>run_rebalance_domains (10,101,010 samples, 0.04%)</title><rect x="588.3" y="549" width="0.5" height="15.0" fill="rgb(0,197,80)" rx="2" ry="2" /> +<text x="591.32" y="559.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="167.0" y="549" width="0.6" height="15.0" fill="rgb(0,223,13)" rx="2" ry="2" /> +<text x="170.05" y="559.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="107.1" y="517" width="0.5" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="110.09" y="527.5" ></text> +</g> +<g > +<title>__ext4_new_inode (20,202,020 samples, 0.08%)</title><rect x="204.2" y="597" width="1.0" height="15.0" fill="rgb(0,199,0)" rx="2" ry="2" /> +<text x="207.19" y="607.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="97.5" y="357" width="0.6" height="15.0" fill="rgb(0,223,88)" rx="2" ry="2" /> +<text x="100.54" y="367.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="174.5" y="581" width="0.5" height="15.0" fill="rgb(0,228,163)" rx="2" ry="2" /> +<text x="177.48" y="591.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="241.3" y="581" width="0.6" height="15.0" fill="rgb(0,200,0)" rx="2" ry="2" /> +<text x="244.33" y="591.5" ></text> +</g> +<g > +<title>file_close (10,101,010 samples, 0.04%)</title><rect x="15.8" y="885" width="0.6" height="15.0" fill="rgb(0,216,163)" rx="2" ry="2" /> +<text x="18.84" y="895.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="90.1" y="501" width="0.5" height="15.0" fill="rgb(0,190,209)" rx="2" ry="2" /> +<text x="93.12" y="511.5" ></text> +</g> +<g > +<title>mark_buffer_dirty (10,101,010 samples, 0.04%)</title><rect x="391.5" y="421" width="0.5" height="15.0" fill="rgb(0,232,143)" rx="2" ry="2" /> +<text x="394.48" y="431.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="135.2" y="421" width="0.5" height="15.0" fill="rgb(0,216,86)" rx="2" ry="2" /> +<text x="138.21" y="431.5" ></text> +</g> +<g > +<title>vm_normal_page (10,101,010 samples, 0.04%)</title><rect x="181.4" y="693" width="0.5" height="15.0" fill="rgb(0,218,41)" rx="2" ry="2" /> +<text x="184.37" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="499.2" y="565" width="0.5" height="15.0" fill="rgb(0,212,68)" rx="2" ry="2" /> +<text x="502.18" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="487.5" y="677" width="1.1" height="15.0" fill="rgb(0,219,201)" rx="2" ry="2" /> +<text x="490.51" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="191.5" y="805" width="0.5" height="15.0" fill="rgb(0,231,137)" rx="2" ry="2" /> +<text x="194.45" y="815.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.04%)</title><rect x="383.0" y="453" width="0.5" height="15.0" fill="rgb(0,235,90)" rx="2" ry="2" /> +<text x="385.99" y="463.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="416.4" y="501" width="0.5" height="15.0" fill="rgb(0,220,203)" rx="2" ry="2" /> +<text x="419.41" y="511.5" ></text> +</g> +<g > +<title>git_config_open_ondisk (10,101,010 samples, 0.04%)</title><rect x="431.8" y="757" width="0.5" height="15.0" fill="rgb(0,191,54)" rx="2" ry="2" /> +<text x="434.80" y="767.5" ></text> +</g> +<g > +<title>ext4_mb_use_best_found (10,101,010 samples, 0.04%)</title><rect x="236.0" y="421" width="0.6" height="15.0" fill="rgb(0,195,146)" rx="2" ry="2" /> +<text x="239.02" y="431.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="1299.3" y="741" width="0.5" height="15.0" fill="rgb(0,194,176)" rx="2" ry="2" /> +<text x="1302.27" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="245.0" y="677" width="1.6" height="15.0" fill="rgb(0,190,16)" rx="2" ry="2" /> +<text x="248.04" y="687.5" ></text> +</g> +<g > +<title>open_last_lookups (40,404,040 samples, 0.15%)</title><rect x="377.2" y="645" width="2.1" height="15.0" fill="rgb(0,234,36)" rx="2" ry="2" /> +<text x="380.15" y="655.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.04%)</title><rect x="487.5" y="613" width="0.5" height="15.0" fill="rgb(0,234,195)" rx="2" ry="2" /> +<text x="490.51" y="623.5" ></text> +</g> +<g > +<title>__mem_cgroup_charge (111,111,110 samples, 0.42%)</title><rect x="1322.1" y="629" width="5.8" height="15.0" fill="rgb(0,225,144)" rx="2" ry="2" /> +<text x="1325.09" y="639.5" ></text> +</g> +<g > +<title>down_write (10,101,010 samples, 0.04%)</title><rect x="341.1" y="517" width="0.5" height="15.0" fill="rgb(0,200,7)" rx="2" ry="2" /> +<text x="344.07" y="527.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="138.4" y="389" width="0.5" height="15.0" fill="rgb(0,198,76)" rx="2" ry="2" /> +<text x="141.40" y="399.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="325.2" y="661" width="1.0" height="15.0" fill="rgb(0,207,81)" rx="2" ry="2" /> +<text x="328.16" y="671.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="491.2" y="581" width="0.6" height="15.0" fill="rgb(0,225,118)" rx="2" ry="2" /> +<text x="494.22" y="591.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (10,101,010 samples, 0.04%)</title><rect x="315.6" y="645" width="0.5" height="15.0" fill="rgb(0,237,15)" rx="2" ry="2" /> +<text x="318.61" y="655.5" ></text> +</g> +<g > +<title>ext4_inode_block_valid (10,101,010 samples, 0.04%)</title><rect x="128.8" y="453" width="0.6" height="15.0" fill="rgb(0,232,126)" rx="2" ry="2" /> +<text x="131.85" y="463.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="299.2" y="501" width="0.5" height="15.0" fill="rgb(0,202,77)" rx="2" ry="2" /> +<text x="302.16" y="511.5" ></text> +</g> +<g > +<title>ext4_htree_store_dirent (10,101,010 samples, 0.04%)</title><rect x="277.4" y="597" width="0.5" height="15.0" fill="rgb(0,216,28)" rx="2" ry="2" /> +<text x="280.40" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.04%)</title><rect x="163.9" y="725" width="0.5" height="15.0" fill="rgb(0,233,11)" rx="2" ry="2" /> +<text x="166.86" y="735.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="387.8" y="485" width="0.5" height="15.0" fill="rgb(0,206,16)" rx="2" ry="2" /> +<text x="390.76" y="495.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="133" width="0.5" height="15.0" fill="rgb(0,193,127)" rx="2" ry="2" /> +<text x="1342.07" y="143.5" ></text> +</g> +<g > +<title>vmbus_on_event (10,101,010 samples, 0.04%)</title><rect x="13.7" y="437" width="0.5" height="15.0" fill="rgb(0,227,197)" rx="2" ry="2" /> +<text x="16.71" y="447.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.04%)</title><rect x="332.6" y="389" width="0.5" height="15.0" fill="rgb(0,196,205)" rx="2" ry="2" /> +<text x="335.58" y="399.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_node (10,101,010 samples, 0.04%)</title><rect x="1356.0" y="629" width="0.6" height="15.0" fill="rgb(0,231,117)" rx="2" ry="2" /> +<text x="1359.04" y="639.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (10,101,010 samples, 0.04%)</title><rect x="187.7" y="613" width="0.6" height="15.0" fill="rgb(0,233,138)" rx="2" ry="2" /> +<text x="190.74" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="294.9" y="565" width="0.5" height="15.0" fill="rgb(0,220,108)" rx="2" ry="2" /> +<text x="297.91" y="575.5" ></text> +</g> +<g > +<title>git_repository_config_snapshot (151,515,150 samples, 0.58%)</title><rect x="497.1" y="789" width="7.9" height="15.0" fill="rgb(0,193,37)" rx="2" ry="2" /> +<text x="500.06" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="313.0" y="613" width="0.5" height="15.0" fill="rgb(0,204,209)" rx="2" ry="2" /> +<text x="315.95" y="623.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.04%)</title><rect x="407.9" y="469" width="0.6" height="15.0" fill="rgb(0,217,47)" rx="2" ry="2" /> +<text x="410.92" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.58%)</title><rect x="368.7" y="757" width="7.9" height="15.0" fill="rgb(0,190,19)" rx="2" ry="2" /> +<text x="371.66" y="767.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.04%)</title><rect x="352.7" y="485" width="0.6" height="15.0" fill="rgb(0,211,37)" rx="2" ry="2" /> +<text x="355.75" y="495.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1381.0" y="453" width="0.5" height="15.0" fill="rgb(0,230,132)" rx="2" ry="2" /> +<text x="1383.98" y="463.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="341" width="0.5" height="15.0" fill="rgb(0,228,53)" rx="2" ry="2" /> +<text x="1388.76" y="351.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.04%)</title><rect x="102.8" y="517" width="0.6" height="15.0" fill="rgb(0,238,28)" rx="2" ry="2" /> +<text x="105.85" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="598.4" y="805" width="0.5" height="15.0" fill="rgb(0,212,98)" rx="2" ry="2" /> +<text x="601.40" y="815.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.04%)</title><rect x="234.4" y="453" width="0.6" height="15.0" fill="rgb(0,238,160)" rx="2" ry="2" /> +<text x="237.43" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="352.7" y="597" width="0.6" height="15.0" fill="rgb(0,231,125)" rx="2" ry="2" /> +<text x="355.75" y="607.5" ></text> +</g> +<g > +<title>net_send_buf (575,757,570 samples, 2.19%)</title><rect x="1338.5" y="853" width="30.3" height="15.0" fill="rgb(0,202,80)" rx="2" ry="2" /> +<text x="1341.54" y="863.5" >ne..</text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="241.3" y="565" width="0.6" height="15.0" fill="rgb(0,218,159)" rx="2" ry="2" /> +<text x="244.33" y="575.5" ></text> +</g> +<g > +<title>git_error_clear (10,101,010 samples, 0.04%)</title><rect x="276.3" y="757" width="0.6" height="15.0" fill="rgb(0,223,147)" rx="2" ry="2" /> +<text x="279.34" y="767.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.04%)</title><rect x="489.6" y="517" width="0.6" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="492.63" y="527.5" ></text> +</g> +<g > +<title>__d_add (10,101,010 samples, 0.04%)</title><rect x="378.7" y="565" width="0.6" height="15.0" fill="rgb(0,190,89)" rx="2" ry="2" /> +<text x="381.74" y="575.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.04%)</title><rect x="59.3" y="821" width="0.6" height="15.0" fill="rgb(0,235,96)" rx="2" ry="2" /> +<text x="62.34" y="831.5" ></text> +</g> +<g > +<title>unlink_cb (141,414,140 samples, 0.54%)</title><rect x="156.4" y="741" width="7.5" height="15.0" fill="rgb(0,227,186)" rx="2" ry="2" /> +<text x="159.44" y="751.5" ></text> +</g> +<g > +<title>git_repository__cleanup (20,202,020 samples, 0.08%)</title><rect x="293.3" y="709" width="1.1" height="15.0" fill="rgb(0,198,186)" rx="2" ry="2" /> +<text x="296.32" y="719.5" ></text> +</g> +<g > +<title>jbd2_journal_revoke (10,101,010 samples, 0.04%)</title><rect x="137.3" y="421" width="0.6" height="15.0" fill="rgb(0,236,27)" rx="2" ry="2" /> +<text x="140.34" y="431.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="134.2" y="453" width="0.5" height="15.0" fill="rgb(0,228,57)" rx="2" ry="2" /> +<text x="137.15" y="463.5" ></text> +</g> +<g > +<title>iterate_dir (40,404,040 samples, 0.15%)</title><rect x="153.3" y="661" width="2.1" height="15.0" fill="rgb(0,233,186)" rx="2" ry="2" /> +<text x="156.25" y="671.5" ></text> +</g> +<g > +<title>ipv4_conntrack_local (10,101,010 samples, 0.04%)</title><rect x="10.5" y="549" width="0.6" height="15.0" fill="rgb(0,192,120)" rx="2" ry="2" /> +<text x="13.53" y="559.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.04%)</title><rect x="128.8" y="485" width="0.6" height="15.0" fill="rgb(0,215,130)" rx="2" ry="2" /> +<text x="131.85" y="495.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="170.2" y="677" width="0.6" height="15.0" fill="rgb(0,226,158)" rx="2" ry="2" /> +<text x="173.23" y="687.5" ></text> +</g> +<g > +<title>blk_mq_sched_insert_requests (30,303,030 samples, 0.12%)</title><rect x="448.8" y="437" width="1.6" height="15.0" fill="rgb(0,196,87)" rx="2" ry="2" /> +<text x="451.78" y="447.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="345.3" y="661" width="0.5" height="15.0" fill="rgb(0,210,208)" rx="2" ry="2" /> +<text x="348.32" y="671.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="293" width="0.6" height="15.0" fill="rgb(0,217,107)" rx="2" ry="2" /> +<text x="1383.45" y="303.5" ></text> +</g> +<g > +<title>vfs_rmdir (303,030,300 samples, 1.15%)</title><rect x="126.7" y="597" width="15.9" height="15.0" fill="rgb(0,236,14)" rx="2" ry="2" /> +<text x="129.72" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="83.2" y="789" width="0.5" height="15.0" fill="rgb(0,229,32)" rx="2" ry="2" /> +<text x="86.22" y="799.5" ></text> +</g> +<g > +<title>remove (343,434,340 samples, 1.31%)</title><rect x="126.2" y="693" width="18.0" height="15.0" fill="rgb(0,212,193)" rx="2" ry="2" /> +<text x="129.19" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="301.8" y="645" width="0.5" height="15.0" fill="rgb(0,220,60)" rx="2" ry="2" /> +<text x="304.81" y="655.5" ></text> +</g> +<g > +<title>lockref_get (10,101,010 samples, 0.04%)</title><rect x="150.6" y="581" width="0.5" height="15.0" fill="rgb(0,209,134)" rx="2" ry="2" /> +<text x="153.60" y="591.5" ></text> +</g> +<g > +<title>walk_component (20,202,020 samples, 0.08%)</title><rect x="364.9" y="613" width="1.1" height="15.0" fill="rgb(0,199,122)" rx="2" ry="2" /> +<text x="367.95" y="623.5" ></text> +</g> +<g > +<title>getdents64 (121,212,120 samples, 0.46%)</title><rect x="247.7" y="709" width="6.4" height="15.0" fill="rgb(0,228,161)" rx="2" ry="2" /> +<text x="250.69" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="201.5" y="709" width="1.1" height="15.0" fill="rgb(0,204,166)" rx="2" ry="2" /> +<text x="204.53" y="719.5" ></text> +</g> +<g > +<title>__netif_receive_skb (10,101,010 samples, 0.04%)</title><rect x="1387.3" y="485" width="0.6" height="15.0" fill="rgb(0,207,80)" rx="2" ry="2" /> +<text x="1390.35" y="495.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="57.2" y="661" width="0.6" height="15.0" fill="rgb(0,222,182)" rx="2" ry="2" /> +<text x="60.22" y="671.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="339.5" y="709" width="0.5" height="15.0" fill="rgb(0,208,5)" rx="2" ry="2" /> +<text x="342.48" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="294.9" y="613" width="0.5" height="15.0" fill="rgb(0,223,199)" rx="2" ry="2" /> +<text x="297.91" y="623.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="281.6" y="517" width="0.6" height="15.0" fill="rgb(0,191,158)" rx="2" ry="2" /> +<text x="284.65" y="527.5" ></text> +</g> +<g > +<title>__fsnotify_inode_delete (10,101,010 samples, 0.04%)</title><rect x="369.7" y="517" width="0.6" height="15.0" fill="rgb(0,225,90)" rx="2" ry="2" /> +<text x="372.72" y="527.5" ></text> +</g> +<g > +<title>evict (20,202,020 samples, 0.08%)</title><rect x="147.4" y="597" width="1.1" height="15.0" fill="rgb(0,190,0)" rx="2" ry="2" /> +<text x="150.42" y="607.5" ></text> +</g> +<g > +<title>[libpcre.so.3.13.3] (10,101,010 samples, 0.04%)</title><rect x="336.3" y="725" width="0.5" height="15.0" fill="rgb(0,211,168)" rx="2" ry="2" /> +<text x="339.30" y="735.5" ></text> +</g> +<g > +<title>ext4_free_inode (20,202,020 samples, 0.08%)</title><rect x="133.1" y="533" width="1.1" height="15.0" fill="rgb(0,224,99)" rx="2" ry="2" /> +<text x="136.09" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.04%)</title><rect x="339.0" y="629" width="0.5" height="15.0" fill="rgb(0,225,69)" rx="2" ry="2" /> +<text x="341.95" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,808,080,790 samples, 6.88%)</title><rect x="86.4" y="821" width="95.0" height="15.0" fill="rgb(0,224,21)" rx="2" ry="2" /> +<text x="89.40" y="831.5" >[libc.so.6]</text> +</g> +<g > +<title>rcu_read_unlock_strict (10,101,010 samples, 0.04%)</title><rect x="617.5" y="789" width="0.5" height="15.0" fill="rgb(0,233,89)" rx="2" ry="2" /> +<text x="620.50" y="799.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.04%)</title><rect x="189.3" y="709" width="0.6" height="15.0" fill="rgb(0,203,48)" rx="2" ry="2" /> +<text x="192.33" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (10,101,010 samples, 0.04%)</title><rect x="367.1" y="629" width="0.5" height="15.0" fill="rgb(0,201,26)" rx="2" ry="2" /> +<text x="370.07" y="639.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="230.2" y="517" width="0.5" height="15.0" fill="rgb(0,191,30)" rx="2" ry="2" /> +<text x="233.18" y="527.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (20,202,020 samples, 0.08%)</title><rect x="407.4" y="597" width="1.1" height="15.0" fill="rgb(0,217,71)" rx="2" ry="2" /> +<text x="410.39" y="607.5" ></text> +</g> +<g > +<title>tcp_ack (10,101,010 samples, 0.04%)</title><rect x="1367.7" y="261" width="0.5" height="15.0" fill="rgb(0,229,154)" rx="2" ry="2" /> +<text x="1370.72" y="271.5" ></text> +</g> +<g > +<title>ext4_map_blocks (20,202,020 samples, 0.08%)</title><rect x="419.1" y="565" width="1.0" height="15.0" fill="rgb(0,233,199)" rx="2" ry="2" /> +<text x="422.07" y="575.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="503.4" y="597" width="0.6" height="15.0" fill="rgb(0,190,85)" rx="2" ry="2" /> +<text x="506.43" y="607.5" ></text> +</g> +<g > +<title>add_transaction_credits (10,101,010 samples, 0.04%)</title><rect x="65.7" y="709" width="0.5" height="15.0" fill="rgb(0,197,157)" rx="2" ry="2" /> +<text x="68.71" y="719.5" ></text> +</g> +<g > +<title>__sk_destruct (10,101,010 samples, 0.04%)</title><rect x="38.7" y="133" width="0.5" height="15.0" fill="rgb(0,228,28)" rx="2" ry="2" /> +<text x="41.65" y="143.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="309" width="1.6" height="15.0" fill="rgb(0,237,186)" rx="2" ry="2" /> +<text x="1371.78" y="319.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="313.0" y="629" width="1.0" height="15.0" fill="rgb(0,203,100)" rx="2" ry="2" /> +<text x="315.95" y="639.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.04%)</title><rect x="372.4" y="341" width="0.5" height="15.0" fill="rgb(0,190,126)" rx="2" ry="2" /> +<text x="375.38" y="351.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="600.5" y="821" width="0.5" height="15.0" fill="rgb(0,225,97)" rx="2" ry="2" /> +<text x="603.52" y="831.5" ></text> +</g> +<g > +<title>scsi_dispatch_cmd (10,101,010 samples, 0.04%)</title><rect x="187.7" y="325" width="0.6" height="15.0" fill="rgb(0,224,195)" rx="2" ry="2" /> +<text x="190.74" y="335.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="300.2" y="597" width="0.5" height="15.0" fill="rgb(0,234,4)" rx="2" ry="2" /> +<text x="303.22" y="607.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="385.6" y="453" width="0.6" height="15.0" fill="rgb(0,190,117)" rx="2" ry="2" /> +<text x="388.64" y="463.5" ></text> +</g> +<g > +<title>page_add_new_anon_rmap (10,101,010 samples, 0.04%)</title><rect x="897.6" y="725" width="0.6" height="15.0" fill="rgb(0,221,173)" rx="2" ry="2" /> +<text x="900.64" y="735.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (30,303,030 samples, 0.12%)</title><rect x="470.0" y="757" width="1.6" height="15.0" fill="rgb(0,200,35)" rx="2" ry="2" /> +<text x="473.00" y="767.5" ></text> +</g> +<g > +<title>__srcu_read_unlock (10,101,010 samples, 0.04%)</title><rect x="340.0" y="517" width="0.5" height="15.0" fill="rgb(0,237,186)" rx="2" ry="2" /> +<text x="343.01" y="527.5" ></text> +</g> +<g > +<title>alloc_empty_file (50,505,050 samples, 0.19%)</title><rect x="60.4" y="821" width="2.7" height="15.0" fill="rgb(0,236,38)" rx="2" ry="2" /> +<text x="63.40" y="831.5" ></text> +</g> +<g > +<title>ip_route_output_flow (10,101,010 samples, 0.04%)</title><rect x="1386.3" y="725" width="0.5" height="15.0" fill="rgb(0,212,181)" rx="2" ry="2" /> +<text x="1389.29" y="735.5" ></text> +</g> +<g > +<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.04%)</title><rect x="1364.0" y="469" width="0.5" height="15.0" fill="rgb(0,221,177)" rx="2" ry="2" /> +<text x="1367.00" y="479.5" ></text> +</g> +<g > +<title>__ext4_check_dir_entry (10,101,010 samples, 0.04%)</title><rect x="351.7" y="453" width="0.5" height="15.0" fill="rgb(0,211,140)" rx="2" ry="2" /> +<text x="354.68" y="463.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.04%)</title><rect x="509.3" y="789" width="0.5" height="15.0" fill="rgb(0,195,161)" rx="2" ry="2" /> +<text x="512.26" y="799.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="472.1" y="693" width="0.6" height="15.0" fill="rgb(0,191,176)" rx="2" ry="2" /> +<text x="475.12" y="703.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="220.1" y="613" width="0.5" height="15.0" fill="rgb(0,235,55)" rx="2" ry="2" /> +<text x="223.10" y="623.5" ></text> +</g> +<g > +<title>scsi_queue_rq (20,202,020 samples, 0.08%)</title><rect x="436.0" y="277" width="1.1" height="15.0" fill="rgb(0,209,13)" rx="2" ry="2" /> +<text x="439.04" y="287.5" ></text> +</g> +<g > +<title>readdir64 (90,909,090 samples, 0.35%)</title><rect x="151.7" y="741" width="4.7" height="15.0" fill="rgb(0,236,66)" rx="2" ry="2" /> +<text x="154.66" y="751.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.04%)</title><rect x="505.5" y="661" width="0.6" height="15.0" fill="rgb(0,207,38)" rx="2" ry="2" /> +<text x="508.55" y="671.5" ></text> +</g> +<g > +<title>ip_queue_xmit (20,202,020 samples, 0.08%)</title><rect x="1371.4" y="693" width="1.1" height="15.0" fill="rgb(0,202,21)" rx="2" ry="2" /> +<text x="1374.43" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.04%)</title><rect x="185.1" y="661" width="0.5" height="15.0" fill="rgb(0,193,59)" rx="2" ry="2" /> +<text x="188.09" y="671.5" ></text> +</g> +<g > +<title>new_sync_write (20,202,020 samples, 0.08%)</title><rect x="325.2" y="581" width="1.0" height="15.0" fill="rgb(0,224,24)" rx="2" ry="2" /> +<text x="328.16" y="591.5" ></text> +</g> +<g > +<title>do_writepages (30,303,030 samples, 0.12%)</title><rect x="436.0" y="501" width="1.6" height="15.0" fill="rgb(0,198,14)" rx="2" ry="2" /> +<text x="439.04" y="511.5" ></text> +</g> +<g > +<title>vfs_statx (30,303,030 samples, 0.12%)</title><rect x="382.5" y="549" width="1.5" height="15.0" fill="rgb(0,217,84)" rx="2" ry="2" /> +<text x="385.46" y="559.5" ></text> +</g> +<g > +<title>__tcp_ack_snd_check (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="197" width="0.5" height="15.0" fill="rgb(0,226,83)" rx="2" ry="2" /> +<text x="1342.07" y="207.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.27%)</title><rect x="166.0" y="709" width="3.7" height="15.0" fill="rgb(0,211,33)" rx="2" ry="2" /> +<text x="168.99" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.35%)</title><rect x="474.8" y="741" width="4.8" height="15.0" fill="rgb(0,217,37)" rx="2" ry="2" /> +<text x="477.78" y="751.5" ></text> +</g> +<g > +<title>ext4_link (10,101,010 samples, 0.04%)</title><rect x="215.9" y="661" width="0.5" height="15.0" fill="rgb(0,228,188)" rx="2" ry="2" /> +<text x="218.86" y="671.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="109.2" y="437" width="0.5" height="15.0" fill="rgb(0,212,114)" rx="2" ry="2" /> +<text x="112.22" y="447.5" ></text> +</g> +<g > +<title>__tcp_ack_snd_check (10,101,010 samples, 0.04%)</title><rect x="47.1" y="629" width="0.6" height="15.0" fill="rgb(0,190,147)" rx="2" ry="2" /> +<text x="50.14" y="639.5" ></text> +</g> +<g > +<title>__lookup_hash (20,202,020 samples, 0.08%)</title><rect x="506.1" y="709" width="1.0" height="15.0" fill="rgb(0,219,67)" rx="2" ry="2" /> +<text x="509.08" y="719.5" ></text> +</g> +<g > +<title>ext4_file_open (10,101,010 samples, 0.04%)</title><rect x="501.8" y="517" width="0.6" height="15.0" fill="rgb(0,198,5)" rx="2" ry="2" /> +<text x="504.83" y="527.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="285.9" y="597" width="0.5" height="15.0" fill="rgb(0,212,54)" rx="2" ry="2" /> +<text x="288.89" y="607.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="298.1" y="421" width="0.5" height="15.0" fill="rgb(0,230,155)" rx="2" ry="2" /> +<text x="301.10" y="431.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="157.0" y="517" width="0.5" height="15.0" fill="rgb(0,202,158)" rx="2" ry="2" /> +<text x="159.97" y="527.5" ></text> +</g> +<g > +<title>call_filldir (10,101,010 samples, 0.04%)</title><rect x="249.3" y="613" width="0.5" height="15.0" fill="rgb(0,229,10)" rx="2" ry="2" /> +<text x="252.28" y="623.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (80,808,080 samples, 0.31%)</title><rect x="1299.8" y="677" width="4.2" height="15.0" fill="rgb(0,205,169)" rx="2" ry="2" /> +<text x="1302.80" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="264.1" y="645" width="1.6" height="15.0" fill="rgb(0,202,37)" rx="2" ry="2" /> +<text x="267.14" y="655.5" ></text> +</g> +<g > +<title>rmdir (10,101,010 samples, 0.04%)</title><rect x="170.2" y="741" width="0.6" height="15.0" fill="rgb(0,227,16)" rx="2" ry="2" /> +<text x="173.23" y="751.5" ></text> +</g> +<g > +<title>crc_3 (10,101,010 samples, 0.04%)</title><rect x="329.4" y="469" width="0.5" height="15.0" fill="rgb(0,239,19)" rx="2" ry="2" /> +<text x="332.40" y="479.5" ></text> +</g> +<g > +<title>mark_buffer_dirty (10,101,010 samples, 0.04%)</title><rect x="285.4" y="453" width="0.5" height="15.0" fill="rgb(0,231,0)" rx="2" ry="2" /> +<text x="288.36" y="463.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (10,101,010 samples, 0.04%)</title><rect x="269.4" y="469" width="0.6" height="15.0" fill="rgb(0,232,199)" rx="2" ry="2" /> +<text x="272.45" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="185.6" y="581" width="0.5" height="15.0" fill="rgb(0,229,120)" rx="2" ry="2" /> +<text x="188.62" y="591.5" ></text> +</g> +<g > +<title>rb_insert_color (10,101,010 samples, 0.04%)</title><rect x="1366.7" y="597" width="0.5" height="15.0" fill="rgb(0,203,204)" rx="2" ry="2" /> +<text x="1369.66" y="607.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="414.3" y="501" width="0.5" height="15.0" fill="rgb(0,233,61)" rx="2" ry="2" /> +<text x="417.29" y="511.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.04%)</title><rect x="129.4" y="501" width="0.5" height="15.0" fill="rgb(0,190,84)" rx="2" ry="2" /> +<text x="132.38" y="511.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="414.3" y="581" width="0.5" height="15.0" fill="rgb(0,206,9)" rx="2" ry="2" /> +<text x="417.29" y="591.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="589.4" y="661" width="0.5" height="15.0" fill="rgb(0,225,15)" rx="2" ry="2" /> +<text x="592.38" y="671.5" ></text> +</g> +<g > +<title>ext4_rename2 (20,202,020 samples, 0.08%)</title><rect x="415.9" y="581" width="1.0" height="15.0" fill="rgb(0,206,44)" rx="2" ry="2" /> +<text x="418.88" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="221.7" y="389" width="0.5" height="15.0" fill="rgb(0,233,121)" rx="2" ry="2" /> +<text x="224.70" y="399.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="439.8" y="629" width="1.0" height="15.0" fill="rgb(0,222,64)" rx="2" ry="2" /> +<text x="442.76" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (111,111,110 samples, 0.42%)</title><rect x="432.3" y="693" width="5.9" height="15.0" fill="rgb(0,233,200)" rx="2" ry="2" /> +<text x="435.33" y="703.5" ></text> +</g> +<g > +<title>vfs_rename (20,202,020 samples, 0.08%)</title><rect x="415.9" y="597" width="1.0" height="15.0" fill="rgb(0,227,108)" rx="2" ry="2" /> +<text x="418.88" y="607.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="87.5" y="565" width="0.5" height="15.0" fill="rgb(0,219,133)" rx="2" ry="2" /> +<text x="90.46" y="575.5" ></text> +</g> +<g > +<title>__wake_up_sync_key (10,101,010 samples, 0.04%)</title><rect x="1365.6" y="197" width="0.5" height="15.0" fill="rgb(0,212,26)" rx="2" ry="2" /> +<text x="1368.59" y="207.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.04%)</title><rect x="369.2" y="613" width="0.5" height="15.0" fill="rgb(0,236,133)" rx="2" ry="2" /> +<text x="372.19" y="623.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.04%)</title><rect x="108.7" y="517" width="0.5" height="15.0" fill="rgb(0,232,51)" rx="2" ry="2" /> +<text x="111.69" y="527.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="412.2" y="645" width="0.5" height="15.0" fill="rgb(0,206,159)" rx="2" ry="2" /> +<text x="415.17" y="655.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.04%)</title><rect x="395.2" y="469" width="0.5" height="15.0" fill="rgb(0,227,154)" rx="2" ry="2" /> +<text x="398.19" y="479.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (30,303,030 samples, 0.12%)</title><rect x="1379.9" y="581" width="1.6" height="15.0" fill="rgb(0,235,207)" rx="2" ry="2" /> +<text x="1382.92" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="294.4" y="709" width="0.5" height="15.0" fill="rgb(0,208,84)" rx="2" ry="2" /> +<text x="297.38" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="282.7" y="613" width="0.5" height="15.0" fill="rgb(0,216,42)" rx="2" ry="2" /> +<text x="285.71" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="87.5" y="581" width="0.5" height="15.0" fill="rgb(0,229,151)" rx="2" ry="2" /> +<text x="90.46" y="591.5" ></text> +</g> +<g > +<title>ext4_release_file (10,101,010 samples, 0.04%)</title><rect x="502.9" y="549" width="0.5" height="15.0" fill="rgb(0,231,208)" rx="2" ry="2" /> +<text x="505.90" y="559.5" ></text> +</g> +<g > +<title>filemap_flush (30,303,030 samples, 0.12%)</title><rect x="342.7" y="565" width="1.6" height="15.0" fill="rgb(0,202,97)" rx="2" ry="2" /> +<text x="345.66" y="575.5" ></text> +</g> +<g > +<title>__schedule (333,333,330 samples, 1.27%)</title><rect x="571.3" y="661" width="17.5" height="15.0" fill="rgb(0,214,92)" rx="2" ry="2" /> +<text x="574.34" y="671.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (141,414,140 samples, 0.54%)</title><rect x="231.2" y="581" width="7.5" height="15.0" fill="rgb(0,191,23)" rx="2" ry="2" /> +<text x="234.25" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="309.2" y="661" width="1.1" height="15.0" fill="rgb(0,200,95)" rx="2" ry="2" /> +<text x="312.24" y="671.5" ></text> +</g> +<g > +<title>kernel_init_free_pages.part.0 (10,101,010 samples, 0.04%)</title><rect x="1332.7" y="581" width="0.5" height="15.0" fill="rgb(0,190,107)" rx="2" ry="2" /> +<text x="1335.70" y="591.5" ></text> +</g> +<g > +<title>remove (10,101,010 samples, 0.04%)</title><rect x="88.5" y="629" width="0.6" height="15.0" fill="rgb(0,190,90)" rx="2" ry="2" /> +<text x="91.52" y="639.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.04%)</title><rect x="86.9" y="581" width="0.6" height="15.0" fill="rgb(0,203,177)" rx="2" ry="2" /> +<text x="89.93" y="591.5" ></text> +</g> +<g > +<title>__napi_poll (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="389" width="0.6" height="15.0" fill="rgb(0,223,85)" rx="2" ry="2" /> +<text x="1388.22" y="399.5" ></text> +</g> +<g > +<title>__handle_mm_fault (10,101,010 samples, 0.04%)</title><rect x="116.1" y="565" width="0.5" height="15.0" fill="rgb(0,196,172)" rx="2" ry="2" /> +<text x="119.11" y="575.5" ></text> +</g> +<g > +<title>prepare_to_wait_event (10,101,010 samples, 0.04%)</title><rect x="588.8" y="693" width="0.6" height="15.0" fill="rgb(0,226,150)" rx="2" ry="2" /> +<text x="591.85" y="703.5" ></text> +</g> +<g > +<title>__dentry_kill (10,101,010 samples, 0.04%)</title><rect x="15.8" y="693" width="0.6" height="15.0" fill="rgb(0,195,51)" rx="2" ry="2" /> +<text x="18.84" y="703.5" ></text> +</g> +<g > +<title>base64_encode (5,616,161,560 samples, 21.38%)</title><rect x="604.8" y="869" width="295.0" height="15.0" fill="rgb(0,212,79)" rx="2" ry="2" /> +<text x="607.76" y="879.5" >base64_encode</text> +</g> +<g > +<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.04%)</title><rect x="168.1" y="485" width="0.5" height="15.0" fill="rgb(0,213,39)" rx="2" ry="2" /> +<text x="171.11" y="495.5" ></text> +</g> +<g > +<title>json_to_string (7,535,353,460 samples, 28.68%)</title><rect x="942.7" y="853" width="395.8" height="15.0" fill="rgb(0,239,65)" rx="2" ry="2" /> +<text x="945.73" y="863.5" >json_to_string</text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.04%)</title><rect x="128.8" y="501" width="0.6" height="15.0" fill="rgb(0,239,13)" rx="2" ry="2" /> +<text x="131.85" y="511.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="281.6" y="501" width="0.6" height="15.0" fill="rgb(0,211,124)" rx="2" ry="2" /> +<text x="284.65" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="367.1" y="645" width="0.5" height="15.0" fill="rgb(0,229,171)" rx="2" ry="2" /> +<text x="370.07" y="655.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="205.8" y="709" width="0.5" height="15.0" fill="rgb(0,204,151)" rx="2" ry="2" /> +<text x="208.78" y="719.5" ></text> +</g> +<g > +<title>apparmor_file_open (10,101,010 samples, 0.04%)</title><rect x="186.1" y="437" width="0.6" height="15.0" fill="rgb(0,213,86)" rx="2" ry="2" /> +<text x="189.15" y="447.5" ></text> +</g> +<g > +<title>security_file_free (20,202,020 samples, 0.08%)</title><rect x="33.3" y="677" width="1.1" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="36.34" y="687.5" ></text> +</g> +<g > +<title>user_path_at_empty (30,303,030 samples, 0.12%)</title><rect x="382.5" y="533" width="1.5" height="15.0" fill="rgb(0,195,93)" rx="2" ry="2" /> +<text x="385.46" y="543.5" ></text> +</g> +<g > +<title>asm_sysvec_reschedule_ipi (10,101,010 samples, 0.04%)</title><rect x="1376.7" y="757" width="0.6" height="15.0" fill="rgb(0,223,184)" rx="2" ry="2" /> +<text x="1379.74" y="767.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="531.0" y="597" width="0.5" height="15.0" fill="rgb(0,190,80)" rx="2" ry="2" /> +<text x="534.01" y="607.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.04%)</title><rect x="93.8" y="501" width="0.6" height="15.0" fill="rgb(0,196,74)" rx="2" ry="2" /> +<text x="96.83" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="189.9" y="613" width="0.5" height="15.0" fill="rgb(0,201,16)" rx="2" ry="2" /> +<text x="192.86" y="623.5" ></text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="581" width="0.5" height="15.0" fill="rgb(0,202,109)" rx="2" ry="2" /> +<text x="1342.60" y="591.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.04%)</title><rect x="175.0" y="629" width="0.5" height="15.0" fill="rgb(0,233,129)" rx="2" ry="2" /> +<text x="178.01" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.38%)</title><rect x="18.5" y="965" width="5.3" height="15.0" fill="rgb(0,204,13)" rx="2" ry="2" /> +<text x="21.49" y="975.5" ></text> +</g> +<g > +<title>blk_mq_get_tag (10,101,010 samples, 0.04%)</title><rect x="450.4" y="389" width="0.5" height="15.0" fill="rgb(0,195,132)" rx="2" ry="2" /> +<text x="453.37" y="399.5" ></text> +</g> +<g > +<title>git_reference_foreach_name (80,808,080 samples, 0.31%)</title><rect x="485.9" y="789" width="4.3" height="15.0" fill="rgb(0,223,95)" rx="2" ry="2" /> +<text x="488.92" y="799.5" ></text> +</g> +<g > +<title>vfs_read (20,202,020 samples, 0.08%)</title><rect x="347.4" y="549" width="1.1" height="15.0" fill="rgb(0,239,49)" rx="2" ry="2" /> +<text x="350.44" y="559.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="453.0" y="453" width="0.6" height="15.0" fill="rgb(0,192,57)" rx="2" ry="2" /> +<text x="456.02" y="463.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.04%)</title><rect x="307.1" y="453" width="0.5" height="15.0" fill="rgb(0,225,5)" rx="2" ry="2" /> +<text x="310.12" y="463.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="157.0" y="533" width="0.5" height="15.0" fill="rgb(0,190,60)" rx="2" ry="2" /> +<text x="159.97" y="543.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.04%)</title><rect x="374.5" y="565" width="0.5" height="15.0" fill="rgb(0,238,178)" rx="2" ry="2" /> +<text x="377.50" y="575.5" ></text> +</g> +<g > +<title>__getblk_gfp (20,202,020 samples, 0.08%)</title><rect x="120.9" y="501" width="1.0" height="15.0" fill="rgb(0,205,168)" rx="2" ry="2" /> +<text x="123.89" y="511.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="293" width="1.6" height="15.0" fill="rgb(0,208,196)" rx="2" ry="2" /> +<text x="1370.19" y="303.5" ></text> +</g> +<g > +<title>llist_add_batch (10,101,010 samples, 0.04%)</title><rect x="201.0" y="357" width="0.5" height="15.0" fill="rgb(0,205,100)" rx="2" ry="2" /> +<text x="204.00" y="367.5" ></text> +</g> +<g > +<title>do_writepages (30,303,030 samples, 0.12%)</title><rect x="342.7" y="533" width="1.6" height="15.0" fill="rgb(0,209,28)" rx="2" ry="2" /> +<text x="345.66" y="543.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="377.7" y="485" width="0.5" height="15.0" fill="rgb(0,219,23)" rx="2" ry="2" /> +<text x="380.68" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="188.3" y="645" width="0.5" height="15.0" fill="rgb(0,230,75)" rx="2" ry="2" /> +<text x="191.27" y="655.5" ></text> +</g> +<g > +<title>_IO_file_write (20,202,020 samples, 0.08%)</title><rect x="23.8" y="837" width="1.1" height="15.0" fill="rgb(0,238,65)" rx="2" ry="2" /> +<text x="26.79" y="847.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.04%)</title><rect x="272.6" y="565" width="0.6" height="15.0" fill="rgb(0,196,180)" rx="2" ry="2" /> +<text x="275.63" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.12%)</title><rect x="150.1" y="677" width="1.6" height="15.0" fill="rgb(0,203,140)" rx="2" ry="2" /> +<text x="153.07" y="687.5" ></text> +</g> +<g > +<title>nfnetlink_has_listeners (10,101,010 samples, 0.04%)</title><rect x="41.8" y="357" width="0.6" height="15.0" fill="rgb(0,235,195)" rx="2" ry="2" /> +<text x="44.83" y="367.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.04%)</title><rect x="279.0" y="709" width="0.5" height="15.0" fill="rgb(0,222,38)" rx="2" ry="2" /> +<text x="282.00" y="719.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (50,505,050 samples, 0.19%)</title><rect x="428.1" y="693" width="2.6" height="15.0" fill="rgb(0,225,30)" rx="2" ry="2" /> +<text x="431.09" y="703.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="228.6" y="517" width="0.5" height="15.0" fill="rgb(0,214,21)" rx="2" ry="2" /> +<text x="231.59" y="527.5" ></text> +</g> +<g > +<title>client_create (40,404,040 samples, 0.15%)</title><rect x="44.0" y="837" width="2.1" height="15.0" fill="rgb(0,195,28)" rx="2" ry="2" /> +<text x="46.96" y="847.5" ></text> +</g> +<g > +<title>jbd2_journal_try_to_free_buffers (10,101,010 samples, 0.04%)</title><rect x="187.2" y="437" width="0.5" height="15.0" fill="rgb(0,236,174)" rx="2" ry="2" /> +<text x="190.21" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="88.5" y="581" width="0.6" height="15.0" fill="rgb(0,227,114)" rx="2" ry="2" /> +<text x="91.52" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="221.7" y="693" width="0.5" height="15.0" fill="rgb(0,232,86)" rx="2" ry="2" /> +<text x="224.70" y="703.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.04%)</title><rect x="20.6" y="805" width="0.5" height="15.0" fill="rgb(0,227,51)" rx="2" ry="2" /> +<text x="23.61" y="815.5" ></text> +</g> +<g > +<title>dput (40,404,040 samples, 0.15%)</title><rect x="433.9" y="597" width="2.1" height="15.0" fill="rgb(0,223,150)" rx="2" ry="2" /> +<text x="436.92" y="607.5" ></text> +</g> +<g > +<title>__netif_receive_skb (30,303,030 samples, 0.12%)</title><rect x="1365.1" y="389" width="1.6" height="15.0" fill="rgb(0,215,11)" rx="2" ry="2" /> +<text x="1368.06" y="399.5" ></text> +</g> +<g > +<title>truncate_cleanup_page (10,101,010 samples, 0.04%)</title><rect x="105.0" y="501" width="0.5" height="15.0" fill="rgb(0,205,115)" rx="2" ry="2" /> +<text x="107.97" y="511.5" ></text> +</g> +<g > +<title>__ext4_new_inode (20,202,020 samples, 0.08%)</title><rect x="455.7" y="645" width="1.0" height="15.0" fill="rgb(0,207,121)" rx="2" ry="2" /> +<text x="458.67" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.15%)</title><rect x="408.5" y="709" width="2.1" height="15.0" fill="rgb(0,239,184)" rx="2" ry="2" /> +<text x="411.45" y="719.5" ></text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.04%)</title><rect x="180.8" y="709" width="0.6" height="15.0" fill="rgb(0,214,48)" rx="2" ry="2" /> +<text x="183.84" y="719.5" ></text> +</g> +<g > +<title>tcp_fin (20,202,020 samples, 0.08%)</title><rect x="39.7" y="133" width="1.1" height="15.0" fill="rgb(0,190,13)" rx="2" ry="2" /> +<text x="42.71" y="143.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.12%)</title><rect x="1365.1" y="309" width="1.6" height="15.0" fill="rgb(0,201,131)" rx="2" ry="2" /> +<text x="1368.06" y="319.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 0.42%)</title><rect x="248.2" y="693" width="5.9" height="15.0" fill="rgb(0,239,138)" rx="2" ry="2" /> +<text x="251.22" y="703.5" ></text> +</g> +<g > +<title>link (20,202,020 samples, 0.08%)</title><rect x="396.3" y="677" width="1.0" height="15.0" fill="rgb(0,190,61)" rx="2" ry="2" /> +<text x="399.25" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="238.7" y="677" width="0.5" height="15.0" fill="rgb(0,193,138)" rx="2" ry="2" /> +<text x="241.67" y="687.5" ></text> +</g> +<g > +<title>readdir64 (131,313,130 samples, 0.50%)</title><rect x="247.2" y="725" width="6.9" height="15.0" fill="rgb(0,238,106)" rx="2" ry="2" /> +<text x="250.16" y="735.5" ></text> +</g> +<g > +<title>strncpy_from_user (20,202,020 samples, 0.08%)</title><rect x="416.9" y="645" width="1.1" height="15.0" fill="rgb(0,209,49)" rx="2" ry="2" /> +<text x="419.94" y="655.5" ></text> +</g> +<g > +<title>tcp_data_queue (20,202,020 samples, 0.08%)</title><rect x="1365.6" y="245" width="1.1" height="15.0" fill="rgb(0,238,66)" rx="2" ry="2" /> +<text x="1368.59" y="255.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (20,202,020 samples, 0.08%)</title><rect x="153.8" y="613" width="1.0" height="15.0" fill="rgb(0,192,170)" rx="2" ry="2" /> +<text x="156.78" y="623.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="281.1" y="485" width="0.5" height="15.0" fill="rgb(0,211,110)" rx="2" ry="2" /> +<text x="284.12" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (242,424,240 samples, 0.92%)</title><rect x="279.5" y="741" width="12.8" height="15.0" fill="rgb(0,218,155)" rx="2" ry="2" /> +<text x="282.53" y="751.5" ></text> +</g> +<g > +<title>inet_release (20,202,020 samples, 0.08%)</title><rect x="1384.7" y="677" width="1.1" height="15.0" fill="rgb(0,220,146)" rx="2" ry="2" /> +<text x="1387.69" y="687.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="366.0" y="597" width="0.5" height="15.0" fill="rgb(0,204,9)" rx="2" ry="2" /> +<text x="369.01" y="607.5" ></text> +</g> +<g > +<title>__vfs_getxattr (10,101,010 samples, 0.04%)</title><rect x="392.0" y="437" width="0.5" height="15.0" fill="rgb(0,238,170)" rx="2" ry="2" /> +<text x="395.01" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="480.6" y="645" width="0.5" height="15.0" fill="rgb(0,229,118)" rx="2" ry="2" /> +<text x="483.61" y="655.5" ></text> +</g> +<g > +<title>__rb_insert_augmented (20,202,020 samples, 0.08%)</title><rect x="526.2" y="645" width="1.1" height="15.0" fill="rgb(0,235,53)" rx="2" ry="2" /> +<text x="529.24" y="655.5" ></text> +</g> +<g > +<title>open_last_lookups (40,404,040 samples, 0.15%)</title><rect x="408.5" y="629" width="2.1" height="15.0" fill="rgb(0,190,109)" rx="2" ry="2" /> +<text x="411.45" y="639.5" ></text> +</g> +<g > +<title>alloc_vmap_area (10,101,010 samples, 0.04%)</title><rect x="20.1" y="805" width="0.5" height="15.0" fill="rgb(0,228,43)" rx="2" ry="2" /> +<text x="23.08" y="815.5" ></text> +</g> +<g > +<title>ext4_end_bio (10,101,010 samples, 0.04%)</title><rect x="887.6" y="613" width="0.5" height="15.0" fill="rgb(0,219,152)" rx="2" ry="2" /> +<text x="890.55" y="623.5" ></text> +</g> +<g > +<title>ext4_invalidatepage (10,101,010 samples, 0.04%)</title><rect x="187.2" y="501" width="0.5" height="15.0" fill="rgb(0,193,184)" rx="2" ry="2" /> +<text x="190.21" y="511.5" ></text> +</g> +<g > +<title>apparmor_path_unlink (10,101,010 samples, 0.04%)</title><rect x="397.3" y="597" width="0.5" height="15.0" fill="rgb(0,217,19)" rx="2" ry="2" /> +<text x="400.31" y="607.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="414.3" y="533" width="0.5" height="15.0" fill="rgb(0,219,195)" rx="2" ry="2" /> +<text x="417.29" y="543.5" ></text> +</g> +<g > +<title>nf_conntrack_in (10,101,010 samples, 0.04%)</title><rect x="1364.0" y="501" width="0.5" height="15.0" fill="rgb(0,229,93)" rx="2" ry="2" /> +<text x="1367.00" y="511.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.08%)</title><rect x="287.0" y="437" width="1.0" height="15.0" fill="rgb(0,223,111)" rx="2" ry="2" /> +<text x="289.96" y="447.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="286.4" y="629" width="0.6" height="15.0" fill="rgb(0,204,149)" rx="2" ry="2" /> +<text x="289.42" y="639.5" ></text> +</g> +<g > +<title>blk_mq_sched_insert_requests (10,101,010 samples, 0.04%)</title><rect x="187.7" y="485" width="0.6" height="15.0" fill="rgb(0,238,91)" rx="2" ry="2" /> +<text x="190.74" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (1,232,323,220 samples, 4.69%)</title><rect x="403.7" y="773" width="64.7" height="15.0" fill="rgb(0,218,192)" rx="2" ry="2" /> +<text x="406.68" y="783.5" >[libgit..</text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="517" width="0.5" height="15.0" fill="rgb(0,202,89)" rx="2" ry="2" /> +<text x="1342.07" y="527.5" ></text> +</g> +<g > +<title>ext4_rmdir (80,808,080 samples, 0.31%)</title><rect x="126.7" y="581" width="4.3" height="15.0" fill="rgb(0,204,197)" rx="2" ry="2" /> +<text x="129.72" y="591.5" ></text> +</g> +<g > +<title>do_renameat2 (111,111,110 samples, 0.42%)</title><rect x="369.7" y="661" width="5.9" height="15.0" fill="rgb(0,195,172)" rx="2" ry="2" /> +<text x="372.72" y="671.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.08%)</title><rect x="394.7" y="581" width="1.0" height="15.0" fill="rgb(0,221,112)" rx="2" ry="2" /> +<text x="397.66" y="591.5" ></text> +</g> +<g > +<title>git_refdb_backend_fs (30,303,030 samples, 0.12%)</title><rect x="356.5" y="677" width="1.6" height="15.0" fill="rgb(0,211,38)" rx="2" ry="2" /> +<text x="359.46" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="194.6" y="629" width="1.1" height="15.0" fill="rgb(0,213,8)" rx="2" ry="2" /> +<text x="197.64" y="639.5" ></text> +</g> +<g > +<title>ip_finish_output (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="485" width="0.5" height="15.0" fill="rgb(0,237,123)" rx="2" ry="2" /> +<text x="1342.07" y="495.5" ></text> +</g> +<g > +<title>git_reference_create (444,444,440 samples, 1.69%)</title><rect x="380.3" y="757" width="23.4" height="15.0" fill="rgb(0,221,116)" rx="2" ry="2" /> +<text x="383.33" y="767.5" >g..</text> +</g> +<g > +<title>jsonrpc_request_send (60,606,060 samples, 0.23%)</title><rect x="1379.4" y="885" width="3.2" height="15.0" fill="rgb(0,218,56)" rx="2" ry="2" /> +<text x="1382.39" y="895.5" ></text> +</g> +<g > +<title>__x64_sys_read (20,202,020 samples, 0.08%)</title><rect x="347.4" y="581" width="1.1" height="15.0" fill="rgb(0,215,190)" rx="2" ry="2" /> +<text x="350.44" y="591.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="282.2" y="597" width="0.5" height="15.0" fill="rgb(0,225,82)" rx="2" ry="2" /> +<text x="285.18" y="607.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.04%)</title><rect x="1379.9" y="549" width="0.5" height="15.0" fill="rgb(0,210,127)" rx="2" ry="2" /> +<text x="1382.92" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="471.6" y="757" width="1.6" height="15.0" fill="rgb(0,230,117)" rx="2" ry="2" /> +<text x="474.59" y="767.5" ></text> +</g> +<g > +<title>__connect (70,707,070 samples, 0.27%)</title><rect x="1368.8" y="869" width="3.7" height="15.0" fill="rgb(0,193,125)" rx="2" ry="2" /> +<text x="1371.78" y="879.5" ></text> +</g> +<g > +<title>apparmor_file_permission (10,101,010 samples, 0.04%)</title><rect x="589.4" y="693" width="0.5" height="15.0" fill="rgb(0,201,174)" rx="2" ry="2" /> +<text x="592.38" y="703.5" ></text> +</g> +<g > +<title>__napi_poll (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="437" width="0.5" height="15.0" fill="rgb(0,225,140)" rx="2" ry="2" /> +<text x="1342.60" y="447.5" ></text> +</g> +<g > +<title>handle_pte_fault (10,101,010 samples, 0.04%)</title><rect x="181.4" y="725" width="0.5" height="15.0" fill="rgb(0,212,97)" rx="2" ry="2" /> +<text x="184.37" y="735.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="412.2" y="597" width="0.5" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="415.17" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="499.7" y="629" width="0.5" height="15.0" fill="rgb(0,236,159)" rx="2" ry="2" /> +<text x="502.71" y="639.5" ></text> +</g> +<g > +<title>git_config_add_backend (30,303,030 samples, 0.12%)</title><rect x="312.4" y="677" width="1.6" height="15.0" fill="rgb(0,193,57)" rx="2" ry="2" /> +<text x="315.42" y="687.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.04%)</title><rect x="378.2" y="549" width="0.5" height="15.0" fill="rgb(0,201,89)" rx="2" ry="2" /> +<text x="381.21" y="559.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="469" width="1.6" height="15.0" fill="rgb(0,210,121)" rx="2" ry="2" /> +<text x="1371.78" y="479.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (10,101,010 samples, 0.04%)</title><rect x="343.7" y="437" width="0.6" height="15.0" fill="rgb(0,229,194)" rx="2" ry="2" /> +<text x="346.73" y="447.5" ></text> +</g> +<g > +<title>getdents64 (40,404,040 samples, 0.15%)</title><rect x="93.3" y="661" width="2.1" height="15.0" fill="rgb(0,196,64)" rx="2" ry="2" /> +<text x="96.30" y="671.5" ></text> +</g> +<g > +<title>file_close (40,404,040 samples, 0.15%)</title><rect x="1383.6" y="869" width="2.2" height="15.0" fill="rgb(0,197,27)" rx="2" ry="2" /> +<text x="1386.63" y="879.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="1299.3" y="757" width="0.5" height="15.0" fill="rgb(0,223,80)" rx="2" ry="2" /> +<text x="1302.27" y="767.5" ></text> +</g> +<g > +<title>irqentry_exit (10,101,010 samples, 0.04%)</title><rect x="899.2" y="805" width="0.6" height="15.0" fill="rgb(0,227,61)" rx="2" ry="2" /> +<text x="902.23" y="815.5" ></text> +</g> +<g > +<title>lockless_pages_from_mm (10,101,010 samples, 0.04%)</title><rect x="30.7" y="661" width="0.5" height="15.0" fill="rgb(0,212,98)" rx="2" ry="2" /> +<text x="33.69" y="671.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.04%)</title><rect x="479.0" y="533" width="0.6" height="15.0" fill="rgb(0,220,186)" rx="2" ry="2" /> +<text x="482.02" y="543.5" ></text> +</g> +<g > +<title>do_user_addr_fault (20,202,020 samples, 0.08%)</title><rect x="596.3" y="725" width="1.0" height="15.0" fill="rgb(0,236,98)" rx="2" ry="2" /> +<text x="599.27" y="735.5" ></text> +</g> +<g > +<title>__ext4_find_entry (20,202,020 samples, 0.08%)</title><rect x="80.0" y="757" width="1.1" height="15.0" fill="rgb(0,223,185)" rx="2" ry="2" /> +<text x="83.03" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="163.9" y="741" width="0.5" height="15.0" fill="rgb(0,228,28)" rx="2" ry="2" /> +<text x="166.86" y="751.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (40,404,040 samples, 0.15%)</title><rect x="463.6" y="533" width="2.2" height="15.0" fill="rgb(0,233,155)" rx="2" ry="2" /> +<text x="466.63" y="543.5" ></text> +</g> +<g > +<title>do_anonymous_page (272,727,270 samples, 1.04%)</title><rect x="1321.6" y="645" width="14.3" height="15.0" fill="rgb(0,219,18)" rx="2" ry="2" /> +<text x="1324.56" y="655.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="131.0" y="533" width="0.5" height="15.0" fill="rgb(0,222,99)" rx="2" ry="2" /> +<text x="133.97" y="543.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (20,202,020 samples, 0.08%)</title><rect x="887.0" y="805" width="1.1" height="15.0" fill="rgb(0,210,101)" rx="2" ry="2" /> +<text x="890.02" y="815.5" ></text> +</g> +<g > +<title>handle_mm_fault (292,929,290 samples, 1.11%)</title><rect x="1320.5" y="693" width="15.4" height="15.0" fill="rgb(0,202,151)" rx="2" ry="2" /> +<text x="1323.50" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="472.1" y="709" width="0.6" height="15.0" fill="rgb(0,226,66)" rx="2" ry="2" /> +<text x="475.12" y="719.5" ></text> +</g> +<g > +<title>ext4_writepages (10,101,010 samples, 0.04%)</title><rect x="334.2" y="517" width="0.5" height="15.0" fill="rgb(0,222,116)" rx="2" ry="2" /> +<text x="337.18" y="527.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="596.8" y="581" width="0.5" height="15.0" fill="rgb(0,216,98)" rx="2" ry="2" /> +<text x="599.81" y="591.5" ></text> +</g> +<g > +<title>mempool_alloc_slab (10,101,010 samples, 0.04%)</title><rect x="452.5" y="373" width="0.5" height="15.0" fill="rgb(0,197,162)" rx="2" ry="2" /> +<text x="455.49" y="383.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="499.2" y="629" width="0.5" height="15.0" fill="rgb(0,204,152)" rx="2" ry="2" /> +<text x="502.18" y="639.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (50,505,050 samples, 0.19%)</title><rect x="38.7" y="197" width="2.6" height="15.0" fill="rgb(0,222,67)" rx="2" ry="2" /> +<text x="41.65" y="207.5" ></text> +</g> +<g > +<title>jbd2_journal_get_create_access (10,101,010 samples, 0.04%)</title><rect x="56.2" y="725" width="0.5" height="15.0" fill="rgb(0,202,72)" rx="2" ry="2" /> +<text x="59.16" y="735.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="377.7" y="533" width="0.5" height="15.0" fill="rgb(0,226,63)" rx="2" ry="2" /> +<text x="380.68" y="543.5" ></text> +</g> +<g > +<title>__libc_start_main (585,858,580 samples, 2.23%)</title><rect x="23.8" y="965" width="30.8" height="15.0" fill="rgb(0,231,83)" rx="2" ry="2" /> +<text x="26.79" y="975.5" >__..</text> +</g> +<g > +<title>finished_request_create (6,262,626,200 samples, 23.84%)</title><rect x="604.2" y="885" width="329.0" height="15.0" fill="rgb(0,235,182)" rx="2" ry="2" /> +<text x="607.23" y="895.5" >finished_request_create</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="194.1" y="661" width="1.6" height="15.0" fill="rgb(0,197,90)" rx="2" ry="2" /> +<text x="197.11" y="671.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="298.1" y="501" width="0.5" height="15.0" fill="rgb(0,212,147)" rx="2" ry="2" /> +<text x="301.10" y="511.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.04%)</title><rect x="76.3" y="853" width="0.6" height="15.0" fill="rgb(0,224,154)" rx="2" ry="2" /> +<text x="79.32" y="863.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.04%)</title><rect x="300.2" y="549" width="0.5" height="15.0" fill="rgb(0,195,40)" rx="2" ry="2" /> +<text x="303.22" y="559.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.04%)</title><rect x="339.0" y="485" width="0.5" height="15.0" fill="rgb(0,195,149)" rx="2" ry="2" /> +<text x="341.95" y="495.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="485.9" y="741" width="0.5" height="15.0" fill="rgb(0,226,206)" rx="2" ry="2" /> +<text x="488.92" y="751.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="453.0" y="501" width="0.6" height="15.0" fill="rgb(0,194,36)" rx="2" ry="2" /> +<text x="456.02" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_rename (20,202,020 samples, 0.08%)</title><rect x="187.2" y="693" width="1.1" height="15.0" fill="rgb(0,198,21)" rx="2" ry="2" /> +<text x="190.21" y="703.5" ></text> +</g> +<g > +<title>security_file_permission (10,101,010 samples, 0.04%)</title><rect x="53.0" y="677" width="0.5" height="15.0" fill="rgb(0,238,177)" rx="2" ry="2" /> +<text x="55.98" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="353.3" y="597" width="0.5" height="15.0" fill="rgb(0,233,113)" rx="2" ry="2" /> +<text x="356.28" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (242,424,240 samples, 0.92%)</title><rect x="454.1" y="709" width="12.7" height="15.0" fill="rgb(0,233,60)" rx="2" ry="2" /> +<text x="457.08" y="719.5" ></text> +</g> +<g > +<title>__alloc_file (20,202,020 samples, 0.08%)</title><rect x="99.1" y="581" width="1.1" height="15.0" fill="rgb(0,229,36)" rx="2" ry="2" /> +<text x="102.13" y="591.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="107.6" y="485" width="0.6" height="15.0" fill="rgb(0,203,21)" rx="2" ry="2" /> +<text x="110.62" y="495.5" ></text> +</g> +<g > +<title>mktime (10,101,010 samples, 0.04%)</title><rect x="291.7" y="709" width="0.6" height="15.0" fill="rgb(0,230,157)" rx="2" ry="2" /> +<text x="294.73" y="719.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="298.6" y="549" width="0.6" height="15.0" fill="rgb(0,197,87)" rx="2" ry="2" /> +<text x="301.63" y="559.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="300.2" y="581" width="0.5" height="15.0" fill="rgb(0,224,81)" rx="2" ry="2" /> +<text x="303.22" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="379.3" y="661" width="1.0" height="15.0" fill="rgb(0,192,139)" rx="2" ry="2" /> +<text x="382.27" y="671.5" ></text> +</g> +<g > +<title>str2hashbuf_signed (10,101,010 samples, 0.04%)</title><rect x="251.9" y="533" width="0.6" height="15.0" fill="rgb(0,205,110)" rx="2" ry="2" /> +<text x="254.94" y="543.5" ></text> +</g> +<g > +<title>dput (50,505,050 samples, 0.19%)</title><rect x="340.0" y="629" width="2.7" height="15.0" fill="rgb(0,229,191)" rx="2" ry="2" /> +<text x="343.01" y="639.5" ></text> +</g> +<g > +<title>ext4_readdir (10,101,010 samples, 0.04%)</title><rect x="277.4" y="661" width="0.5" height="15.0" fill="rgb(0,216,106)" rx="2" ry="2" /> +<text x="280.40" y="671.5" ></text> +</g> +<g > +<title>ext4_lookup (20,202,020 samples, 0.08%)</title><rect x="506.1" y="693" width="1.0" height="15.0" fill="rgb(0,220,87)" rx="2" ry="2" /> +<text x="509.08" y="703.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="221.7" y="357" width="0.5" height="15.0" fill="rgb(0,229,26)" rx="2" ry="2" /> +<text x="224.70" y="367.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.08%)</title><rect x="489.1" y="581" width="1.1" height="15.0" fill="rgb(0,229,35)" rx="2" ry="2" /> +<text x="492.10" y="591.5" ></text> +</g> +<g > +<title>jbd2_journal_put_journal_head (10,101,010 samples, 0.04%)</title><rect x="56.2" y="709" width="0.5" height="15.0" fill="rgb(0,203,1)" rx="2" ry="2" /> +<text x="59.16" y="719.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="39.7" y="101" width="0.5" height="15.0" fill="rgb(0,217,87)" rx="2" ry="2" /> +<text x="42.71" y="111.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="220.1" y="581" width="0.5" height="15.0" fill="rgb(0,208,56)" rx="2" ry="2" /> +<text x="223.10" y="591.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.04%)</title><rect x="284.3" y="581" width="0.5" height="15.0" fill="rgb(0,222,100)" rx="2" ry="2" /> +<text x="287.30" y="591.5" ></text> +</g> +<g > +<title>sockfd_lookup_light (10,101,010 samples, 0.04%)</title><rect x="1382.0" y="741" width="0.6" height="15.0" fill="rgb(0,191,171)" rx="2" ry="2" /> +<text x="1385.04" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.04%)</title><rect x="352.7" y="565" width="0.6" height="15.0" fill="rgb(0,194,206)" rx="2" ry="2" /> +<text x="355.75" y="575.5" ></text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.04%)</title><rect x="170.8" y="677" width="0.5" height="15.0" fill="rgb(0,213,151)" rx="2" ry="2" /> +<text x="173.76" y="687.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="438.2" y="693" width="0.5" height="15.0" fill="rgb(0,209,59)" rx="2" ry="2" /> +<text x="441.17" y="703.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (20,202,020 samples, 0.08%)</title><rect x="106.0" y="469" width="1.1" height="15.0" fill="rgb(0,219,182)" rx="2" ry="2" /> +<text x="109.03" y="479.5" ></text> +</g> +<g > +<title>__block_commit_write.constprop.0.isra.0 (10,101,010 samples, 0.04%)</title><rect x="285.4" y="469" width="0.5" height="15.0" fill="rgb(0,225,208)" rx="2" ry="2" /> +<text x="288.36" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="284.8" y="645" width="0.6" height="15.0" fill="rgb(0,201,88)" rx="2" ry="2" /> +<text x="287.83" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 0.46%)</title><rect x="447.2" y="677" width="6.4" height="15.0" fill="rgb(0,194,201)" rx="2" ry="2" /> +<text x="450.19" y="687.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (20,202,020 samples, 0.08%)</title><rect x="12.1" y="357" width="1.1" height="15.0" fill="rgb(0,237,182)" rx="2" ry="2" /> +<text x="15.12" y="367.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.04%)</title><rect x="440.3" y="421" width="0.5" height="15.0" fill="rgb(0,207,57)" rx="2" ry="2" /> +<text x="443.29" y="431.5" ></text> +</g> +<g > +<title>__destroy_inode (10,101,010 samples, 0.04%)</title><rect x="1384.2" y="597" width="0.5" height="15.0" fill="rgb(0,238,67)" rx="2" ry="2" /> +<text x="1387.16" y="607.5" ></text> +</g> +<g > +<title>git_reference_symbolic_create (121,212,120 samples, 0.46%)</title><rect x="316.1" y="789" width="6.4" height="15.0" fill="rgb(0,204,78)" rx="2" ry="2" /> +<text x="319.14" y="799.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.04%)</title><rect x="467.3" y="661" width="0.6" height="15.0" fill="rgb(0,195,3)" rx="2" ry="2" /> +<text x="470.35" y="671.5" ></text> +</g> +<g > +<title>mem_cgroup_from_task (10,101,010 samples, 0.04%)</title><rect x="1335.9" y="693" width="0.5" height="15.0" fill="rgb(0,213,100)" rx="2" ry="2" /> +<text x="1338.88" y="703.5" ></text> +</g> +<g > +<title>json_object_put (10,101,010 samples, 0.04%)</title><rect x="10.0" y="869" width="0.5" height="15.0" fill="rgb(0,235,33)" rx="2" ry="2" /> +<text x="13.00" y="879.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="57.8" y="629" width="0.5" height="15.0" fill="rgb(0,221,51)" rx="2" ry="2" /> +<text x="60.75" y="639.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="436.0" y="197" width="0.6" height="15.0" fill="rgb(0,208,26)" rx="2" ry="2" /> +<text x="439.04" y="207.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="297.6" y="549" width="0.5" height="15.0" fill="rgb(0,199,49)" rx="2" ry="2" /> +<text x="300.57" y="559.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.04%)</title><rect x="888.1" y="709" width="0.5" height="15.0" fill="rgb(0,237,74)" rx="2" ry="2" /> +<text x="891.09" y="719.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="494.9" y="613" width="0.6" height="15.0" fill="rgb(0,214,33)" rx="2" ry="2" /> +<text x="497.94" y="623.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.08%)</title><rect x="457.3" y="581" width="1.0" height="15.0" fill="rgb(0,235,100)" rx="2" ry="2" /> +<text x="460.27" y="591.5" ></text> +</g> +<g > +<title>copy_page (10,101,010 samples, 0.04%)</title><rect x="534.2" y="677" width="0.5" height="15.0" fill="rgb(0,194,57)" rx="2" ry="2" /> +<text x="537.20" y="687.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.04%)</title><rect x="365.5" y="549" width="0.5" height="15.0" fill="rgb(0,204,197)" rx="2" ry="2" /> +<text x="368.48" y="559.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="285.9" y="405" width="0.5" height="15.0" fill="rgb(0,224,14)" rx="2" ry="2" /> +<text x="288.89" y="415.5" ></text> +</g> +<g > +<title>alloc_pages_vma (20,202,020 samples, 0.08%)</title><rect x="895.5" y="725" width="1.1" height="15.0" fill="rgb(0,236,18)" rx="2" ry="2" /> +<text x="898.51" y="735.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="86.9" y="597" width="0.6" height="15.0" fill="rgb(0,222,201)" rx="2" ry="2" /> +<text x="89.93" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="353.8" y="597" width="1.1" height="15.0" fill="rgb(0,238,103)" rx="2" ry="2" /> +<text x="356.81" y="607.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="392.5" y="437" width="0.6" height="15.0" fill="rgb(0,230,119)" rx="2" ry="2" /> +<text x="395.54" y="447.5" ></text> +</g> +<g > +<title>[libc.so.6] (50,505,050 samples, 0.19%)</title><rect x="50.9" y="837" width="2.6" height="15.0" fill="rgb(0,211,91)" rx="2" ry="2" /> +<text x="53.85" y="847.5" ></text> +</g> +<g > +<title>ip_finish_output2 (20,202,020 samples, 0.08%)</title><rect x="1380.4" y="501" width="1.1" height="15.0" fill="rgb(0,231,161)" rx="2" ry="2" /> +<text x="1383.45" y="511.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="437.6" y="517" width="0.6" height="15.0" fill="rgb(0,218,124)" rx="2" ry="2" /> +<text x="440.64" y="527.5" ></text> +</g> +<g > +<title>__es_remove_extent (10,101,010 samples, 0.04%)</title><rect x="135.7" y="485" width="0.6" height="15.0" fill="rgb(0,191,29)" rx="2" ry="2" /> +<text x="138.74" y="495.5" ></text> +</g> +<g > +<title>vfs_rmdir (60,606,060 samples, 0.23%)</title><rect x="95.4" y="565" width="3.2" height="15.0" fill="rgb(0,206,191)" rx="2" ry="2" /> +<text x="98.42" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.04%)</title><rect x="481.1" y="629" width="0.6" height="15.0" fill="rgb(0,237,173)" rx="2" ry="2" /> +<text x="484.14" y="639.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="281.1" y="565" width="0.5" height="15.0" fill="rgb(0,230,109)" rx="2" ry="2" /> +<text x="284.12" y="575.5" ></text> +</g> +<g > +<title>event_loop_add_once (10,101,010 samples, 0.04%)</title><rect x="44.5" y="821" width="0.5" height="15.0" fill="rgb(0,199,57)" rx="2" ry="2" /> +<text x="47.49" y="831.5" ></text> +</g> +<g > +<title>file_update_time (10,101,010 samples, 0.04%)</title><rect x="509.3" y="661" width="0.5" height="15.0" fill="rgb(0,237,198)" rx="2" ry="2" /> +<text x="512.26" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="110.8" y="693" width="1.6" height="15.0" fill="rgb(0,224,34)" rx="2" ry="2" /> +<text x="113.81" y="703.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (10,101,010 samples, 0.04%)</title><rect x="390.4" y="405" width="0.5" height="15.0" fill="rgb(0,194,107)" rx="2" ry="2" /> +<text x="393.42" y="415.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.04%)</title><rect x="300.2" y="661" width="0.5" height="15.0" fill="rgb(0,233,104)" rx="2" ry="2" /> +<text x="303.22" y="671.5" ></text> +</g> +<g > +<title>malloc (20,202,020 samples, 0.08%)</title><rect x="533.7" y="805" width="1.0" height="15.0" fill="rgb(0,221,110)" rx="2" ry="2" /> +<text x="536.67" y="815.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (20,202,020 samples, 0.08%)</title><rect x="273.7" y="373" width="1.1" height="15.0" fill="rgb(0,235,144)" rx="2" ry="2" /> +<text x="276.69" y="383.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.04%)</title><rect x="281.6" y="437" width="0.6" height="15.0" fill="rgb(0,215,197)" rx="2" ry="2" /> +<text x="284.65" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="504.5" y="677" width="0.5" height="15.0" fill="rgb(0,232,170)" rx="2" ry="2" /> +<text x="507.49" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="201.0" y="693" width="0.5" height="15.0" fill="rgb(0,205,23)" rx="2" ry="2" /> +<text x="204.00" y="703.5" ></text> +</g> +<g > +<title>worker_destroy (10,101,010 samples, 0.04%)</title><rect x="15.8" y="917" width="0.6" height="15.0" fill="rgb(0,199,119)" rx="2" ry="2" /> +<text x="18.84" y="927.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="281.1" y="453" width="0.5" height="15.0" fill="rgb(0,205,149)" rx="2" ry="2" /> +<text x="284.12" y="463.5" ></text> +</g> +<g > +<title>cap_inode_need_killpriv (10,101,010 samples, 0.04%)</title><rect x="413.2" y="453" width="0.6" height="15.0" fill="rgb(0,228,100)" rx="2" ry="2" /> +<text x="416.23" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.38%)</title><rect x="54.6" y="901" width="5.3" height="15.0" fill="rgb(0,221,162)" rx="2" ry="2" /> +<text x="57.57" y="911.5" ></text> +</g> +<g > +<title>__handle_mm_fault (111,111,110 samples, 0.42%)</title><rect x="892.3" y="773" width="5.9" height="15.0" fill="rgb(0,212,165)" rx="2" ry="2" /> +<text x="895.33" y="783.5" ></text> +</g> +<g > +<title>git_attr_cache_flush (20,202,020 samples, 0.08%)</title><rect x="85.3" y="805" width="1.1" height="15.0" fill="rgb(0,205,127)" rx="2" ry="2" /> +<text x="88.34" y="815.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.04%)</title><rect x="180.8" y="773" width="0.6" height="15.0" fill="rgb(0,234,14)" rx="2" ry="2" /> +<text x="183.84" y="783.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (20,202,020 samples, 0.08%)</title><rect x="407.4" y="581" width="1.1" height="15.0" fill="rgb(0,211,168)" rx="2" ry="2" /> +<text x="410.39" y="591.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (404,040,400 samples, 1.54%)</title><rect x="908.8" y="789" width="21.2" height="15.0" fill="rgb(0,190,155)" rx="2" ry="2" /> +<text x="911.78" y="799.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.04%)</title><rect x="299.2" y="421" width="0.5" height="15.0" fill="rgb(0,203,124)" rx="2" ry="2" /> +<text x="302.16" y="431.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="467.3" y="725" width="0.6" height="15.0" fill="rgb(0,223,151)" rx="2" ry="2" /> +<text x="470.35" y="735.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.04%)</title><rect x="280.6" y="485" width="0.5" height="15.0" fill="rgb(0,198,203)" rx="2" ry="2" /> +<text x="283.59" y="495.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="565" width="0.6" height="15.0" fill="rgb(0,199,54)" rx="2" ry="2" /> +<text x="1388.22" y="575.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.04%)</title><rect x="391.5" y="469" width="0.5" height="15.0" fill="rgb(0,219,99)" rx="2" ry="2" /> +<text x="394.48" y="479.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="159.6" y="485" width="0.5" height="15.0" fill="rgb(0,209,111)" rx="2" ry="2" /> +<text x="162.62" y="495.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="233.9" y="453" width="0.5" height="15.0" fill="rgb(0,221,102)" rx="2" ry="2" /> +<text x="236.90" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="399.4" y="581" width="0.6" height="15.0" fill="rgb(0,194,190)" rx="2" ry="2" /> +<text x="402.43" y="591.5" ></text> +</g> +<g > +<title>new_sync_read (10,101,010 samples, 0.04%)</title><rect x="185.6" y="501" width="0.5" height="15.0" fill="rgb(0,235,172)" rx="2" ry="2" /> +<text x="188.62" y="511.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="109.2" y="389" width="0.5" height="15.0" fill="rgb(0,235,5)" rx="2" ry="2" /> +<text x="112.22" y="399.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="601.0" y="789" width="0.6" height="15.0" fill="rgb(0,234,61)" rx="2" ry="2" /> +<text x="604.05" y="799.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="201.0" y="565" width="0.5" height="15.0" fill="rgb(0,205,180)" rx="2" ry="2" /> +<text x="204.00" y="575.5" ></text> +</g> +<g > +<title>vfs_mkdir (202,020,200 samples, 0.77%)</title><rect x="228.1" y="613" width="10.6" height="15.0" fill="rgb(0,223,171)" rx="2" ry="2" /> +<text x="231.06" y="623.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.04%)</title><rect x="185.1" y="629" width="0.5" height="15.0" fill="rgb(0,226,89)" rx="2" ry="2" /> +<text x="188.09" y="639.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="599.5" y="757" width="0.5" height="15.0" fill="rgb(0,222,23)" rx="2" ry="2" /> +<text x="602.46" y="767.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (20,202,020 samples, 0.08%)</title><rect x="57.2" y="693" width="1.1" height="15.0" fill="rgb(0,216,203)" rx="2" ry="2" /> +<text x="60.22" y="703.5" ></text> +</g> +<g > +<title>__schedule (20,202,020 samples, 0.08%)</title><rect x="435.0" y="373" width="1.0" height="15.0" fill="rgb(0,213,29)" rx="2" ry="2" /> +<text x="437.98" y="383.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="432.3" y="661" width="1.1" height="15.0" fill="rgb(0,220,88)" rx="2" ry="2" /> +<text x="435.33" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="144.2" y="725" width="1.1" height="15.0" fill="rgb(0,236,79)" rx="2" ry="2" /> +<text x="147.23" y="735.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (30,303,030 samples, 0.12%)</title><rect x="436.0" y="517" width="1.6" height="15.0" fill="rgb(0,192,75)" rx="2" ry="2" /> +<text x="439.04" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="307.6" y="597" width="1.1" height="15.0" fill="rgb(0,230,89)" rx="2" ry="2" /> +<text x="310.65" y="607.5" ></text> +</g> +<g > +<title>ip_route_output_key_hash_rcu (10,101,010 samples, 0.04%)</title><rect x="1370.4" y="709" width="0.5" height="15.0" fill="rgb(0,208,185)" rx="2" ry="2" /> +<text x="1373.37" y="719.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.04%)</title><rect x="149.0" y="677" width="0.5" height="15.0" fill="rgb(0,228,43)" rx="2" ry="2" /> +<text x="152.01" y="687.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.04%)</title><rect x="285.4" y="581" width="0.5" height="15.0" fill="rgb(0,226,86)" rx="2" ry="2" /> +<text x="288.36" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.15%)</title><rect x="146.9" y="661" width="2.1" height="15.0" fill="rgb(0,208,197)" rx="2" ry="2" /> +<text x="149.89" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="211.6" y="725" width="0.5" height="15.0" fill="rgb(0,208,37)" rx="2" ry="2" /> +<text x="214.61" y="735.5" ></text> +</g> +<g > +<title>nft_do_chain (10,101,010 samples, 0.04%)</title><rect x="47.1" y="469" width="0.6" height="15.0" fill="rgb(0,224,93)" rx="2" ry="2" /> +<text x="50.14" y="479.5" ></text> +</g> +<g > +<title>__ext4_journal_get_create_access (10,101,010 samples, 0.04%)</title><rect x="388.3" y="453" width="0.5" height="15.0" fill="rgb(0,234,118)" rx="2" ry="2" /> +<text x="391.29" y="463.5" ></text> +</g> +<g > +<title>ext4_link (10,101,010 samples, 0.04%)</title><rect x="242.9" y="613" width="0.5" height="15.0" fill="rgb(0,190,27)" rx="2" ry="2" /> +<text x="245.92" y="623.5" ></text> +</g> +<g > +<title>bio_endio (10,101,010 samples, 0.04%)</title><rect x="887.6" y="629" width="0.5" height="15.0" fill="rgb(0,206,195)" rx="2" ry="2" /> +<text x="890.55" y="639.5" ></text> +</g> +<g > +<title>vfs_unlink (50,505,050 samples, 0.19%)</title><rect x="173.9" y="677" width="2.7" height="15.0" fill="rgb(0,228,142)" rx="2" ry="2" /> +<text x="176.94" y="687.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.04%)</title><rect x="266.3" y="613" width="0.5" height="15.0" fill="rgb(0,199,113)" rx="2" ry="2" /> +<text x="269.26" y="623.5" ></text> +</g> +<g > +<title>write (30,303,030 samples, 0.12%)</title><rect x="392.0" y="645" width="1.6" height="15.0" fill="rgb(0,235,74)" rx="2" ry="2" /> +<text x="395.01" y="655.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.04%)</title><rect x="215.9" y="629" width="0.5" height="15.0" fill="rgb(0,192,35)" rx="2" ry="2" /> +<text x="218.86" y="639.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="59.3" y="837" width="0.6" height="15.0" fill="rgb(0,204,0)" rx="2" ry="2" /> +<text x="62.34" y="847.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (40,404,040 samples, 0.15%)</title><rect x="32.3" y="757" width="2.1" height="15.0" fill="rgb(0,219,87)" rx="2" ry="2" /> +<text x="35.28" y="767.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="474.2" y="661" width="0.6" height="15.0" fill="rgb(0,217,84)" rx="2" ry="2" /> +<text x="477.24" y="671.5" ></text> +</g> +<g > +<title>do_renameat2 (20,202,020 samples, 0.08%)</title><rect x="309.2" y="613" width="1.1" height="15.0" fill="rgb(0,235,100)" rx="2" ry="2" /> +<text x="312.24" y="623.5" ></text> +</g> +<g > +<title>alloc_pages_vma (111,111,110 samples, 0.42%)</title><rect x="1328.5" y="629" width="5.8" height="15.0" fill="rgb(0,197,17)" rx="2" ry="2" /> +<text x="1331.45" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="395.7" y="485" width="0.6" height="15.0" fill="rgb(0,197,88)" rx="2" ry="2" /> +<text x="398.72" y="495.5" ></text> +</g> +<g > +<title>ip_local_deliver (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="293" width="0.5" height="15.0" fill="rgb(0,219,0)" rx="2" ry="2" /> +<text x="1342.07" y="303.5" ></text> +</g> +<g > +<title>ext4_unlink (10,101,010 samples, 0.04%)</title><rect x="216.9" y="661" width="0.6" height="15.0" fill="rgb(0,214,157)" rx="2" ry="2" /> +<text x="219.92" y="671.5" ></text> +</g> +<g > +<title>log_entry_start (10,101,010 samples, 0.04%)</title><rect x="181.4" y="837" width="0.5" height="15.0" fill="rgb(0,227,71)" rx="2" ry="2" /> +<text x="184.37" y="847.5" ></text> +</g> +<g > +<title>git_index_conflict_iterator_new (10,101,010 samples, 0.04%)</title><rect x="214.3" y="789" width="0.5" height="15.0" fill="rgb(0,238,182)" rx="2" ry="2" /> +<text x="217.27" y="799.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.04%)</title><rect x="887.6" y="741" width="0.5" height="15.0" fill="rgb(0,234,62)" rx="2" ry="2" /> +<text x="890.55" y="751.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="288.0" y="613" width="0.5" height="15.0" fill="rgb(0,238,71)" rx="2" ry="2" /> +<text x="291.02" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="201.5" y="725" width="1.1" height="15.0" fill="rgb(0,207,52)" rx="2" ry="2" /> +<text x="204.53" y="735.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.04%)</title><rect x="244.0" y="597" width="0.5" height="15.0" fill="rgb(0,233,2)" rx="2" ry="2" /> +<text x="246.98" y="607.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.04%)</title><rect x="1356.0" y="597" width="0.6" height="15.0" fill="rgb(0,239,177)" rx="2" ry="2" /> +<text x="1359.04" y="607.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="898.2" y="789" width="0.5" height="15.0" fill="rgb(0,225,14)" rx="2" ry="2" /> +<text x="901.17" y="799.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.04%)</title><rect x="109.2" y="501" width="0.5" height="15.0" fill="rgb(0,231,107)" rx="2" ry="2" /> +<text x="112.22" y="511.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="291.7" y="501" width="0.6" height="15.0" fill="rgb(0,218,55)" rx="2" ry="2" /> +<text x="294.73" y="511.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="483.8" y="565" width="0.5" height="15.0" fill="rgb(0,193,136)" rx="2" ry="2" /> +<text x="486.79" y="575.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (20,202,020 samples, 0.08%)</title><rect x="449.3" y="357" width="1.1" height="15.0" fill="rgb(0,220,147)" rx="2" ry="2" /> +<text x="452.31" y="367.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (90,909,090 samples, 0.35%)</title><rect x="37.6" y="485" width="4.8" height="15.0" fill="rgb(0,220,92)" rx="2" ry="2" /> +<text x="40.59" y="495.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.08%)</title><rect x="364.9" y="661" width="1.1" height="15.0" fill="rgb(0,233,67)" rx="2" ry="2" /> +<text x="367.95" y="671.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="462.6" y="421" width="0.5" height="15.0" fill="rgb(0,220,124)" rx="2" ry="2" /> +<text x="465.57" y="431.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.04%)</title><rect x="350.6" y="485" width="0.6" height="15.0" fill="rgb(0,238,130)" rx="2" ry="2" /> +<text x="353.62" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="187.2" y="725" width="1.1" height="15.0" fill="rgb(0,206,115)" rx="2" ry="2" /> +<text x="190.21" y="735.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.04%)</title><rect x="143.7" y="565" width="0.5" height="15.0" fill="rgb(0,206,8)" rx="2" ry="2" /> +<text x="146.70" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="181.9" y="821" width="1.6" height="15.0" fill="rgb(0,225,92)" rx="2" ry="2" /> +<text x="184.90" y="831.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.04%)</title><rect x="189.3" y="645" width="0.6" height="15.0" fill="rgb(0,203,145)" rx="2" ry="2" /> +<text x="192.33" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="297.0" y="613" width="2.2" height="15.0" fill="rgb(0,191,66)" rx="2" ry="2" /> +<text x="300.04" y="623.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.04%)</title><rect x="350.1" y="485" width="0.5" height="15.0" fill="rgb(0,201,39)" rx="2" ry="2" /> +<text x="353.09" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="285.4" y="645" width="0.5" height="15.0" fill="rgb(0,236,139)" rx="2" ry="2" /> +<text x="288.36" y="655.5" ></text> +</g> +<g > +<title>submit_bio (20,202,020 samples, 0.08%)</title><rect x="450.4" y="469" width="1.0" height="15.0" fill="rgb(0,215,186)" rx="2" ry="2" /> +<text x="453.37" y="479.5" ></text> +</g> +<g > +<title>inet_stream_connect (70,707,070 samples, 0.27%)</title><rect x="1368.8" y="773" width="3.7" height="15.0" fill="rgb(0,192,49)" rx="2" ry="2" /> +<text x="1371.78" y="783.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.04%)</title><rect x="100.2" y="597" width="0.5" height="15.0" fill="rgb(0,206,60)" rx="2" ry="2" /> +<text x="103.20" y="607.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.04%)</title><rect x="409.0" y="565" width="0.5" height="15.0" fill="rgb(0,235,83)" rx="2" ry="2" /> +<text x="411.99" y="575.5" ></text> +</g> +<g > +<title>truncate_cleanup_page (10,101,010 samples, 0.04%)</title><rect x="168.1" y="565" width="0.5" height="15.0" fill="rgb(0,219,46)" rx="2" ry="2" /> +<text x="171.11" y="575.5" ></text> +</g> +<g > +<title>iterate_dir (30,303,030 samples, 0.12%)</title><rect x="93.8" y="597" width="1.6" height="15.0" fill="rgb(0,236,18)" rx="2" ry="2" /> +<text x="96.83" y="607.5" ></text> +</g> +<g > +<title>__ext4_new_inode (10,101,010 samples, 0.04%)</title><rect x="507.7" y="693" width="0.5" height="15.0" fill="rgb(0,211,80)" rx="2" ry="2" /> +<text x="510.67" y="703.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.04%)</title><rect x="178.2" y="661" width="0.5" height="15.0" fill="rgb(0,223,48)" rx="2" ry="2" /> +<text x="181.19" y="671.5" ></text> +</g> +<g > +<title>git_config_add_backend (20,202,020 samples, 0.08%)</title><rect x="189.9" y="741" width="1.0" height="15.0" fill="rgb(0,212,204)" rx="2" ry="2" /> +<text x="192.86" y="751.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.04%)</title><rect x="339.0" y="581" width="0.5" height="15.0" fill="rgb(0,205,147)" rx="2" ry="2" /> +<text x="341.95" y="591.5" ></text> +</g> +<g > +<title>__napi_poll (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="437" width="1.6" height="15.0" fill="rgb(0,221,68)" rx="2" ry="2" /> +<text x="1371.78" y="447.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="284.8" y="565" width="0.6" height="15.0" fill="rgb(0,202,47)" rx="2" ry="2" /> +<text x="287.83" y="575.5" ></text> +</g> +<g > +<title>ext4_mkdir (191,919,190 samples, 0.73%)</title><rect x="228.6" y="597" width="10.1" height="15.0" fill="rgb(0,224,132)" rx="2" ry="2" /> +<text x="231.59" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="215.3" y="725" width="1.6" height="15.0" fill="rgb(0,225,87)" rx="2" ry="2" /> +<text x="218.33" y="735.5" ></text> +</g> +<g > +<title>page_counter_cancel (10,101,010 samples, 0.04%)</title><rect x="434.5" y="373" width="0.5" height="15.0" fill="rgb(0,196,41)" rx="2" ry="2" /> +<text x="437.45" y="383.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="47.7" y="645" width="0.5" height="15.0" fill="rgb(0,204,191)" rx="2" ry="2" /> +<text x="50.67" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="345.3" y="709" width="0.5" height="15.0" fill="rgb(0,205,66)" rx="2" ry="2" /> +<text x="348.32" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (575,757,570 samples, 2.19%)</title><rect x="1338.5" y="773" width="30.3" height="15.0" fill="rgb(0,201,115)" rx="2" ry="2" /> +<text x="1341.54" y="783.5" >do..</text> +</g> +<g > +<title>__libc_fork (393,939,390 samples, 1.50%)</title><rect x="509.8" y="821" width="20.7" height="15.0" fill="rgb(0,238,208)" rx="2" ry="2" /> +<text x="512.79" y="831.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="102.8" y="661" width="0.6" height="15.0" fill="rgb(0,237,125)" rx="2" ry="2" /> +<text x="105.85" y="671.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.04%)</title><rect x="339.0" y="533" width="0.5" height="15.0" fill="rgb(0,202,91)" rx="2" ry="2" /> +<text x="341.95" y="543.5" ></text> +</g> +<g > +<title>__inet_stream_connect (60,606,060 samples, 0.23%)</title><rect x="1385.8" y="757" width="3.1" height="15.0" fill="rgb(0,191,106)" rx="2" ry="2" /> +<text x="1388.76" y="767.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.04%)</title><rect x="467.3" y="597" width="0.6" height="15.0" fill="rgb(0,197,87)" rx="2" ry="2" /> +<text x="470.35" y="607.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="467.9" y="613" width="0.5" height="15.0" fill="rgb(0,233,105)" rx="2" ry="2" /> +<text x="470.88" y="623.5" ></text> +</g> +<g > +<title>libgit_repository_free (70,707,070 samples, 0.27%)</title><rect x="82.7" y="853" width="3.7" height="15.0" fill="rgb(0,227,183)" rx="2" ry="2" /> +<text x="85.69" y="863.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (10,101,010 samples, 0.04%)</title><rect x="237.1" y="501" width="0.5" height="15.0" fill="rgb(0,192,29)" rx="2" ry="2" /> +<text x="240.08" y="511.5" ></text> +</g> +<g > +<title>alloc_file_pseudo (10,101,010 samples, 0.04%)</title><rect x="48.2" y="693" width="0.5" height="15.0" fill="rgb(0,206,136)" rx="2" ry="2" /> +<text x="51.20" y="703.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.04%)</title><rect x="334.2" y="325" width="0.5" height="15.0" fill="rgb(0,209,131)" rx="2" ry="2" /> +<text x="337.18" y="335.5" ></text> +</g> +<g > +<title>__memcg_kmem_charge_page (10,101,010 samples, 0.04%)</title><rect x="520.9" y="549" width="0.6" height="15.0" fill="rgb(0,214,1)" rx="2" ry="2" /> +<text x="523.93" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_openat (303,030,300 samples, 1.15%)</title><rect x="60.4" y="885" width="15.9" height="15.0" fill="rgb(0,193,26)" rx="2" ry="2" /> +<text x="63.40" y="895.5" ></text> +</g> +<g > +<title>git_config_snapshot (10,101,010 samples, 0.04%)</title><rect x="211.6" y="789" width="0.5" height="15.0" fill="rgb(0,200,154)" rx="2" ry="2" /> +<text x="214.61" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (666,666,660 samples, 2.54%)</title><rect x="368.7" y="773" width="35.0" height="15.0" fill="rgb(0,217,169)" rx="2" ry="2" /> +<text x="371.66" y="783.5" >[l..</text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.04%)</title><rect x="221.7" y="517" width="0.5" height="15.0" fill="rgb(0,218,89)" rx="2" ry="2" /> +<text x="224.70" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="289.6" y="613" width="1.6" height="15.0" fill="rgb(0,230,14)" rx="2" ry="2" /> +<text x="292.61" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="115.6" y="661" width="0.5" height="15.0" fill="rgb(0,226,15)" rx="2" ry="2" /> +<text x="118.58" y="671.5" ></text> +</g> +<g > +<title>apparmor_file_alloc_security (20,202,020 samples, 0.08%)</title><rect x="61.5" y="789" width="1.0" height="15.0" fill="rgb(0,210,177)" rx="2" ry="2" /> +<text x="64.46" y="799.5" ></text> +</g> +<g > +<title>ext4_rename (50,505,050 samples, 0.19%)</title><rect x="342.7" y="597" width="2.6" height="15.0" fill="rgb(0,233,201)" rx="2" ry="2" /> +<text x="345.66" y="607.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.04%)</title><rect x="454.1" y="581" width="0.5" height="15.0" fill="rgb(0,206,204)" rx="2" ry="2" /> +<text x="457.08" y="591.5" ></text> +</g> +<g > +<title>vfs_getattr_nosec (10,101,010 samples, 0.04%)</title><rect x="490.2" y="629" width="0.5" height="15.0" fill="rgb(0,222,20)" rx="2" ry="2" /> +<text x="493.16" y="639.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="385.6" y="501" width="0.6" height="15.0" fill="rgb(0,191,134)" rx="2" ry="2" /> +<text x="388.64" y="511.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.04%)</title><rect x="400.5" y="453" width="0.5" height="15.0" fill="rgb(0,210,76)" rx="2" ry="2" /> +<text x="403.50" y="463.5" ></text> +</g> +<g > +<title>ext4_readdir (10,101,010 samples, 0.04%)</title><rect x="315.6" y="677" width="0.5" height="15.0" fill="rgb(0,210,154)" rx="2" ry="2" /> +<text x="318.61" y="687.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="94.9" y="485" width="0.5" height="15.0" fill="rgb(0,234,88)" rx="2" ry="2" /> +<text x="97.89" y="495.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="56.7" y="741" width="0.5" height="15.0" fill="rgb(0,208,150)" rx="2" ry="2" /> +<text x="59.69" y="751.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (20,202,020 samples, 0.08%)</title><rect x="231.2" y="501" width="1.1" height="15.0" fill="rgb(0,227,168)" rx="2" ry="2" /> +<text x="234.25" y="511.5" ></text> +</g> +<g > +<title>apparmor_file_permission (10,101,010 samples, 0.04%)</title><rect x="590.4" y="677" width="0.6" height="15.0" fill="rgb(0,235,17)" rx="2" ry="2" /> +<text x="593.44" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="15.3" y="869" width="0.5" height="15.0" fill="rgb(0,212,78)" rx="2" ry="2" /> +<text x="18.31" y="879.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (50,505,050 samples, 0.19%)</title><rect x="249.8" y="597" width="2.7" height="15.0" fill="rgb(0,218,95)" rx="2" ry="2" /> +<text x="252.82" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="395.7" y="613" width="0.6" height="15.0" fill="rgb(0,236,102)" rx="2" ry="2" /> +<text x="398.72" y="623.5" ></text> +</g> +<g > +<title>_IO_file_overflow (10,101,010 samples, 0.04%)</title><rect x="51.4" y="805" width="0.5" height="15.0" fill="rgb(0,212,37)" rx="2" ry="2" /> +<text x="54.38" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="366.5" y="709" width="1.1" height="15.0" fill="rgb(0,227,75)" rx="2" ry="2" /> +<text x="369.54" y="719.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.08%)</title><rect x="1382.6" y="789" width="1.0" height="15.0" fill="rgb(0,203,88)" rx="2" ry="2" /> +<text x="1385.57" y="799.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.04%)</title><rect x="381.4" y="485" width="0.5" height="15.0" fill="rgb(0,222,81)" rx="2" ry="2" /> +<text x="384.40" y="495.5" ></text> +</g> +<g > +<title>fsnotify (10,101,010 samples, 0.04%)</title><rect x="100.7" y="629" width="0.6" height="15.0" fill="rgb(0,214,137)" rx="2" ry="2" /> +<text x="103.73" y="639.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.12%)</title><rect x="356.5" y="565" width="1.6" height="15.0" fill="rgb(0,221,158)" rx="2" ry="2" /> +<text x="359.46" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="189.9" y="597" width="0.5" height="15.0" fill="rgb(0,208,63)" rx="2" ry="2" /> +<text x="192.86" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="502.4" y="645" width="1.0" height="15.0" fill="rgb(0,199,89)" rx="2" ry="2" /> +<text x="505.36" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="346.4" y="693" width="0.5" height="15.0" fill="rgb(0,209,41)" rx="2" ry="2" /> +<text x="349.38" y="703.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.04%)</title><rect x="454.1" y="597" width="0.5" height="15.0" fill="rgb(0,195,10)" rx="2" ry="2" /> +<text x="457.08" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="289.6" y="677" width="2.1" height="15.0" fill="rgb(0,220,18)" rx="2" ry="2" /> +<text x="292.61" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="85.3" y="773" width="0.6" height="15.0" fill="rgb(0,229,182)" rx="2" ry="2" /> +<text x="88.34" y="783.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="285.9" y="533" width="0.5" height="15.0" fill="rgb(0,228,155)" rx="2" ry="2" /> +<text x="288.89" y="543.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="420.7" y="533" width="0.5" height="15.0" fill="rgb(0,190,199)" rx="2" ry="2" /> +<text x="423.66" y="543.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="66.2" y="757" width="0.6" height="15.0" fill="rgb(0,203,145)" rx="2" ry="2" /> +<text x="69.24" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="215.3" y="741" width="1.6" height="15.0" fill="rgb(0,196,142)" rx="2" ry="2" /> +<text x="218.33" y="751.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.04%)</title><rect x="234.4" y="197" width="0.6" height="15.0" fill="rgb(0,233,3)" rx="2" ry="2" /> +<text x="237.43" y="207.5" ></text> +</g> +<g > +<title>__pud_alloc (10,101,010 samples, 0.04%)</title><rect x="516.7" y="629" width="0.5" height="15.0" fill="rgb(0,220,72)" rx="2" ry="2" /> +<text x="519.69" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="404.7" y="741" width="3.8" height="15.0" fill="rgb(0,236,173)" rx="2" ry="2" /> +<text x="407.74" y="751.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.04%)</title><rect x="400.5" y="501" width="0.5" height="15.0" fill="rgb(0,215,187)" rx="2" ry="2" /> +<text x="403.50" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="480.6" y="629" width="0.5" height="15.0" fill="rgb(0,224,2)" rx="2" ry="2" /> +<text x="483.61" y="639.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.04%)</title><rect x="178.2" y="645" width="0.5" height="15.0" fill="rgb(0,208,198)" rx="2" ry="2" /> +<text x="181.19" y="655.5" ></text> +</g> +<g > +<title>git_signature_now (30,303,030 samples, 0.12%)</title><rect x="314.0" y="709" width="1.6" height="15.0" fill="rgb(0,230,144)" rx="2" ry="2" /> +<text x="317.01" y="719.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.08%)</title><rect x="1382.6" y="725" width="1.0" height="15.0" fill="rgb(0,220,71)" rx="2" ry="2" /> +<text x="1385.57" y="735.5" ></text> +</g> +<g > +<title>release_sock (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="741" width="1.6" height="15.0" fill="rgb(0,197,101)" rx="2" ry="2" /> +<text x="1371.78" y="751.5" ></text> +</g> +<g > +<title>resolve_normal_ct (10,101,010 samples, 0.04%)</title><rect x="1379.9" y="485" width="0.5" height="15.0" fill="rgb(0,232,191)" rx="2" ry="2" /> +<text x="1382.92" y="495.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="275.3" y="405" width="0.5" height="15.0" fill="rgb(0,226,166)" rx="2" ry="2" /> +<text x="278.28" y="415.5" ></text> +</g> +<g > +<title>do_syscall_64 (70,707,070 samples, 0.27%)</title><rect x="1368.8" y="837" width="3.7" height="15.0" fill="rgb(0,192,22)" rx="2" ry="2" /> +<text x="1371.78" y="847.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.04%)</title><rect x="521.5" y="501" width="0.5" height="15.0" fill="rgb(0,193,158)" rx="2" ry="2" /> +<text x="524.46" y="511.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="219.6" y="645" width="1.0" height="15.0" fill="rgb(0,204,85)" rx="2" ry="2" /> +<text x="222.57" y="655.5" ></text> +</g> +<g > +<title>vfs_rename (20,202,020 samples, 0.08%)</title><rect x="333.6" y="629" width="1.1" height="15.0" fill="rgb(0,237,159)" rx="2" ry="2" /> +<text x="336.64" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="110.8" y="677" width="1.6" height="15.0" fill="rgb(0,239,78)" rx="2" ry="2" /> +<text x="113.81" y="687.5" ></text> +</g> +<g > +<title>rcu_read_unlock_strict (20,202,020 samples, 0.08%)</title><rect x="1336.4" y="693" width="1.1" height="15.0" fill="rgb(0,230,2)" rx="2" ry="2" /> +<text x="1339.41" y="703.5" ></text> +</g> +<g > +<title>__tcp_close (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="645" width="0.6" height="15.0" fill="rgb(0,203,24)" rx="2" ry="2" /> +<text x="1388.22" y="655.5" ></text> +</g> +<g > +<title>filename_parentat (10,101,010 samples, 0.04%)</title><rect x="89.6" y="549" width="0.5" height="15.0" fill="rgb(0,213,25)" rx="2" ry="2" /> +<text x="92.58" y="559.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="102.8" y="549" width="0.6" height="15.0" fill="rgb(0,197,97)" rx="2" ry="2" /> +<text x="105.85" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="490.7" y="741" width="1.1" height="15.0" fill="rgb(0,235,198)" rx="2" ry="2" /> +<text x="493.69" y="751.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="597.3" y="709" width="0.6" height="15.0" fill="rgb(0,201,44)" rx="2" ry="2" /> +<text x="600.34" y="719.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (80,808,080 samples, 0.31%)</title><rect x="448.8" y="565" width="4.2" height="15.0" fill="rgb(0,194,45)" rx="2" ry="2" /> +<text x="451.78" y="575.5" ></text> +</g> +<g > +<title>rmqueue (20,202,020 samples, 0.08%)</title><rect x="927.9" y="629" width="1.0" height="15.0" fill="rgb(0,222,85)" rx="2" ry="2" /> +<text x="930.88" y="639.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="70.0" y="709" width="0.5" height="15.0" fill="rgb(0,223,24)" rx="2" ry="2" /> +<text x="72.95" y="719.5" ></text> +</g> +<g > +<title>security_path_mkdir (10,101,010 samples, 0.04%)</title><rect x="54.6" y="837" width="0.5" height="15.0" fill="rgb(0,234,169)" rx="2" ry="2" /> +<text x="57.57" y="847.5" ></text> +</g> +<g > +<title>readdir64 (10,101,010 samples, 0.04%)</title><rect x="367.1" y="693" width="0.5" height="15.0" fill="rgb(0,238,177)" rx="2" ry="2" /> +<text x="370.07" y="703.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="490.2" y="645" width="0.5" height="15.0" fill="rgb(0,194,5)" rx="2" ry="2" /> +<text x="493.16" y="655.5" ></text> +</g> +<g > +<title>getdents64 (80,808,080 samples, 0.31%)</title><rect x="152.2" y="725" width="4.2" height="15.0" fill="rgb(0,195,26)" rx="2" ry="2" /> +<text x="155.19" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="298.1" y="549" width="0.5" height="15.0" fill="rgb(0,197,132)" rx="2" ry="2" /> +<text x="301.10" y="559.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (40,404,040 samples, 0.15%)</title><rect x="39.2" y="165" width="2.1" height="15.0" fill="rgb(0,202,133)" rx="2" ry="2" /> +<text x="42.18" y="175.5" ></text> +</g> +<g > +<title>ext4_free_blocks (10,101,010 samples, 0.04%)</title><rect x="269.4" y="421" width="0.6" height="15.0" fill="rgb(0,239,8)" rx="2" ry="2" /> +<text x="272.45" y="431.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="315.1" y="613" width="0.5" height="15.0" fill="rgb(0,232,111)" rx="2" ry="2" /> +<text x="318.07" y="623.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="534.2" y="773" width="0.5" height="15.0" fill="rgb(0,208,177)" rx="2" ry="2" /> +<text x="537.20" y="783.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="339.5" y="597" width="0.5" height="15.0" fill="rgb(0,203,207)" rx="2" ry="2" /> +<text x="342.48" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="221.7" y="773" width="0.5" height="15.0" fill="rgb(0,235,177)" rx="2" ry="2" /> +<text x="224.70" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_sendto (80,808,080 samples, 0.31%)</title><rect x="10.5" y="789" width="4.3" height="15.0" fill="rgb(0,236,108)" rx="2" ry="2" /> +<text x="13.53" y="799.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.04%)</title><rect x="397.3" y="629" width="0.5" height="15.0" fill="rgb(0,190,148)" rx="2" ry="2" /> +<text x="400.31" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.08%)</title><rect x="356.5" y="485" width="1.0" height="15.0" fill="rgb(0,194,76)" rx="2" ry="2" /> +<text x="359.46" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="495.5" y="661" width="1.0" height="15.0" fill="rgb(0,201,11)" rx="2" ry="2" /> +<text x="498.47" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="491.2" y="709" width="0.6" height="15.0" fill="rgb(0,239,116)" rx="2" ry="2" /> +<text x="494.22" y="719.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="453" width="0.6" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="1383.45" y="463.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.04%)</title><rect x="75.3" y="773" width="0.5" height="15.0" fill="rgb(0,227,166)" rx="2" ry="2" /> +<text x="78.26" y="783.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.04%)</title><rect x="318.8" y="565" width="0.5" height="15.0" fill="rgb(0,220,174)" rx="2" ry="2" /> +<text x="321.79" y="575.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="333.6" y="549" width="0.6" height="15.0" fill="rgb(0,208,104)" rx="2" ry="2" /> +<text x="336.64" y="559.5" ></text> +</g> +<g > +<title>unlink_cb (10,101,010 samples, 0.04%)</title><rect x="88.5" y="645" width="0.6" height="15.0" fill="rgb(0,194,26)" rx="2" ry="2" /> +<text x="91.52" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="360.7" y="677" width="0.5" height="15.0" fill="rgb(0,205,73)" rx="2" ry="2" /> +<text x="363.70" y="687.5" ></text> +</g> +<g > +<title>inet_csk_clone_lock (10,101,010 samples, 0.04%)</title><rect x="1369.3" y="229" width="0.5" height="15.0" fill="rgb(0,192,191)" rx="2" ry="2" /> +<text x="1372.31" y="239.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="14.8" y="869" width="0.5" height="15.0" fill="rgb(0,191,57)" rx="2" ry="2" /> +<text x="17.78" y="879.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.04%)</title><rect x="1299.3" y="645" width="0.5" height="15.0" fill="rgb(0,233,54)" rx="2" ry="2" /> +<text x="1302.27" y="655.5" ></text> +</g> +<g > +<title>crc_64 (10,101,010 samples, 0.04%)</title><rect x="420.1" y="581" width="0.6" height="15.0" fill="rgb(0,202,89)" rx="2" ry="2" /> +<text x="423.13" y="591.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.04%)</title><rect x="116.1" y="581" width="0.5" height="15.0" fill="rgb(0,208,83)" rx="2" ry="2" /> +<text x="119.11" y="591.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="385.6" y="469" width="0.6" height="15.0" fill="rgb(0,190,61)" rx="2" ry="2" /> +<text x="388.64" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="76.3" y="917" width="0.6" height="15.0" fill="rgb(0,191,141)" rx="2" ry="2" /> +<text x="79.32" y="927.5" ></text> +</g> +<g > +<title>net_send_part (80,808,080 samples, 0.31%)</title><rect x="10.5" y="853" width="4.3" height="15.0" fill="rgb(0,237,106)" rx="2" ry="2" /> +<text x="13.53" y="863.5" ></text> +</g> +<g > +<title>__schedule (50,505,050 samples, 0.19%)</title><rect x="27.0" y="725" width="2.6" height="15.0" fill="rgb(0,201,152)" rx="2" ry="2" /> +<text x="29.98" y="735.5" ></text> +</g> +<g > +<title>process_backlog (30,303,030 samples, 0.12%)</title><rect x="1365.1" y="405" width="1.6" height="15.0" fill="rgb(0,235,187)" rx="2" ry="2" /> +<text x="1368.06" y="415.5" ></text> +</g> +<g > +<title>[libc.so.6] (40,404,040 samples, 0.15%)</title><rect x="618.0" y="821" width="2.1" height="15.0" fill="rgb(0,201,28)" rx="2" ry="2" /> +<text x="621.03" y="831.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.04%)</title><rect x="287.5" y="389" width="0.5" height="15.0" fill="rgb(0,230,179)" rx="2" ry="2" /> +<text x="290.49" y="399.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="325.2" y="469" width="0.5" height="15.0" fill="rgb(0,205,106)" rx="2" ry="2" /> +<text x="328.16" y="479.5" ></text> +</g> +<g > +<title>__open64_nocancel (10,101,010 samples, 0.04%)</title><rect x="366.5" y="677" width="0.6" height="15.0" fill="rgb(0,215,73)" rx="2" ry="2" /> +<text x="369.54" y="687.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="220.1" y="565" width="0.5" height="15.0" fill="rgb(0,204,125)" rx="2" ry="2" /> +<text x="223.10" y="575.5" ></text> +</g> +<g > +<title>__anon_inode_getfile (10,101,010 samples, 0.04%)</title><rect x="45.5" y="725" width="0.6" height="15.0" fill="rgb(0,191,121)" rx="2" ry="2" /> +<text x="48.55" y="735.5" ></text> +</g> +<g > +<title>destroy_inode (10,101,010 samples, 0.04%)</title><rect x="157.5" y="581" width="0.5" height="15.0" fill="rgb(0,215,203)" rx="2" ry="2" /> +<text x="160.50" y="591.5" ></text> +</g> +<g > +<title>getdents64 (10,101,010 samples, 0.04%)</title><rect x="277.4" y="741" width="0.5" height="15.0" fill="rgb(0,207,90)" rx="2" ry="2" /> +<text x="280.40" y="751.5" ></text> +</g> +<g > +<title>new_sync_read (939,393,930 samples, 3.58%)</title><rect x="540.0" y="709" width="49.4" height="15.0" fill="rgb(0,232,138)" rx="2" ry="2" /> +<text x="543.03" y="719.5" >new_..</text> +</g> +<g > +<title>__cpuset_node_allowed (10,101,010 samples, 0.04%)</title><rect x="392.5" y="357" width="0.6" height="15.0" fill="rgb(0,236,65)" rx="2" ry="2" /> +<text x="395.54" y="367.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="491.2" y="629" width="0.6" height="15.0" fill="rgb(0,197,109)" rx="2" ry="2" /> +<text x="494.22" y="639.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (80,808,080 samples, 0.31%)</title><rect x="448.8" y="533" width="4.2" height="15.0" fill="rgb(0,225,112)" rx="2" ry="2" /> +<text x="451.78" y="543.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="492.3" y="661" width="0.5" height="15.0" fill="rgb(0,210,200)" rx="2" ry="2" /> +<text x="495.28" y="671.5" ></text> +</g> +<g > +<title>ext4_unlink (40,404,040 samples, 0.15%)</title><rect x="174.5" y="661" width="2.1" height="15.0" fill="rgb(0,191,153)" rx="2" ry="2" /> +<text x="177.48" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.04%)</title><rect x="170.8" y="693" width="0.5" height="15.0" fill="rgb(0,231,28)" rx="2" ry="2" /> +<text x="173.76" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (151,515,150 samples, 0.58%)</title><rect x="118.2" y="661" width="8.0" height="15.0" fill="rgb(0,226,105)" rx="2" ry="2" /> +<text x="121.24" y="671.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.08%)</title><rect x="501.3" y="565" width="1.1" height="15.0" fill="rgb(0,212,129)" rx="2" ry="2" /> +<text x="504.30" y="575.5" ></text> +</g> +<g > +<title>apparmor_file_open (10,101,010 samples, 0.04%)</title><rect x="348.5" y="485" width="0.5" height="15.0" fill="rgb(0,233,115)" rx="2" ry="2" /> +<text x="351.50" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="14.8" y="789" width="0.5" height="15.0" fill="rgb(0,200,102)" rx="2" ry="2" /> +<text x="17.78" y="799.5" ></text> +</g> +<g > +<title>ext4_bread_batch (20,202,020 samples, 0.08%)</title><rect x="428.6" y="533" width="1.1" height="15.0" fill="rgb(0,191,175)" rx="2" ry="2" /> +<text x="431.62" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (1,060,606,050 samples, 4.04%)</title><rect x="538.4" y="773" width="55.8" height="15.0" fill="rgb(0,237,154)" rx="2" ry="2" /> +<text x="541.44" y="783.5" >do_sy..</text> +</g> +<g > +<title>remove (40,404,040 samples, 0.15%)</title><rect x="146.9" y="709" width="2.1" height="15.0" fill="rgb(0,199,62)" rx="2" ry="2" /> +<text x="149.89" y="719.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (10,101,010 samples, 0.04%)</title><rect x="377.7" y="581" width="0.5" height="15.0" fill="rgb(0,190,200)" rx="2" ry="2" /> +<text x="380.68" y="591.5" ></text> +</g> +<g > +<title>process_backlog (10,101,010 samples, 0.04%)</title><rect x="1387.3" y="501" width="0.6" height="15.0" fill="rgb(0,223,170)" rx="2" ry="2" /> +<text x="1390.35" y="511.5" ></text> +</g> +<g > +<title>json_object_put (20,202,020 samples, 0.08%)</title><rect x="933.7" y="837" width="1.1" height="15.0" fill="rgb(0,215,93)" rx="2" ry="2" /> +<text x="936.71" y="847.5" ></text> +</g> +<g > +<title>ip_finish_output2 (40,404,040 samples, 0.15%)</title><rect x="1364.5" y="501" width="2.2" height="15.0" fill="rgb(0,229,77)" rx="2" ry="2" /> +<text x="1367.53" y="511.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="94.9" y="501" width="0.5" height="15.0" fill="rgb(0,232,71)" rx="2" ry="2" /> +<text x="97.89" y="511.5" ></text> +</g> +<g > +<title>do_renameat2 (111,111,110 samples, 0.42%)</title><rect x="328.9" y="645" width="5.8" height="15.0" fill="rgb(0,234,165)" rx="2" ry="2" /> +<text x="331.87" y="655.5" ></text> +</g> +<g > +<title>__rseq_handle_notify_resume (20,202,020 samples, 0.08%)</title><rect x="593.1" y="709" width="1.1" height="15.0" fill="rgb(0,207,208)" rx="2" ry="2" /> +<text x="596.09" y="719.5" ></text> +</g> +<g > +<title>_IO_default_xsputn (10,101,010 samples, 0.04%)</title><rect x="263.6" y="613" width="0.5" height="15.0" fill="rgb(0,212,3)" rx="2" ry="2" /> +<text x="266.61" y="623.5" ></text> +</g> +<g > +<title>generic_write_end (10,101,010 samples, 0.04%)</title><rect x="285.4" y="485" width="0.5" height="15.0" fill="rgb(0,227,161)" rx="2" ry="2" /> +<text x="288.36" y="495.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="40.2" y="53" width="0.6" height="15.0" fill="rgb(0,200,108)" rx="2" ry="2" /> +<text x="43.24" y="63.5" ></text> +</g> +<g > +<title>__x64_sys_rename (121,212,120 samples, 0.46%)</title><rect x="369.7" y="677" width="6.4" height="15.0" fill="rgb(0,194,7)" rx="2" ry="2" /> +<text x="372.72" y="687.5" ></text> +</g> +<g > +<title>ext4_writepages (50,505,050 samples, 0.19%)</title><rect x="273.7" y="501" width="2.6" height="15.0" fill="rgb(0,203,197)" rx="2" ry="2" /> +<text x="276.69" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="359.1" y="645" width="0.5" height="15.0" fill="rgb(0,221,190)" rx="2" ry="2" /> +<text x="362.11" y="655.5" ></text> +</g> +<g > +<title>ext4_truncate (10,101,010 samples, 0.04%)</title><rect x="167.6" y="597" width="0.5" height="15.0" fill="rgb(0,232,113)" rx="2" ry="2" /> +<text x="170.58" y="607.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="190.4" y="661" width="0.5" height="15.0" fill="rgb(0,221,176)" rx="2" ry="2" /> +<text x="193.39" y="671.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="176.6" y="757" width="0.5" height="15.0" fill="rgb(0,237,77)" rx="2" ry="2" /> +<text x="179.60" y="767.5" ></text> +</g> +<g > +<title>filename_lookup (60,606,060 samples, 0.23%)</title><rect x="79.0" y="853" width="3.2" height="15.0" fill="rgb(0,203,77)" rx="2" ry="2" /> +<text x="81.97" y="863.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="325" width="1.6" height="15.0" fill="rgb(0,222,81)" rx="2" ry="2" /> +<text x="1370.19" y="335.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.04%)</title><rect x="506.1" y="661" width="0.5" height="15.0" fill="rgb(0,230,50)" rx="2" ry="2" /> +<text x="509.08" y="671.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="504.5" y="597" width="0.5" height="15.0" fill="rgb(0,200,62)" rx="2" ry="2" /> +<text x="507.49" y="607.5" ></text> +</g> +<g > +<title>ext4_alloc_inode (20,202,020 samples, 0.08%)</title><rect x="71.0" y="725" width="1.1" height="15.0" fill="rgb(0,205,163)" rx="2" ry="2" /> +<text x="74.01" y="735.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="264.1" y="597" width="0.6" height="15.0" fill="rgb(0,239,136)" rx="2" ry="2" /> +<text x="267.14" y="607.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.04%)</title><rect x="444.0" y="549" width="0.5" height="15.0" fill="rgb(0,196,208)" rx="2" ry="2" /> +<text x="447.00" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.04%)</title><rect x="14.8" y="773" width="0.5" height="15.0" fill="rgb(0,203,66)" rx="2" ry="2" /> +<text x="17.78" y="783.5" ></text> +</g> +<g > +<title>vfs_mkdir (50,505,050 samples, 0.19%)</title><rect x="418.0" y="661" width="2.7" height="15.0" fill="rgb(0,218,145)" rx="2" ry="2" /> +<text x="421.00" y="671.5" ></text> +</g> +<g > +<title>blk_mq_do_dispatch_sched (10,101,010 samples, 0.04%)</title><rect x="343.7" y="357" width="0.6" height="15.0" fill="rgb(0,232,24)" rx="2" ry="2" /> +<text x="346.73" y="367.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="52.4" y="757" width="1.1" height="15.0" fill="rgb(0,233,73)" rx="2" ry="2" /> +<text x="55.45" y="767.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="74.2" y="693" width="0.5" height="15.0" fill="rgb(0,220,180)" rx="2" ry="2" /> +<text x="77.20" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (40,404,040 samples, 0.15%)</title><rect x="30.2" y="821" width="2.1" height="15.0" fill="rgb(0,197,110)" rx="2" ry="2" /> +<text x="33.16" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.04%)</title><rect x="479.0" y="565" width="0.6" height="15.0" fill="rgb(0,228,115)" rx="2" ry="2" /> +<text x="482.02" y="575.5" ></text> +</g> +<g > +<title>sd_setup_read_write_cmnd (10,101,010 samples, 0.04%)</title><rect x="273.7" y="245" width="0.5" height="15.0" fill="rgb(0,200,12)" rx="2" ry="2" /> +<text x="276.69" y="255.5" ></text> +</g> +<g > +<title>__fget_files (20,202,020 samples, 0.08%)</title><rect x="25.9" y="741" width="1.1" height="15.0" fill="rgb(0,193,59)" rx="2" ry="2" /> +<text x="28.92" y="751.5" ></text> +</g> +<g > +<title>ext4_add_nondir (10,101,010 samples, 0.04%)</title><rect x="381.9" y="469" width="0.6" height="15.0" fill="rgb(0,230,148)" rx="2" ry="2" /> +<text x="384.93" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_getcwd (10,101,010 samples, 0.04%)</title><rect x="603.7" y="789" width="0.5" height="15.0" fill="rgb(0,214,202)" rx="2" ry="2" /> +<text x="606.70" y="799.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.04%)</title><rect x="92.8" y="581" width="0.5" height="15.0" fill="rgb(0,223,1)" rx="2" ry="2" /> +<text x="95.77" y="591.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (20,202,020 samples, 0.08%)</title><rect x="373.4" y="453" width="1.1" height="15.0" fill="rgb(0,199,207)" rx="2" ry="2" /> +<text x="376.44" y="463.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="383.5" y="517" width="0.5" height="15.0" fill="rgb(0,231,48)" rx="2" ry="2" /> +<text x="386.52" y="527.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="213.2" y="629" width="0.5" height="15.0" fill="rgb(0,215,157)" rx="2" ry="2" /> +<text x="216.21" y="639.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.08%)</title><rect x="144.2" y="661" width="1.1" height="15.0" fill="rgb(0,224,52)" rx="2" ry="2" /> +<text x="147.23" y="671.5" ></text> +</g> +<g > +<title>scsi_prepare_cmd (10,101,010 samples, 0.04%)</title><rect x="273.7" y="277" width="0.5" height="15.0" fill="rgb(0,193,65)" rx="2" ry="2" /> +<text x="276.69" y="287.5" ></text> +</g> +<g > +<title>__ext4_unlink (20,202,020 samples, 0.08%)</title><rect x="318.3" y="597" width="1.0" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="321.26" y="607.5" ></text> +</g> +<g > +<title>ext4_unlink (10,101,010 samples, 0.04%)</title><rect x="148.5" y="597" width="0.5" height="15.0" fill="rgb(0,205,21)" rx="2" ry="2" /> +<text x="151.48" y="607.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.04%)</title><rect x="444.0" y="565" width="0.5" height="15.0" fill="rgb(0,221,94)" rx="2" ry="2" /> +<text x="447.00" y="575.5" ></text> +</g> +<g > +<title>ext4_read_block_bitmap_nowait (20,202,020 samples, 0.08%)</title><rect x="138.9" y="421" width="1.1" height="15.0" fill="rgb(0,221,149)" rx="2" ry="2" /> +<text x="141.93" y="431.5" ></text> +</g> +<g > +<title>blk_finish_plug (30,303,030 samples, 0.12%)</title><rect x="448.8" y="485" width="1.6" height="15.0" fill="rgb(0,228,173)" rx="2" ry="2" /> +<text x="451.78" y="495.5" ></text> +</g> +<g > +<title>vfs_mkdir (40,404,040 samples, 0.15%)</title><rect x="507.1" y="725" width="2.2" height="15.0" fill="rgb(0,233,84)" rx="2" ry="2" /> +<text x="510.14" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.08%)</title><rect x="144.2" y="693" width="1.1" height="15.0" fill="rgb(0,230,66)" rx="2" ry="2" /> +<text x="147.23" y="703.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="109.2" y="405" width="0.5" height="15.0" fill="rgb(0,224,97)" rx="2" ry="2" /> +<text x="112.22" y="415.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.04%)</title><rect x="509.3" y="693" width="0.5" height="15.0" fill="rgb(0,233,86)" rx="2" ry="2" /> +<text x="512.26" y="703.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.04%)</title><rect x="73.1" y="741" width="0.6" height="15.0" fill="rgb(0,235,0)" rx="2" ry="2" /> +<text x="76.14" y="751.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="298.1" y="469" width="0.5" height="15.0" fill="rgb(0,193,167)" rx="2" ry="2" /> +<text x="301.10" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="299.2" y="581" width="0.5" height="15.0" fill="rgb(0,206,29)" rx="2" ry="2" /> +<text x="302.16" y="591.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (60,606,060 samples, 0.23%)</title><rect x="137.3" y="485" width="3.2" height="15.0" fill="rgb(0,217,98)" rx="2" ry="2" /> +<text x="140.34" y="495.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (30,303,030 samples, 0.12%)</title><rect x="303.9" y="501" width="1.6" height="15.0" fill="rgb(0,230,42)" rx="2" ry="2" /> +<text x="306.93" y="511.5" ></text> +</g> +<g > +<title>sk_free (10,101,010 samples, 0.04%)</title><rect x="38.7" y="165" width="0.5" height="15.0" fill="rgb(0,197,165)" rx="2" ry="2" /> +<text x="41.65" y="175.5" ></text> +</g> +<g > +<title>__dentry_kill (10,101,010 samples, 0.04%)</title><rect x="142.1" y="549" width="0.5" height="15.0" fill="rgb(0,228,194)" rx="2" ry="2" /> +<text x="145.11" y="559.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (20,202,020 samples, 0.08%)</title><rect x="351.7" y="485" width="1.0" height="15.0" fill="rgb(0,219,10)" rx="2" ry="2" /> +<text x="354.68" y="495.5" ></text> +</g> +<g > +<title>charge_memcg (10,101,010 samples, 0.04%)</title><rect x="116.1" y="501" width="0.5" height="15.0" fill="rgb(0,214,44)" rx="2" ry="2" /> +<text x="119.11" y="511.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.04%)</title><rect x="420.1" y="613" width="0.6" height="15.0" fill="rgb(0,204,35)" rx="2" ry="2" /> +<text x="423.13" y="623.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (30,303,030 samples, 0.12%)</title><rect x="124.6" y="581" width="1.6" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="127.60" y="591.5" ></text> +</g> +<g > +<title>do_filp_open (40,404,040 samples, 0.15%)</title><rect x="98.6" y="629" width="2.1" height="15.0" fill="rgb(0,226,186)" rx="2" ry="2" /> +<text x="101.60" y="639.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="597" width="0.5" height="15.0" fill="rgb(0,209,190)" rx="2" ry="2" /> +<text x="1388.76" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="432.3" y="629" width="0.6" height="15.0" fill="rgb(0,232,59)" rx="2" ry="2" /> +<text x="435.33" y="639.5" ></text> +</g> +<g > +<title>git_reference_normalize_name (10,101,010 samples, 0.04%)</title><rect x="308.7" y="629" width="0.5" height="15.0" fill="rgb(0,223,179)" rx="2" ry="2" /> +<text x="311.71" y="639.5" ></text> +</g> +<g > +<title>__block_commit_write.constprop.0.isra.0 (10,101,010 samples, 0.04%)</title><rect x="391.5" y="437" width="0.5" height="15.0" fill="rgb(0,207,54)" rx="2" ry="2" /> +<text x="394.48" y="447.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (303,030,300 samples, 1.15%)</title><rect x="126.7" y="629" width="15.9" height="15.0" fill="rgb(0,223,150)" rx="2" ry="2" /> +<text x="129.72" y="639.5" ></text> +</g> +<g > +<title>schedule (333,333,330 samples, 1.27%)</title><rect x="571.3" y="677" width="17.5" height="15.0" fill="rgb(0,232,8)" rx="2" ry="2" /> +<text x="574.34" y="687.5" ></text> +</g> +<g > +<title>worker_do_run (24,595,959,350 samples, 93.62%)</title><rect x="82.7" y="901" width="1291.9" height="15.0" fill="rgb(0,214,158)" rx="2" ry="2" /> +<text x="85.69" y="911.5" >worker_do_run</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="220.6" y="693" width="1.1" height="15.0" fill="rgb(0,216,102)" rx="2" ry="2" /> +<text x="223.63" y="703.5" ></text> +</g> +<g > +<title>do_softirq (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="469" width="0.6" height="15.0" fill="rgb(0,224,15)" rx="2" ry="2" /> +<text x="1383.45" y="479.5" ></text> +</g> +<g > +<title>rcu_all_qs (10,101,010 samples, 0.04%)</title><rect x="248.8" y="613" width="0.5" height="15.0" fill="rgb(0,212,163)" rx="2" ry="2" /> +<text x="251.75" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="395.7" y="501" width="0.6" height="15.0" fill="rgb(0,238,198)" rx="2" ry="2" /> +<text x="398.72" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="930.0" y="773" width="0.5" height="15.0" fill="rgb(0,207,121)" rx="2" ry="2" /> +<text x="933.00" y="783.5" ></text> +</g> +<g > +<title>net_send (80,808,080 samples, 0.31%)</title><rect x="10.5" y="869" width="4.3" height="15.0" fill="rgb(0,217,34)" rx="2" ry="2" /> +<text x="13.53" y="879.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="281.1" y="533" width="0.5" height="15.0" fill="rgb(0,224,182)" rx="2" ry="2" /> +<text x="284.12" y="543.5" ></text> +</g> +<g > +<title>tcp_event_new_data_sent (10,101,010 samples, 0.04%)</title><rect x="1366.7" y="613" width="0.5" height="15.0" fill="rgb(0,233,15)" rx="2" ry="2" /> +<text x="1369.66" y="623.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (50,505,050 samples, 0.19%)</title><rect x="273.7" y="565" width="2.6" height="15.0" fill="rgb(0,207,208)" rx="2" ry="2" /> +<text x="276.69" y="575.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.04%)</title><rect x="413.8" y="453" width="0.5" height="15.0" fill="rgb(0,203,201)" rx="2" ry="2" /> +<text x="416.76" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="327.3" y="677" width="0.5" height="15.0" fill="rgb(0,224,195)" rx="2" ry="2" /> +<text x="330.28" y="687.5" ></text> +</g> +<g > +<title>mb_find_extent (10,101,010 samples, 0.04%)</title><rect x="390.4" y="373" width="0.5" height="15.0" fill="rgb(0,223,136)" rx="2" ry="2" /> +<text x="393.42" y="383.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (30,303,030 samples, 0.12%)</title><rect x="1297.7" y="757" width="1.6" height="15.0" fill="rgb(0,216,40)" rx="2" ry="2" /> +<text x="1300.68" y="767.5" ></text> +</g> +<g > +<title>__blk_mq_delay_run_hw_queue (10,101,010 samples, 0.04%)</title><rect x="343.7" y="421" width="0.6" height="15.0" fill="rgb(0,195,205)" rx="2" ry="2" /> +<text x="346.73" y="431.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="483.8" y="613" width="0.5" height="15.0" fill="rgb(0,195,99)" rx="2" ry="2" /> +<text x="486.79" y="623.5" ></text> +</g> +<g > +<title>fstatat (101,010,100 samples, 0.38%)</title><rect x="254.1" y="741" width="5.3" height="15.0" fill="rgb(0,235,50)" rx="2" ry="2" /> +<text x="257.06" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_futex (20,202,020 samples, 0.08%)</title><rect x="16.9" y="837" width="1.1" height="15.0" fill="rgb(0,203,80)" rx="2" ry="2" /> +<text x="19.90" y="847.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.08%)</title><rect x="325.2" y="613" width="1.0" height="15.0" fill="rgb(0,222,131)" rx="2" ry="2" /> +<text x="328.16" y="623.5" ></text> +</g> +<g > +<title>ext4_map_blocks (40,404,040 samples, 0.15%)</title><rect x="388.8" y="453" width="2.1" height="15.0" fill="rgb(0,201,96)" rx="2" ry="2" /> +<text x="391.82" y="463.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (30,303,030 samples, 0.12%)</title><rect x="448.8" y="421" width="1.6" height="15.0" fill="rgb(0,232,49)" rx="2" ry="2" /> +<text x="451.78" y="431.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="300.2" y="613" width="0.5" height="15.0" fill="rgb(0,235,161)" rx="2" ry="2" /> +<text x="303.22" y="623.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (50,505,050 samples, 0.19%)</title><rect x="456.7" y="629" width="2.7" height="15.0" fill="rgb(0,237,73)" rx="2" ry="2" /> +<text x="459.74" y="639.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="531.0" y="757" width="0.5" height="15.0" fill="rgb(0,217,172)" rx="2" ry="2" /> +<text x="534.01" y="767.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.04%)</title><rect x="73.1" y="725" width="0.6" height="15.0" fill="rgb(0,217,41)" rx="2" ry="2" /> +<text x="76.14" y="735.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.04%)</title><rect x="343.2" y="501" width="0.5" height="15.0" fill="rgb(0,224,19)" rx="2" ry="2" /> +<text x="346.19" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="489.1" y="645" width="1.1" height="15.0" fill="rgb(0,229,152)" rx="2" ry="2" /> +<text x="492.10" y="655.5" ></text> +</g> +<g > +<title>wait_on_page_writeback (20,202,020 samples, 0.08%)</title><rect x="435.0" y="453" width="1.0" height="15.0" fill="rgb(0,200,111)" rx="2" ry="2" /> +<text x="437.98" y="463.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.04%)</title><rect x="76.3" y="821" width="0.6" height="15.0" fill="rgb(0,224,99)" rx="2" ry="2" /> +<text x="79.32" y="831.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (10,101,010 samples, 0.04%)</title><rect x="275.3" y="485" width="0.5" height="15.0" fill="rgb(0,226,163)" rx="2" ry="2" /> +<text x="278.28" y="495.5" ></text> +</g> +<g > +<title>do_writepages (50,505,050 samples, 0.19%)</title><rect x="371.8" y="549" width="2.7" height="15.0" fill="rgb(0,192,155)" rx="2" ry="2" /> +<text x="374.85" y="559.5" ></text> +</g> +<g > +<title>out_of_line_wait_on_bit (10,101,010 samples, 0.04%)</title><rect x="305.0" y="325" width="0.5" height="15.0" fill="rgb(0,198,25)" rx="2" ry="2" /> +<text x="307.99" y="335.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.04%)</title><rect x="280.6" y="565" width="0.5" height="15.0" fill="rgb(0,191,29)" rx="2" ry="2" /> +<text x="283.59" y="575.5" ></text> +</g> +<g > +<title>wait_on_page_bit (20,202,020 samples, 0.08%)</title><rect x="435.0" y="437" width="1.0" height="15.0" fill="rgb(0,204,116)" rx="2" ry="2" /> +<text x="437.98" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="221.7" y="709" width="0.5" height="15.0" fill="rgb(0,225,79)" rx="2" ry="2" /> +<text x="224.70" y="719.5" ></text> +</g> +<g > +<title>__add_to_page_cache_locked (10,101,010 samples, 0.04%)</title><rect x="426.5" y="517" width="0.5" height="15.0" fill="rgb(0,219,100)" rx="2" ry="2" /> +<text x="429.49" y="527.5" ></text> +</g> +<g > +<title>_IO_fprintf (50,505,050 samples, 0.19%)</title><rect x="50.9" y="853" width="2.6" height="15.0" fill="rgb(0,225,77)" rx="2" ry="2" /> +<text x="53.85" y="863.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="134.7" y="501" width="0.5" height="15.0" fill="rgb(0,220,142)" rx="2" ry="2" /> +<text x="137.68" y="511.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="483.8" y="597" width="0.5" height="15.0" fill="rgb(0,198,140)" rx="2" ry="2" /> +<text x="486.79" y="607.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.08%)</title><rect x="495.5" y="581" width="1.0" height="15.0" fill="rgb(0,206,196)" rx="2" ry="2" /> +<text x="498.47" y="591.5" ></text> +</g> +<g > +<title>lock_sock_nested (10,101,010 samples, 0.04%)</title><rect x="1379.4" y="677" width="0.5" height="15.0" fill="rgb(0,221,160)" rx="2" ry="2" /> +<text x="1382.39" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="361.8" y="581" width="0.5" height="15.0" fill="rgb(0,208,130)" rx="2" ry="2" /> +<text x="364.76" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="85.3" y="741" width="0.6" height="15.0" fill="rgb(0,236,190)" rx="2" ry="2" /> +<text x="88.34" y="751.5" ></text> +</g> +<g > +<title>ext4_xattr_delete_inode (10,101,010 samples, 0.04%)</title><rect x="270.0" y="501" width="0.5" height="15.0" fill="rgb(0,226,28)" rx="2" ry="2" /> +<text x="272.98" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="468.4" y="741" width="0.5" height="15.0" fill="rgb(0,219,55)" rx="2" ry="2" /> +<text x="471.41" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="468.9" y="757" width="1.1" height="15.0" fill="rgb(0,197,169)" rx="2" ry="2" /> +<text x="471.94" y="767.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (303,030,300 samples, 1.15%)</title><rect x="554.4" y="661" width="15.9" height="15.0" fill="rgb(0,224,182)" rx="2" ry="2" /> +<text x="557.36" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="280.6" y="613" width="0.5" height="15.0" fill="rgb(0,226,199)" rx="2" ry="2" /> +<text x="283.59" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="477.4" y="629" width="2.2" height="15.0" fill="rgb(0,202,150)" rx="2" ry="2" /> +<text x="480.43" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.23%)</title><rect x="506.1" y="773" width="3.2" height="15.0" fill="rgb(0,204,154)" rx="2" ry="2" /> +<text x="509.08" y="783.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.04%)</title><rect x="410.0" y="597" width="0.6" height="15.0" fill="rgb(0,239,51)" rx="2" ry="2" /> +<text x="413.05" y="607.5" ></text> +</g> +<g > +<title>readdir64 (40,404,040 samples, 0.15%)</title><rect x="93.3" y="677" width="2.1" height="15.0" fill="rgb(0,239,175)" rx="2" ry="2" /> +<text x="96.30" y="687.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.04%)</title><rect x="1376.7" y="629" width="0.6" height="15.0" fill="rgb(0,226,172)" rx="2" ry="2" /> +<text x="1379.74" y="639.5" ></text> +</g> +<g > +<title>__nf_conntrack_eventmask_report (10,101,010 samples, 0.04%)</title><rect x="41.8" y="373" width="0.6" height="15.0" fill="rgb(0,229,79)" rx="2" ry="2" /> +<text x="44.83" y="383.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.04%)</title><rect x="521.5" y="533" width="0.5" height="15.0" fill="rgb(0,234,4)" rx="2" ry="2" /> +<text x="524.46" y="543.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.04%)</title><rect x="168.1" y="581" width="0.5" height="15.0" fill="rgb(0,205,120)" rx="2" ry="2" /> +<text x="171.11" y="591.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="471.1" y="661" width="0.5" height="15.0" fill="rgb(0,235,52)" rx="2" ry="2" /> +<text x="474.06" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="400.5" y="597" width="0.5" height="15.0" fill="rgb(0,207,45)" rx="2" ry="2" /> +<text x="403.50" y="607.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.04%)</title><rect x="202.6" y="645" width="0.5" height="15.0" fill="rgb(0,239,187)" rx="2" ry="2" /> +<text x="205.60" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_write (30,303,030 samples, 0.12%)</title><rect x="303.9" y="581" width="1.6" height="15.0" fill="rgb(0,201,188)" rx="2" ry="2" /> +<text x="306.93" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_eventfd2 (20,202,020 samples, 0.08%)</title><rect x="45.0" y="773" width="1.1" height="15.0" fill="rgb(0,221,162)" rx="2" ry="2" /> +<text x="48.02" y="783.5" ></text> +</g> +<g > +<title>evict (60,606,060 samples, 0.23%)</title><rect x="268.4" y="533" width="3.2" height="15.0" fill="rgb(0,228,166)" rx="2" ry="2" /> +<text x="271.39" y="543.5" ></text> +</g> +<g > +<title>ip_output (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="517" width="0.6" height="15.0" fill="rgb(0,210,153)" rx="2" ry="2" /> +<text x="1388.22" y="527.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="285.9" y="357" width="0.5" height="15.0" fill="rgb(0,225,21)" rx="2" ry="2" /> +<text x="288.89" y="367.5" ></text> +</g> +<g > +<title>crc_14 (10,101,010 samples, 0.04%)</title><rect x="416.4" y="485" width="0.5" height="15.0" fill="rgb(0,199,186)" rx="2" ry="2" /> +<text x="419.41" y="495.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.04%)</title><rect x="288.5" y="485" width="0.6" height="15.0" fill="rgb(0,202,148)" rx="2" ry="2" /> +<text x="291.55" y="495.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="345.3" y="677" width="0.5" height="15.0" fill="rgb(0,218,71)" rx="2" ry="2" /> +<text x="348.32" y="687.5" ></text> +</g> +<g > +<title>uncharge_batch (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="421" width="0.5" height="15.0" fill="rgb(0,239,199)" rx="2" ry="2" /> +<text x="1389.82" y="431.5" ></text> +</g> +<g > +<title>inet_sendmsg (50,505,050 samples, 0.19%)</title><rect x="1379.4" y="709" width="2.6" height="15.0" fill="rgb(0,197,186)" rx="2" ry="2" /> +<text x="1382.39" y="719.5" ></text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.04%)</title><rect x="216.9" y="693" width="0.6" height="15.0" fill="rgb(0,213,14)" rx="2" ry="2" /> +<text x="219.92" y="703.5" ></text> +</g> +<g > +<title>ip_rcv (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="373" width="1.6" height="15.0" fill="rgb(0,230,53)" rx="2" ry="2" /> +<text x="1371.78" y="383.5" ></text> +</g> +<g > +<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.04%)</title><rect x="489.1" y="501" width="0.5" height="15.0" fill="rgb(0,227,100)" rx="2" ry="2" /> +<text x="492.10" y="511.5" ></text> +</g> +<g > +<title>ext4_append (121,212,120 samples, 0.46%)</title><rect x="459.4" y="629" width="6.4" height="15.0" fill="rgb(0,203,99)" rx="2" ry="2" /> +<text x="462.39" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="292.3" y="549" width="0.5" height="15.0" fill="rgb(0,236,85)" rx="2" ry="2" /> +<text x="295.26" y="559.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="377.7" y="501" width="0.5" height="15.0" fill="rgb(0,196,19)" rx="2" ry="2" /> +<text x="380.68" y="511.5" ></text> +</g> +<g > +<title>remove (121,212,120 samples, 0.46%)</title><rect x="103.4" y="677" width="6.3" height="15.0" fill="rgb(0,191,158)" rx="2" ry="2" /> +<text x="106.38" y="687.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (20,202,020 samples, 0.08%)</title><rect x="413.2" y="517" width="1.1" height="15.0" fill="rgb(0,223,79)" rx="2" ry="2" /> +<text x="416.23" y="527.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (20,202,020 samples, 0.08%)</title><rect x="436.0" y="437" width="1.1" height="15.0" fill="rgb(0,236,53)" rx="2" ry="2" /> +<text x="439.04" y="447.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.04%)</title><rect x="499.7" y="565" width="0.5" height="15.0" fill="rgb(0,233,184)" rx="2" ry="2" /> +<text x="502.71" y="575.5" ></text> +</g> +<g > +<title>__mod_lruvec_state (10,101,010 samples, 0.04%)</title><rect x="941.1" y="533" width="0.6" height="15.0" fill="rgb(0,230,174)" rx="2" ry="2" /> +<text x="944.14" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="179.3" y="741" width="1.5" height="15.0" fill="rgb(0,202,62)" rx="2" ry="2" /> +<text x="182.25" y="751.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.04%)</title><rect x="151.1" y="581" width="0.6" height="15.0" fill="rgb(0,237,144)" rx="2" ry="2" /> +<text x="154.13" y="591.5" ></text> +</g> +<g > +<title>strerror_l (10,101,010 samples, 0.04%)</title><rect x="307.6" y="533" width="0.6" height="15.0" fill="rgb(0,207,21)" rx="2" ry="2" /> +<text x="310.65" y="543.5" ></text> +</g> +<g > +<title>do_faccessat (20,202,020 samples, 0.08%)</title><rect x="364.9" y="677" width="1.1" height="15.0" fill="rgb(0,199,100)" rx="2" ry="2" /> +<text x="367.95" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="294.4" y="661" width="0.5" height="15.0" fill="rgb(0,204,4)" rx="2" ry="2" /> +<text x="297.38" y="671.5" ></text> +</g> +<g > +<title>rename (121,212,120 samples, 0.46%)</title><rect x="369.7" y="725" width="6.4" height="15.0" fill="rgb(0,212,87)" rx="2" ry="2" /> +<text x="372.72" y="735.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="309" width="0.6" height="15.0" fill="rgb(0,235,167)" rx="2" ry="2" /> +<text x="1383.45" y="319.5" ></text> +</g> +<g > +<title>ext4_io_submit (20,202,020 samples, 0.08%)</title><rect x="450.4" y="485" width="1.0" height="15.0" fill="rgb(0,191,12)" rx="2" ry="2" /> +<text x="453.37" y="495.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="298.1" y="453" width="0.5" height="15.0" fill="rgb(0,221,203)" rx="2" ry="2" /> +<text x="301.10" y="463.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="395.7" y="453" width="0.6" height="15.0" fill="rgb(0,233,63)" rx="2" ry="2" /> +<text x="398.72" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.58%)</title><rect x="183.5" y="789" width="8.0" height="15.0" fill="rgb(0,221,148)" rx="2" ry="2" /> +<text x="186.49" y="799.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.04%)</title><rect x="144.8" y="613" width="0.5" height="15.0" fill="rgb(0,239,79)" rx="2" ry="2" /> +<text x="147.76" y="623.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="181.4" y="805" width="0.5" height="15.0" fill="rgb(0,233,119)" rx="2" ry="2" /> +<text x="184.37" y="815.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="933.7" y="773" width="0.5" height="15.0" fill="rgb(0,234,30)" rx="2" ry="2" /> +<text x="936.71" y="783.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.04%)</title><rect x="285.9" y="245" width="0.5" height="15.0" fill="rgb(0,208,124)" rx="2" ry="2" /> +<text x="288.89" y="255.5" ></text> +</g> +<g > +<title>__pagevec_release (10,101,010 samples, 0.04%)</title><rect x="447.7" y="469" width="0.5" height="15.0" fill="rgb(0,232,107)" rx="2" ry="2" /> +<text x="450.72" y="479.5" ></text> +</g> +<g > +<title>net_close (10,101,010 samples, 0.04%)</title><rect x="15.8" y="901" width="0.6" height="15.0" fill="rgb(0,221,91)" rx="2" ry="2" /> +<text x="18.84" y="911.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="198.9" y="693" width="1.0" height="15.0" fill="rgb(0,196,148)" rx="2" ry="2" /> +<text x="201.88" y="703.5" ></text> +</g> +<g > +<title>unlink (40,404,040 samples, 0.15%)</title><rect x="420.7" y="741" width="2.1" height="15.0" fill="rgb(0,237,187)" rx="2" ry="2" /> +<text x="423.66" y="751.5" ></text> +</g> +<g > +<title>do_rmdir (30,303,030 samples, 0.12%)</title><rect x="179.3" y="709" width="1.5" height="15.0" fill="rgb(0,226,179)" rx="2" ry="2" /> +<text x="182.25" y="719.5" ></text> +</g> +<g > +<title>_find_next_bit (10,101,010 samples, 0.04%)</title><rect x="66.8" y="757" width="0.5" height="15.0" fill="rgb(0,201,62)" rx="2" ry="2" /> +<text x="69.77" y="767.5" ></text> +</g> +<g > +<title>ext4_create (30,303,030 samples, 0.12%)</title><rect x="203.7" y="613" width="1.5" height="15.0" fill="rgb(0,195,78)" rx="2" ry="2" /> +<text x="206.66" y="623.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (10,101,010 samples, 0.04%)</title><rect x="414.8" y="453" width="0.6" height="15.0" fill="rgb(0,212,31)" rx="2" ry="2" /> +<text x="417.82" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.04%)</title><rect x="216.9" y="709" width="0.6" height="15.0" fill="rgb(0,206,117)" rx="2" ry="2" /> +<text x="219.92" y="719.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.04%)</title><rect x="275.3" y="293" width="0.5" height="15.0" fill="rgb(0,212,202)" rx="2" ry="2" /> +<text x="278.28" y="303.5" ></text> +</g> +<g > +<title>rb_next (10,101,010 samples, 0.04%)</title><rect x="619.6" y="629" width="0.5" height="15.0" fill="rgb(0,229,161)" rx="2" ry="2" /> +<text x="622.62" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="385.6" y="517" width="0.6" height="15.0" fill="rgb(0,232,143)" rx="2" ry="2" /> +<text x="388.64" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="598.9" y="789" width="1.1" height="15.0" fill="rgb(0,204,82)" rx="2" ry="2" /> +<text x="601.93" y="799.5" ></text> +</g> +<g > +<title>delete_from_page_cache_batch (10,101,010 samples, 0.04%)</title><rect x="90.6" y="469" width="0.6" height="15.0" fill="rgb(0,204,98)" rx="2" ry="2" /> +<text x="93.65" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.04%)</title><rect x="362.8" y="565" width="0.6" height="15.0" fill="rgb(0,218,162)" rx="2" ry="2" /> +<text x="365.83" y="575.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.04%)</title><rect x="442.4" y="693" width="0.5" height="15.0" fill="rgb(0,223,61)" rx="2" ry="2" /> +<text x="445.41" y="703.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="288.5" y="517" width="0.6" height="15.0" fill="rgb(0,202,86)" rx="2" ry="2" /> +<text x="291.55" y="527.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.04%)</title><rect x="499.7" y="533" width="0.5" height="15.0" fill="rgb(0,192,33)" rx="2" ry="2" /> +<text x="502.71" y="543.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (10,101,010 samples, 0.04%)</title><rect x="509.3" y="821" width="0.5" height="15.0" fill="rgb(0,201,107)" rx="2" ry="2" /> +<text x="512.26" y="831.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.04%)</title><rect x="354.3" y="485" width="0.6" height="15.0" fill="rgb(0,226,63)" rx="2" ry="2" /> +<text x="357.34" y="495.5" ></text> +</g> +<g > +<title>__inet_aton_exact (10,101,010 samples, 0.04%)</title><rect x="1388.9" y="837" width="0.6" height="15.0" fill="rgb(0,194,166)" rx="2" ry="2" /> +<text x="1391.94" y="847.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="320.4" y="645" width="1.6" height="15.0" fill="rgb(0,209,30)" rx="2" ry="2" /> +<text x="323.38" y="655.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="298.1" y="517" width="0.5" height="15.0" fill="rgb(0,203,38)" rx="2" ry="2" /> +<text x="301.10" y="527.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.08%)</title><rect x="317.2" y="597" width="1.1" height="15.0" fill="rgb(0,230,196)" rx="2" ry="2" /> +<text x="320.20" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (313,131,310 samples, 1.19%)</title><rect x="126.7" y="645" width="16.5" height="15.0" fill="rgb(0,232,183)" rx="2" ry="2" /> +<text x="129.72" y="655.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.04%)</title><rect x="94.9" y="357" width="0.5" height="15.0" fill="rgb(0,228,165)" rx="2" ry="2" /> +<text x="97.89" y="367.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="107.1" y="533" width="1.1" height="15.0" fill="rgb(0,192,159)" rx="2" ry="2" /> +<text x="110.09" y="543.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="521.5" y="581" width="0.5" height="15.0" fill="rgb(0,218,147)" rx="2" ry="2" /> +<text x="524.46" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="182.4" y="741" width="0.6" height="15.0" fill="rgb(0,239,44)" rx="2" ry="2" /> +<text x="185.43" y="751.5" ></text> +</g> +<g > +<title>net_send_part (60,606,060 samples, 0.23%)</title><rect x="1379.4" y="821" width="3.2" height="15.0" fill="rgb(0,237,14)" rx="2" ry="2" /> +<text x="1382.39" y="831.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (20,202,020 samples, 0.08%)</title><rect x="136.3" y="485" width="1.0" height="15.0" fill="rgb(0,202,11)" rx="2" ry="2" /> +<text x="139.27" y="495.5" ></text> +</g> +<g > +<title>copy_user_enhanced_fast_string (10,101,010 samples, 0.04%)</title><rect x="424.9" y="581" width="0.5" height="15.0" fill="rgb(0,223,196)" rx="2" ry="2" /> +<text x="427.90" y="591.5" ></text> +</g> +<g > +<title>do_unlinkat (60,606,060 samples, 0.23%)</title><rect x="89.6" y="565" width="3.2" height="15.0" fill="rgb(0,212,9)" rx="2" ry="2" /> +<text x="92.58" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="439.8" y="645" width="1.0" height="15.0" fill="rgb(0,232,4)" rx="2" ry="2" /> +<text x="442.76" y="655.5" ></text> +</g> +<g > +<title>log_entry_start (20,202,020 samples, 0.08%)</title><rect x="14.8" y="917" width="1.0" height="15.0" fill="rgb(0,206,165)" rx="2" ry="2" /> +<text x="17.78" y="927.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.04%)</title><rect x="325.2" y="501" width="0.5" height="15.0" fill="rgb(0,220,131)" rx="2" ry="2" /> +<text x="328.16" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="413.2" y="725" width="3.7" height="15.0" fill="rgb(0,199,23)" rx="2" ry="2" /> +<text x="416.23" y="735.5" ></text> +</g> +<g > +<title>new_inode_pseudo (10,101,010 samples, 0.04%)</title><rect x="47.7" y="693" width="0.5" height="15.0" fill="rgb(0,200,123)" rx="2" ry="2" /> +<text x="50.67" y="703.5" ></text> +</g> +<g > +<title>__legitimize_mnt (10,101,010 samples, 0.04%)</title><rect x="143.7" y="517" width="0.5" height="15.0" fill="rgb(0,200,73)" rx="2" ry="2" /> +<text x="146.70" y="527.5" ></text> +</g> +<g > +<title>ext4_free_inode (20,202,020 samples, 0.08%)</title><rect x="421.7" y="613" width="1.1" height="15.0" fill="rgb(0,221,69)" rx="2" ry="2" /> +<text x="424.72" y="623.5" ></text> +</g> +<g > +<title>__blk_mq_run_hw_queue (20,202,020 samples, 0.08%)</title><rect x="273.7" y="389" width="1.1" height="15.0" fill="rgb(0,196,206)" rx="2" ry="2" /> +<text x="276.69" y="399.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="281.6" y="373" width="0.6" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" /> +<text x="284.65" y="383.5" ></text> +</g> +<g > +<title>kernel_clone (90,909,090 samples, 0.35%)</title><rect x="18.5" y="901" width="4.8" height="15.0" fill="rgb(0,212,149)" rx="2" ry="2" /> +<text x="21.49" y="911.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.04%)</title><rect x="446.1" y="645" width="0.6" height="15.0" fill="rgb(0,233,89)" rx="2" ry="2" /> +<text x="449.12" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (161,616,160 samples, 0.62%)</title><rect x="336.8" y="757" width="8.5" height="15.0" fill="rgb(0,201,15)" rx="2" ry="2" /> +<text x="339.83" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="483.8" y="693" width="0.5" height="15.0" fill="rgb(0,190,25)" rx="2" ry="2" /> +<text x="486.79" y="703.5" ></text> +</g> +<g > +<title>__open64 (70,707,070 samples, 0.27%)</title><rect x="202.6" y="757" width="3.7" height="15.0" fill="rgb(0,190,2)" rx="2" ry="2" /> +<text x="205.60" y="767.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.08%)</title><rect x="394.7" y="517" width="1.0" height="15.0" fill="rgb(0,221,202)" rx="2" ry="2" /> +<text x="397.66" y="527.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.04%)</title><rect x="338.4" y="677" width="0.6" height="15.0" fill="rgb(0,193,61)" rx="2" ry="2" /> +<text x="341.42" y="687.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="454.6" y="597" width="0.5" height="15.0" fill="rgb(0,195,40)" rx="2" ry="2" /> +<text x="457.61" y="607.5" ></text> +</g> +<g > +<title>path_lookupat (40,404,040 samples, 0.15%)</title><rect x="428.1" y="629" width="2.1" height="15.0" fill="rgb(0,234,157)" rx="2" ry="2" /> +<text x="431.09" y="639.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.04%)</title><rect x="1356.0" y="613" width="0.6" height="15.0" fill="rgb(0,202,86)" rx="2" ry="2" /> +<text x="1359.04" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (50,505,050 samples, 0.19%)</title><rect x="595.2" y="789" width="2.7" height="15.0" fill="rgb(0,237,141)" rx="2" ry="2" /> +<text x="598.21" y="799.5" ></text> +</g> +<g > +<title>ext4_readdir (20,202,020 samples, 0.08%)</title><rect x="353.8" y="533" width="1.1" height="15.0" fill="rgb(0,198,121)" rx="2" ry="2" /> +<text x="356.81" y="543.5" ></text> +</g> +<g > +<title>do_rmdir (303,030,300 samples, 1.15%)</title><rect x="126.7" y="613" width="15.9" height="15.0" fill="rgb(0,208,156)" rx="2" ry="2" /> +<text x="129.72" y="623.5" ></text> +</g> +<g > +<title>jbd2_journal_init_jbd_inode (10,101,010 samples, 0.04%)</title><rect x="64.1" y="757" width="0.5" height="15.0" fill="rgb(0,208,192)" rx="2" ry="2" /> +<text x="67.12" y="767.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.04%)</title><rect x="391.5" y="549" width="0.5" height="15.0" fill="rgb(0,220,76)" rx="2" ry="2" /> +<text x="394.48" y="559.5" ></text> +</g> +<g > +<title>git_config_add_backend (10,101,010 samples, 0.04%)</title><rect x="431.8" y="725" width="0.5" height="15.0" fill="rgb(0,232,68)" rx="2" ry="2" /> +<text x="434.80" y="735.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.04%)</title><rect x="887.6" y="725" width="0.5" height="15.0" fill="rgb(0,205,32)" rx="2" ry="2" /> +<text x="890.55" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.38%)</title><rect x="54.6" y="933" width="5.3" height="15.0" fill="rgb(0,233,61)" rx="2" ry="2" /> +<text x="57.57" y="943.5" ></text> +</g> +<g > +<title>blk_mq_sched_insert_requests (10,101,010 samples, 0.04%)</title><rect x="334.2" y="453" width="0.5" height="15.0" fill="rgb(0,218,23)" rx="2" ry="2" /> +<text x="337.18" y="463.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="453" width="0.6" height="15.0" fill="rgb(0,197,186)" rx="2" ry="2" /> +<text x="1388.22" y="463.5" ></text> +</g> +<g > +<title>__kmalloc (10,101,010 samples, 0.04%)</title><rect x="153.8" y="581" width="0.5" height="15.0" fill="rgb(0,197,165)" rx="2" ry="2" /> +<text x="156.78" y="591.5" ></text> +</g> +<g > +<title>git_config_set_string (292,929,290 samples, 1.11%)</title><rect x="438.7" y="757" width="15.4" height="15.0" fill="rgb(0,235,91)" rx="2" ry="2" /> +<text x="441.70" y="767.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="469.5" y="629" width="0.5" height="15.0" fill="rgb(0,238,139)" rx="2" ry="2" /> +<text x="472.47" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="431.3" y="725" width="0.5" height="15.0" fill="rgb(0,197,206)" rx="2" ry="2" /> +<text x="434.27" y="735.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="378.2" y="533" width="0.5" height="15.0" fill="rgb(0,195,84)" rx="2" ry="2" /> +<text x="381.21" y="543.5" ></text> +</g> +<g > +<title>crc_40 (10,101,010 samples, 0.04%)</title><rect x="216.9" y="581" width="0.6" height="15.0" fill="rgb(0,224,206)" rx="2" ry="2" /> +<text x="219.92" y="591.5" ></text> +</g> +<g > +<title>git_repository_free (70,707,070 samples, 0.27%)</title><rect x="82.7" y="837" width="3.7" height="15.0" fill="rgb(0,237,71)" rx="2" ry="2" /> +<text x="85.69" y="847.5" ></text> +</g> +<g > +<title>blk_mq_complete_request (10,101,010 samples, 0.04%)</title><rect x="131.0" y="341" width="0.5" height="15.0" fill="rgb(0,222,58)" rx="2" ry="2" /> +<text x="133.97" y="351.5" ></text> +</g> +<g > +<title>__sys_connect_file (60,606,060 samples, 0.23%)</title><rect x="1385.8" y="789" width="3.1" height="15.0" fill="rgb(0,208,24)" rx="2" ry="2" /> +<text x="1388.76" y="799.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.04%)</title><rect x="352.7" y="517" width="0.6" height="15.0" fill="rgb(0,234,76)" rx="2" ry="2" /> +<text x="355.75" y="527.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="475.3" y="661" width="0.5" height="15.0" fill="rgb(0,215,160)" rx="2" ry="2" /> +<text x="478.31" y="671.5" ></text> +</g> +<g > +<title>ext4_readdir (30,303,030 samples, 0.12%)</title><rect x="93.8" y="581" width="1.6" height="15.0" fill="rgb(0,237,14)" rx="2" ry="2" /> +<text x="96.83" y="591.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.04%)</title><rect x="432.9" y="581" width="0.5" height="15.0" fill="rgb(0,233,203)" rx="2" ry="2" /> +<text x="435.86" y="591.5" ></text> +</g> +<g > +<title>tcp_rcv_established (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="261" width="0.6" height="15.0" fill="rgb(0,194,129)" rx="2" ry="2" /> +<text x="1383.45" y="271.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="503.4" y="549" width="0.6" height="15.0" fill="rgb(0,235,101)" rx="2" ry="2" /> +<text x="506.43" y="559.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (50,505,050 samples, 0.19%)</title><rect x="340.0" y="581" width="2.7" height="15.0" fill="rgb(0,203,34)" rx="2" ry="2" /> +<text x="343.01" y="591.5" ></text> +</g> +<g > +<title>file_close (40,404,040 samples, 0.15%)</title><rect x="32.3" y="837" width="2.1" height="15.0" fill="rgb(0,222,129)" rx="2" ry="2" /> +<text x="35.28" y="847.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="377.2" y="565" width="0.5" height="15.0" fill="rgb(0,197,78)" rx="2" ry="2" /> +<text x="380.15" y="575.5" ></text> +</g> +<g > +<title>cimple-server (848,484,840 samples, 3.23%)</title><rect x="10.0" y="997" width="44.6" height="15.0" fill="rgb(0,220,67)" rx="2" ry="2" /> +<text x="13.00" y="1007.5" >cimp..</text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="357.0" y="405" width="0.5" height="15.0" fill="rgb(0,205,36)" rx="2" ry="2" /> +<text x="359.99" y="415.5" ></text> +</g> +<g > +<title>iput (50,505,050 samples, 0.19%)</title><rect x="166.0" y="645" width="2.6" height="15.0" fill="rgb(0,213,203)" rx="2" ry="2" /> +<text x="168.99" y="655.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.04%)</title><rect x="300.2" y="565" width="0.5" height="15.0" fill="rgb(0,216,67)" rx="2" ry="2" /> +<text x="303.22" y="575.5" ></text> +</g> +<g > +<title>git_config_add_backend (30,303,030 samples, 0.12%)</title><rect x="473.2" y="741" width="1.6" height="15.0" fill="rgb(0,213,30)" rx="2" ry="2" /> +<text x="476.18" y="751.5" ></text> +</g> +<g > +<title>main (24,888,888,640 samples, 94.73%)</title><rect x="82.7" y="933" width="1307.3" height="15.0" fill="rgb(0,195,49)" rx="2" ry="2" /> +<text x="85.69" y="943.5" >main</text> +</g> +<g > +<title>pthread_create (10,101,010 samples, 0.04%)</title><rect x="44.0" y="805" width="0.5" height="15.0" fill="rgb(0,221,153)" rx="2" ry="2" /> +<text x="46.96" y="815.5" ></text> +</g> +<g > +<title>ext4_inode_block_valid (10,101,010 samples, 0.04%)</title><rect x="459.9" y="549" width="0.5" height="15.0" fill="rgb(0,230,99)" rx="2" ry="2" /> +<text x="462.92" y="559.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.04%)</title><rect x="299.7" y="629" width="0.5" height="15.0" fill="rgb(0,233,37)" rx="2" ry="2" /> +<text x="302.69" y="639.5" ></text> +</g> +<g > +<title>ext4_truncate (20,202,020 samples, 0.08%)</title><rect x="97.0" y="501" width="1.1" height="15.0" fill="rgb(0,207,207)" rx="2" ry="2" /> +<text x="100.01" y="511.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="454.1" y="629" width="0.5" height="15.0" fill="rgb(0,207,205)" rx="2" ry="2" /> +<text x="457.08" y="639.5" ></text> +</g> +<g > +<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.04%)</title><rect x="451.4" y="405" width="0.6" height="15.0" fill="rgb(0,235,178)" rx="2" ry="2" /> +<text x="454.43" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="490.2" y="741" width="0.5" height="15.0" fill="rgb(0,191,199)" rx="2" ry="2" /> +<text x="493.16" y="751.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="131.0" y="501" width="0.5" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="133.97" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.23%)</title><rect x="423.8" y="725" width="3.2" height="15.0" fill="rgb(0,228,106)" rx="2" ry="2" /> +<text x="426.84" y="735.5" ></text> +</g> +<g > +<title>do_softirq (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="485" width="0.5" height="15.0" fill="rgb(0,226,104)" rx="2" ry="2" /> +<text x="1342.60" y="495.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="285.9" y="453" width="0.5" height="15.0" fill="rgb(0,210,164)" rx="2" ry="2" /> +<text x="288.89" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="413.2" y="629" width="1.1" height="15.0" fill="rgb(0,198,148)" rx="2" ry="2" /> +<text x="416.23" y="639.5" ></text> +</g> +<g > +<title>tcp_rcv_established (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="213" width="0.5" height="15.0" fill="rgb(0,202,74)" rx="2" ry="2" /> +<text x="1342.07" y="223.5" ></text> +</g> +<g > +<title>net_close (40,404,040 samples, 0.15%)</title><rect x="1383.6" y="885" width="2.2" height="15.0" fill="rgb(0,208,153)" rx="2" ry="2" /> +<text x="1386.63" y="895.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="888.1" y="773" width="0.5" height="15.0" fill="rgb(0,216,27)" rx="2" ry="2" /> +<text x="891.09" y="783.5" ></text> +</g> +<g > +<title>tcp_rcv_synsent_state_process (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="677" width="0.5" height="15.0" fill="rgb(0,226,186)" rx="2" ry="2" /> +<text x="1388.76" y="687.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.04%)</title><rect x="285.4" y="661" width="0.5" height="15.0" fill="rgb(0,209,180)" rx="2" ry="2" /> +<text x="288.36" y="671.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="109.2" y="453" width="0.5" height="15.0" fill="rgb(0,226,97)" rx="2" ry="2" /> +<text x="112.22" y="463.5" ></text> +</g> +<g > +<title>ext4_truncate (30,303,030 samples, 0.12%)</title><rect x="268.4" y="501" width="1.6" height="15.0" fill="rgb(0,197,14)" rx="2" ry="2" /> +<text x="271.39" y="511.5" ></text> +</g> +<g > +<title>dentry_kill (80,808,080 samples, 0.31%)</title><rect x="328.9" y="613" width="4.2" height="15.0" fill="rgb(0,235,148)" rx="2" ry="2" /> +<text x="331.87" y="623.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.04%)</title><rect x="899.2" y="773" width="0.6" height="15.0" fill="rgb(0,223,158)" rx="2" ry="2" /> +<text x="902.23" y="783.5" ></text> +</g> +<g > +<title>do_rmdir (101,010,100 samples, 0.38%)</title><rect x="156.4" y="645" width="5.3" height="15.0" fill="rgb(0,226,29)" rx="2" ry="2" /> +<text x="159.44" y="655.5" ></text> +</g> +<g > +<title>log_prefix_thread_id (30,303,030 samples, 0.12%)</title><rect x="48.7" y="869" width="1.6" height="15.0" fill="rgb(0,218,86)" rx="2" ry="2" /> +<text x="51.73" y="879.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="324.6" y="629" width="0.6" height="15.0" fill="rgb(0,206,170)" rx="2" ry="2" /> +<text x="327.63" y="639.5" ></text> +</g> +<g > +<title>ext4_mkdir (40,404,040 samples, 0.15%)</title><rect x="507.1" y="709" width="2.2" height="15.0" fill="rgb(0,201,137)" rx="2" ry="2" /> +<text x="510.14" y="719.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="319.3" y="693" width="0.6" height="15.0" fill="rgb(0,224,168)" rx="2" ry="2" /> +<text x="322.32" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="196.8" y="661" width="0.5" height="15.0" fill="rgb(0,239,85)" rx="2" ry="2" /> +<text x="199.76" y="671.5" ></text> +</g> +<g > +<title>git_reference_name_to_id (10,101,010 samples, 0.04%)</title><rect x="395.7" y="661" width="0.6" height="15.0" fill="rgb(0,207,83)" rx="2" ry="2" /> +<text x="398.72" y="671.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="284.8" y="549" width="0.6" height="15.0" fill="rgb(0,215,125)" rx="2" ry="2" /> +<text x="287.83" y="559.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="97.5" y="341" width="0.6" height="15.0" fill="rgb(0,238,35)" rx="2" ry="2" /> +<text x="100.54" y="351.5" ></text> +</g> +<g > +<title>free_rb_tree_fname (10,101,010 samples, 0.04%)</title><rect x="123.5" y="597" width="0.6" height="15.0" fill="rgb(0,213,121)" rx="2" ry="2" /> +<text x="126.54" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="347.4" y="693" width="2.7" height="15.0" fill="rgb(0,195,181)" rx="2" ry="2" /> +<text x="350.44" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1374.6" y="725" width="0.5" height="15.0" fill="rgb(0,199,73)" rx="2" ry="2" /> +<text x="1377.61" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="201.0" y="661" width="0.5" height="15.0" fill="rgb(0,219,117)" rx="2" ry="2" /> +<text x="204.00" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_connect (60,606,060 samples, 0.23%)</title><rect x="1385.8" y="821" width="3.1" height="15.0" fill="rgb(0,234,205)" rx="2" ry="2" /> +<text x="1388.76" y="831.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="353.3" y="501" width="0.5" height="15.0" fill="rgb(0,190,175)" rx="2" ry="2" /> +<text x="356.28" y="511.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.04%)</title><rect x="400.5" y="389" width="0.5" height="15.0" fill="rgb(0,225,174)" rx="2" ry="2" /> +<text x="403.50" y="399.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.04%)</title><rect x="235.5" y="469" width="0.5" height="15.0" fill="rgb(0,230,136)" rx="2" ry="2" /> +<text x="238.49" y="479.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.04%)</title><rect x="400.5" y="405" width="0.5" height="15.0" fill="rgb(0,193,63)" rx="2" ry="2" /> +<text x="403.50" y="415.5" ></text> +</g> +<g > +<title>handle_pte_fault (10,101,010 samples, 0.04%)</title><rect x="116.1" y="549" width="0.5" height="15.0" fill="rgb(0,209,187)" rx="2" ry="2" /> +<text x="119.11" y="559.5" ></text> +</g> +<g > +<title>__next_zones_zonelist (10,101,010 samples, 0.04%)</title><rect x="1333.8" y="613" width="0.5" height="15.0" fill="rgb(0,205,148)" rx="2" ry="2" /> +<text x="1336.76" y="623.5" ></text> +</g> +<g > +<title>lru_cache_add_inactive_or_unevictable (10,101,010 samples, 0.04%)</title><rect x="928.9" y="677" width="0.6" height="15.0" fill="rgb(0,215,161)" rx="2" ry="2" /> +<text x="931.94" y="687.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.04%)</title><rect x="348.5" y="517" width="0.5" height="15.0" fill="rgb(0,204,14)" rx="2" ry="2" /> +<text x="351.50" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="177.7" y="773" width="1.6" height="15.0" fill="rgb(0,219,161)" rx="2" ry="2" /> +<text x="180.66" y="783.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (10,101,010 samples, 0.04%)</title><rect x="187.7" y="469" width="0.6" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="190.74" y="479.5" ></text> +</g> +<g > +<title>down_read_killable (10,101,010 samples, 0.04%)</title><rect x="248.8" y="629" width="0.5" height="15.0" fill="rgb(0,206,37)" rx="2" ry="2" /> +<text x="251.75" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="346.9" y="741" width="3.2" height="15.0" fill="rgb(0,193,115)" rx="2" ry="2" /> +<text x="349.91" y="751.5" ></text> +</g> +<g > +<title>readdir64 (171,717,170 samples, 0.65%)</title><rect x="117.2" y="709" width="9.0" height="15.0" fill="rgb(0,212,201)" rx="2" ry="2" /> +<text x="120.17" y="719.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (50,505,050 samples, 0.19%)</title><rect x="249.8" y="581" width="2.7" height="15.0" fill="rgb(0,238,113)" rx="2" ry="2" /> +<text x="252.82" y="591.5" ></text> +</g> +<g > +<title>__ext4_forget (10,101,010 samples, 0.04%)</title><rect x="137.3" y="437" width="0.6" height="15.0" fill="rgb(0,222,52)" rx="2" ry="2" /> +<text x="140.34" y="447.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.04%)</title><rect x="392.5" y="453" width="0.6" height="15.0" fill="rgb(0,195,34)" rx="2" ry="2" /> +<text x="395.54" y="463.5" ></text> +</g> +<g > +<title>vfs_write (30,303,030 samples, 0.12%)</title><rect x="392.0" y="565" width="1.6" height="15.0" fill="rgb(0,220,175)" rx="2" ry="2" /> +<text x="395.01" y="575.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="491.2" y="613" width="0.6" height="15.0" fill="rgb(0,203,158)" rx="2" ry="2" /> +<text x="494.22" y="623.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.04%)</title><rect x="91.7" y="501" width="0.5" height="15.0" fill="rgb(0,220,44)" rx="2" ry="2" /> +<text x="94.71" y="511.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (50,505,050 samples, 0.19%)</title><rect x="1364.0" y="613" width="2.7" height="15.0" fill="rgb(0,211,174)" rx="2" ry="2" /> +<text x="1367.00" y="623.5" ></text> +</g> +<g > +<title>json_object_new_object (10,101,010 samples, 0.04%)</title><rect x="899.8" y="837" width="0.5" height="15.0" fill="rgb(0,232,67)" rx="2" ry="2" /> +<text x="902.76" y="847.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="154.8" y="549" width="0.6" height="15.0" fill="rgb(0,199,100)" rx="2" ry="2" /> +<text x="157.84" y="559.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="132.0" y="533" width="1.1" height="15.0" fill="rgb(0,211,10)" rx="2" ry="2" /> +<text x="135.03" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.04%)</title><rect x="188.3" y="629" width="0.5" height="15.0" fill="rgb(0,212,139)" rx="2" ry="2" /> +<text x="191.27" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (565,656,560 samples, 2.15%)</title><rect x="900.3" y="805" width="29.7" height="15.0" fill="rgb(0,191,38)" rx="2" ry="2" /> +<text x="903.29" y="815.5" >[l..</text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="339.0" y="645" width="0.5" height="15.0" fill="rgb(0,216,58)" rx="2" ry="2" /> +<text x="341.95" y="655.5" ></text> +</g> +<g > +<title>scsi_queue_rq (10,101,010 samples, 0.04%)</title><rect x="187.7" y="341" width="0.6" height="15.0" fill="rgb(0,231,160)" rx="2" ry="2" /> +<text x="190.74" y="351.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="549" width="0.6" height="15.0" fill="rgb(0,215,195)" rx="2" ry="2" /> +<text x="1388.22" y="559.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (80,808,080 samples, 0.31%)</title><rect x="37.6" y="277" width="4.2" height="15.0" fill="rgb(0,199,156)" rx="2" ry="2" /> +<text x="40.59" y="287.5" ></text> +</g> +<g > +<title>ext4_ext_insert_extent (10,101,010 samples, 0.04%)</title><rect x="461.5" y="549" width="0.5" height="15.0" fill="rgb(0,202,36)" rx="2" ry="2" /> +<text x="464.51" y="559.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="221.7" y="485" width="0.5" height="15.0" fill="rgb(0,191,162)" rx="2" ry="2" /> +<text x="224.70" y="495.5" ></text> +</g> +<g > +<title>__ext4_new_inode (10,101,010 samples, 0.04%)</title><rect x="386.2" y="517" width="0.5" height="15.0" fill="rgb(0,223,198)" rx="2" ry="2" /> +<text x="389.17" y="527.5" ></text> +</g> +<g > +<title>libgit_clone_to_tmp (5,444,444,390 samples, 20.72%)</title><rect x="223.3" y="853" width="286.0" height="15.0" fill="rgb(0,205,60)" rx="2" ry="2" /> +<text x="226.29" y="863.5" >libgit_clone_to_tmp</text> +</g> +<g > +<title>dentry_unlink_inode (10,101,010 samples, 0.04%)</title><rect x="187.2" y="613" width="0.5" height="15.0" fill="rgb(0,195,121)" rx="2" ry="2" /> +<text x="190.21" y="623.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.04%)</title><rect x="72.1" y="709" width="0.5" height="15.0" fill="rgb(0,197,55)" rx="2" ry="2" /> +<text x="75.08" y="719.5" ></text> +</g> +<g > +<title>__napi_poll (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="373" width="0.5" height="15.0" fill="rgb(0,229,95)" rx="2" ry="2" /> +<text x="1342.07" y="383.5" ></text> +</g> +<g > +<title>dup_mmap (282,828,280 samples, 1.08%)</title><rect x="512.4" y="677" width="14.9" height="15.0" fill="rgb(0,211,79)" rx="2" ry="2" /> +<text x="515.45" y="687.5" ></text> +</g> +<g > +<title>vfs_unlink (10,101,010 samples, 0.04%)</title><rect x="162.8" y="629" width="0.5" height="15.0" fill="rgb(0,199,164)" rx="2" ry="2" /> +<text x="165.80" y="639.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="357.5" y="517" width="0.6" height="15.0" fill="rgb(0,202,204)" rx="2" ry="2" /> +<text x="360.52" y="527.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="504.0" y="693" width="0.5" height="15.0" fill="rgb(0,204,65)" rx="2" ry="2" /> +<text x="506.96" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="431.8" y="709" width="0.5" height="15.0" fill="rgb(0,212,157)" rx="2" ry="2" /> +<text x="434.80" y="719.5" ></text> +</g> +<g > +<title>ci_run_script (1,727,272,710 samples, 6.57%)</title><rect x="509.8" y="853" width="90.7" height="15.0" fill="rgb(0,221,201)" rx="2" ry="2" /> +<text x="512.79" y="863.5" >ci_run_scr..</text> +</g> +<g > +<title>ext4_inode_journal_mode (10,101,010 samples, 0.04%)</title><rect x="140.5" y="485" width="0.5" height="15.0" fill="rgb(0,229,145)" rx="2" ry="2" /> +<text x="143.52" y="495.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="134.2" y="437" width="0.5" height="15.0" fill="rgb(0,216,101)" rx="2" ry="2" /> +<text x="137.15" y="447.5" ></text> +</g> +<g > +<title>__sys_socket (30,303,030 samples, 0.12%)</title><rect x="1372.5" y="805" width="1.6" height="15.0" fill="rgb(0,201,55)" rx="2" ry="2" /> +<text x="1375.49" y="815.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="432.9" y="453" width="0.5" height="15.0" fill="rgb(0,210,27)" rx="2" ry="2" /> +<text x="435.86" y="463.5" ></text> +</g> +<g > +<title>__vfs_getxattr (10,101,010 samples, 0.04%)</title><rect x="439.8" y="453" width="0.5" height="15.0" fill="rgb(0,224,150)" rx="2" ry="2" /> +<text x="442.76" y="463.5" ></text> +</g> +<g > +<title>hook_inode_free_security (10,101,010 samples, 0.04%)</title><rect x="131.5" y="517" width="0.5" height="15.0" fill="rgb(0,216,167)" rx="2" ry="2" /> +<text x="134.50" y="527.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (111,111,110 samples, 0.42%)</title><rect x="37.1" y="549" width="5.8" height="15.0" fill="rgb(0,228,143)" rx="2" ry="2" /> +<text x="40.06" y="559.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="581" width="0.5" height="15.0" fill="rgb(0,203,169)" rx="2" ry="2" /> +<text x="1389.82" y="591.5" ></text> +</g> +<g > +<title>proc_output_destroy (10,101,010 samples, 0.04%)</title><rect x="1374.1" y="885" width="0.5" height="15.0" fill="rgb(0,203,50)" rx="2" ry="2" /> +<text x="1377.08" y="895.5" ></text> +</g> +<g > +<title>ext4_unlink (80,808,080 samples, 0.31%)</title><rect x="105.5" y="565" width="4.2" height="15.0" fill="rgb(0,231,30)" rx="2" ry="2" /> +<text x="108.50" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.15%)</title><rect x="1383.6" y="821" width="2.2" height="15.0" fill="rgb(0,234,128)" rx="2" ry="2" /> +<text x="1386.63" y="831.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="219.6" y="693" width="1.0" height="15.0" fill="rgb(0,223,81)" rx="2" ry="2" /> +<text x="222.57" y="703.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="437.1" y="437" width="0.5" height="15.0" fill="rgb(0,231,53)" rx="2" ry="2" /> +<text x="440.10" y="447.5" ></text> +</g> +<g > +<title>opendir (50,505,050 samples, 0.19%)</title><rect x="244.5" y="725" width="2.7" height="15.0" fill="rgb(0,200,86)" rx="2" ry="2" /> +<text x="247.51" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (151,515,150 samples, 0.58%)</title><rect x="280.1" y="693" width="7.9" height="15.0" fill="rgb(0,196,181)" rx="2" ry="2" /> +<text x="283.06" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="489.1" y="629" width="1.1" height="15.0" fill="rgb(0,195,76)" rx="2" ry="2" /> +<text x="492.10" y="639.5" ></text> +</g> +<g > +<title>dentry_kill (70,707,070 samples, 0.27%)</title><rect x="268.4" y="597" width="3.7" height="15.0" fill="rgb(0,213,9)" rx="2" ry="2" /> +<text x="271.39" y="607.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="94.9" y="421" width="0.5" height="15.0" fill="rgb(0,224,107)" rx="2" ry="2" /> +<text x="97.89" y="431.5" ></text> +</g> +<g > +<title>git_repository_open_ext (121,212,120 samples, 0.46%)</title><rect x="358.1" y="757" width="6.3" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="361.05" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (1,767,676,750 samples, 6.73%)</title><rect x="223.3" y="789" width="92.8" height="15.0" fill="rgb(0,215,32)" rx="2" ry="2" /> +<text x="226.29" y="799.5" >[libgit2.so..</text> +</g> +<g > +<title>__block_commit_write.constprop.0.isra.0 (10,101,010 samples, 0.04%)</title><rect x="206.3" y="533" width="0.5" height="15.0" fill="rgb(0,203,157)" rx="2" ry="2" /> +<text x="209.31" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="492.3" y="757" width="0.5" height="15.0" fill="rgb(0,191,96)" rx="2" ry="2" /> +<text x="495.28" y="767.5" ></text> +</g> +<g > +<title>do_unlinkat (121,212,120 samples, 0.46%)</title><rect x="103.4" y="597" width="6.3" height="15.0" fill="rgb(0,231,24)" rx="2" ry="2" /> +<text x="106.38" y="607.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="317.2" y="565" width="0.5" height="15.0" fill="rgb(0,238,189)" rx="2" ry="2" /> +<text x="320.20" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="345.8" y="741" width="0.6" height="15.0" fill="rgb(0,234,161)" rx="2" ry="2" /> +<text x="348.85" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.23%)</title><rect x="153.3" y="693" width="3.1" height="15.0" fill="rgb(0,237,55)" rx="2" ry="2" /> +<text x="156.25" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.31%)</title><rect x="239.2" y="693" width="4.2" height="15.0" fill="rgb(0,201,190)" rx="2" ry="2" /> +<text x="242.20" y="703.5" ></text> +</g> +<g > +<title>wait_on_page_writeback (10,101,010 samples, 0.04%)</title><rect x="332.6" y="485" width="0.5" height="15.0" fill="rgb(0,231,55)" rx="2" ry="2" /> +<text x="335.58" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="281.6" y="629" width="1.1" height="15.0" fill="rgb(0,207,126)" rx="2" ry="2" /> +<text x="284.65" y="639.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="709" width="0.5" height="15.0" fill="rgb(0,190,192)" rx="2" ry="2" /> +<text x="1388.76" y="719.5" ></text> +</g> +<g > +<title>ext4_bread (20,202,020 samples, 0.08%)</title><rect x="120.9" y="533" width="1.0" height="15.0" fill="rgb(0,225,45)" rx="2" ry="2" /> +<text x="123.89" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="347.4" y="661" width="2.2" height="15.0" fill="rgb(0,224,45)" rx="2" ry="2" /> +<text x="350.44" y="671.5" ></text> +</g> +<g > +<title>handle_pte_fault (10,101,010 samples, 0.04%)</title><rect x="596.8" y="677" width="0.5" height="15.0" fill="rgb(0,199,204)" rx="2" ry="2" /> +<text x="599.81" y="687.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.04%)</title><rect x="444.0" y="597" width="0.5" height="15.0" fill="rgb(0,201,43)" rx="2" ry="2" /> +<text x="447.00" y="607.5" ></text> +</g> +<g > +<title>__ip_finish_output (10,101,010 samples, 0.04%)</title><rect x="1387.3" y="613" width="0.6" height="15.0" fill="rgb(0,203,120)" rx="2" ry="2" /> +<text x="1390.35" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="392.0" y="613" width="1.6" height="15.0" fill="rgb(0,223,172)" rx="2" ry="2" /> +<text x="395.01" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="206.3" y="741" width="2.1" height="15.0" fill="rgb(0,200,192)" rx="2" ry="2" /> +<text x="209.31" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="485.9" y="773" width="0.5" height="15.0" fill="rgb(0,198,117)" rx="2" ry="2" /> +<text x="488.92" y="783.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (10,101,010 samples, 0.04%)</title><rect x="334.2" y="469" width="0.5" height="15.0" fill="rgb(0,196,106)" rx="2" ry="2" /> +<text x="337.18" y="479.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.04%)</title><rect x="307.1" y="501" width="0.5" height="15.0" fill="rgb(0,226,156)" rx="2" ry="2" /> +<text x="310.12" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="293.3" y="677" width="1.1" height="15.0" fill="rgb(0,209,72)" rx="2" ry="2" /> +<text x="296.32" y="687.5" ></text> +</g> +<g > +<title>evict (20,202,020 samples, 0.08%)</title><rect x="309.2" y="517" width="1.1" height="15.0" fill="rgb(0,219,23)" rx="2" ry="2" /> +<text x="312.24" y="527.5" ></text> +</g> +<g > +<title>hook_inode_free_security (10,101,010 samples, 0.04%)</title><rect x="1384.2" y="581" width="0.5" height="15.0" fill="rgb(0,204,75)" rx="2" ry="2" /> +<text x="1387.16" y="591.5" ></text> +</g> +<g > +<title>handle_pte_fault (10,101,010 samples, 0.04%)</title><rect x="534.2" y="709" width="0.5" height="15.0" fill="rgb(0,231,156)" rx="2" ry="2" /> +<text x="537.20" y="719.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="293.9" y="661" width="0.5" height="15.0" fill="rgb(0,225,64)" rx="2" ry="2" /> +<text x="296.85" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="87.5" y="597" width="0.5" height="15.0" fill="rgb(0,198,107)" rx="2" ry="2" /> +<text x="90.46" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="220.6" y="661" width="1.1" height="15.0" fill="rgb(0,238,139)" rx="2" ry="2" /> +<text x="223.63" y="671.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="317.2" y="693" width="1.1" height="15.0" fill="rgb(0,236,189)" rx="2" ry="2" /> +<text x="320.20" y="703.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (30,303,030 samples, 0.12%)</title><rect x="268.4" y="485" width="1.6" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="271.39" y="495.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="126.7" y="549" width="1.1" height="15.0" fill="rgb(0,214,163)" rx="2" ry="2" /> +<text x="129.72" y="559.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="18.0" y="837" width="0.5" height="15.0" fill="rgb(0,207,123)" rx="2" ry="2" /> +<text x="20.96" y="847.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (10,101,010 samples, 0.04%)</title><rect x="414.8" y="469" width="0.6" height="15.0" fill="rgb(0,224,93)" rx="2" ry="2" /> +<text x="417.82" y="479.5" ></text> +</g> +<g > +<title>pte_alloc_one (10,101,010 samples, 0.04%)</title><rect x="520.9" y="597" width="0.6" height="15.0" fill="rgb(0,192,209)" rx="2" ry="2" /> +<text x="523.93" y="607.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.04%)</title><rect x="339.5" y="549" width="0.5" height="15.0" fill="rgb(0,224,107)" rx="2" ry="2" /> +<text x="342.48" y="559.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="282.7" y="549" width="0.5" height="15.0" fill="rgb(0,237,45)" rx="2" ry="2" /> +<text x="285.71" y="559.5" ></text> +</g> +<g > +<title>__d_lookup_done (10,101,010 samples, 0.04%)</title><rect x="378.7" y="549" width="0.6" height="15.0" fill="rgb(0,205,175)" rx="2" ry="2" /> +<text x="381.74" y="559.5" ></text> +</g> +<g > +<title>ip_finish_output (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="501" width="0.6" height="15.0" fill="rgb(0,214,87)" rx="2" ry="2" /> +<text x="1388.22" y="511.5" ></text> +</g> +<g > +<title>brk (10,101,010 samples, 0.04%)</title><rect x="619.6" y="773" width="0.5" height="15.0" fill="rgb(0,192,102)" rx="2" ry="2" /> +<text x="622.62" y="783.5" ></text> +</g> +<g > +<title>json_set_string (616,161,610 samples, 2.35%)</title><rect x="900.3" y="853" width="32.4" height="15.0" fill="rgb(0,208,112)" rx="2" ry="2" /> +<text x="903.29" y="863.5" >js..</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="345.3" y="741" width="0.5" height="15.0" fill="rgb(0,215,27)" rx="2" ry="2" /> +<text x="348.32" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="15.8" y="837" width="0.6" height="15.0" fill="rgb(0,201,184)" rx="2" ry="2" /> +<text x="18.84" y="847.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="347.4" y="613" width="1.1" height="15.0" fill="rgb(0,215,103)" rx="2" ry="2" /> +<text x="350.44" y="623.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.04%)</title><rect x="381.4" y="533" width="0.5" height="15.0" fill="rgb(0,211,79)" rx="2" ry="2" /> +<text x="384.40" y="543.5" ></text> +</g> +<g > +<title>git_refdb_backend_fs (40,404,040 samples, 0.15%)</title><rect x="483.3" y="741" width="2.1" height="15.0" fill="rgb(0,215,90)" rx="2" ry="2" /> +<text x="486.26" y="751.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (10,101,010 samples, 0.04%)</title><rect x="303.4" y="501" width="0.5" height="15.0" fill="rgb(0,210,119)" rx="2" ry="2" /> +<text x="306.40" y="511.5" ></text> +</g> +<g > +<title>__alloc_pages (70,707,070 samples, 0.27%)</title><rect x="925.2" y="661" width="3.7" height="15.0" fill="rgb(0,221,171)" rx="2" ry="2" /> +<text x="928.22" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="302.3" y="645" width="3.2" height="15.0" fill="rgb(0,203,118)" rx="2" ry="2" /> +<text x="305.34" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="363.9" y="629" width="0.5" height="15.0" fill="rgb(0,207,159)" rx="2" ry="2" /> +<text x="366.89" y="639.5" ></text> +</g> +<g > +<title>page_counter_cancel (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="389" width="0.5" height="15.0" fill="rgb(0,238,176)" rx="2" ry="2" /> +<text x="1389.82" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="468.9" y="741" width="0.6" height="15.0" fill="rgb(0,220,152)" rx="2" ry="2" /> +<text x="471.94" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="279.0" y="693" width="0.5" height="15.0" fill="rgb(0,233,29)" rx="2" ry="2" /> +<text x="282.00" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="379.3" y="709" width="1.0" height="15.0" fill="rgb(0,229,202)" rx="2" ry="2" /> +<text x="382.27" y="719.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="23.3" y="933" width="0.5" height="15.0" fill="rgb(0,235,208)" rx="2" ry="2" /> +<text x="26.26" y="943.5" ></text> +</g> +<g > +<title>vm_area_dup (40,404,040 samples, 0.15%)</title><rect x="523.6" y="661" width="2.1" height="15.0" fill="rgb(0,211,184)" rx="2" ry="2" /> +<text x="526.59" y="671.5" ></text> +</g> +<g > +<title>mb_mark_used (10,101,010 samples, 0.04%)</title><rect x="508.2" y="533" width="0.5" height="15.0" fill="rgb(0,229,24)" rx="2" ry="2" /> +<text x="511.20" y="543.5" ></text> +</g> +<g > +<title>json_has (10,101,010 samples, 0.04%)</title><rect x="1378.3" y="773" width="0.6" height="15.0" fill="rgb(0,195,194)" rx="2" ry="2" /> +<text x="1381.33" y="783.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.04%)</title><rect x="414.8" y="437" width="0.6" height="15.0" fill="rgb(0,202,66)" rx="2" ry="2" /> +<text x="417.82" y="447.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.12%)</title><rect x="934.8" y="613" width="1.6" height="15.0" fill="rgb(0,231,122)" rx="2" ry="2" /> +<text x="937.78" y="623.5" ></text> +</g> +<g > +<title>wait4 (20,202,020 samples, 0.08%)</title><rect x="598.9" y="805" width="1.1" height="15.0" fill="rgb(0,214,3)" rx="2" ry="2" /> +<text x="601.93" y="815.5" ></text> +</g> +<g > +<title>irq_exit_rcu (30,303,030 samples, 0.12%)</title><rect x="1297.7" y="725" width="1.6" height="15.0" fill="rgb(0,232,152)" rx="2" ry="2" /> +<text x="1300.68" y="735.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.08%)</title><rect x="420.7" y="581" width="1.0" height="15.0" fill="rgb(0,210,179)" rx="2" ry="2" /> +<text x="423.66" y="591.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (30,303,030 samples, 0.12%)</title><rect x="93.8" y="533" width="1.6" height="15.0" fill="rgb(0,229,146)" rx="2" ry="2" /> +<text x="96.83" y="543.5" ></text> +</g> +<g > +<title>make_pollfds (10,101,010 samples, 0.04%)</title><rect x="1378.9" y="869" width="0.5" height="15.0" fill="rgb(0,216,191)" rx="2" ry="2" /> +<text x="1381.86" y="879.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (20,202,020 samples, 0.08%)</title><rect x="436.0" y="293" width="1.1" height="15.0" fill="rgb(0,234,88)" rx="2" ry="2" /> +<text x="439.04" y="303.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="494.4" y="661" width="0.5" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="497.41" y="671.5" ></text> +</g> +<g > +<title>prepare_creds (20,202,020 samples, 0.08%)</title><rect x="77.4" y="869" width="1.0" height="15.0" fill="rgb(0,206,73)" rx="2" ry="2" /> +<text x="80.38" y="879.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="38.7" y="117" width="0.5" height="15.0" fill="rgb(0,199,153)" rx="2" ry="2" /> +<text x="41.65" y="127.5" ></text> +</g> +<g > +<title>try_to_free_buffers (10,101,010 samples, 0.04%)</title><rect x="187.2" y="421" width="0.5" height="15.0" fill="rgb(0,234,153)" rx="2" ry="2" /> +<text x="190.21" y="431.5" ></text> +</g> +<g > +<title>percpu_counter_add_batch (10,101,010 samples, 0.04%)</title><rect x="429.1" y="469" width="0.6" height="15.0" fill="rgb(0,212,36)" rx="2" ry="2" /> +<text x="432.15" y="479.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.04%)</title><rect x="148.5" y="565" width="0.5" height="15.0" fill="rgb(0,209,203)" rx="2" ry="2" /> +<text x="151.48" y="575.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="168.1" y="453" width="0.5" height="15.0" fill="rgb(0,191,18)" rx="2" ry="2" /> +<text x="171.11" y="463.5" ></text> +</g> +<g > +<title>path_parentat (20,202,020 samples, 0.08%)</title><rect x="161.7" y="613" width="1.1" height="15.0" fill="rgb(0,222,163)" rx="2" ry="2" /> +<text x="164.74" y="623.5" ></text> +</g> +<g > +<title>__mod_lruvec_page_state (10,101,010 samples, 0.04%)</title><rect x="941.1" y="549" width="0.6" height="15.0" fill="rgb(0,191,133)" rx="2" ry="2" /> +<text x="944.14" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="500.8" y="645" width="1.6" height="15.0" fill="rgb(0,229,4)" rx="2" ry="2" /> +<text x="503.77" y="655.5" ></text> +</g> +<g > +<title>__mem_cgroup_charge (20,202,020 samples, 0.08%)</title><rect x="614.3" y="725" width="1.1" height="15.0" fill="rgb(0,194,200)" rx="2" ry="2" /> +<text x="617.31" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="212.1" y="757" width="2.2" height="15.0" fill="rgb(0,204,134)" rx="2" ry="2" /> +<text x="215.15" y="767.5" ></text> +</g> +<g > +<title>uncharge_batch (10,101,010 samples, 0.04%)</title><rect x="434.5" y="405" width="0.5" height="15.0" fill="rgb(0,229,45)" rx="2" ry="2" /> +<text x="437.45" y="415.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.08%)</title><rect x="382.5" y="517" width="1.0" height="15.0" fill="rgb(0,215,177)" rx="2" ry="2" /> +<text x="385.46" y="527.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (20,202,020 samples, 0.08%)</title><rect x="12.1" y="325" width="1.1" height="15.0" fill="rgb(0,195,69)" rx="2" ry="2" /> +<text x="15.12" y="335.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.04%)</title><rect x="180.3" y="597" width="0.5" height="15.0" fill="rgb(0,200,165)" rx="2" ry="2" /> +<text x="183.31" y="607.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="72.6" y="757" width="0.5" height="15.0" fill="rgb(0,218,209)" rx="2" ry="2" /> +<text x="75.61" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.08%)</title><rect x="348.5" y="597" width="1.1" height="15.0" fill="rgb(0,209,17)" rx="2" ry="2" /> +<text x="351.50" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="316.7" y="661" width="0.5" height="15.0" fill="rgb(0,208,106)" rx="2" ry="2" /> +<text x="319.67" y="671.5" ></text> +</g> +<g > +<title>vma_interval_tree_insert_after (30,303,030 samples, 0.12%)</title><rect x="525.7" y="661" width="1.6" height="15.0" fill="rgb(0,201,31)" rx="2" ry="2" /> +<text x="528.71" y="671.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="342.1" y="421" width="0.6" height="15.0" fill="rgb(0,208,66)" rx="2" ry="2" /> +<text x="345.13" y="431.5" ></text> +</g> +<g > +<title>__close_nocancel (10,101,010 samples, 0.04%)</title><rect x="149.0" y="741" width="0.5" height="15.0" fill="rgb(0,231,155)" rx="2" ry="2" /> +<text x="152.01" y="751.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.04%)</title><rect x="94.9" y="405" width="0.5" height="15.0" fill="rgb(0,200,188)" rx="2" ry="2" /> +<text x="97.89" y="415.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.04%)</title><rect x="185.6" y="453" width="0.5" height="15.0" fill="rgb(0,219,141)" rx="2" ry="2" /> +<text x="188.62" y="463.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="502.9" y="629" width="0.5" height="15.0" fill="rgb(0,208,144)" rx="2" ry="2" /> +<text x="505.90" y="639.5" ></text> +</g> +<g > +<title>rename (40,404,040 samples, 0.15%)</title><rect x="414.8" y="677" width="2.1" height="15.0" fill="rgb(0,213,110)" rx="2" ry="2" /> +<text x="417.82" y="687.5" ></text> +</g> +<g > +<title>__alloc_skb (10,101,010 samples, 0.04%)</title><rect x="36.5" y="549" width="0.6" height="15.0" fill="rgb(0,206,167)" rx="2" ry="2" /> +<text x="39.53" y="559.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="341.6" y="453" width="0.5" height="15.0" fill="rgb(0,231,25)" rx="2" ry="2" /> +<text x="344.60" y="463.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="1375.1" y="741" width="0.6" height="15.0" fill="rgb(0,230,39)" rx="2" ry="2" /> +<text x="1378.14" y="751.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (10,101,010 samples, 0.04%)</title><rect x="222.8" y="821" width="0.5" height="15.0" fill="rgb(0,224,24)" rx="2" ry="2" /> +<text x="225.76" y="831.5" ></text> +</g> +<g > +<title>ext4_es_insert_extent (10,101,010 samples, 0.04%)</title><rect x="460.4" y="565" width="0.6" height="15.0" fill="rgb(0,213,25)" rx="2" ry="2" /> +<text x="463.45" y="575.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="307.1" y="581" width="0.5" height="15.0" fill="rgb(0,193,100)" rx="2" ry="2" /> +<text x="310.12" y="591.5" ></text> +</g> +<g > +<title>filemap_flush (30,303,030 samples, 0.12%)</title><rect x="436.0" y="533" width="1.6" height="15.0" fill="rgb(0,198,205)" rx="2" ry="2" /> +<text x="439.04" y="543.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="452.5" y="357" width="0.5" height="15.0" fill="rgb(0,225,176)" rx="2" ry="2" /> +<text x="455.49" y="367.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="102.8" y="629" width="0.6" height="15.0" fill="rgb(0,234,193)" rx="2" ry="2" /> +<text x="105.85" y="639.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.08%)</title><rect x="237.6" y="565" width="1.1" height="15.0" fill="rgb(0,196,30)" rx="2" ry="2" /> +<text x="240.61" y="575.5" ></text> +</g> +<g > +<title>get_obj_cgroup_from_current (10,101,010 samples, 0.04%)</title><rect x="428.1" y="517" width="0.5" height="15.0" fill="rgb(0,235,135)" rx="2" ry="2" /> +<text x="431.09" y="527.5" ></text> +</g> +<g > +<title>tcp_current_mss (10,101,010 samples, 0.04%)</title><rect x="1381.5" y="645" width="0.5" height="15.0" fill="rgb(0,193,57)" rx="2" ry="2" /> +<text x="1384.51" y="655.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (10,101,010 samples, 0.04%)</title><rect x="415.9" y="549" width="0.5" height="15.0" fill="rgb(0,236,61)" rx="2" ry="2" /> +<text x="418.88" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="361.2" y="677" width="3.2" height="15.0" fill="rgb(0,205,26)" rx="2" ry="2" /> +<text x="364.23" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="114.0" y="677" width="1.1" height="15.0" fill="rgb(0,199,95)" rx="2" ry="2" /> +<text x="116.99" y="687.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (20,202,020 samples, 0.08%)</title><rect x="436.0" y="341" width="1.1" height="15.0" fill="rgb(0,196,27)" rx="2" ry="2" /> +<text x="439.04" y="351.5" ></text> +</g> +<g > +<title>path_lookupat (60,606,060 samples, 0.23%)</title><rect x="79.0" y="837" width="3.2" height="15.0" fill="rgb(0,220,138)" rx="2" ry="2" /> +<text x="81.97" y="847.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="297.6" y="565" width="0.5" height="15.0" fill="rgb(0,237,97)" rx="2" ry="2" /> +<text x="300.57" y="575.5" ></text> +</g> +<g > +<title>do_sys_openat2 (30,303,030 samples, 0.12%)</title><rect x="245.0" y="645" width="1.6" height="15.0" fill="rgb(0,220,84)" rx="2" ry="2" /> +<text x="248.04" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (434,343,430 samples, 1.65%)</title><rect x="192.0" y="805" width="22.8" height="15.0" fill="rgb(0,214,162)" rx="2" ry="2" /> +<text x="194.98" y="815.5" >[..</text> +</g> +<g > +<title>exc_page_fault (181,818,180 samples, 0.69%)</title><rect x="888.6" y="821" width="9.6" height="15.0" fill="rgb(0,222,3)" rx="2" ry="2" /> +<text x="891.62" y="831.5" ></text> +</g> +<g > +<title>anon_vma_fork (40,404,040 samples, 0.15%)</title><rect x="513.5" y="661" width="2.1" height="15.0" fill="rgb(0,209,138)" rx="2" ry="2" /> +<text x="516.51" y="671.5" ></text> +</g> +<g > +<title>dup_mm (323,232,320 samples, 1.23%)</title><rect x="511.9" y="693" width="17.0" height="15.0" fill="rgb(0,199,48)" rx="2" ry="2" /> +<text x="514.91" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="603.7" y="805" width="0.5" height="15.0" fill="rgb(0,226,44)" rx="2" ry="2" /> +<text x="606.70" y="815.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="53" width="0.5" height="15.0" fill="rgb(0,198,158)" rx="2" ry="2" /> +<text x="1370.19" y="63.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.04%)</title><rect x="149.0" y="693" width="0.5" height="15.0" fill="rgb(0,207,154)" rx="2" ry="2" /> +<text x="152.01" y="703.5" ></text> +</g> +<g > +<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.04%)</title><rect x="413.8" y="373" width="0.5" height="15.0" fill="rgb(0,192,115)" rx="2" ry="2" /> +<text x="416.76" y="383.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="183.5" y="709" width="1.1" height="15.0" fill="rgb(0,232,3)" rx="2" ry="2" /> +<text x="186.49" y="719.5" ></text> +</g> +<g > +<title>__ip_finish_output (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="469" width="0.5" height="15.0" fill="rgb(0,218,157)" rx="2" ry="2" /> +<text x="1342.07" y="479.5" ></text> +</g> +<g > +<title>destroy_inode (10,101,010 samples, 0.04%)</title><rect x="369.7" y="549" width="0.6" height="15.0" fill="rgb(0,205,62)" rx="2" ry="2" /> +<text x="372.72" y="559.5" ></text> +</g> +<g > +<title>do_mkdirat (90,909,090 samples, 0.35%)</title><rect x="54.6" y="853" width="4.7" height="15.0" fill="rgb(0,193,54)" rx="2" ry="2" /> +<text x="57.57" y="863.5" ></text> +</g> +<g > +<title>call_rcu (10,101,010 samples, 0.04%)</title><rect x="167.0" y="405" width="0.6" height="15.0" fill="rgb(0,207,188)" rx="2" ry="2" /> +<text x="170.05" y="415.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.04%)</title><rect x="187.7" y="373" width="0.6" height="15.0" fill="rgb(0,194,208)" rx="2" ry="2" /> +<text x="190.74" y="383.5" ></text> +</g> +<g > +<title>io_schedule (10,101,010 samples, 0.04%)</title><rect x="448.2" y="421" width="0.6" height="15.0" fill="rgb(0,196,111)" rx="2" ry="2" /> +<text x="451.25" y="431.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="420.1" y="597" width="0.6" height="15.0" fill="rgb(0,212,179)" rx="2" ry="2" /> +<text x="423.13" y="607.5" ></text> +</g> +<g > +<title>file_read (1,262,626,250 samples, 4.81%)</title><rect x="531.5" y="821" width="66.4" height="15.0" fill="rgb(0,232,141)" rx="2" ry="2" /> +<text x="534.55" y="831.5" >file_read</text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="307.1" y="645" width="0.5" height="15.0" fill="rgb(0,236,1)" rx="2" ry="2" /> +<text x="310.12" y="655.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="302.9" y="517" width="0.5" height="15.0" fill="rgb(0,193,17)" rx="2" ry="2" /> +<text x="305.87" y="527.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="216.4" y="677" width="0.5" height="15.0" fill="rgb(0,193,17)" rx="2" ry="2" /> +<text x="219.39" y="687.5" ></text> +</g> +<g > +<title>__ext4_new_inode (10,101,010 samples, 0.04%)</title><rect x="55.6" y="805" width="0.6" height="15.0" fill="rgb(0,232,13)" rx="2" ry="2" /> +<text x="58.63" y="815.5" ></text> +</g> +<g > +<title>skb_clone (10,101,010 samples, 0.04%)</title><rect x="14.2" y="645" width="0.6" height="15.0" fill="rgb(0,226,75)" rx="2" ry="2" /> +<text x="17.24" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.04%)</title><rect x="303.4" y="581" width="0.5" height="15.0" fill="rgb(0,228,41)" rx="2" ry="2" /> +<text x="306.40" y="591.5" ></text> +</g> +<g > +<title>new_sync_write (20,202,020 samples, 0.08%)</title><rect x="439.8" y="565" width="1.0" height="15.0" fill="rgb(0,225,190)" rx="2" ry="2" /> +<text x="442.76" y="575.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (30,303,030 samples, 0.12%)</title><rect x="331.5" y="517" width="1.6" height="15.0" fill="rgb(0,192,44)" rx="2" ry="2" /> +<text x="334.52" y="527.5" ></text> +</g> +<g > +<title>__napi_poll (30,303,030 samples, 0.12%)</title><rect x="1365.1" y="421" width="1.6" height="15.0" fill="rgb(0,233,140)" rx="2" ry="2" /> +<text x="1368.06" y="431.5" ></text> +</g> +<g > +<title>dentry_kill (30,303,030 samples, 0.12%)</title><rect x="369.7" y="629" width="1.6" height="15.0" fill="rgb(0,198,68)" rx="2" ry="2" /> +<text x="372.72" y="639.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="355.4" y="517" width="0.5" height="15.0" fill="rgb(0,237,141)" rx="2" ry="2" /> +<text x="358.40" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="486.4" y="741" width="3.8" height="15.0" fill="rgb(0,206,208)" rx="2" ry="2" /> +<text x="489.45" y="751.5" ></text> +</g> +<g > +<title>__default_morecore (20,202,020 samples, 0.08%)</title><rect x="619.1" y="805" width="1.0" height="15.0" fill="rgb(0,214,191)" rx="2" ry="2" /> +<text x="622.09" y="815.5" ></text> +</g> +<g > +<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="13.7" y="453" width="0.5" height="15.0" fill="rgb(0,195,84)" rx="2" ry="2" /> +<text x="16.71" y="463.5" ></text> +</g> +<g > +<title>__dentry_kill (40,404,040 samples, 0.15%)</title><rect x="433.9" y="565" width="2.1" height="15.0" fill="rgb(0,207,150)" rx="2" ry="2" /> +<text x="436.92" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="287.0" y="645" width="1.0" height="15.0" fill="rgb(0,228,154)" rx="2" ry="2" /> +<text x="289.96" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="208.4" y="693" width="1.6" height="15.0" fill="rgb(0,223,9)" rx="2" ry="2" /> +<text x="211.43" y="703.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.04%)</title><rect x="887.6" y="661" width="0.5" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="890.55" y="671.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="88.5" y="485" width="0.6" height="15.0" fill="rgb(0,220,43)" rx="2" ry="2" /> +<text x="91.52" y="495.5" ></text> +</g> +<g > +<title>tcp_data_ready (10,101,010 samples, 0.04%)</title><rect x="1365.6" y="229" width="0.5" height="15.0" fill="rgb(0,199,153)" rx="2" ry="2" /> +<text x="1368.59" y="239.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="342.1" y="405" width="0.6" height="15.0" fill="rgb(0,210,82)" rx="2" ry="2" /> +<text x="345.13" y="415.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="303.9" y="597" width="1.6" height="15.0" fill="rgb(0,223,107)" rx="2" ry="2" /> +<text x="306.93" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="185.6" y="693" width="1.6" height="15.0" fill="rgb(0,208,24)" rx="2" ry="2" /> +<text x="188.62" y="703.5" ></text> +</g> +<g > +<title>d_alloc_parallel (20,202,020 samples, 0.08%)</title><rect x="255.7" y="565" width="1.0" height="15.0" fill="rgb(0,205,126)" rx="2" ry="2" /> +<text x="258.65" y="575.5" ></text> +</g> +<g > +<title>read_hv_clock_tsc (10,101,010 samples, 0.04%)</title><rect x="22.2" y="853" width="0.5" height="15.0" fill="rgb(0,201,172)" rx="2" ry="2" /> +<text x="25.20" y="863.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.04%)</title><rect x="88.5" y="533" width="0.6" height="15.0" fill="rgb(0,230,61)" rx="2" ry="2" /> +<text x="91.52" y="543.5" ></text> +</g> +<g > +<title>__open64_nocancel (10,101,010 samples, 0.04%)</title><rect x="352.7" y="613" width="0.6" height="15.0" fill="rgb(0,205,3)" rx="2" ry="2" /> +<text x="355.75" y="623.5" ></text> +</g> +<g > +<title>iput (30,303,030 samples, 0.12%)</title><rect x="447.2" y="549" width="1.6" height="15.0" fill="rgb(0,193,144)" rx="2" ry="2" /> +<text x="450.19" y="559.5" ></text> +</g> +<g > +<title>ext4_rename2 (80,808,080 samples, 0.31%)</title><rect x="272.1" y="597" width="4.2" height="15.0" fill="rgb(0,226,63)" rx="2" ry="2" /> +<text x="275.10" y="607.5" ></text> +</g> +<g > +<title>dev_hard_start_xmit (10,101,010 samples, 0.04%)</title><rect x="1381.0" y="437" width="0.5" height="15.0" fill="rgb(0,192,176)" rx="2" ry="2" /> +<text x="1383.98" y="447.5" ></text> +</g> +<g > +<title>unlink_cb (40,404,040 samples, 0.15%)</title><rect x="179.3" y="805" width="2.1" height="15.0" fill="rgb(0,228,173)" rx="2" ry="2" /> +<text x="182.25" y="815.5" ></text> +</g> +<g > +<title>_IO_file_write (20,202,020 samples, 0.08%)</title><rect x="1382.6" y="805" width="1.0" height="15.0" fill="rgb(0,211,156)" rx="2" ry="2" /> +<text x="1385.57" y="815.5" ></text> +</g> +<g > +<title>__x64_sys_write (60,606,060 samples, 0.23%)</title><rect x="423.8" y="693" width="3.2" height="15.0" fill="rgb(0,209,126)" rx="2" ry="2" /> +<text x="426.84" y="703.5" ></text> +</g> +<g > +<title>mempool_alloc (10,101,010 samples, 0.04%)</title><rect x="452.5" y="389" width="0.5" height="15.0" fill="rgb(0,192,123)" rx="2" ry="2" /> +<text x="455.49" y="399.5" ></text> +</g> +<g > +<title>evict (10,101,010 samples, 0.04%)</title><rect x="35.5" y="581" width="0.5" height="15.0" fill="rgb(0,232,19)" rx="2" ry="2" /> +<text x="38.47" y="591.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (30,303,030 samples, 0.12%)</title><rect x="124.6" y="597" width="1.6" height="15.0" fill="rgb(0,197,125)" rx="2" ry="2" /> +<text x="127.60" y="607.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="444.5" y="629" width="0.6" height="15.0" fill="rgb(0,217,196)" rx="2" ry="2" /> +<text x="447.53" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (303,030,300 samples, 1.15%)</title><rect x="260.4" y="725" width="15.9" height="15.0" fill="rgb(0,214,178)" rx="2" ry="2" /> +<text x="263.43" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="432.3" y="645" width="0.6" height="15.0" fill="rgb(0,211,155)" rx="2" ry="2" /> +<text x="435.33" y="655.5" ></text> +</g> +<g > +<title>ipv4_confirm (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="341" width="0.5" height="15.0" fill="rgb(0,235,163)" rx="2" ry="2" /> +<text x="1342.60" y="351.5" ></text> +</g> +<g > +<title>blk_finish_plug (10,101,010 samples, 0.04%)</title><rect x="334.2" y="501" width="0.5" height="15.0" fill="rgb(0,192,136)" rx="2" ry="2" /> +<text x="337.18" y="511.5" ></text> +</g> +<g > +<title>filename_create (20,202,020 samples, 0.08%)</title><rect x="240.3" y="629" width="1.0" height="15.0" fill="rgb(0,214,131)" rx="2" ry="2" /> +<text x="243.27" y="639.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.04%)</title><rect x="80.0" y="741" width="0.6" height="15.0" fill="rgb(0,232,151)" rx="2" ry="2" /> +<text x="83.03" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="115.1" y="677" width="1.0" height="15.0" fill="rgb(0,232,55)" rx="2" ry="2" /> +<text x="118.05" y="687.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (20,202,020 samples, 0.08%)</title><rect x="1382.6" y="869" width="1.0" height="15.0" fill="rgb(0,224,40)" rx="2" ry="2" /> +<text x="1385.57" y="879.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (10,101,010 samples, 0.04%)</title><rect x="187.7" y="581" width="0.6" height="15.0" fill="rgb(0,227,100)" rx="2" ry="2" /> +<text x="190.74" y="591.5" ></text> +</g> +<g > +<title>current_time (10,101,010 samples, 0.04%)</title><rect x="1383.1" y="645" width="0.5" height="15.0" fill="rgb(0,208,102)" rx="2" ry="2" /> +<text x="1386.10" y="655.5" ></text> +</g> +<g > +<title>__es_remove_extent (10,101,010 samples, 0.04%)</title><rect x="421.7" y="581" width="0.5" height="15.0" fill="rgb(0,212,14)" rx="2" ry="2" /> +<text x="424.72" y="591.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.04%)</title><rect x="86.9" y="517" width="0.6" height="15.0" fill="rgb(0,234,102)" rx="2" ry="2" /> +<text x="89.93" y="527.5" ></text> +</g> +<g > +<title>ext4_create (20,202,020 samples, 0.08%)</title><rect x="406.3" y="565" width="1.1" height="15.0" fill="rgb(0,205,111)" rx="2" ry="2" /> +<text x="409.33" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="480.6" y="677" width="0.5" height="15.0" fill="rgb(0,223,28)" rx="2" ry="2" /> +<text x="483.61" y="687.5" ></text> +</g> +<g > +<title>__inet_stream_connect (70,707,070 samples, 0.27%)</title><rect x="1368.8" y="757" width="3.7" height="15.0" fill="rgb(0,237,9)" rx="2" ry="2" /> +<text x="1371.78" y="767.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.04%)</title><rect x="253.0" y="597" width="0.5" height="15.0" fill="rgb(0,204,6)" rx="2" ry="2" /> +<text x="256.00" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="491.8" y="741" width="0.5" height="15.0" fill="rgb(0,191,199)" rx="2" ry="2" /> +<text x="494.75" y="751.5" ></text> +</g> +<g > +<title>generic_fillattr (10,101,010 samples, 0.04%)</title><rect x="490.2" y="597" width="0.5" height="15.0" fill="rgb(0,191,184)" rx="2" ry="2" /> +<text x="493.16" y="607.5" ></text> +</g> +<g > +<title>__es_insert_extent (10,101,010 samples, 0.04%)</title><rect x="413.8" y="389" width="0.5" height="15.0" fill="rgb(0,201,139)" rx="2" ry="2" /> +<text x="416.76" y="399.5" ></text> +</g> +<g > +<title>git_config_add_backend (20,202,020 samples, 0.08%)</title><rect x="198.9" y="709" width="1.0" height="15.0" fill="rgb(0,237,88)" rx="2" ry="2" /> +<text x="201.88" y="719.5" ></text> +</g> +<g > +<title>__wake_up (10,101,010 samples, 0.04%)</title><rect x="378.7" y="533" width="0.6" height="15.0" fill="rgb(0,214,172)" rx="2" ry="2" /> +<text x="381.74" y="543.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.04%)</title><rect x="396.8" y="565" width="0.5" height="15.0" fill="rgb(0,225,198)" rx="2" ry="2" /> +<text x="399.78" y="575.5" ></text> +</g> +<g > +<title>storvsc_on_io_completion (10,101,010 samples, 0.04%)</title><rect x="131.0" y="373" width="0.5" height="15.0" fill="rgb(0,197,180)" rx="2" ry="2" /> +<text x="133.97" y="383.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="151.1" y="597" width="0.6" height="15.0" fill="rgb(0,202,29)" rx="2" ry="2" /> +<text x="154.13" y="607.5" ></text> +</g> +<g > +<title>ip_queue_xmit (30,303,030 samples, 0.12%)</title><rect x="1368.8" y="613" width="1.6" height="15.0" fill="rgb(0,199,152)" rx="2" ry="2" /> +<text x="1371.78" y="623.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="160.1" y="469" width="0.6" height="15.0" fill="rgb(0,191,64)" rx="2" ry="2" /> +<text x="163.15" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="470.0" y="709" width="1.6" height="15.0" fill="rgb(0,217,193)" rx="2" ry="2" /> +<text x="473.00" y="719.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="215.9" y="597" width="0.5" height="15.0" fill="rgb(0,193,81)" rx="2" ry="2" /> +<text x="218.86" y="607.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (30,303,030 samples, 0.12%)</title><rect x="351.2" y="501" width="1.5" height="15.0" fill="rgb(0,208,57)" rx="2" ry="2" /> +<text x="354.15" y="511.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="387.2" y="469" width="0.6" height="15.0" fill="rgb(0,191,109)" rx="2" ry="2" /> +<text x="390.23" y="479.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="360.7" y="645" width="0.5" height="15.0" fill="rgb(0,218,13)" rx="2" ry="2" /> +<text x="363.70" y="655.5" ></text> +</g> +<g > +<title>mkdir (202,020,200 samples, 0.77%)</title><rect x="228.1" y="693" width="10.6" height="15.0" fill="rgb(0,226,31)" rx="2" ry="2" /> +<text x="231.06" y="703.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.04%)</title><rect x="334.2" y="373" width="0.5" height="15.0" fill="rgb(0,212,131)" rx="2" ry="2" /> +<text x="337.18" y="383.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.04%)</title><rect x="432.3" y="597" width="0.6" height="15.0" fill="rgb(0,191,154)" rx="2" ry="2" /> +<text x="435.33" y="607.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (161,616,160 samples, 0.62%)</title><rect x="34.4" y="757" width="8.5" height="15.0" fill="rgb(0,239,4)" rx="2" ry="2" /> +<text x="37.41" y="767.5" ></text> +</g> +<g > +<title>blk_mq_sched_insert_requests (10,101,010 samples, 0.04%)</title><rect x="343.7" y="453" width="0.6" height="15.0" fill="rgb(0,238,89)" rx="2" ry="2" /> +<text x="346.73" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.04%)</title><rect x="306.1" y="597" width="0.5" height="15.0" fill="rgb(0,225,177)" rx="2" ry="2" /> +<text x="309.06" y="607.5" ></text> +</g> +<g > +<title>ci_prepare_git_repo (6,232,323,170 samples, 23.72%)</title><rect x="181.9" y="869" width="327.4" height="15.0" fill="rgb(0,190,58)" rx="2" ry="2" /> +<text x="184.90" y="879.5" >ci_prepare_git_repo</text> +</g> +<g > +<title>jbd2_journal_get_create_access (10,101,010 samples, 0.04%)</title><rect x="232.8" y="501" width="0.6" height="15.0" fill="rgb(0,234,145)" rx="2" ry="2" /> +<text x="235.84" y="511.5" ></text> +</g> +<g > +<title>git_config_snapshot (40,404,040 samples, 0.15%)</title><rect x="358.1" y="741" width="2.1" height="15.0" fill="rgb(0,214,125)" rx="2" ry="2" /> +<text x="361.05" y="751.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="265.7" y="629" width="0.6" height="15.0" fill="rgb(0,222,141)" rx="2" ry="2" /> +<text x="268.73" y="639.5" ></text> +</g> +<g > +<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.04%)</title><rect x="452.0" y="389" width="0.5" height="15.0" fill="rgb(0,218,28)" rx="2" ry="2" /> +<text x="454.96" y="399.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="281.1" y="629" width="0.5" height="15.0" fill="rgb(0,230,24)" rx="2" ry="2" /> +<text x="284.12" y="639.5" ></text> +</g> +<g > +<title>git_signature_default (50,505,050 samples, 0.19%)</title><rect x="289.1" y="725" width="2.6" height="15.0" fill="rgb(0,190,3)" rx="2" ry="2" /> +<text x="292.08" y="735.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.04%)</title><rect x="887.6" y="709" width="0.5" height="15.0" fill="rgb(0,233,177)" rx="2" ry="2" /> +<text x="890.55" y="719.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="276.9" y="741" width="0.5" height="15.0" fill="rgb(0,229,37)" rx="2" ry="2" /> +<text x="279.87" y="751.5" ></text> +</g> +<g > +<title>ip_local_out (30,303,030 samples, 0.12%)</title><rect x="1386.8" y="661" width="1.6" height="15.0" fill="rgb(0,191,6)" rx="2" ry="2" /> +<text x="1389.82" y="671.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.04%)</title><rect x="378.2" y="373" width="0.5" height="15.0" fill="rgb(0,193,18)" rx="2" ry="2" /> +<text x="381.21" y="383.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="486.4" y="709" width="3.8" height="15.0" fill="rgb(0,219,151)" rx="2" ry="2" /> +<text x="489.45" y="719.5" ></text> +</g> +<g > +<title>ext4_orphan_add (10,101,010 samples, 0.04%)</title><rect x="96.0" y="517" width="0.5" height="15.0" fill="rgb(0,211,205)" rx="2" ry="2" /> +<text x="98.95" y="527.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (10,101,010 samples, 0.04%)</title><rect x="47.1" y="661" width="0.6" height="15.0" fill="rgb(0,198,5)" rx="2" ry="2" /> +<text x="50.14" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="186.1" y="581" width="0.6" height="15.0" fill="rgb(0,236,117)" rx="2" ry="2" /> +<text x="189.15" y="591.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.04%)</title><rect x="354.3" y="453" width="0.6" height="15.0" fill="rgb(0,204,116)" rx="2" ry="2" /> +<text x="357.34" y="463.5" ></text> +</g> +<g > +<title>nf_nat_inet_fn (10,101,010 samples, 0.04%)</title><rect x="1387.9" y="597" width="0.5" height="15.0" fill="rgb(0,226,78)" rx="2" ry="2" /> +<text x="1390.88" y="607.5" ></text> +</g> +<g > +<title>__dentry_kill (80,808,080 samples, 0.31%)</title><rect x="328.9" y="597" width="4.2" height="15.0" fill="rgb(0,221,65)" rx="2" ry="2" /> +<text x="331.87" y="607.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="288.0" y="629" width="0.5" height="15.0" fill="rgb(0,205,122)" rx="2" ry="2" /> +<text x="291.02" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="455.7" y="613" width="0.5" height="15.0" fill="rgb(0,200,123)" rx="2" ry="2" /> +<text x="458.67" y="623.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="645" width="0.5" height="15.0" fill="rgb(0,200,67)" rx="2" ry="2" /> +<text x="1389.82" y="655.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (10,101,010 samples, 0.04%)</title><rect x="14.8" y="853" width="0.5" height="15.0" fill="rgb(0,214,114)" rx="2" ry="2" /> +<text x="17.78" y="863.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="364.9" y="709" width="1.1" height="15.0" fill="rgb(0,201,185)" rx="2" ry="2" /> +<text x="367.95" y="719.5" ></text> +</g> +<g > +<title>apparmor_file_permission (10,101,010 samples, 0.04%)</title><rect x="118.2" y="613" width="0.6" height="15.0" fill="rgb(0,229,35)" rx="2" ry="2" /> +<text x="121.24" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.08%)</title><rect x="489.1" y="613" width="1.1" height="15.0" fill="rgb(0,211,86)" rx="2" ry="2" /> +<text x="492.10" y="623.5" ></text> +</g> +<g > +<title>vfs_open (20,202,020 samples, 0.08%)</title><rect x="501.3" y="533" width="1.1" height="15.0" fill="rgb(0,229,79)" rx="2" ry="2" /> +<text x="504.30" y="543.5" ></text> +</g> +<g > +<title>ext4_lookup.part.0 (30,303,030 samples, 0.12%)</title><rect x="428.6" y="565" width="1.6" height="15.0" fill="rgb(0,202,43)" rx="2" ry="2" /> +<text x="431.62" y="575.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.04%)</title><rect x="14.8" y="821" width="0.5" height="15.0" fill="rgb(0,215,62)" rx="2" ry="2" /> +<text x="17.78" y="831.5" ></text> +</g> +<g > +<title>asm_sysvec_reschedule_ipi (80,808,080 samples, 0.31%)</title><rect x="1299.8" y="757" width="4.2" height="15.0" fill="rgb(0,209,169)" rx="2" ry="2" /> +<text x="1302.80" y="767.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.04%)</title><rect x="504.5" y="709" width="0.5" height="15.0" fill="rgb(0,238,56)" rx="2" ry="2" /> +<text x="507.49" y="719.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.04%)</title><rect x="343.7" y="389" width="0.6" height="15.0" fill="rgb(0,206,17)" rx="2" ry="2" /> +<text x="346.73" y="399.5" ></text> +</g> +<g > +<title>_IO_file_write (20,202,020 samples, 0.08%)</title><rect x="48.7" y="805" width="1.1" height="15.0" fill="rgb(0,197,206)" rx="2" ry="2" /> +<text x="51.73" y="815.5" ></text> +</g> +<g > +<title>ext4_mkdir (222,222,220 samples, 0.85%)</title><rect x="454.6" y="661" width="11.7" height="15.0" fill="rgb(0,223,164)" rx="2" ry="2" /> +<text x="457.61" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (252,525,250 samples, 0.96%)</title><rect x="323.6" y="773" width="13.2" height="15.0" fill="rgb(0,201,156)" rx="2" ry="2" /> +<text x="326.56" y="783.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="497.1" y="741" width="0.5" height="15.0" fill="rgb(0,204,8)" rx="2" ry="2" /> +<text x="500.06" y="751.5" ></text> +</g> +<g > +<title>inet_stream_connect (60,606,060 samples, 0.23%)</title><rect x="1385.8" y="773" width="3.1" height="15.0" fill="rgb(0,216,148)" rx="2" ry="2" /> +<text x="1388.76" y="783.5" ></text> +</g> +<g > +<title>ext4_find_entry (20,202,020 samples, 0.08%)</title><rect x="129.4" y="549" width="1.0" height="15.0" fill="rgb(0,198,183)" rx="2" ry="2" /> +<text x="132.38" y="559.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.04%)</title><rect x="416.4" y="517" width="0.5" height="15.0" fill="rgb(0,205,172)" rx="2" ry="2" /> +<text x="419.41" y="527.5" ></text> +</g> +<g > +<title>inet_csk_accept (10,101,010 samples, 0.04%)</title><rect x="46.6" y="693" width="0.5" height="15.0" fill="rgb(0,191,208)" rx="2" ry="2" /> +<text x="49.61" y="703.5" ></text> +</g> +<g > +<title>read (1,131,313,120 samples, 4.31%)</title><rect x="534.7" y="805" width="59.5" height="15.0" fill="rgb(0,216,129)" rx="2" ry="2" /> +<text x="537.73" y="815.5" >read</text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="181" width="0.5" height="15.0" fill="rgb(0,200,17)" rx="2" ry="2" /> +<text x="1370.19" y="191.5" ></text> +</g> +<g > +<title>ext4_xattr_get (10,101,010 samples, 0.04%)</title><rect x="413.2" y="405" width="0.6" height="15.0" fill="rgb(0,190,49)" rx="2" ry="2" /> +<text x="416.23" y="415.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.04%)</title><rect x="419.6" y="485" width="0.5" height="15.0" fill="rgb(0,193,32)" rx="2" ry="2" /> +<text x="422.60" y="495.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (20,202,020 samples, 0.08%)</title><rect x="325.2" y="549" width="1.0" height="15.0" fill="rgb(0,198,184)" rx="2" ry="2" /> +<text x="328.16" y="559.5" ></text> +</g> +<g > +<title>git_config_add_backend (50,505,050 samples, 0.19%)</title><rect x="319.9" y="709" width="2.6" height="15.0" fill="rgb(0,226,189)" rx="2" ry="2" /> +<text x="322.85" y="719.5" ></text> +</g> +<g > +<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.04%)</title><rect x="173.4" y="613" width="0.5" height="15.0" fill="rgb(0,203,145)" rx="2" ry="2" /> +<text x="176.41" y="623.5" ></text> +</g> +<g > +<title>do_anonymous_page (40,404,040 samples, 0.15%)</title><rect x="614.3" y="741" width="2.1" height="15.0" fill="rgb(0,232,97)" rx="2" ry="2" /> +<text x="617.31" y="751.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="228.6" y="501" width="0.5" height="15.0" fill="rgb(0,197,87)" rx="2" ry="2" /> +<text x="231.59" y="511.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.04%)</title><rect x="221.7" y="597" width="0.5" height="15.0" fill="rgb(0,230,100)" rx="2" ry="2" /> +<text x="224.70" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="308.2" y="565" width="0.5" height="15.0" fill="rgb(0,239,135)" rx="2" ry="2" /> +<text x="311.18" y="575.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="502.4" y="629" width="0.5" height="15.0" fill="rgb(0,204,156)" rx="2" ry="2" /> +<text x="505.36" y="639.5" ></text> +</g> +<g > +<title>git_config_add_backend (10,101,010 samples, 0.04%)</title><rect x="211.6" y="773" width="0.5" height="15.0" fill="rgb(0,239,106)" rx="2" ry="2" /> +<text x="214.61" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="186.1" y="597" width="0.6" height="15.0" fill="rgb(0,206,62)" rx="2" ry="2" /> +<text x="189.15" y="607.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="45.5" y="693" width="0.6" height="15.0" fill="rgb(0,202,156)" rx="2" ry="2" /> +<text x="48.55" y="703.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.04%)</title><rect x="501.3" y="517" width="0.5" height="15.0" fill="rgb(0,231,19)" rx="2" ry="2" /> +<text x="504.30" y="527.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (20,202,020 samples, 0.08%)</title><rect x="155.4" y="677" width="1.0" height="15.0" fill="rgb(0,207,26)" rx="2" ry="2" /> +<text x="158.37" y="687.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.04%)</title><rect x="381.4" y="517" width="0.5" height="15.0" fill="rgb(0,220,79)" rx="2" ry="2" /> +<text x="384.40" y="527.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="320.9" y="517" width="0.5" height="15.0" fill="rgb(0,214,47)" rx="2" ry="2" /> +<text x="323.91" y="527.5" ></text> +</g> +<g > +<title>ext4_rename2 (20,202,020 samples, 0.08%)</title><rect x="333.6" y="613" width="1.1" height="15.0" fill="rgb(0,195,87)" rx="2" ry="2" /> +<text x="336.64" y="623.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.04%)</title><rect x="1299.3" y="661" width="0.5" height="15.0" fill="rgb(0,220,203)" rx="2" ry="2" /> +<text x="1302.27" y="671.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.04%)</title><rect x="367.1" y="613" width="0.5" height="15.0" fill="rgb(0,209,129)" rx="2" ry="2" /> +<text x="370.07" y="623.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="494.9" y="661" width="0.6" height="15.0" fill="rgb(0,234,71)" rx="2" ry="2" /> +<text x="497.94" y="671.5" ></text> +</g> +<g > +<title>vfs_link (10,101,010 samples, 0.04%)</title><rect x="396.3" y="597" width="0.5" height="15.0" fill="rgb(0,202,84)" rx="2" ry="2" /> +<text x="399.25" y="607.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="134.2" y="469" width="0.5" height="15.0" fill="rgb(0,192,97)" rx="2" ry="2" /> +<text x="137.15" y="479.5" ></text> +</g> +<g > +<title>git_config_snapshot (30,303,030 samples, 0.12%)</title><rect x="401.6" y="693" width="1.5" height="15.0" fill="rgb(0,205,154)" rx="2" ry="2" /> +<text x="404.56" y="703.5" ></text> +</g> +<g > +<title>task_work_run (40,404,040 samples, 0.15%)</title><rect x="32.3" y="725" width="2.1" height="15.0" fill="rgb(0,201,189)" rx="2" ry="2" /> +<text x="35.28" y="735.5" ></text> +</g> +<g > +<title>write (80,808,080 samples, 0.31%)</title><rect x="422.8" y="741" width="4.2" height="15.0" fill="rgb(0,204,138)" rx="2" ry="2" /> +<text x="425.78" y="751.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="454.1" y="613" width="0.5" height="15.0" fill="rgb(0,238,124)" rx="2" ry="2" /> +<text x="457.08" y="623.5" ></text> +</g> +<g > +<title>blk_mq_sched_insert_requests (20,202,020 samples, 0.08%)</title><rect x="436.0" y="421" width="1.1" height="15.0" fill="rgb(0,224,19)" rx="2" ry="2" /> +<text x="439.04" y="431.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.04%)</title><rect x="170.8" y="629" width="0.5" height="15.0" fill="rgb(0,221,129)" rx="2" ry="2" /> +<text x="173.76" y="639.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="420.7" y="517" width="0.5" height="15.0" fill="rgb(0,209,34)" rx="2" ry="2" /> +<text x="423.66" y="527.5" ></text> +</g> +<g > +<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.04%)</title><rect x="279.0" y="597" width="0.5" height="15.0" fill="rgb(0,214,84)" rx="2" ry="2" /> +<text x="282.00" y="607.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="597" width="0.5" height="15.0" fill="rgb(0,193,110)" rx="2" ry="2" /> +<text x="1342.07" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="407.4" y="725" width="1.1" height="15.0" fill="rgb(0,235,2)" rx="2" ry="2" /> +<text x="410.39" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="446.1" y="661" width="0.6" height="15.0" fill="rgb(0,207,66)" rx="2" ry="2" /> +<text x="449.12" y="671.5" ></text> +</g> +<g > +<title>json_tokener_parse_verbose (50,505,050 samples, 0.19%)</title><rect x="1374.6" y="789" width="2.7" height="15.0" fill="rgb(0,207,55)" rx="2" ry="2" /> +<text x="1377.61" y="799.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (30,303,030 samples, 0.12%)</title><rect x="1334.3" y="597" width="1.6" height="15.0" fill="rgb(0,208,25)" rx="2" ry="2" /> +<text x="1337.29" y="607.5" ></text> +</g> +<g > +<title>tzset (10,101,010 samples, 0.04%)</title><rect x="291.7" y="693" width="0.6" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="294.73" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.12%)</title><rect x="382.5" y="581" width="1.5" height="15.0" fill="rgb(0,235,129)" rx="2" ry="2" /> +<text x="385.46" y="591.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.04%)</title><rect x="934.2" y="789" width="0.6" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="937.24" y="799.5" ></text> +</g> +<g > +<title>iterate_dir (151,515,150 samples, 0.58%)</title><rect x="118.2" y="629" width="8.0" height="15.0" fill="rgb(0,239,70)" rx="2" ry="2" /> +<text x="121.24" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="412.2" y="709" width="1.0" height="15.0" fill="rgb(0,239,59)" rx="2" ry="2" /> +<text x="415.17" y="719.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="174.5" y="613" width="0.5" height="15.0" fill="rgb(0,200,14)" rx="2" ry="2" /> +<text x="177.48" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="307.6" y="517" width="0.6" height="15.0" fill="rgb(0,209,174)" rx="2" ry="2" /> +<text x="310.65" y="527.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.04%)</title><rect x="369.2" y="629" width="0.5" height="15.0" fill="rgb(0,199,47)" rx="2" ry="2" /> +<text x="372.19" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="116.6" y="661" width="0.6" height="15.0" fill="rgb(0,234,109)" rx="2" ry="2" /> +<text x="119.64" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="477.4" y="661" width="2.2" height="15.0" fill="rgb(0,224,70)" rx="2" ry="2" /> +<text x="480.43" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.04%)</title><rect x="509.3" y="741" width="0.5" height="15.0" fill="rgb(0,204,130)" rx="2" ry="2" /> +<text x="512.26" y="751.5" ></text> +</g> +<g > +<title>__alloc_pages (282,828,280 samples, 1.08%)</title><rect x="1340.1" y="613" width="14.9" height="15.0" fill="rgb(0,198,19)" rx="2" ry="2" /> +<text x="1343.13" y="623.5" ></text> +</g> +<g > +<title>brk (131,313,130 samples, 0.50%)</title><rect x="934.8" y="757" width="6.9" height="15.0" fill="rgb(0,216,55)" rx="2" ry="2" /> +<text x="937.78" y="767.5" ></text> +</g> +<g > +<title>file_remove_privs (20,202,020 samples, 0.08%)</title><rect x="423.8" y="581" width="1.1" height="15.0" fill="rgb(0,208,78)" rx="2" ry="2" /> +<text x="426.84" y="591.5" ></text> +</g> +<g > +<title>percpu_counter_add_batch (10,101,010 samples, 0.04%)</title><rect x="268.9" y="421" width="0.5" height="15.0" fill="rgb(0,217,33)" rx="2" ry="2" /> +<text x="271.92" y="431.5" ></text> +</g> +<g > +<title>[libz.so.1.2.11] (10,101,010 samples, 0.04%)</title><rect x="212.7" y="629" width="0.5" height="15.0" fill="rgb(0,193,72)" rx="2" ry="2" /> +<text x="215.68" y="639.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="233.9" y="469" width="1.1" height="15.0" fill="rgb(0,229,20)" rx="2" ry="2" /> +<text x="236.90" y="479.5" ></text> +</g> +<g > +<title>__default_morecore (10,101,010 samples, 0.04%)</title><rect x="930.0" y="757" width="0.5" height="15.0" fill="rgb(0,224,198)" rx="2" ry="2" /> +<text x="933.00" y="767.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (60,606,060 samples, 0.23%)</title><rect x="56.2" y="805" width="3.1" height="15.0" fill="rgb(0,236,104)" rx="2" ry="2" /> +<text x="59.16" y="815.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (30,303,030 samples, 0.12%)</title><rect x="1365.1" y="373" width="1.6" height="15.0" fill="rgb(0,190,78)" rx="2" ry="2" /> +<text x="1368.06" y="383.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="492.3" y="741" width="0.5" height="15.0" fill="rgb(0,205,3)" rx="2" ry="2" /> +<text x="495.28" y="751.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.04%)</title><rect x="242.9" y="565" width="0.5" height="15.0" fill="rgb(0,239,187)" rx="2" ry="2" /> +<text x="245.92" y="575.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="421" width="0.6" height="15.0" fill="rgb(0,190,114)" rx="2" ry="2" /> +<text x="1388.22" y="431.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="496.0" y="549" width="0.5" height="15.0" fill="rgb(0,192,20)" rx="2" ry="2" /> +<text x="499.00" y="559.5" ></text> +</g> +<g > +<title>dquot_drop (10,101,010 samples, 0.04%)</title><rect x="147.4" y="549" width="0.5" height="15.0" fill="rgb(0,202,19)" rx="2" ry="2" /> +<text x="150.42" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="328.3" y="693" width="0.6" height="15.0" fill="rgb(0,219,95)" rx="2" ry="2" /> +<text x="331.34" y="703.5" ></text> +</g> +<g > +<title>ip_local_deliver (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="357" width="0.5" height="15.0" fill="rgb(0,191,139)" rx="2" ry="2" /> +<text x="1388.76" y="367.5" ></text> +</g> +<g > +<title>__x64_sys_rename (151,515,150 samples, 0.58%)</title><rect x="268.4" y="645" width="7.9" height="15.0" fill="rgb(0,199,130)" rx="2" ry="2" /> +<text x="271.39" y="655.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.04%)</title><rect x="234.4" y="261" width="0.6" height="15.0" fill="rgb(0,211,30)" rx="2" ry="2" /> +<text x="237.43" y="271.5" ></text> +</g> +<g > +<title>do_wp_page (50,505,050 samples, 0.19%)</title><rect x="567.1" y="565" width="2.6" height="15.0" fill="rgb(0,202,16)" rx="2" ry="2" /> +<text x="570.09" y="575.5" ></text> +</g> +<g > +<title>__ip_finish_output (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="117" width="0.5" height="15.0" fill="rgb(0,197,125)" rx="2" ry="2" /> +<text x="1370.19" y="127.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.04%)</title><rect x="234.4" y="229" width="0.6" height="15.0" fill="rgb(0,195,191)" rx="2" ry="2" /> +<text x="237.43" y="239.5" ></text> +</g> +<g > +<title>__d_alloc (10,101,010 samples, 0.04%)</title><rect x="428.1" y="549" width="0.5" height="15.0" fill="rgb(0,212,21)" rx="2" ry="2" /> +<text x="431.09" y="559.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.04%)</title><rect x="12.7" y="245" width="0.5" height="15.0" fill="rgb(0,224,158)" rx="2" ry="2" /> +<text x="15.65" y="255.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="490.2" y="725" width="0.5" height="15.0" fill="rgb(0,190,17)" rx="2" ry="2" /> +<text x="493.16" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="198.9" y="645" width="0.5" height="15.0" fill="rgb(0,204,8)" rx="2" ry="2" /> +<text x="201.88" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="507.1" y="661" width="0.6" height="15.0" fill="rgb(0,235,96)" rx="2" ry="2" /> +<text x="510.14" y="671.5" ></text> +</g> +<g > +<title>may_delete (10,101,010 samples, 0.04%)</title><rect x="162.8" y="613" width="0.5" height="15.0" fill="rgb(0,193,8)" rx="2" ry="2" /> +<text x="165.80" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="369.2" y="661" width="0.5" height="15.0" fill="rgb(0,205,156)" rx="2" ry="2" /> +<text x="372.19" y="671.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="230.2" y="469" width="0.5" height="15.0" fill="rgb(0,211,163)" rx="2" ry="2" /> +<text x="233.18" y="479.5" ></text> +</g> +<g > +<title>git_attr_add_macro (10,101,010 samples, 0.04%)</title><rect x="198.4" y="725" width="0.5" height="15.0" fill="rgb(0,204,83)" rx="2" ry="2" /> +<text x="201.35" y="735.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="131.0" y="517" width="0.5" height="15.0" fill="rgb(0,226,187)" rx="2" ry="2" /> +<text x="133.97" y="527.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.04%)</title><rect x="126.7" y="453" width="0.6" height="15.0" fill="rgb(0,230,176)" rx="2" ry="2" /> +<text x="129.72" y="463.5" ></text> +</g> +<g > +<title>blk_flush_plug_list (30,303,030 samples, 0.12%)</title><rect x="448.8" y="469" width="1.6" height="15.0" fill="rgb(0,205,159)" rx="2" ry="2" /> +<text x="451.78" y="479.5" ></text> +</g> +<g > +<title>irqentry_exit (10,101,010 samples, 0.04%)</title><rect x="467.3" y="693" width="0.6" height="15.0" fill="rgb(0,200,110)" rx="2" ry="2" /> +<text x="470.35" y="703.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (60,606,060 samples, 0.23%)</title><rect x="423.8" y="613" width="3.2" height="15.0" fill="rgb(0,228,104)" rx="2" ry="2" /> +<text x="426.84" y="623.5" ></text> +</g> +<g > +<title>do_user_addr_fault (303,030,300 samples, 1.15%)</title><rect x="554.4" y="629" width="15.9" height="15.0" fill="rgb(0,202,55)" rx="2" ry="2" /> +<text x="557.36" y="639.5" ></text> +</g> +<g > +<title>tcp_write_xmit (60,606,060 samples, 0.23%)</title><rect x="1364.0" y="629" width="3.2" height="15.0" fill="rgb(0,195,88)" rx="2" ry="2" /> +<text x="1367.00" y="639.5" ></text> +</g> +<g > +<title>_IO_fprintf (10,101,010 samples, 0.04%)</title><rect x="509.3" y="853" width="0.5" height="15.0" fill="rgb(0,215,197)" rx="2" ry="2" /> +<text x="512.26" y="863.5" ></text> +</g> +<g > +<title>vmbus_setevent (10,101,010 samples, 0.04%)</title><rect x="187.7" y="245" width="0.6" height="15.0" fill="rgb(0,195,183)" rx="2" ry="2" /> +<text x="190.74" y="255.5" ></text> +</g> +<g > +<title>__do_sys_brk (131,313,130 samples, 0.50%)</title><rect x="934.8" y="693" width="6.9" height="15.0" fill="rgb(0,202,16)" rx="2" ry="2" /> +<text x="937.78" y="703.5" ></text> +</g> +<g > +<title>futex_wait (20,202,020 samples, 0.08%)</title><rect x="16.9" y="805" width="1.1" height="15.0" fill="rgb(0,214,35)" rx="2" ry="2" /> +<text x="19.90" y="815.5" ></text> +</g> +<g > +<title>do_unlinkat (80,808,080 samples, 0.31%)</title><rect x="172.4" y="693" width="4.2" height="15.0" fill="rgb(0,229,54)" rx="2" ry="2" /> +<text x="175.35" y="703.5" ></text> +</g> +<g > +<title>printbuf_free (131,313,130 samples, 0.50%)</title><rect x="934.8" y="853" width="6.9" height="15.0" fill="rgb(0,232,146)" rx="2" ry="2" /> +<text x="937.78" y="863.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (171,717,170 samples, 0.65%)</title><rect x="301.3" y="693" width="9.0" height="15.0" fill="rgb(0,218,148)" rx="2" ry="2" /> +<text x="304.28" y="703.5" ></text> +</g> +<g > +<title>ext4_truncate (20,202,020 samples, 0.08%)</title><rect x="341.6" y="517" width="1.1" height="15.0" fill="rgb(0,224,115)" rx="2" ry="2" /> +<text x="344.60" y="527.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="444.0" y="661" width="0.5" height="15.0" fill="rgb(0,196,201)" rx="2" ry="2" /> +<text x="447.00" y="671.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="108.7" y="485" width="0.5" height="15.0" fill="rgb(0,210,84)" rx="2" ry="2" /> +<text x="111.69" y="495.5" ></text> +</g> +<g > +<title>git_reference_iterator_new (151,515,150 samples, 0.58%)</title><rect x="350.1" y="725" width="8.0" height="15.0" fill="rgb(0,202,118)" rx="2" ry="2" /> +<text x="353.09" y="735.5" ></text> +</g> +<g > +<title>do_poll.constprop.0 (80,808,080 samples, 0.31%)</title><rect x="25.4" y="789" width="4.2" height="15.0" fill="rgb(0,238,41)" rx="2" ry="2" /> +<text x="28.39" y="799.5" ></text> +</g> +<g > +<title>crc_127 (10,101,010 samples, 0.04%)</title><rect x="451.4" y="373" width="0.6" height="15.0" fill="rgb(0,204,92)" rx="2" ry="2" /> +<text x="454.43" y="383.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="469" width="1.6" height="15.0" fill="rgb(0,215,69)" rx="2" ry="2" /> +<text x="1370.19" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="308.7" y="613" width="0.5" height="15.0" fill="rgb(0,207,153)" rx="2" ry="2" /> +<text x="311.71" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (40,404,040 samples, 0.15%)</title><rect x="405.3" y="725" width="2.1" height="15.0" fill="rgb(0,218,170)" rx="2" ry="2" /> +<text x="408.27" y="735.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (20,202,020 samples, 0.08%)</title><rect x="593.1" y="725" width="1.1" height="15.0" fill="rgb(0,223,156)" rx="2" ry="2" /> +<text x="596.09" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="218.0" y="757" width="2.6" height="15.0" fill="rgb(0,202,78)" rx="2" ry="2" /> +<text x="220.98" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="307.6" y="629" width="1.1" height="15.0" fill="rgb(0,201,199)" rx="2" ry="2" /> +<text x="310.65" y="639.5" ></text> +</g> +<g > +<title>git_odb_read_header (60,606,060 samples, 0.23%)</title><rect x="397.8" y="709" width="3.2" height="15.0" fill="rgb(0,232,95)" rx="2" ry="2" /> +<text x="400.84" y="719.5" ></text> +</g> +<g > +<title>blk_finish_plug (20,202,020 samples, 0.08%)</title><rect x="372.4" y="517" width="1.0" height="15.0" fill="rgb(0,223,113)" rx="2" ry="2" /> +<text x="375.38" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="218.0" y="725" width="2.6" height="15.0" fill="rgb(0,198,177)" rx="2" ry="2" /> +<text x="220.98" y="735.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="201.0" y="709" width="0.5" height="15.0" fill="rgb(0,220,104)" rx="2" ry="2" /> +<text x="204.00" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="364.4" y="773" width="3.7" height="15.0" fill="rgb(0,238,207)" rx="2" ry="2" /> +<text x="367.42" y="783.5" ></text> +</g> +<g > +<title>git_config_snapshot (30,303,030 samples, 0.12%)</title><rect x="312.4" y="693" width="1.6" height="15.0" fill="rgb(0,224,10)" rx="2" ry="2" /> +<text x="315.42" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="311.9" y="677" width="0.5" height="15.0" fill="rgb(0,232,14)" rx="2" ry="2" /> +<text x="314.89" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.15%)</title><rect x="161.7" y="677" width="2.2" height="15.0" fill="rgb(0,235,107)" rx="2" ry="2" /> +<text x="164.74" y="687.5" ></text> +</g> +<g > +<title>lh_table_free (20,202,020 samples, 0.08%)</title><rect x="933.7" y="821" width="1.1" height="15.0" fill="rgb(0,207,1)" rx="2" ry="2" /> +<text x="936.71" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="473.7" y="597" width="0.5" height="15.0" fill="rgb(0,218,123)" rx="2" ry="2" /> +<text x="476.71" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.15%)</title><rect x="161.7" y="693" width="2.2" height="15.0" fill="rgb(0,227,59)" rx="2" ry="2" /> +<text x="164.74" y="703.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="489.1" y="517" width="0.5" height="15.0" fill="rgb(0,200,1)" rx="2" ry="2" /> +<text x="492.10" y="527.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.04%)</title><rect x="531.0" y="661" width="0.5" height="15.0" fill="rgb(0,217,125)" rx="2" ry="2" /> +<text x="534.01" y="671.5" ></text> +</g> +<g > +<title>git_reference_foreach_name (151,515,150 samples, 0.58%)</title><rect x="350.1" y="741" width="8.0" height="15.0" fill="rgb(0,203,153)" rx="2" ry="2" /> +<text x="353.09" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="395.7" y="517" width="0.6" height="15.0" fill="rgb(0,206,1)" rx="2" ry="2" /> +<text x="398.72" y="527.5" ></text> +</g> +<g > +<title>__blk_mq_delay_run_hw_queue (20,202,020 samples, 0.08%)</title><rect x="449.3" y="405" width="1.1" height="15.0" fill="rgb(0,206,23)" rx="2" ry="2" /> +<text x="452.31" y="415.5" ></text> +</g> +<g > +<title>__x64_sys_openat (60,606,060 samples, 0.23%)</title><rect x="202.6" y="709" width="3.2" height="15.0" fill="rgb(0,207,133)" rx="2" ry="2" /> +<text x="205.60" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="206.3" y="725" width="2.1" height="15.0" fill="rgb(0,204,40)" rx="2" ry="2" /> +<text x="209.31" y="735.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.04%)</title><rect x="305.0" y="229" width="0.5" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="307.99" y="239.5" ></text> +</g> +<g > +<title>git_config_add_backend (40,404,040 samples, 0.15%)</title><rect x="358.1" y="725" width="2.1" height="15.0" fill="rgb(0,215,31)" rx="2" ry="2" /> +<text x="361.05" y="735.5" ></text> +</g> +<g > +<title>filename_parentat (20,202,020 samples, 0.08%)</title><rect x="103.4" y="581" width="1.0" height="15.0" fill="rgb(0,192,42)" rx="2" ry="2" /> +<text x="106.38" y="591.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="406.9" y="501" width="0.5" height="15.0" fill="rgb(0,193,159)" rx="2" ry="2" /> +<text x="409.86" y="511.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="467.9" y="629" width="0.5" height="15.0" fill="rgb(0,229,145)" rx="2" ry="2" /> +<text x="470.88" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="376.1" y="709" width="0.5" height="15.0" fill="rgb(0,234,41)" rx="2" ry="2" /> +<text x="379.09" y="719.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.04%)</title><rect x="97.5" y="453" width="0.6" height="15.0" fill="rgb(0,225,48)" rx="2" ry="2" /> +<text x="100.54" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.35%)</title><rect x="350.1" y="645" width="4.8" height="15.0" fill="rgb(0,192,169)" rx="2" ry="2" /> +<text x="353.09" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.04%)</title><rect x="143.7" y="629" width="0.5" height="15.0" fill="rgb(0,217,178)" rx="2" ry="2" /> +<text x="146.70" y="639.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="386.2" y="453" width="0.5" height="15.0" fill="rgb(0,206,133)" rx="2" ry="2" /> +<text x="389.17" y="463.5" ></text> +</g> +<g > +<title>d_delete (10,101,010 samples, 0.04%)</title><rect x="173.9" y="661" width="0.6" height="15.0" fill="rgb(0,202,46)" rx="2" ry="2" /> +<text x="176.94" y="671.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.04%)</title><rect x="163.9" y="709" width="0.5" height="15.0" fill="rgb(0,204,136)" rx="2" ry="2" /> +<text x="166.86" y="719.5" ></text> +</g> +<g > +<title>pick_file (10,101,010 samples, 0.04%)</title><rect x="368.7" y="597" width="0.5" height="15.0" fill="rgb(0,234,38)" rx="2" ry="2" /> +<text x="371.66" y="607.5" ></text> +</g> +<g > +<title>__rb_insert_augmented (10,101,010 samples, 0.04%)</title><rect x="514.0" y="613" width="0.6" height="15.0" fill="rgb(0,210,146)" rx="2" ry="2" /> +<text x="517.04" y="623.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.04%)</title><rect x="343.7" y="325" width="0.6" height="15.0" fill="rgb(0,222,209)" rx="2" ry="2" /> +<text x="346.73" y="335.5" ></text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.04%)</title><rect x="397.3" y="613" width="0.5" height="15.0" fill="rgb(0,206,37)" rx="2" ry="2" /> +<text x="400.31" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (101,010,100 samples, 0.38%)</title><rect x="254.1" y="709" width="5.3" height="15.0" fill="rgb(0,225,90)" rx="2" ry="2" /> +<text x="257.06" y="719.5" ></text> +</g> +<g > +<title>dentry_kill (10,101,010 samples, 0.04%)</title><rect x="1384.2" y="693" width="0.5" height="15.0" fill="rgb(0,191,129)" rx="2" ry="2" /> +<text x="1387.16" y="703.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.04%)</title><rect x="98.6" y="613" width="0.5" height="15.0" fill="rgb(0,232,191)" rx="2" ry="2" /> +<text x="101.60" y="623.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="375.6" y="661" width="0.5" height="15.0" fill="rgb(0,216,106)" rx="2" ry="2" /> +<text x="378.56" y="671.5" ></text> +</g> +<g > +<title>release_pages (20,202,020 samples, 0.08%)</title><rect x="936.4" y="613" width="1.0" height="15.0" fill="rgb(0,233,20)" rx="2" ry="2" /> +<text x="939.37" y="623.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="187.2" y="405" width="0.5" height="15.0" fill="rgb(0,234,203)" rx="2" ry="2" /> +<text x="190.21" y="415.5" ></text> +</g> +<g > +<title>get_obj_cgroup_from_current (10,101,010 samples, 0.04%)</title><rect x="229.7" y="501" width="0.5" height="15.0" fill="rgb(0,208,164)" rx="2" ry="2" /> +<text x="232.65" y="511.5" ></text> +</g> +<g > +<title>futex_wait (40,404,040 samples, 0.15%)</title><rect x="30.2" y="741" width="2.1" height="15.0" fill="rgb(0,222,191)" rx="2" ry="2" /> +<text x="33.16" y="751.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="291.7" y="645" width="0.6" height="15.0" fill="rgb(0,199,195)" rx="2" ry="2" /> +<text x="294.73" y="655.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.04%)</title><rect x="325.7" y="485" width="0.5" height="15.0" fill="rgb(0,212,64)" rx="2" ry="2" /> +<text x="328.69" y="495.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="302.9" y="533" width="0.5" height="15.0" fill="rgb(0,230,192)" rx="2" ry="2" /> +<text x="305.87" y="543.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="344.8" y="549" width="0.5" height="15.0" fill="rgb(0,208,121)" rx="2" ry="2" /> +<text x="347.79" y="559.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.04%)</title><rect x="90.6" y="501" width="0.6" height="15.0" fill="rgb(0,221,126)" rx="2" ry="2" /> +<text x="93.65" y="511.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="378.2" y="517" width="0.5" height="15.0" fill="rgb(0,224,36)" rx="2" ry="2" /> +<text x="381.21" y="527.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.04%)</title><rect x="284.3" y="565" width="0.5" height="15.0" fill="rgb(0,238,1)" rx="2" ry="2" /> +<text x="287.30" y="575.5" ></text> +</g> +<g > +<title>file_free_rcu (10,101,010 samples, 0.04%)</title><rect x="888.1" y="693" width="0.5" height="15.0" fill="rgb(0,196,90)" rx="2" ry="2" /> +<text x="891.09" y="703.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="444.0" y="613" width="0.5" height="15.0" fill="rgb(0,202,60)" rx="2" ry="2" /> +<text x="447.00" y="623.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.12%)</title><rect x="314.0" y="629" width="1.6" height="15.0" fill="rgb(0,218,154)" rx="2" ry="2" /> +<text x="317.01" y="639.5" ></text> +</g> +<g > +<title>unlink (70,707,070 samples, 0.27%)</title><rect x="166.0" y="725" width="3.7" height="15.0" fill="rgb(0,232,89)" rx="2" ry="2" /> +<text x="168.99" y="735.5" ></text> +</g> +<g > +<title>blk_flush_plug_list (10,101,010 samples, 0.04%)</title><rect x="334.2" y="485" width="0.5" height="15.0" fill="rgb(0,237,193)" rx="2" ry="2" /> +<text x="337.18" y="495.5" ></text> +</g> +<g > +<title>copy_sighand (10,101,010 samples, 0.04%)</title><rect x="510.9" y="693" width="0.5" height="15.0" fill="rgb(0,206,59)" rx="2" ry="2" /> +<text x="513.85" y="703.5" ></text> +</g> +<g > +<title>do_anonymous_page (101,010,100 samples, 0.38%)</title><rect x="892.9" y="741" width="5.3" height="15.0" fill="rgb(0,218,187)" rx="2" ry="2" /> +<text x="895.86" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="288.0" y="661" width="0.5" height="15.0" fill="rgb(0,195,5)" rx="2" ry="2" /> +<text x="291.02" y="671.5" ></text> +</g> +<g > +<title>scsi_mq_done (10,101,010 samples, 0.04%)</title><rect x="201.0" y="389" width="0.5" height="15.0" fill="rgb(0,192,56)" rx="2" ry="2" /> +<text x="204.00" y="399.5" ></text> +</g> +<g > +<title>git_reference_normalize_name (10,101,010 samples, 0.04%)</title><rect x="376.1" y="741" width="0.5" height="15.0" fill="rgb(0,193,181)" rx="2" ry="2" /> +<text x="379.09" y="751.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.04%)</title><rect x="596.3" y="677" width="0.5" height="15.0" fill="rgb(0,222,116)" rx="2" ry="2" /> +<text x="599.27" y="687.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.08%)</title><rect x="363.4" y="661" width="1.0" height="15.0" fill="rgb(0,193,134)" rx="2" ry="2" /> +<text x="366.36" y="671.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="473.7" y="565" width="0.5" height="15.0" fill="rgb(0,203,50)" rx="2" ry="2" /> +<text x="476.71" y="575.5" ></text> +</g> +<g > +<title>readlink (10,101,010 samples, 0.04%)</title><rect x="467.9" y="725" width="0.5" height="15.0" fill="rgb(0,198,23)" rx="2" ry="2" /> +<text x="470.88" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="317.2" y="677" width="1.1" height="15.0" fill="rgb(0,211,70)" rx="2" ry="2" /> +<text x="320.20" y="687.5" ></text> +</g> +<g > +<title>find_vma (10,101,010 samples, 0.04%)</title><rect x="593.6" y="629" width="0.6" height="15.0" fill="rgb(0,236,2)" rx="2" ry="2" /> +<text x="596.62" y="639.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="469.5" y="661" width="0.5" height="15.0" fill="rgb(0,217,177)" rx="2" ry="2" /> +<text x="472.47" y="671.5" ></text> +</g> +<g > +<title>skb_page_frag_refill (282,828,280 samples, 1.08%)</title><rect x="1340.1" y="645" width="14.9" height="15.0" fill="rgb(0,212,107)" rx="2" ry="2" /> +<text x="1343.13" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="470.0" y="645" width="0.5" height="15.0" fill="rgb(0,191,158)" rx="2" ry="2" /> +<text x="473.00" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="289.6" y="661" width="2.1" height="15.0" fill="rgb(0,213,179)" rx="2" ry="2" /> +<text x="292.61" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="360.7" y="693" width="0.5" height="15.0" fill="rgb(0,200,81)" rx="2" ry="2" /> +<text x="363.70" y="703.5" ></text> +</g> +<g > +<title>__ext4_new_inode (30,303,030 samples, 0.12%)</title><rect x="377.2" y="597" width="1.5" height="15.0" fill="rgb(0,193,78)" rx="2" ry="2" /> +<text x="380.15" y="607.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="89.6" y="517" width="0.5" height="15.0" fill="rgb(0,198,2)" rx="2" ry="2" /> +<text x="92.58" y="527.5" ></text> +</g> +<g > +<title>net_rx_action (10,101,010 samples, 0.04%)</title><rect x="1387.3" y="533" width="0.6" height="15.0" fill="rgb(0,231,136)" rx="2" ry="2" /> +<text x="1390.35" y="543.5" ></text> +</g> +<g > +<title>ext4_es_delayed_clu (10,101,010 samples, 0.04%)</title><rect x="461.0" y="549" width="0.5" height="15.0" fill="rgb(0,229,201)" rx="2" ry="2" /> +<text x="463.98" y="559.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.04%)</title><rect x="899.2" y="725" width="0.6" height="15.0" fill="rgb(0,213,156)" rx="2" ry="2" /> +<text x="902.23" y="735.5" ></text> +</g> +<g > +<title>ext4_evict_inode (20,202,020 samples, 0.08%)</title><rect x="90.1" y="517" width="1.1" height="15.0" fill="rgb(0,228,21)" rx="2" ry="2" /> +<text x="93.12" y="527.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.04%)</title><rect x="151.1" y="549" width="0.6" height="15.0" fill="rgb(0,233,27)" rx="2" ry="2" /> +<text x="154.13" y="559.5" ></text> +</g> +<g > +<title>ext4_rename2 (40,404,040 samples, 0.15%)</title><rect x="436.0" y="581" width="2.2" height="15.0" fill="rgb(0,229,15)" rx="2" ry="2" /> +<text x="439.04" y="591.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="400.5" y="437" width="0.5" height="15.0" fill="rgb(0,190,78)" rx="2" ry="2" /> +<text x="403.50" y="447.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.04%)</title><rect x="400.5" y="469" width="0.5" height="15.0" fill="rgb(0,216,79)" rx="2" ry="2" /> +<text x="403.50" y="479.5" ></text> +</g> +<g > +<title>__fget_light (10,101,010 samples, 0.04%)</title><rect x="539.0" y="725" width="0.5" height="15.0" fill="rgb(0,225,40)" rx="2" ry="2" /> +<text x="541.97" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="187.2" y="709" width="1.1" height="15.0" fill="rgb(0,223,77)" rx="2" ry="2" /> +<text x="190.21" y="719.5" ></text> +</g> +<g > +<title>__poll (90,909,090 samples, 0.35%)</title><rect x="24.9" y="869" width="4.7" height="15.0" fill="rgb(0,197,78)" rx="2" ry="2" /> +<text x="27.86" y="879.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.04%)</title><rect x="502.9" y="565" width="0.5" height="15.0" fill="rgb(0,230,57)" rx="2" ry="2" /> +<text x="505.90" y="575.5" ></text> +</g> +<g > +<title>copy_page_to_iter (10,101,010 samples, 0.04%)</title><rect x="546.4" y="677" width="0.5" height="15.0" fill="rgb(0,234,203)" rx="2" ry="2" /> +<text x="549.40" y="687.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (10,101,010 samples, 0.04%)</title><rect x="354.3" y="501" width="0.6" height="15.0" fill="rgb(0,227,115)" rx="2" ry="2" /> +<text x="357.34" y="511.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (30,303,030 samples, 0.12%)</title><rect x="254.1" y="597" width="1.6" height="15.0" fill="rgb(0,196,147)" rx="2" ry="2" /> +<text x="257.06" y="607.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="213" width="0.5" height="15.0" fill="rgb(0,229,203)" rx="2" ry="2" /> +<text x="1370.19" y="223.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="432.3" y="677" width="1.1" height="15.0" fill="rgb(0,204,118)" rx="2" ry="2" /> +<text x="435.33" y="687.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.08%)</title><rect x="462.0" y="485" width="1.1" height="15.0" fill="rgb(0,224,107)" rx="2" ry="2" /> +<text x="465.04" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="493.9" y="709" width="2.6" height="15.0" fill="rgb(0,235,38)" rx="2" ry="2" /> +<text x="496.88" y="719.5" ></text> +</g> +<g > +<title>[libc.so.6] (585,858,580 samples, 2.23%)</title><rect x="23.8" y="949" width="30.8" height="15.0" fill="rgb(0,198,178)" rx="2" ry="2" /> +<text x="26.79" y="959.5" >[l..</text> +</g> +<g > +<title>do_user_addr_fault (474,747,470 samples, 1.81%)</title><rect x="1312.5" y="709" width="25.0" height="15.0" fill="rgb(0,212,15)" rx="2" ry="2" /> +<text x="1315.54" y="719.5" >d..</text> +</g> +<g > +<title>irqentry_exit (80,808,080 samples, 0.31%)</title><rect x="1299.8" y="725" width="4.2" height="15.0" fill="rgb(0,191,139)" rx="2" ry="2" /> +<text x="1302.80" y="735.5" ></text> +</g> +<g > +<title>unlink (121,212,120 samples, 0.46%)</title><rect x="103.4" y="661" width="6.3" height="15.0" fill="rgb(0,223,54)" rx="2" ry="2" /> +<text x="106.38" y="671.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (90,909,090 samples, 0.35%)</title><rect x="118.8" y="597" width="4.7" height="15.0" fill="rgb(0,226,3)" rx="2" ry="2" /> +<text x="121.77" y="607.5" ></text> +</g> +<g > +<title>ip_finish_output2 (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="517" width="0.5" height="15.0" fill="rgb(0,213,54)" rx="2" ry="2" /> +<text x="1342.60" y="527.5" ></text> +</g> +<g > +<title>json_object_put (151,515,150 samples, 0.58%)</title><rect x="933.7" y="869" width="8.0" height="15.0" fill="rgb(0,206,40)" rx="2" ry="2" /> +<text x="936.71" y="879.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (50,505,050 samples, 0.19%)</title><rect x="120.9" y="565" width="2.6" height="15.0" fill="rgb(0,224,209)" rx="2" ry="2" /> +<text x="123.89" y="575.5" ></text> +</g> +<g > +<title>__blk_mq_end_request (10,101,010 samples, 0.04%)</title><rect x="285.9" y="229" width="0.5" height="15.0" fill="rgb(0,230,114)" rx="2" ry="2" /> +<text x="288.89" y="239.5" ></text> +</g> +<g > +<title>__ext4_journal_get_create_access (10,101,010 samples, 0.04%)</title><rect x="232.8" y="517" width="0.6" height="15.0" fill="rgb(0,197,124)" rx="2" ry="2" /> +<text x="235.84" y="527.5" ></text> +</g> +<g > +<title>tcp_rcv_established (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="277" width="1.6" height="15.0" fill="rgb(0,195,138)" rx="2" ry="2" /> +<text x="1370.19" y="287.5" ></text> +</g> +<g > +<title>tcp_try_coalesce (10,101,010 samples, 0.04%)</title><rect x="1368.2" y="229" width="0.6" height="15.0" fill="rgb(0,234,132)" rx="2" ry="2" /> +<text x="1371.25" y="239.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="229" width="0.5" height="15.0" fill="rgb(0,217,203)" rx="2" ry="2" /> +<text x="1342.07" y="239.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="353.3" y="565" width="0.5" height="15.0" fill="rgb(0,211,18)" rx="2" ry="2" /> +<text x="356.28" y="575.5" ></text> +</g> +<g > +<title>git_odb_read (50,505,050 samples, 0.19%)</title><rect x="218.0" y="789" width="2.6" height="15.0" fill="rgb(0,192,100)" rx="2" ry="2" /> +<text x="220.98" y="799.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="1388.9" y="821" width="0.6" height="15.0" fill="rgb(0,202,175)" rx="2" ry="2" /> +<text x="1391.94" y="831.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.12%)</title><rect x="456.7" y="597" width="1.6" height="15.0" fill="rgb(0,208,126)" rx="2" ry="2" /> +<text x="459.74" y="607.5" ></text> +</g> +<g > +<title>blk_flush_plug_list (20,202,020 samples, 0.08%)</title><rect x="273.7" y="469" width="1.1" height="15.0" fill="rgb(0,227,198)" rx="2" ry="2" /> +<text x="276.69" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="14.8" y="805" width="0.5" height="15.0" fill="rgb(0,225,87)" rx="2" ry="2" /> +<text x="17.78" y="815.5" ></text> +</g> +<g > +<title>access (111,111,110 samples, 0.42%)</title><rect x="76.9" y="949" width="5.8" height="15.0" fill="rgb(0,231,58)" rx="2" ry="2" /> +<text x="79.85" y="959.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="174.5" y="565" width="0.5" height="15.0" fill="rgb(0,218,193)" rx="2" ry="2" /> +<text x="177.48" y="575.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="377.2" y="581" width="0.5" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" /> +<text x="380.15" y="591.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="201.0" y="613" width="0.5" height="15.0" fill="rgb(0,213,118)" rx="2" ry="2" /> +<text x="204.00" y="623.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.04%)</title><rect x="285.9" y="325" width="0.5" height="15.0" fill="rgb(0,204,70)" rx="2" ry="2" /> +<text x="288.89" y="335.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.04%)</title><rect x="387.2" y="501" width="0.6" height="15.0" fill="rgb(0,196,106)" rx="2" ry="2" /> +<text x="390.23" y="511.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.04%)</title><rect x="288.0" y="693" width="0.5" height="15.0" fill="rgb(0,215,104)" rx="2" ry="2" /> +<text x="291.02" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="294.4" y="645" width="0.5" height="15.0" fill="rgb(0,217,110)" rx="2" ry="2" /> +<text x="297.38" y="655.5" ></text> +</g> +<g > +<title>__ext4_new_inode (10,101,010 samples, 0.04%)</title><rect x="406.3" y="549" width="0.6" height="15.0" fill="rgb(0,226,184)" rx="2" ry="2" /> +<text x="409.33" y="559.5" ></text> +</g> +<g > +<title>__ext4fs_dirhash (20,202,020 samples, 0.08%)</title><rect x="121.9" y="533" width="1.1" height="15.0" fill="rgb(0,219,111)" rx="2" ry="2" /> +<text x="124.95" y="543.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.04%)</title><rect x="149.0" y="645" width="0.5" height="15.0" fill="rgb(0,231,122)" rx="2" ry="2" /> +<text x="152.01" y="655.5" ></text> +</g> +<g > +<title>free_unref_page_list (20,202,020 samples, 0.08%)</title><rect x="936.4" y="597" width="1.0" height="15.0" fill="rgb(0,233,72)" rx="2" ry="2" /> +<text x="939.37" y="607.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.04%)</title><rect x="285.4" y="517" width="0.5" height="15.0" fill="rgb(0,203,72)" rx="2" ry="2" /> +<text x="288.36" y="527.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="135.2" y="437" width="0.5" height="15.0" fill="rgb(0,229,7)" rx="2" ry="2" /> +<text x="138.21" y="447.5" ></text> +</g> +<g > +<title>pthread_mutex_destroy (10,101,010 samples, 0.04%)</title><rect x="84.8" y="757" width="0.5" height="15.0" fill="rgb(0,229,8)" rx="2" ry="2" /> +<text x="87.81" y="767.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (60,606,060 samples, 0.23%)</title><rect x="423.8" y="629" width="3.2" height="15.0" fill="rgb(0,214,88)" rx="2" ry="2" /> +<text x="426.84" y="639.5" ></text> +</g> +<g > +<title>__slab_free (10,101,010 samples, 0.04%)</title><rect x="888.1" y="677" width="0.5" height="15.0" fill="rgb(0,234,68)" rx="2" ry="2" /> +<text x="891.09" y="687.5" ></text> +</g> +<g > +<title>__ext4_unlink (10,101,010 samples, 0.04%)</title><rect x="148.5" y="581" width="0.5" height="15.0" fill="rgb(0,210,190)" rx="2" ry="2" /> +<text x="151.48" y="591.5" ></text> +</g> +<g > +<title>fsnotify_destroy_marks (10,101,010 samples, 0.04%)</title><rect x="95.4" y="501" width="0.6" height="15.0" fill="rgb(0,206,202)" rx="2" ry="2" /> +<text x="98.42" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="143.7" y="661" width="0.5" height="15.0" fill="rgb(0,230,159)" rx="2" ry="2" /> +<text x="146.70" y="671.5" ></text> +</g> +<g > +<title>d_delete (10,101,010 samples, 0.04%)</title><rect x="95.4" y="549" width="0.6" height="15.0" fill="rgb(0,194,66)" rx="2" ry="2" /> +<text x="98.42" y="559.5" ></text> +</g> +<g > +<title>rename (20,202,020 samples, 0.08%)</title><rect x="187.2" y="741" width="1.1" height="15.0" fill="rgb(0,192,12)" rx="2" ry="2" /> +<text x="190.21" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="491.8" y="725" width="0.5" height="15.0" fill="rgb(0,197,19)" rx="2" ry="2" /> +<text x="494.75" y="735.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.04%)</title><rect x="503.4" y="517" width="0.6" height="15.0" fill="rgb(0,214,91)" rx="2" ry="2" /> +<text x="506.43" y="527.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="284.8" y="597" width="0.6" height="15.0" fill="rgb(0,196,82)" rx="2" ry="2" /> +<text x="287.83" y="607.5" ></text> +</g> +<g > +<title>delete_from_page_cache_batch (10,101,010 samples, 0.04%)</title><rect x="271.0" y="469" width="0.6" height="15.0" fill="rgb(0,233,118)" rx="2" ry="2" /> +<text x="274.04" y="479.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="298.1" y="533" width="0.5" height="15.0" fill="rgb(0,228,51)" rx="2" ry="2" /> +<text x="301.10" y="543.5" ></text> +</g> +<g > +<title>__wait_on_bit (10,101,010 samples, 0.04%)</title><rect x="305.0" y="309" width="0.5" height="15.0" fill="rgb(0,210,116)" rx="2" ry="2" /> +<text x="307.99" y="319.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="445.6" y="677" width="1.1" height="15.0" fill="rgb(0,225,125)" rx="2" ry="2" /> +<text x="448.59" y="687.5" ></text> +</g> +<g > +<title>do_renameat2 (151,515,150 samples, 0.58%)</title><rect x="268.4" y="629" width="7.9" height="15.0" fill="rgb(0,231,101)" rx="2" ry="2" /> +<text x="271.39" y="639.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.04%)</title><rect x="388.8" y="389" width="0.6" height="15.0" fill="rgb(0,205,146)" rx="2" ry="2" /> +<text x="391.82" y="399.5" ></text> +</g> +<g > +<title>[unknown] (535,353,530 samples, 2.04%)</title><rect x="54.6" y="981" width="28.1" height="15.0" fill="rgb(0,239,204)" rx="2" ry="2" /> +<text x="57.57" y="991.5" >[..</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="358.6" y="693" width="1.6" height="15.0" fill="rgb(0,210,109)" rx="2" ry="2" /> +<text x="361.58" y="703.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="167.0" y="533" width="0.6" height="15.0" fill="rgb(0,203,141)" rx="2" ry="2" /> +<text x="170.05" y="543.5" ></text> +</g> +<g > +<title>file_remove_privs (10,101,010 samples, 0.04%)</title><rect x="413.2" y="485" width="0.6" height="15.0" fill="rgb(0,216,86)" rx="2" ry="2" /> +<text x="416.23" y="495.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="565" width="0.5" height="15.0" fill="rgb(0,211,33)" rx="2" ry="2" /> +<text x="1389.82" y="575.5" ></text> +</g> +<g > +<title>generic_perform_write (20,202,020 samples, 0.08%)</title><rect x="392.5" y="501" width="1.1" height="15.0" fill="rgb(0,222,141)" rx="2" ry="2" /> +<text x="395.54" y="511.5" ></text> +</g> +<g > +<title>kfree (10,101,010 samples, 0.04%)</title><rect x="86.9" y="485" width="0.6" height="15.0" fill="rgb(0,197,81)" rx="2" ry="2" /> +<text x="89.93" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="356.5" y="661" width="1.6" height="15.0" fill="rgb(0,228,89)" rx="2" ry="2" /> +<text x="359.46" y="671.5" ></text> +</g> +<g > +<title>do_get_write_access (10,101,010 samples, 0.04%)</title><rect x="305.0" y="341" width="0.5" height="15.0" fill="rgb(0,194,79)" rx="2" ry="2" /> +<text x="307.99" y="351.5" ></text> +</g> +<g > +<title>delete_from_page_cache_batch (10,101,010 samples, 0.04%)</title><rect x="370.8" y="501" width="0.5" height="15.0" fill="rgb(0,192,32)" rx="2" ry="2" /> +<text x="373.78" y="511.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (20,202,020 samples, 0.08%)</title><rect x="254.6" y="549" width="1.1" height="15.0" fill="rgb(0,236,152)" rx="2" ry="2" /> +<text x="257.59" y="559.5" ></text> +</g> +<g > +<title>__getblk_gfp (20,202,020 samples, 0.08%)</title><rect x="168.6" y="533" width="1.1" height="15.0" fill="rgb(0,215,181)" rx="2" ry="2" /> +<text x="171.64" y="543.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="72.1" y="741" width="0.5" height="15.0" fill="rgb(0,239,139)" rx="2" ry="2" /> +<text x="75.08" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="361.2" y="661" width="2.2" height="15.0" fill="rgb(0,191,69)" rx="2" ry="2" /> +<text x="364.23" y="671.5" ></text> +</g> +<g > +<title>get_current_dir_name (50,505,050 samples, 0.19%)</title><rect x="601.6" y="853" width="2.6" height="15.0" fill="rgb(0,229,111)" rx="2" ry="2" /> +<text x="604.58" y="863.5" ></text> +</g> +<g > +<title>memcpy_erms (10,101,010 samples, 0.04%)</title><rect x="409.0" y="533" width="0.5" height="15.0" fill="rgb(0,222,164)" rx="2" ry="2" /> +<text x="411.99" y="543.5" ></text> +</g> +<g > +<title>sk_clone_lock (10,101,010 samples, 0.04%)</title><rect x="1369.3" y="213" width="0.5" height="15.0" fill="rgb(0,221,40)" rx="2" ry="2" /> +<text x="1372.31" y="223.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.46%)</title><rect x="350.1" y="693" width="6.4" height="15.0" fill="rgb(0,191,14)" rx="2" ry="2" /> +<text x="353.09" y="703.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="71.5" y="709" width="0.6" height="15.0" fill="rgb(0,197,202)" rx="2" ry="2" /> +<text x="74.55" y="719.5" ></text> +</g> +<g > +<title>zap_pte_range (80,808,080 samples, 0.31%)</title><rect x="937.4" y="581" width="4.3" height="15.0" fill="rgb(0,209,191)" rx="2" ry="2" /> +<text x="940.43" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.04%)</title><rect x="432.9" y="597" width="0.5" height="15.0" fill="rgb(0,204,112)" rx="2" ry="2" /> +<text x="435.86" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.38%)</title><rect x="254.1" y="725" width="5.3" height="15.0" fill="rgb(0,197,47)" rx="2" ry="2" /> +<text x="257.06" y="735.5" ></text> +</g> +<g > +<title>free_task (10,101,010 samples, 0.04%)</title><rect x="281.6" y="389" width="0.6" height="15.0" fill="rgb(0,235,70)" rx="2" ry="2" /> +<text x="284.65" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (5,363,636,310 samples, 20.42%)</title><rect x="223.3" y="821" width="281.7" height="15.0" fill="rgb(0,238,62)" rx="2" ry="2" /> +<text x="226.29" y="831.5" >[libgit2.so.1.1.0]</text> +</g> +<g > +<title>__x64_sys_rename (20,202,020 samples, 0.08%)</title><rect x="309.2" y="629" width="1.1" height="15.0" fill="rgb(0,220,67)" rx="2" ry="2" /> +<text x="312.24" y="639.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (20,202,020 samples, 0.08%)</title><rect x="414.8" y="549" width="1.1" height="15.0" fill="rgb(0,206,74)" rx="2" ry="2" /> +<text x="417.82" y="559.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="899.8" y="821" width="0.5" height="15.0" fill="rgb(0,201,0)" rx="2" ry="2" /> +<text x="902.76" y="831.5" ></text> +</g> +<g > +<title>skb_free_head (10,101,010 samples, 0.04%)</title><rect x="39.2" y="85" width="0.5" height="15.0" fill="rgb(0,209,128)" rx="2" ry="2" /> +<text x="42.18" y="95.5" ></text> +</g> +<g > +<title>rename (80,808,080 samples, 0.31%)</title><rect x="433.9" y="677" width="4.3" height="15.0" fill="rgb(0,203,179)" rx="2" ry="2" /> +<text x="436.92" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="238.7" y="693" width="0.5" height="15.0" fill="rgb(0,204,117)" rx="2" ry="2" /> +<text x="241.67" y="703.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="315.1" y="517" width="0.5" height="15.0" fill="rgb(0,215,114)" rx="2" ry="2" /> +<text x="318.07" y="527.5" ></text> +</g> +<g > +<title>__ext4_link (10,101,010 samples, 0.04%)</title><rect x="215.9" y="645" width="0.5" height="15.0" fill="rgb(0,200,194)" rx="2" ry="2" /> +<text x="218.86" y="655.5" ></text> +</g> +<g > +<title>pgd_alloc (10,101,010 samples, 0.04%)</title><rect x="527.3" y="661" width="0.5" height="15.0" fill="rgb(0,224,147)" rx="2" ry="2" /> +<text x="530.30" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.23%)</title><rect x="1385.8" y="853" width="3.1" height="15.0" fill="rgb(0,201,58)" rx="2" ry="2" /> +<text x="1388.76" y="863.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.04%)</title><rect x="188.3" y="549" width="0.5" height="15.0" fill="rgb(0,204,105)" rx="2" ry="2" /> +<text x="191.27" y="559.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.04%)</title><rect x="76.3" y="805" width="0.6" height="15.0" fill="rgb(0,223,62)" rx="2" ry="2" /> +<text x="79.32" y="815.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="125.1" y="533" width="0.6" height="15.0" fill="rgb(0,225,199)" rx="2" ry="2" /> +<text x="128.13" y="543.5" ></text> +</g> +<g > +<title>walk_component (60,606,060 samples, 0.23%)</title><rect x="79.0" y="821" width="3.2" height="15.0" fill="rgb(0,203,121)" rx="2" ry="2" /> +<text x="81.97" y="831.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.04%)</title><rect x="440.8" y="565" width="0.5" height="15.0" fill="rgb(0,196,42)" rx="2" ry="2" /> +<text x="443.82" y="575.5" ></text> +</g> +<g > +<title>__slab_free (10,101,010 samples, 0.04%)</title><rect x="86.9" y="469" width="0.6" height="15.0" fill="rgb(0,194,102)" rx="2" ry="2" /> +<text x="89.93" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (282,828,280 samples, 1.08%)</title><rect x="438.7" y="709" width="14.9" height="15.0" fill="rgb(0,217,98)" rx="2" ry="2" /> +<text x="441.70" y="719.5" ></text> +</g> +<g > +<title>sock_close (131,313,130 samples, 0.50%)</title><rect x="36.0" y="661" width="6.9" height="15.0" fill="rgb(0,211,185)" rx="2" ry="2" /> +<text x="39.00" y="671.5" ></text> +</g> +<g > +<title>filp_close (10,101,010 samples, 0.04%)</title><rect x="219.0" y="629" width="0.6" height="15.0" fill="rgb(0,221,12)" rx="2" ry="2" /> +<text x="222.04" y="639.5" ></text> +</g> +<g > +<title>ipv4_mtu (10,101,010 samples, 0.04%)</title><rect x="1381.5" y="629" width="0.5" height="15.0" fill="rgb(0,239,47)" rx="2" ry="2" /> +<text x="1384.51" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.04%)</title><rect x="48.2" y="629" width="0.5" height="15.0" fill="rgb(0,228,80)" rx="2" ry="2" /> +<text x="51.20" y="639.5" ></text> +</g> +<g > +<title>_IO_fprintf (20,202,020 samples, 0.08%)</title><rect x="23.8" y="885" width="1.1" height="15.0" fill="rgb(0,223,73)" rx="2" ry="2" /> +<text x="26.79" y="895.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="528.9" y="629" width="0.5" height="15.0" fill="rgb(0,232,120)" rx="2" ry="2" /> +<text x="531.89" y="639.5" ></text> +</g> +<g > +<title>__put_page (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="453" width="0.5" height="15.0" fill="rgb(0,196,14)" rx="2" ry="2" /> +<text x="1389.82" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="483.8" y="645" width="0.5" height="15.0" fill="rgb(0,190,61)" rx="2" ry="2" /> +<text x="486.79" y="655.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (20,202,020 samples, 0.08%)</title><rect x="120.9" y="549" width="1.0" height="15.0" fill="rgb(0,230,46)" rx="2" ry="2" /> +<text x="123.89" y="559.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="172.4" y="597" width="0.5" height="15.0" fill="rgb(0,203,17)" rx="2" ry="2" /> +<text x="175.35" y="607.5" ></text> +</g> +<g > +<title>git_config_snapshot (10,101,010 samples, 0.04%)</title><rect x="294.9" y="709" width="0.5" height="15.0" fill="rgb(0,220,43)" rx="2" ry="2" /> +<text x="297.91" y="719.5" ></text> +</g> +<g > +<title>do_linkat (70,707,070 samples, 0.27%)</title><rect x="239.7" y="645" width="3.7" height="15.0" fill="rgb(0,202,185)" rx="2" ry="2" /> +<text x="242.73" y="655.5" ></text> +</g> +<g > +<title>ip_output (20,202,020 samples, 0.08%)</title><rect x="1380.4" y="549" width="1.1" height="15.0" fill="rgb(0,201,103)" rx="2" ry="2" /> +<text x="1383.45" y="559.5" ></text> +</g> +<g > +<title>ext4_ext_insert_extent (20,202,020 samples, 0.08%)</title><rect x="57.2" y="709" width="1.1" height="15.0" fill="rgb(0,229,89)" rx="2" ry="2" /> +<text x="60.22" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.04%)</title><rect x="239.2" y="677" width="0.5" height="15.0" fill="rgb(0,195,82)" rx="2" ry="2" /> +<text x="242.20" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="391.5" y="613" width="0.5" height="15.0" fill="rgb(0,234,159)" rx="2" ry="2" /> +<text x="394.48" y="623.5" ></text> +</g> +<g > +<title>tcp_check_req (20,202,020 samples, 0.08%)</title><rect x="1368.8" y="293" width="1.0" height="15.0" fill="rgb(0,224,18)" rx="2" ry="2" /> +<text x="1371.78" y="303.5" ></text> +</g> +<g > +<title>__pmd_alloc (10,101,010 samples, 0.04%)</title><rect x="516.2" y="629" width="0.5" height="15.0" fill="rgb(0,206,171)" rx="2" ry="2" /> +<text x="519.16" y="639.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="339.5" y="565" width="0.5" height="15.0" fill="rgb(0,217,38)" rx="2" ry="2" /> +<text x="342.48" y="575.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.04%)</title><rect x="449.3" y="325" width="0.5" height="15.0" fill="rgb(0,227,130)" rx="2" ry="2" /> +<text x="452.31" y="335.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.23%)</title><rect x="397.8" y="645" width="3.2" height="15.0" fill="rgb(0,190,196)" rx="2" ry="2" /> +<text x="400.84" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="355.4" y="613" width="1.1" height="15.0" fill="rgb(0,199,57)" rx="2" ry="2" /> +<text x="358.40" y="623.5" ></text> +</g> +<g > +<title>pthread_cond_wait (30,303,030 samples, 0.12%)</title><rect x="16.9" y="901" width="1.6" height="15.0" fill="rgb(0,195,66)" rx="2" ry="2" /> +<text x="19.90" y="911.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="381.9" y="597" width="0.6" height="15.0" fill="rgb(0,211,8)" rx="2" ry="2" /> +<text x="384.93" y="607.5" ></text> +</g> +<g > +<title>do_user_addr_fault (20,202,020 samples, 0.08%)</title><rect x="593.1" y="645" width="1.1" height="15.0" fill="rgb(0,235,146)" rx="2" ry="2" /> +<text x="596.09" y="655.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.04%)</title><rect x="898.7" y="725" width="0.5" height="15.0" fill="rgb(0,196,132)" rx="2" ry="2" /> +<text x="901.70" y="735.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.08%)</title><rect x="287.0" y="501" width="1.0" height="15.0" fill="rgb(0,219,208)" rx="2" ry="2" /> +<text x="289.96" y="511.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.04%)</title><rect x="507.7" y="677" width="0.5" height="15.0" fill="rgb(0,222,109)" rx="2" ry="2" /> +<text x="510.67" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="307.6" y="565" width="0.6" height="15.0" fill="rgb(0,239,90)" rx="2" ry="2" /> +<text x="310.65" y="575.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="83.2" y="757" width="0.5" height="15.0" fill="rgb(0,213,208)" rx="2" ry="2" /> +<text x="86.22" y="767.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="201.0" y="549" width="0.5" height="15.0" fill="rgb(0,221,124)" rx="2" ry="2" /> +<text x="204.00" y="559.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (20,202,020 samples, 0.08%)</title><rect x="255.7" y="517" width="1.0" height="15.0" fill="rgb(0,225,193)" rx="2" ry="2" /> +<text x="258.65" y="527.5" ></text> +</g> +<g > +<title>generic_perform_write (40,404,040 samples, 0.15%)</title><rect x="206.3" y="565" width="2.1" height="15.0" fill="rgb(0,236,30)" rx="2" ry="2" /> +<text x="209.31" y="575.5" ></text> +</g> +<g > +<title>generic_perform_write (20,202,020 samples, 0.08%)</title><rect x="325.2" y="533" width="1.0" height="15.0" fill="rgb(0,197,36)" rx="2" ry="2" /> +<text x="328.16" y="543.5" ></text> +</g> +<g > +<title>send (575,757,570 samples, 2.19%)</title><rect x="1338.5" y="805" width="30.3" height="15.0" fill="rgb(0,196,145)" rx="2" ry="2" /> +<text x="1341.54" y="815.5" >send</text> +</g> +<g > +<title>[libc.so.6] (626,262,620 samples, 2.38%)</title><rect x="1304.6" y="757" width="32.9" height="15.0" fill="rgb(0,228,176)" rx="2" ry="2" /> +<text x="1307.58" y="767.5" >[l..</text> +</g> +<g > +<title>ip_output (20,202,020 samples, 0.08%)</title><rect x="1387.3" y="645" width="1.1" height="15.0" fill="rgb(0,193,28)" rx="2" ry="2" /> +<text x="1390.35" y="655.5" ></text> +</g> +<g > +<title>tcp_queue_rcv (10,101,010 samples, 0.04%)</title><rect x="40.8" y="149" width="0.5" height="15.0" fill="rgb(0,218,171)" rx="2" ry="2" /> +<text x="43.77" y="159.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="230.2" y="485" width="0.5" height="15.0" fill="rgb(0,197,34)" rx="2" ry="2" /> +<text x="233.18" y="495.5" ></text> +</g> +<g > +<title>get_orlov_stats (10,101,010 samples, 0.04%)</title><rect x="229.1" y="565" width="0.6" height="15.0" fill="rgb(0,227,67)" rx="2" ry="2" /> +<text x="232.12" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="189.9" y="629" width="0.5" height="15.0" fill="rgb(0,196,86)" rx="2" ry="2" /> +<text x="192.86" y="639.5" ></text> +</g> +<g > +<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.04%)</title><rect x="158.6" y="549" width="0.5" height="15.0" fill="rgb(0,230,25)" rx="2" ry="2" /> +<text x="161.56" y="559.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.04%)</title><rect x="109.2" y="373" width="0.5" height="15.0" fill="rgb(0,239,8)" rx="2" ry="2" /> +<text x="112.22" y="383.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="64.1" y="725" width="0.5" height="15.0" fill="rgb(0,227,57)" rx="2" ry="2" /> +<text x="67.12" y="735.5" ></text> +</g> +<g > +<title>up_write (10,101,010 samples, 0.04%)</title><rect x="528.4" y="677" width="0.5" height="15.0" fill="rgb(0,209,3)" rx="2" ry="2" /> +<text x="531.36" y="687.5" ></text> +</g> +<g > +<title>ip_output (10,101,010 samples, 0.04%)</title><rect x="1367.2" y="149" width="0.5" height="15.0" fill="rgb(0,204,123)" rx="2" ry="2" /> +<text x="1370.19" y="159.5" ></text> +</g> +<g > +<title>ext4_xattr_security_get (10,101,010 samples, 0.04%)</title><rect x="392.0" y="421" width="0.5" height="15.0" fill="rgb(0,198,24)" rx="2" ry="2" /> +<text x="395.01" y="431.5" ></text> +</g> +<g > +<title>git_reference_name_to_id (30,303,030 samples, 0.12%)</title><rect x="307.6" y="661" width="1.6" height="15.0" fill="rgb(0,199,201)" rx="2" ry="2" /> +<text x="310.65" y="671.5" ></text> +</g> +<g > +<title>out_of_line_wait_on_bit (10,101,010 samples, 0.04%)</title><rect x="367.1" y="469" width="0.5" height="15.0" fill="rgb(0,196,131)" rx="2" ry="2" /> +<text x="370.07" y="479.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="234.4" y="389" width="0.6" height="15.0" fill="rgb(0,227,207)" rx="2" ry="2" /> +<text x="237.43" y="399.5" ></text> +</g> +<g > +<title>wait_for_child (30,303,030 samples, 0.12%)</title><rect x="598.9" y="821" width="1.6" height="15.0" fill="rgb(0,212,122)" rx="2" ry="2" /> +<text x="601.93" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="211.6" y="741" width="0.5" height="15.0" fill="rgb(0,200,180)" rx="2" ry="2" /> +<text x="214.61" y="751.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="565" width="0.5" height="15.0" fill="rgb(0,209,122)" rx="2" ry="2" /> +<text x="1342.07" y="575.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.04%)</title><rect x="75.3" y="789" width="0.5" height="15.0" fill="rgb(0,201,184)" rx="2" ry="2" /> +<text x="78.26" y="799.5" ></text> +</g> +<g > +<title>__x64_sys_brk (10,101,010 samples, 0.04%)</title><rect x="930.0" y="677" width="0.5" height="15.0" fill="rgb(0,203,118)" rx="2" ry="2" /> +<text x="933.00" y="687.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (20,202,020 samples, 0.08%)</title><rect x="259.4" y="677" width="1.0" height="15.0" fill="rgb(0,231,139)" rx="2" ry="2" /> +<text x="262.37" y="687.5" ></text> +</g> +<g > +<title>git_reference_symbolic_create_matching (121,212,120 samples, 0.46%)</title><rect x="316.1" y="773" width="6.4" height="15.0" fill="rgb(0,231,127)" rx="2" ry="2" /> +<text x="319.14" y="783.5" ></text> +</g> +<g > +<title>ext4_rename2 (90,909,090 samples, 0.35%)</title><rect x="448.8" y="597" width="4.8" height="15.0" fill="rgb(0,210,145)" rx="2" ry="2" /> +<text x="451.78" y="607.5" ></text> +</g> +<g > +<title>rwsem_optimistic_spin (10,101,010 samples, 0.04%)</title><rect x="180.8" y="661" width="0.6" height="15.0" fill="rgb(0,226,67)" rx="2" ry="2" /> +<text x="183.84" y="671.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="367.1" y="501" width="0.5" height="15.0" fill="rgb(0,216,205)" rx="2" ry="2" /> +<text x="370.07" y="511.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (10,101,010 samples, 0.04%)</title><rect x="342.1" y="485" width="0.6" height="15.0" fill="rgb(0,203,89)" rx="2" ry="2" /> +<text x="345.13" y="495.5" ></text> +</g> +<g > +<title>submit_bio (10,101,010 samples, 0.04%)</title><rect x="274.8" y="469" width="0.5" height="15.0" fill="rgb(0,191,169)" rx="2" ry="2" /> +<text x="277.75" y="479.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.04%)</title><rect x="187.2" y="661" width="0.5" height="15.0" fill="rgb(0,207,96)" rx="2" ry="2" /> +<text x="190.21" y="671.5" ></text> +</g> +<g > +<title>printbuf_new (10,101,010 samples, 0.04%)</title><rect x="1375.1" y="757" width="0.6" height="15.0" fill="rgb(0,210,181)" rx="2" ry="2" /> +<text x="1378.14" y="767.5" ></text> +</g> +<g > +<title>process_backlog (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="421" width="1.6" height="15.0" fill="rgb(0,213,10)" rx="2" ry="2" /> +<text x="1370.19" y="431.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="400.5" y="581" width="0.5" height="15.0" fill="rgb(0,232,132)" rx="2" ry="2" /> +<text x="403.50" y="591.5" ></text> +</g> +<g > +<title>generic_perform_write (30,303,030 samples, 0.12%)</title><rect x="303.9" y="485" width="1.6" height="15.0" fill="rgb(0,205,92)" rx="2" ry="2" /> +<text x="306.93" y="495.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (40,404,040 samples, 0.15%)</title><rect x="377.2" y="629" width="2.1" height="15.0" fill="rgb(0,233,36)" rx="2" ry="2" /> +<text x="380.15" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="289.6" y="645" width="2.1" height="15.0" fill="rgb(0,192,68)" rx="2" ry="2" /> +<text x="292.61" y="655.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.04%)</title><rect x="281.6" y="549" width="0.6" height="15.0" fill="rgb(0,228,37)" rx="2" ry="2" /> +<text x="284.65" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.35%)</title><rect x="183.5" y="773" width="4.8" height="15.0" fill="rgb(0,229,93)" rx="2" ry="2" /> +<text x="186.49" y="783.5" ></text> +</g> +<g > +<title>__ext4_new_inode (10,101,010 samples, 0.04%)</title><rect x="303.4" y="469" width="0.5" height="15.0" fill="rgb(0,207,90)" rx="2" ry="2" /> +<text x="306.40" y="479.5" ></text> +</g> +<g > +<title>__handle_mm_fault (20,202,020 samples, 0.08%)</title><rect x="596.3" y="693" width="1.0" height="15.0" fill="rgb(0,235,114)" rx="2" ry="2" /> +<text x="599.27" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="292.3" y="581" width="0.5" height="15.0" fill="rgb(0,223,65)" rx="2" ry="2" /> +<text x="295.26" y="591.5" ></text> +</g> +<g > +<title>select_collect (20,202,020 samples, 0.08%)</title><rect x="179.3" y="645" width="1.0" height="15.0" fill="rgb(0,191,12)" rx="2" ry="2" /> +<text x="182.25" y="655.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.04%)</title><rect x="1379.9" y="533" width="0.5" height="15.0" fill="rgb(0,222,80)" rx="2" ry="2" /> +<text x="1382.92" y="543.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.04%)</title><rect x="269.4" y="453" width="0.6" height="15.0" fill="rgb(0,229,188)" rx="2" ry="2" /> +<text x="272.45" y="463.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.08%)</title><rect x="394.7" y="533" width="1.0" height="15.0" fill="rgb(0,233,201)" rx="2" ry="2" /> +<text x="397.66" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="88.0" y="597" width="0.5" height="15.0" fill="rgb(0,209,121)" rx="2" ry="2" /> +<text x="90.99" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="432.9" y="613" width="0.5" height="15.0" fill="rgb(0,192,174)" rx="2" ry="2" /> +<text x="435.86" y="623.5" ></text> +</g> +<g > +<title>__vma_adjust (10,101,010 samples, 0.04%)</title><rect x="619.6" y="661" width="0.5" height="15.0" fill="rgb(0,237,88)" rx="2" ry="2" /> +<text x="622.62" y="671.5" ></text> +</g> +<g > +<title>close (20,202,020 samples, 0.08%)</title><rect x="502.4" y="677" width="1.0" height="15.0" fill="rgb(0,238,164)" rx="2" ry="2" /> +<text x="505.36" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="401.0" y="661" width="0.6" height="15.0" fill="rgb(0,193,129)" rx="2" ry="2" /> +<text x="404.03" y="671.5" ></text> +</g> +<g > +<title>vfs_unlink (80,808,080 samples, 0.31%)</title><rect x="105.5" y="581" width="4.2" height="15.0" fill="rgb(0,214,57)" rx="2" ry="2" /> +<text x="108.50" y="591.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.08%)</title><rect x="201.5" y="677" width="1.1" height="15.0" fill="rgb(0,224,138)" rx="2" ry="2" /> +<text x="204.53" y="687.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="355.9" y="597" width="0.6" height="15.0" fill="rgb(0,237,52)" rx="2" ry="2" /> +<text x="358.93" y="607.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="159.6" y="469" width="0.5" height="15.0" fill="rgb(0,200,129)" rx="2" ry="2" /> +<text x="162.62" y="479.5" ></text> +</g> +<g > +<title>__netif_receive_skb (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="389" width="0.6" height="15.0" fill="rgb(0,229,142)" rx="2" ry="2" /> +<text x="1383.45" y="399.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="471.1" y="645" width="0.5" height="15.0" fill="rgb(0,218,103)" rx="2" ry="2" /> +<text x="474.06" y="655.5" ></text> +</g> +<g > +<title>unlink_cb (343,434,340 samples, 1.31%)</title><rect x="126.2" y="709" width="18.0" height="15.0" fill="rgb(0,237,181)" rx="2" ry="2" /> +<text x="129.19" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="490.2" y="677" width="0.5" height="15.0" fill="rgb(0,201,149)" rx="2" ry="2" /> +<text x="493.16" y="687.5" ></text> +</g> +<g > +<title>new_sync_read (10,101,010 samples, 0.04%)</title><rect x="479.0" y="517" width="0.6" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" /> +<text x="482.02" y="527.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="444.5" y="597" width="0.6" height="15.0" fill="rgb(0,230,196)" rx="2" ry="2" /> +<text x="447.53" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="933.7" y="789" width="0.5" height="15.0" fill="rgb(0,192,52)" rx="2" ry="2" /> +<text x="936.71" y="799.5" ></text> +</g> +<g > +<title>do_wp_page (20,202,020 samples, 0.08%)</title><rect x="616.4" y="741" width="1.1" height="15.0" fill="rgb(0,213,101)" rx="2" ry="2" /> +<text x="619.44" y="751.5" ></text> +</g> +<g > +<title>getdents64 (40,404,040 samples, 0.15%)</title><rect x="177.1" y="789" width="2.2" height="15.0" fill="rgb(0,208,92)" rx="2" ry="2" /> +<text x="180.13" y="799.5" ></text> +</g> +<g > +<title>ip_local_out (90,909,090 samples, 0.35%)</title><rect x="37.6" y="469" width="4.8" height="15.0" fill="rgb(0,209,43)" rx="2" ry="2" /> +<text x="40.59" y="479.5" ></text> +</g> +<g > +<title>ext4_orphan_add (10,101,010 samples, 0.04%)</title><rect x="437.6" y="549" width="0.6" height="15.0" fill="rgb(0,200,49)" rx="2" ry="2" /> +<text x="440.64" y="559.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.04%)</title><rect x="508.2" y="613" width="0.5" height="15.0" fill="rgb(0,209,182)" rx="2" ry="2" /> +<text x="511.20" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="146.4" y="677" width="0.5" height="15.0" fill="rgb(0,204,35)" rx="2" ry="2" /> +<text x="149.36" y="687.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.04%)</title><rect x="73.1" y="709" width="0.6" height="15.0" fill="rgb(0,225,78)" rx="2" ry="2" /> +<text x="76.14" y="719.5" ></text> +</g> +<g > +<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="128.8" y="469" width="0.6" height="15.0" fill="rgb(0,196,61)" rx="2" ry="2" /> +<text x="131.85" y="479.5" ></text> +</g> +<g > +<title>d_walk (20,202,020 samples, 0.08%)</title><rect x="179.3" y="661" width="1.0" height="15.0" fill="rgb(0,217,34)" rx="2" ry="2" /> +<text x="182.25" y="671.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="315.1" y="501" width="0.5" height="15.0" fill="rgb(0,200,166)" rx="2" ry="2" /> +<text x="318.07" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="941.7" y="837" width="1.0" height="15.0" fill="rgb(0,223,46)" rx="2" ry="2" /> +<text x="944.67" y="847.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.04%)</title><rect x="186.1" y="613" width="0.6" height="15.0" fill="rgb(0,234,109)" rx="2" ry="2" /> +<text x="189.15" y="623.5" ></text> +</g> +<g > +<title>make_pollfds (10,101,010 samples, 0.04%)</title><rect x="43.4" y="869" width="0.6" height="15.0" fill="rgb(0,201,178)" rx="2" ry="2" /> +<text x="46.43" y="879.5" ></text> +</g> +<g > +<title>filemap_flush (80,808,080 samples, 0.31%)</title><rect x="448.8" y="549" width="4.2" height="15.0" fill="rgb(0,210,18)" rx="2" ry="2" /> +<text x="451.78" y="559.5" ></text> +</g> +<g > +<title>nft_do_chain_ipv4 (10,101,010 samples, 0.04%)</title><rect x="47.1" y="485" width="0.6" height="15.0" fill="rgb(0,225,189)" rx="2" ry="2" /> +<text x="50.14" y="495.5" ></text> +</g> +<g > +<title>inet6_sendmsg (80,808,080 samples, 0.31%)</title><rect x="10.5" y="741" width="4.3" height="15.0" fill="rgb(0,237,77)" rx="2" ry="2" /> +<text x="13.53" y="751.5" ></text> +</g> +<g > +<title>ext4_fc_init_inode (10,101,010 samples, 0.04%)</title><rect x="71.0" y="709" width="0.5" height="15.0" fill="rgb(0,209,18)" rx="2" ry="2" /> +<text x="74.01" y="719.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="291.7" y="549" width="0.6" height="15.0" fill="rgb(0,201,92)" rx="2" ry="2" /> +<text x="294.73" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.04%)</title><rect x="440.8" y="629" width="0.5" height="15.0" fill="rgb(0,217,27)" rx="2" ry="2" /> +<text x="443.82" y="639.5" ></text> +</g> +<g > +<title>ext4_setent (10,101,010 samples, 0.04%)</title><rect x="344.8" y="581" width="0.5" height="15.0" fill="rgb(0,217,187)" rx="2" ry="2" /> +<text x="347.79" y="591.5" ></text> +</g> +<g > +<title>ext4_evict_inode (20,202,020 samples, 0.08%)</title><rect x="147.4" y="581" width="1.1" height="15.0" fill="rgb(0,215,169)" rx="2" ry="2" /> +<text x="150.42" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.23%)</title><rect x="89.6" y="613" width="3.2" height="15.0" fill="rgb(0,218,84)" rx="2" ry="2" /> +<text x="92.58" y="623.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.04%)</title><rect x="381.4" y="549" width="0.5" height="15.0" fill="rgb(0,191,140)" rx="2" ry="2" /> +<text x="384.40" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="300.2" y="677" width="1.1" height="15.0" fill="rgb(0,214,76)" rx="2" ry="2" /> +<text x="303.22" y="687.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.04%)</title><rect x="440.8" y="581" width="0.5" height="15.0" fill="rgb(0,230,170)" rx="2" ry="2" /> +<text x="443.82" y="591.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.04%)</title><rect x="306.1" y="517" width="0.5" height="15.0" fill="rgb(0,229,147)" rx="2" ry="2" /> +<text x="309.06" y="527.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.04%)</title><rect x="352.7" y="549" width="0.6" height="15.0" fill="rgb(0,190,33)" rx="2" ry="2" /> +<text x="355.75" y="559.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.04%)</title><rect x="391.5" y="565" width="0.5" height="15.0" fill="rgb(0,225,143)" rx="2" ry="2" /> +<text x="394.48" y="575.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.08%)</title><rect x="231.2" y="517" width="1.1" height="15.0" fill="rgb(0,206,102)" rx="2" ry="2" /> +<text x="234.25" y="527.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.04%)</title><rect x="288.5" y="549" width="0.6" height="15.0" fill="rgb(0,227,61)" rx="2" ry="2" /> +<text x="291.55" y="559.5" ></text> +</g> +<g > +<title>tcp_send_ack (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="181" width="0.5" height="15.0" fill="rgb(0,204,207)" rx="2" ry="2" /> +<text x="1342.07" y="191.5" ></text> +</g> +<g > +<title>xmit_one.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="1381.0" y="421" width="0.5" height="15.0" fill="rgb(0,192,180)" rx="2" ry="2" /> +<text x="1383.98" y="431.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="267.3" y="661" width="1.1" height="15.0" fill="rgb(0,234,91)" rx="2" ry="2" /> +<text x="270.32" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_openat (40,404,040 samples, 0.15%)</title><rect x="405.3" y="661" width="2.1" height="15.0" fill="rgb(0,203,28)" rx="2" ry="2" /> +<text x="408.27" y="671.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="587.8" y="581" width="0.5" height="15.0" fill="rgb(0,223,160)" rx="2" ry="2" /> +<text x="590.79" y="591.5" ></text> +</g> +<g > +<title>fsnotify_grab_connector (10,101,010 samples, 0.04%)</title><rect x="340.0" y="533" width="0.5" height="15.0" fill="rgb(0,207,64)" rx="2" ry="2" /> +<text x="343.01" y="543.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.04%)</title><rect x="146.4" y="613" width="0.5" height="15.0" fill="rgb(0,223,90)" rx="2" ry="2" /> +<text x="149.36" y="623.5" ></text> +</g> +<g > +<title>fstatat (40,404,040 samples, 0.15%)</title><rect x="393.6" y="661" width="2.1" height="15.0" fill="rgb(0,217,13)" rx="2" ry="2" /> +<text x="396.60" y="671.5" ></text> +</g> +<g > +<title>__netif_receive_skb (80,808,080 samples, 0.31%)</title><rect x="37.6" y="293" width="4.2" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="40.59" y="303.5" ></text> +</g> +<g > +<title>ext4_block_bitmap (10,101,010 samples, 0.04%)</title><rect x="374.0" y="421" width="0.5" height="15.0" fill="rgb(0,233,48)" rx="2" ry="2" /> +<text x="376.97" y="431.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="402.1" y="581" width="1.0" height="15.0" fill="rgb(0,228,174)" rx="2" ry="2" /> +<text x="405.09" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="208.4" y="725" width="2.7" height="15.0" fill="rgb(0,231,149)" rx="2" ry="2" /> +<text x="211.43" y="735.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.04%)</title><rect x="350.6" y="469" width="0.6" height="15.0" fill="rgb(0,208,125)" rx="2" ry="2" /> +<text x="353.62" y="479.5" ></text> +</g> +<g > +<title>jbd2_journal_add_journal_head (10,101,010 samples, 0.04%)</title><rect x="388.3" y="421" width="0.5" height="15.0" fill="rgb(0,228,200)" rx="2" ry="2" /> +<text x="391.29" y="431.5" ></text> +</g> +<g > +<title>ci_run (1,757,575,740 samples, 6.69%)</title><rect x="509.3" y="869" width="92.3" height="15.0" fill="rgb(0,234,202)" rx="2" ry="2" /> +<text x="512.26" y="879.5" >ci_run</text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.04%)</title><rect x="400.5" y="549" width="0.5" height="15.0" fill="rgb(0,216,148)" rx="2" ry="2" /> +<text x="403.50" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.35%)</title><rect x="295.4" y="693" width="4.8" height="15.0" fill="rgb(0,210,182)" rx="2" ry="2" /> +<text x="298.44" y="703.5" ></text> +</g> +<g > +<title>exc_page_fault (303,030,300 samples, 1.15%)</title><rect x="554.4" y="645" width="15.9" height="15.0" fill="rgb(0,208,139)" rx="2" ry="2" /> +<text x="557.36" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="480.6" y="709" width="2.1" height="15.0" fill="rgb(0,218,111)" rx="2" ry="2" /> +<text x="483.61" y="719.5" ></text> +</g> +<g > +<title>tlb_remove_table_rcu (10,101,010 samples, 0.04%)</title><rect x="597.3" y="629" width="0.6" height="15.0" fill="rgb(0,192,116)" rx="2" ry="2" /> +<text x="600.34" y="639.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.04%)</title><rect x="479.0" y="613" width="0.6" height="15.0" fill="rgb(0,224,171)" rx="2" ry="2" /> +<text x="482.02" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.15%)</title><rect x="420.7" y="725" width="2.1" height="15.0" fill="rgb(0,194,59)" rx="2" ry="2" /> +<text x="423.66" y="735.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.04%)</title><rect x="92.8" y="645" width="0.5" height="15.0" fill="rgb(0,195,77)" rx="2" ry="2" /> +<text x="95.77" y="655.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="136.8" y="421" width="0.5" height="15.0" fill="rgb(0,235,106)" rx="2" ry="2" /> +<text x="139.81" y="431.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="142.6" y="629" width="0.6" height="15.0" fill="rgb(0,220,50)" rx="2" ry="2" /> +<text x="145.64" y="639.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="613" width="0.5" height="15.0" fill="rgb(0,236,135)" rx="2" ry="2" /> +<text x="1388.76" y="623.5" ></text> +</g> +<g > +<title>ext4_readdir (111,111,110 samples, 0.42%)</title><rect x="118.8" y="613" width="5.8" height="15.0" fill="rgb(0,212,90)" rx="2" ry="2" /> +<text x="121.77" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="136.3" y="453" width="0.5" height="15.0" fill="rgb(0,195,79)" rx="2" ry="2" /> +<text x="139.27" y="463.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="299.2" y="533" width="0.5" height="15.0" fill="rgb(0,202,147)" rx="2" ry="2" /> +<text x="302.16" y="543.5" ></text> +</g> +<g > +<title>khugepaged_enter_vma_merge (10,101,010 samples, 0.04%)</title><rect x="930.0" y="629" width="0.5" height="15.0" fill="rgb(0,216,193)" rx="2" ry="2" /> +<text x="933.00" y="639.5" ></text> +</g> +<g > +<title>tcp_write_xmit (10,101,010 samples, 0.04%)</title><rect x="1339.6" y="645" width="0.5" height="15.0" fill="rgb(0,190,108)" rx="2" ry="2" /> +<text x="1342.60" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="382.5" y="613" width="1.5" height="15.0" fill="rgb(0,232,14)" rx="2" ry="2" /> +<text x="385.46" y="623.5" ></text> +</g> +<g > +<title>append_event (10,101,010 samples, 0.04%)</title><rect x="42.9" y="853" width="0.5" height="15.0" fill="rgb(0,225,95)" rx="2" ry="2" /> +<text x="45.90" y="863.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (20,202,020 samples, 0.08%)</title><rect x="250.3" y="565" width="1.1" height="15.0" fill="rgb(0,199,168)" rx="2" ry="2" /> +<text x="253.35" y="575.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="395.7" y="469" width="0.6" height="15.0" fill="rgb(0,237,73)" rx="2" ry="2" /> +<text x="398.72" y="479.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="1379.4" y="645" width="0.5" height="15.0" fill="rgb(0,205,178)" rx="2" ry="2" /> +<text x="1382.39" y="655.5" ></text> +</g> +<g > +<title>alloc_page_buffers (10,101,010 samples, 0.04%)</title><rect x="425.4" y="549" width="0.6" height="15.0" fill="rgb(0,227,120)" rx="2" ry="2" /> +<text x="428.43" y="559.5" ></text> +</g> +<g > +<title>alloc_pages_vma (10,101,010 samples, 0.04%)</title><rect x="92.8" y="501" width="0.5" height="15.0" fill="rgb(0,219,108)" rx="2" ry="2" /> +<text x="95.77" y="511.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.04%)</title><rect x="392.5" y="373" width="0.6" height="15.0" fill="rgb(0,212,139)" rx="2" ry="2" /> +<text x="395.54" y="383.5" ></text> +</g> +<g > +<title>__netif_receive_skb (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="405" width="0.5" height="15.0" fill="rgb(0,193,183)" rx="2" ry="2" /> +<text x="1388.76" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="310.3" y="693" width="0.5" height="15.0" fill="rgb(0,208,71)" rx="2" ry="2" /> +<text x="313.30" y="703.5" ></text> +</g> +<g > +<title>open_last_lookups (10,101,010 samples, 0.04%)</title><rect x="303.4" y="517" width="0.5" height="15.0" fill="rgb(0,216,183)" rx="2" ry="2" /> +<text x="306.40" y="527.5" ></text> +</g> +<g > +<title>add_mm_counter_fast (10,101,010 samples, 0.04%)</title><rect x="919.9" y="693" width="0.5" height="15.0" fill="rgb(0,232,164)" rx="2" ry="2" /> +<text x="922.92" y="703.5" ></text> +</g> +<g > +<title>walk_component (40,404,040 samples, 0.15%)</title><rect x="428.1" y="613" width="2.1" height="15.0" fill="rgb(0,223,183)" rx="2" ry="2" /> +<text x="431.09" y="623.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (80,808,080 samples, 0.31%)</title><rect x="10.5" y="677" width="4.3" height="15.0" fill="rgb(0,230,50)" rx="2" ry="2" /> +<text x="13.53" y="687.5" ></text> +</g> +<g > +<title>should_fail_bio (10,101,010 samples, 0.04%)</title><rect x="274.8" y="421" width="0.5" height="15.0" fill="rgb(0,204,136)" rx="2" ry="2" /> +<text x="277.75" y="431.5" ></text> +</g> +<g > +<title>ext4_evict_inode (60,606,060 samples, 0.23%)</title><rect x="158.0" y="581" width="3.2" height="15.0" fill="rgb(0,237,8)" rx="2" ry="2" /> +<text x="161.03" y="591.5" ></text> +</g> +<g > +<title>scsi_prepare_cmd (10,101,010 samples, 0.04%)</title><rect x="343.7" y="293" width="0.6" height="15.0" fill="rgb(0,220,38)" rx="2" ry="2" /> +<text x="346.73" y="303.5" ></text> +</g> +<g > +<title>__call_rcu (10,101,010 samples, 0.04%)</title><rect x="32.8" y="661" width="0.5" height="15.0" fill="rgb(0,210,115)" rx="2" ry="2" /> +<text x="35.81" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 0.46%)</title><rect x="432.3" y="725" width="6.4" height="15.0" fill="rgb(0,217,24)" rx="2" ry="2" /> +<text x="435.33" y="735.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="458.3" y="597" width="0.6" height="15.0" fill="rgb(0,220,155)" rx="2" ry="2" /> +<text x="461.33" y="607.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.04%)</title><rect x="318.3" y="581" width="0.5" height="15.0" fill="rgb(0,196,136)" rx="2" ry="2" /> +<text x="321.26" y="591.5" ></text> +</g> +<g > +<title>buf_create_from_string (20,202,020 samples, 0.08%)</title><rect x="941.7" y="853" width="1.0" height="15.0" fill="rgb(0,193,198)" rx="2" ry="2" /> +<text x="944.67" y="863.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.04%)</title><rect x="147.9" y="565" width="0.6" height="15.0" fill="rgb(0,195,64)" rx="2" ry="2" /> +<text x="150.95" y="575.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="291.7" y="565" width="0.6" height="15.0" fill="rgb(0,227,34)" rx="2" ry="2" /> +<text x="294.73" y="575.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.04%)</title><rect x="1383.1" y="693" width="0.5" height="15.0" fill="rgb(0,237,133)" rx="2" ry="2" /> +<text x="1386.10" y="703.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.04%)</title><rect x="149.0" y="613" width="0.5" height="15.0" fill="rgb(0,233,52)" rx="2" ry="2" /> +<text x="152.01" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="295.4" y="645" width="1.1" height="15.0" fill="rgb(0,232,154)" rx="2" ry="2" /> +<text x="298.44" y="655.5" ></text> +</g> +<g > +<title>mark_page_accessed (10,101,010 samples, 0.04%)</title><rect x="73.1" y="661" width="0.6" height="15.0" fill="rgb(0,225,20)" rx="2" ry="2" /> +<text x="76.14" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="220.6" y="709" width="1.1" height="15.0" fill="rgb(0,198,164)" rx="2" ry="2" /> +<text x="223.63" y="719.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="1378.9" y="837" width="0.5" height="15.0" fill="rgb(0,191,33)" rx="2" ry="2" /> +<text x="1381.86" y="847.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.15%)</title><rect x="337.4" y="693" width="2.1" height="15.0" fill="rgb(0,216,36)" rx="2" ry="2" /> +<text x="340.36" y="703.5" ></text> +</g> +<g > +<title>copy_user_generic_unrolled (10,101,010 samples, 0.04%)</title><rect x="185.6" y="437" width="0.5" height="15.0" fill="rgb(0,209,149)" rx="2" ry="2" /> +<text x="188.62" y="447.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.04%)</title><rect x="429.7" y="533" width="0.5" height="15.0" fill="rgb(0,196,51)" rx="2" ry="2" /> +<text x="432.68" y="543.5" ></text> +</g> +<g > +<title>ext4_append (20,202,020 samples, 0.08%)</title><rect x="508.2" y="677" width="1.1" height="15.0" fill="rgb(0,190,84)" rx="2" ry="2" /> +<text x="511.20" y="687.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="246.6" y="613" width="0.6" height="15.0" fill="rgb(0,221,82)" rx="2" ry="2" /> +<text x="249.63" y="623.5" ></text> +</g> +<g > +<title>process_measurement (10,101,010 samples, 0.04%)</title><rect x="63.1" y="789" width="0.5" height="15.0" fill="rgb(0,190,57)" rx="2" ry="2" /> +<text x="66.06" y="799.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="373.4" y="421" width="0.6" height="15.0" fill="rgb(0,238,56)" rx="2" ry="2" /> +<text x="376.44" y="431.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (50,505,050 samples, 0.19%)</title><rect x="1364.0" y="581" width="2.7" height="15.0" fill="rgb(0,192,203)" rx="2" ry="2" /> +<text x="1367.00" y="591.5" ></text> +</g> +<g > +<title>ktime_get (10,101,010 samples, 0.04%)</title><rect x="449.3" y="261" width="0.5" height="15.0" fill="rgb(0,207,142)" rx="2" ry="2" /> +<text x="452.31" y="271.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (161,616,160 samples, 0.62%)</title><rect x="336.8" y="725" width="8.5" height="15.0" fill="rgb(0,226,192)" rx="2" ry="2" /> +<text x="339.83" y="735.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.04%)</title><rect x="342.1" y="453" width="0.6" height="15.0" fill="rgb(0,224,134)" rx="2" ry="2" /> +<text x="345.13" y="463.5" ></text> +</g> +<g > +<title>blk_update_request (10,101,010 samples, 0.04%)</title><rect x="94.9" y="309" width="0.5" height="15.0" fill="rgb(0,190,53)" rx="2" ry="2" /> +<text x="97.89" y="319.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="64.1" y="741" width="0.5" height="15.0" fill="rgb(0,229,100)" rx="2" ry="2" /> +<text x="67.12" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="308.2" y="517" width="0.5" height="15.0" fill="rgb(0,224,74)" rx="2" ry="2" /> +<text x="311.18" y="527.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.04%)</title><rect x="382.5" y="453" width="0.5" height="15.0" fill="rgb(0,233,63)" rx="2" ry="2" /> +<text x="385.46" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="224.3" y="709" width="0.6" height="15.0" fill="rgb(0,215,109)" rx="2" ry="2" /> +<text x="227.35" y="719.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.04%)</title><rect x="185.1" y="709" width="0.5" height="15.0" fill="rgb(0,208,92)" rx="2" ry="2" /> +<text x="188.09" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_pipe2 (10,101,010 samples, 0.04%)</title><rect x="598.4" y="773" width="0.5" height="15.0" fill="rgb(0,203,107)" rx="2" ry="2" /> +<text x="601.40" y="783.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.04%)</title><rect x="128.8" y="517" width="0.6" height="15.0" fill="rgb(0,197,120)" rx="2" ry="2" /> +<text x="131.85" y="527.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="234.4" y="341" width="0.6" height="15.0" fill="rgb(0,222,73)" rx="2" ry="2" /> +<text x="237.43" y="351.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.12%)</title><rect x="164.4" y="757" width="1.6" height="15.0" fill="rgb(0,190,92)" rx="2" ry="2" /> +<text x="167.39" y="767.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.04%)</title><rect x="479.0" y="469" width="0.6" height="15.0" fill="rgb(0,219,80)" rx="2" ry="2" /> +<text x="482.02" y="479.5" ></text> +</g> +<g > +<title>ip_output (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="565" width="1.6" height="15.0" fill="rgb(0,233,4)" rx="2" ry="2" /> +<text x="1370.19" y="575.5" ></text> +</g> +<g > +<title>user_path_at_empty (60,606,060 samples, 0.23%)</title><rect x="79.0" y="869" width="3.2" height="15.0" fill="rgb(0,203,173)" rx="2" ry="2" /> +<text x="81.97" y="879.5" ></text> +</g> +<g > +<title>readdir64 (20,202,020 samples, 0.08%)</title><rect x="353.8" y="629" width="1.1" height="15.0" fill="rgb(0,238,125)" rx="2" ry="2" /> +<text x="356.81" y="639.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (20,202,020 samples, 0.08%)</title><rect x="600.5" y="837" width="1.1" height="15.0" fill="rgb(0,198,17)" rx="2" ry="2" /> +<text x="603.52" y="847.5" ></text> +</g> +<g > +<title>proc_capture (1,727,272,710 samples, 6.57%)</title><rect x="509.8" y="837" width="90.7" height="15.0" fill="rgb(0,221,99)" rx="2" ry="2" /> +<text x="512.79" y="847.5" >proc_capture</text> +</g> +<g > +<title>json_recv (70,707,070 samples, 0.27%)</title><rect x="1374.6" y="821" width="3.7" height="15.0" fill="rgb(0,238,154)" rx="2" ry="2" /> +<text x="1377.61" y="831.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.04%)</title><rect x="426.0" y="517" width="0.5" height="15.0" fill="rgb(0,203,50)" rx="2" ry="2" /> +<text x="428.96" y="527.5" ></text> +</g> +<g > +<title>ext4_generic_delete_entry (10,101,010 samples, 0.04%)</title><rect x="108.2" y="517" width="0.5" height="15.0" fill="rgb(0,235,134)" rx="2" ry="2" /> +<text x="111.15" y="527.5" ></text> +</g> +<g > +<title>rename (101,010,100 samples, 0.38%)</title><rect x="340.0" y="709" width="5.3" height="15.0" fill="rgb(0,212,53)" rx="2" ry="2" /> +<text x="343.01" y="719.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.04%)</title><rect x="264.7" y="613" width="0.5" height="15.0" fill="rgb(0,200,90)" rx="2" ry="2" /> +<text x="267.67" y="623.5" ></text> +</g> +<g > +<title>dma_direct_map_sg (10,101,010 samples, 0.04%)</title><rect x="372.4" y="229" width="0.5" height="15.0" fill="rgb(0,220,102)" rx="2" ry="2" /> +<text x="375.38" y="239.5" ></text> +</g> +<g > +<title>ext4fs_dirhash (30,303,030 samples, 0.12%)</title><rect x="121.9" y="549" width="1.6" height="15.0" fill="rgb(0,202,166)" rx="2" ry="2" /> +<text x="124.95" y="559.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.04%)</title><rect x="332.6" y="421" width="0.5" height="15.0" fill="rgb(0,214,131)" rx="2" ry="2" /> +<text x="335.58" y="431.5" ></text> +</g> +<g > +<title>page_counter_uncharge (10,101,010 samples, 0.04%)</title><rect x="434.5" y="389" width="0.5" height="15.0" fill="rgb(0,197,27)" rx="2" ry="2" /> +<text x="437.45" y="399.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.04%)</title><rect x="520.9" y="581" width="0.6" height="15.0" fill="rgb(0,208,187)" rx="2" ry="2" /> +<text x="523.93" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="219.6" y="677" width="1.0" height="15.0" fill="rgb(0,211,40)" rx="2" ry="2" /> +<text x="222.57" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.04%)</title><rect x="76.3" y="885" width="0.6" height="15.0" fill="rgb(0,196,9)" rx="2" ry="2" /> +<text x="79.32" y="895.5" ></text> +</g> +<g > +<title>__napi_poll (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="437" width="0.5" height="15.0" fill="rgb(0,229,140)" rx="2" ry="2" /> +<text x="1388.76" y="447.5" ></text> +</g> +<g > +<title>ip_queue_xmit (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="613" width="1.6" height="15.0" fill="rgb(0,196,13)" rx="2" ry="2" /> +<text x="1370.19" y="623.5" ></text> +</g> +<g > +<title>ip_local_out (20,202,020 samples, 0.08%)</title><rect x="1371.4" y="661" width="1.1" height="15.0" fill="rgb(0,203,59)" rx="2" ry="2" /> +<text x="1374.43" y="671.5" ></text> +</g> +<g > +<title>memset_erms (20,202,020 samples, 0.08%)</title><rect x="524.6" y="645" width="1.1" height="15.0" fill="rgb(0,227,33)" rx="2" ry="2" /> +<text x="527.65" y="655.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.04%)</title><rect x="107.6" y="469" width="0.6" height="15.0" fill="rgb(0,228,147)" rx="2" ry="2" /> +<text x="110.62" y="479.5" ></text> +</g> +<g > +<title>__d_add (20,202,020 samples, 0.08%)</title><rect x="81.1" y="741" width="1.1" height="15.0" fill="rgb(0,223,199)" rx="2" ry="2" /> +<text x="84.10" y="751.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="97.0" y="405" width="0.5" height="15.0" fill="rgb(0,236,47)" rx="2" ry="2" /> +<text x="100.01" y="415.5" ></text> +</g> +<g > +<title>tcp_v4_connect (40,404,040 samples, 0.15%)</title><rect x="1370.4" y="741" width="2.1" height="15.0" fill="rgb(0,211,90)" rx="2" ry="2" /> +<text x="1373.37" y="751.5" ></text> +</g> +<g > +<title>ext4_rename (90,909,090 samples, 0.35%)</title><rect x="448.8" y="581" width="4.8" height="15.0" fill="rgb(0,194,192)" rx="2" ry="2" /> +<text x="451.78" y="591.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="234.4" y="421" width="0.6" height="15.0" fill="rgb(0,206,152)" rx="2" ry="2" /> +<text x="237.43" y="431.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.04%)</title><rect x="281.6" y="469" width="0.6" height="15.0" fill="rgb(0,227,82)" rx="2" ry="2" /> +<text x="284.65" y="479.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.04%)</title><rect x="170.8" y="613" width="0.5" height="15.0" fill="rgb(0,231,80)" rx="2" ry="2" /> +<text x="173.76" y="623.5" ></text> +</g> +<g > +<title>__dentry_kill (10,101,010 samples, 0.04%)</title><rect x="161.2" y="581" width="0.5" height="15.0" fill="rgb(0,195,108)" rx="2" ry="2" /> +<text x="164.21" y="591.5" ></text> +</g> +<g > +<title>d_lru_add (10,101,010 samples, 0.04%)</title><rect x="239.7" y="613" width="0.6" height="15.0" fill="rgb(0,204,165)" rx="2" ry="2" /> +<text x="242.73" y="623.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="285.9" y="549" width="0.5" height="15.0" fill="rgb(0,201,191)" rx="2" ry="2" /> +<text x="288.89" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="302.3" y="613" width="0.6" height="15.0" fill="rgb(0,207,80)" rx="2" ry="2" /> +<text x="305.34" y="623.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.04%)</title><rect x="291.7" y="485" width="0.6" height="15.0" fill="rgb(0,233,177)" rx="2" ry="2" /> +<text x="294.73" y="495.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.04%)</title><rect x="325.2" y="485" width="0.5" height="15.0" fill="rgb(0,217,42)" rx="2" ry="2" /> +<text x="328.16" y="495.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.04%)</title><rect x="899.2" y="741" width="0.6" height="15.0" fill="rgb(0,212,84)" rx="2" ry="2" /> +<text x="902.23" y="751.5" ></text> +</g> +<g > +<title>write (40,404,040 samples, 0.15%)</title><rect x="206.3" y="709" width="2.1" height="15.0" fill="rgb(0,237,74)" rx="2" ry="2" /> +<text x="209.31" y="719.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="1365.6" y="181" width="0.5" height="15.0" fill="rgb(0,231,17)" rx="2" ry="2" /> +<text x="1368.59" y="191.5" ></text> +</g> +<g > +<title>ext4_es_insert_extent (10,101,010 samples, 0.04%)</title><rect x="413.8" y="405" width="0.5" height="15.0" fill="rgb(0,228,185)" rx="2" ry="2" /> +<text x="416.76" y="415.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (30,303,030 samples, 0.12%)</title><rect x="392.0" y="533" width="1.6" height="15.0" fill="rgb(0,209,163)" rx="2" ry="2" /> +<text x="395.01" y="543.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.04%)</title><rect x="143.7" y="533" width="0.5" height="15.0" fill="rgb(0,233,25)" rx="2" ry="2" /> +<text x="146.70" y="543.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="173.4" y="597" width="0.5" height="15.0" fill="rgb(0,217,193)" rx="2" ry="2" /> +<text x="176.41" y="607.5" ></text> +</g> +<g > +<title>clear_page_erms (50,505,050 samples, 0.19%)</title><rect x="1330.0" y="581" width="2.7" height="15.0" fill="rgb(0,206,146)" rx="2" ry="2" /> +<text x="1333.05" y="591.5" ></text> +</g> +<g > +<title>__fget_light (20,202,020 samples, 0.08%)</title><rect x="25.9" y="757" width="1.1" height="15.0" fill="rgb(0,200,205)" rx="2" ry="2" /> +<text x="28.92" y="767.5" ></text> +</g> +<g > +<title>server_wait (30,303,030 samples, 0.12%)</title><rect x="16.9" y="917" width="1.6" height="15.0" fill="rgb(0,196,118)" rx="2" ry="2" /> +<text x="19.90" y="927.5" ></text> +</g> +<g > +<title>hv_pkt_iter_close (10,101,010 samples, 0.04%)</title><rect x="64.1" y="613" width="0.5" height="15.0" fill="rgb(0,220,77)" rx="2" ry="2" /> +<text x="67.12" y="623.5" ></text> +</g> +<g > +<title>read (20,202,020 samples, 0.08%)</title><rect x="400.0" y="613" width="1.0" height="15.0" fill="rgb(0,192,38)" rx="2" ry="2" /> +<text x="402.97" y="623.5" ></text> +</g> +<g > +<title>memcmp (10,101,010 samples, 0.04%)</title><rect x="109.2" y="469" width="0.5" height="15.0" fill="rgb(0,218,167)" rx="2" ry="2" /> +<text x="112.22" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (333,333,330 samples, 1.27%)</title><rect x="380.3" y="709" width="17.5" height="15.0" fill="rgb(0,216,46)" rx="2" ry="2" /> +<text x="383.33" y="719.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (20,202,020 samples, 0.08%)</title><rect x="435.0" y="357" width="1.0" height="15.0" fill="rgb(0,232,57)" rx="2" ry="2" /> +<text x="437.98" y="367.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.04%)</title><rect x="415.4" y="485" width="0.5" height="15.0" fill="rgb(0,223,154)" rx="2" ry="2" /> +<text x="418.35" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="485.4" y="757" width="0.5" height="15.0" fill="rgb(0,237,51)" rx="2" ry="2" /> +<text x="488.39" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="102.8" y="677" width="0.6" height="15.0" fill="rgb(0,201,150)" rx="2" ry="2" /> +<text x="105.85" y="687.5" ></text> +</g> +<g > +<title>blk_mq_sched_insert_requests (20,202,020 samples, 0.08%)</title><rect x="372.4" y="469" width="1.0" height="15.0" fill="rgb(0,224,62)" rx="2" ry="2" /> +<text x="375.38" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="280.6" y="645" width="1.0" height="15.0" fill="rgb(0,213,59)" rx="2" ry="2" /> +<text x="283.59" y="655.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.08%)</title><rect x="379.3" y="645" width="1.0" height="15.0" fill="rgb(0,207,82)" rx="2" ry="2" /> +<text x="382.27" y="655.5" ></text> +</g> +<g > +<title>json_tokener_parse_ex (30,303,030 samples, 0.12%)</title><rect x="1375.7" y="773" width="1.6" height="15.0" fill="rgb(0,213,182)" rx="2" ry="2" /> +<text x="1378.67" y="783.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="132.6" y="485" width="0.5" height="15.0" fill="rgb(0,237,180)" rx="2" ry="2" /> +<text x="135.56" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (171,717,170 samples, 0.65%)</title><rect x="279.5" y="709" width="9.0" height="15.0" fill="rgb(0,206,139)" rx="2" ry="2" /> +<text x="282.53" y="719.5" ></text> +</g> +<g > +<title>journal_tag_bytes (10,101,010 samples, 0.04%)</title><rect x="507.7" y="645" width="0.5" height="15.0" fill="rgb(0,191,136)" rx="2" ry="2" /> +<text x="510.67" y="655.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="210.6" y="629" width="0.5" height="15.0" fill="rgb(0,223,54)" rx="2" ry="2" /> +<text x="213.55" y="639.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.04%)</title><rect x="307.1" y="421" width="0.5" height="15.0" fill="rgb(0,206,51)" rx="2" ry="2" /> +<text x="310.12" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="486.4" y="725" width="3.8" height="15.0" fill="rgb(0,222,84)" rx="2" ry="2" /> +<text x="489.45" y="735.5" ></text> +</g> +<g > +<title>ext4_append (121,212,120 samples, 0.46%)</title><rect x="231.2" y="565" width="6.4" height="15.0" fill="rgb(0,231,200)" rx="2" ry="2" /> +<text x="234.25" y="575.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.04%)</title><rect x="146.4" y="629" width="0.5" height="15.0" fill="rgb(0,238,109)" rx="2" ry="2" /> +<text x="149.36" y="639.5" ></text> +</g> +<g > +<title>mkdir (10,101,010 samples, 0.04%)</title><rect x="283.2" y="645" width="0.6" height="15.0" fill="rgb(0,200,21)" rx="2" ry="2" /> +<text x="286.24" y="655.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.04%)</title><rect x="203.7" y="565" width="0.5" height="15.0" fill="rgb(0,194,89)" rx="2" ry="2" /> +<text x="206.66" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_socket (30,303,030 samples, 0.12%)</title><rect x="1372.5" y="821" width="1.6" height="15.0" fill="rgb(0,208,124)" rx="2" ry="2" /> +<text x="1375.49" y="831.5" ></text> +</g> +<g > +<title>__fput (30,303,030 samples, 0.12%)</title><rect x="1384.2" y="725" width="1.6" height="15.0" fill="rgb(0,211,6)" rx="2" ry="2" /> +<text x="1387.16" y="735.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.04%)</title><rect x="470.5" y="597" width="0.6" height="15.0" fill="rgb(0,224,14)" rx="2" ry="2" /> +<text x="473.53" y="607.5" ></text> +</g> +<g > +<title>client_destroy_handler (252,525,250 samples, 0.96%)</title><rect x="29.6" y="869" width="13.3" height="15.0" fill="rgb(0,206,136)" rx="2" ry="2" /> +<text x="32.63" y="879.5" ></text> +</g> +<g > +<title>rcu_read_unlock_strict (10,101,010 samples, 0.04%)</title><rect x="515.1" y="613" width="0.5" height="15.0" fill="rgb(0,216,55)" rx="2" ry="2" /> +<text x="518.10" y="623.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.04%)</title><rect x="221.7" y="533" width="0.5" height="15.0" fill="rgb(0,221,177)" rx="2" ry="2" /> +<text x="224.70" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.19%)</title><rect x="82.7" y="805" width="2.6" height="15.0" fill="rgb(0,224,90)" rx="2" ry="2" /> +<text x="85.69" y="815.5" ></text> +</g> +<g > +<title>__vfs_getxattr (10,101,010 samples, 0.04%)</title><rect x="413.2" y="437" width="0.6" height="15.0" fill="rgb(0,193,176)" rx="2" ry="2" /> +<text x="416.23" y="447.5" ></text> +</g> +<g > +<title>lru_cache_add_inactive_or_unevictable (30,303,030 samples, 0.12%)</title><rect x="1334.3" y="629" width="1.6" height="15.0" fill="rgb(0,199,193)" rx="2" ry="2" /> +<text x="1337.29" y="639.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (161,616,160 samples, 0.62%)</title><rect x="34.4" y="741" width="8.5" height="15.0" fill="rgb(0,224,181)" rx="2" ry="2" /> +<text x="37.41" y="751.5" ></text> +</g> +<g > +<title>getcwd (30,303,030 samples, 0.12%)</title><rect x="602.6" y="837" width="1.6" height="15.0" fill="rgb(0,204,35)" rx="2" ry="2" /> +<text x="605.64" y="847.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.04%)</title><rect x="259.9" y="565" width="0.5" height="15.0" fill="rgb(0,209,145)" rx="2" ry="2" /> +<text x="262.90" y="575.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="596.8" y="645" width="0.5" height="15.0" fill="rgb(0,238,102)" rx="2" ry="2" /> +<text x="599.81" y="655.5" ></text> +</g> +<g > +<title>lh_table_free (10,101,010 samples, 0.04%)</title><rect x="10.0" y="853" width="0.5" height="15.0" fill="rgb(0,222,100)" rx="2" ry="2" /> +<text x="13.00" y="863.5" ></text> +</g> +<g > +<title>tlb_finish_mmu (50,505,050 samples, 0.19%)</title><rect x="934.8" y="645" width="2.6" height="15.0" fill="rgb(0,226,185)" rx="2" ry="2" /> +<text x="937.78" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (151,515,150 samples, 0.58%)</title><rect x="268.4" y="661" width="7.9" height="15.0" fill="rgb(0,205,71)" rx="2" ry="2" /> +<text x="271.39" y="671.5" ></text> +</g> +<g > +<title>git_config_free (10,101,010 samples, 0.04%)</title><rect x="319.3" y="725" width="0.6" height="15.0" fill="rgb(0,218,111)" rx="2" ry="2" /> +<text x="322.32" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="217.5" y="773" width="0.5" height="15.0" fill="rgb(0,204,54)" rx="2" ry="2" /> +<text x="220.45" y="783.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.08%)</title><rect x="413.2" y="645" width="1.1" height="15.0" fill="rgb(0,222,115)" rx="2" ry="2" /> +<text x="416.23" y="655.5" ></text> +</g> +<g > +<title>dd_has_work (10,101,010 samples, 0.04%)</title><rect x="372.9" y="453" width="0.5" height="15.0" fill="rgb(0,194,153)" rx="2" ry="2" /> +<text x="375.91" y="463.5" ></text> +</g> +<g > +<title>dst_release (10,101,010 samples, 0.04%)</title><rect x="12.1" y="309" width="0.6" height="15.0" fill="rgb(0,199,62)" rx="2" ry="2" /> +<text x="15.12" y="319.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.04%)</title><rect x="524.1" y="629" width="0.5" height="15.0" fill="rgb(0,224,65)" rx="2" ry="2" /> +<text x="527.12" y="639.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (70,707,070 samples, 0.27%)</title><rect x="462.0" y="549" width="3.8" height="15.0" fill="rgb(0,227,118)" rx="2" ry="2" /> +<text x="465.04" y="559.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.04%)</title><rect x="300.2" y="645" width="0.5" height="15.0" fill="rgb(0,229,45)" rx="2" ry="2" /> +<text x="303.22" y="655.5" ></text> +</g> +<g > +<title>__wake_up (20,202,020 samples, 0.08%)</title><rect x="106.0" y="485" width="1.1" height="15.0" fill="rgb(0,239,135)" rx="2" ry="2" /> +<text x="109.03" y="495.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="337.9" y="613" width="0.5" height="15.0" fill="rgb(0,216,108)" rx="2" ry="2" /> +<text x="340.89" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="478.5" y="549" width="0.5" height="15.0" fill="rgb(0,203,45)" rx="2" ry="2" /> +<text x="481.49" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="150.1" y="693" width="1.6" height="15.0" fill="rgb(0,235,58)" rx="2" ry="2" /> +<text x="153.07" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="210.6" y="677" width="0.5" height="15.0" fill="rgb(0,200,171)" rx="2" ry="2" /> +<text x="213.55" y="687.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.04%)</title><rect x="275.3" y="469" width="0.5" height="15.0" fill="rgb(0,220,102)" rx="2" ry="2" /> +<text x="278.28" y="479.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.04%)</title><rect x="80.0" y="725" width="0.6" height="15.0" fill="rgb(0,201,187)" rx="2" ry="2" /> +<text x="83.03" y="735.5" ></text> +</g> +<g > +<title>do_linkat (10,101,010 samples, 0.04%)</title><rect x="396.3" y="613" width="0.5" height="15.0" fill="rgb(0,222,3)" rx="2" ry="2" /> +<text x="399.25" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="294.4" y="677" width="0.5" height="15.0" fill="rgb(0,195,22)" rx="2" ry="2" /> +<text x="297.38" y="687.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (40,404,040 samples, 0.15%)</title><rect x="206.3" y="597" width="2.1" height="15.0" fill="rgb(0,229,137)" rx="2" ry="2" /> +<text x="209.31" y="607.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.04%)</title><rect x="531.0" y="741" width="0.5" height="15.0" fill="rgb(0,208,30)" rx="2" ry="2" /> +<text x="534.01" y="751.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="281.1" y="501" width="0.5" height="15.0" fill="rgb(0,193,63)" rx="2" ry="2" /> +<text x="284.12" y="511.5" ></text> +</g> +<g > +<title>git_reference_create_matching (151,515,150 samples, 0.58%)</title><rect x="183.5" y="805" width="8.0" height="15.0" fill="rgb(0,215,183)" rx="2" ry="2" /> +<text x="186.49" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="285.9" y="661" width="1.1" height="15.0" fill="rgb(0,212,18)" rx="2" ry="2" /> +<text x="288.89" y="671.5" ></text> +</g> +<g > +<title>filemap_flush (10,101,010 samples, 0.04%)</title><rect x="187.7" y="597" width="0.6" height="15.0" fill="rgb(0,211,165)" rx="2" ry="2" /> +<text x="190.74" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="259.4" y="725" width="1.0" height="15.0" fill="rgb(0,216,43)" rx="2" ry="2" /> +<text x="262.37" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.38%)</title><rect x="77.4" y="933" width="5.3" height="15.0" fill="rgb(0,216,108)" rx="2" ry="2" /> +<text x="80.38" y="943.5" ></text> +</g> +<g > +<title>exc_page_fault (404,040,400 samples, 1.54%)</title><rect x="908.8" y="773" width="21.2" height="15.0" fill="rgb(0,196,64)" rx="2" ry="2" /> +<text x="911.78" y="783.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="169.7" y="693" width="0.5" height="15.0" fill="rgb(0,230,201)" rx="2" ry="2" /> +<text x="172.70" y="703.5" ></text> +</g> +<g > +<title>xas_load (10,101,010 samples, 0.04%)</title><rect x="121.4" y="437" width="0.5" height="15.0" fill="rgb(0,207,42)" rx="2" ry="2" /> +<text x="124.42" y="447.5" ></text> +</g> +<g > +<title>git_buf_set (10,101,010 samples, 0.04%)</title><rect x="200.5" y="709" width="0.5" height="15.0" fill="rgb(0,212,31)" rx="2" ry="2" /> +<text x="203.47" y="719.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="57.2" y="677" width="1.1" height="15.0" fill="rgb(0,225,133)" rx="2" ry="2" /> +<text x="60.22" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="467.9" y="709" width="0.5" height="15.0" fill="rgb(0,219,72)" rx="2" ry="2" /> +<text x="470.88" y="719.5" ></text> +</g> +<g > +<title>ext4_es_insert_extent (10,101,010 samples, 0.04%)</title><rect x="426.0" y="501" width="0.5" height="15.0" fill="rgb(0,216,203)" rx="2" ry="2" /> +<text x="428.96" y="511.5" ></text> +</g> +<g > +<title>read_hv_clock_tsc (10,101,010 samples, 0.04%)</title><rect x="449.3" y="245" width="0.5" height="15.0" fill="rgb(0,225,142)" rx="2" ry="2" /> +<text x="452.31" y="255.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.04%)</title><rect x="96.5" y="501" width="0.5" height="15.0" fill="rgb(0,191,114)" rx="2" ry="2" /> +<text x="99.48" y="511.5" ></text> +</g> +<g > +<title>crc_104 (10,101,010 samples, 0.04%)</title><rect x="390.9" y="469" width="0.6" height="15.0" fill="rgb(0,195,135)" rx="2" ry="2" /> +<text x="393.95" y="479.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="204.2" y="565" width="0.5" height="15.0" fill="rgb(0,211,27)" rx="2" ry="2" /> +<text x="207.19" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.35%)</title><rect x="280.1" y="661" width="4.7" height="15.0" fill="rgb(0,215,125)" rx="2" ry="2" /> +<text x="283.06" y="671.5" ></text> +</g> +<g > +<title>mb_mark_used (10,101,010 samples, 0.04%)</title><rect x="236.0" y="405" width="0.6" height="15.0" fill="rgb(0,192,18)" rx="2" ry="2" /> +<text x="239.02" y="415.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (20,202,020 samples, 0.08%)</title><rect x="159.6" y="549" width="1.1" height="15.0" fill="rgb(0,237,67)" rx="2" ry="2" /> +<text x="162.62" y="559.5" ></text> +</g> +<g > +<title>log_entry_start (20,202,020 samples, 0.08%)</title><rect x="1382.6" y="885" width="1.0" height="15.0" fill="rgb(0,197,126)" rx="2" ry="2" /> +<text x="1385.57" y="895.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.04%)</title><rect x="602.1" y="709" width="0.5" height="15.0" fill="rgb(0,232,36)" rx="2" ry="2" /> +<text x="605.11" y="719.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.04%)</title><rect x="531.0" y="693" width="0.5" height="15.0" fill="rgb(0,221,8)" rx="2" ry="2" /> +<text x="534.01" y="703.5" ></text> +</g> +<g > +<title>__blk_mq_run_hw_queue (10,101,010 samples, 0.04%)</title><rect x="334.2" y="405" width="0.5" height="15.0" fill="rgb(0,202,8)" rx="2" ry="2" /> +<text x="337.18" y="415.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.04%)</title><rect x="496.0" y="565" width="0.5" height="15.0" fill="rgb(0,193,84)" rx="2" ry="2" /> +<text x="499.00" y="575.5" ></text> +</g> +<g > +<title>jsonrpc_request_create_params (10,101,010 samples, 0.04%)</title><rect x="932.7" y="853" width="0.5" height="15.0" fill="rgb(0,212,89)" rx="2" ry="2" /> +<text x="935.65" y="863.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="602.1" y="789" width="0.5" height="15.0" fill="rgb(0,206,169)" rx="2" ry="2" /> +<text x="605.11" y="799.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="349.6" y="645" width="0.5" height="15.0" fill="rgb(0,231,121)" rx="2" ry="2" /> +<text x="352.56" y="655.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="234.4" y="165" width="0.6" height="15.0" fill="rgb(0,229,5)" rx="2" ry="2" /> +<text x="237.43" y="175.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.27%)</title><rect x="438.7" y="693" width="3.7" height="15.0" fill="rgb(0,224,120)" rx="2" ry="2" /> +<text x="441.70" y="703.5" ></text> +</g> +<g > +<title>scsi_alloc_sgtables (10,101,010 samples, 0.04%)</title><rect x="273.7" y="229" width="0.5" height="15.0" fill="rgb(0,209,101)" rx="2" ry="2" /> +<text x="276.69" y="239.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.04%)</title><rect x="189.3" y="661" width="0.6" height="15.0" fill="rgb(0,226,118)" rx="2" ry="2" /> +<text x="192.33" y="671.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="204.2" y="581" width="0.5" height="15.0" fill="rgb(0,231,190)" rx="2" ry="2" /> +<text x="207.19" y="591.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="325" width="0.5" height="15.0" fill="rgb(0,235,170)" rx="2" ry="2" /> +<text x="1342.07" y="335.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.04%)</title><rect x="146.9" y="597" width="0.5" height="15.0" fill="rgb(0,208,33)" rx="2" ry="2" /> +<text x="149.89" y="607.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.04%)</title><rect x="453.0" y="517" width="0.6" height="15.0" fill="rgb(0,239,148)" rx="2" ry="2" /> +<text x="456.02" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.12%)</title><rect x="356.5" y="533" width="1.6" height="15.0" fill="rgb(0,210,116)" rx="2" ry="2" /> +<text x="359.46" y="543.5" ></text> +</g> +<g > +<title>irq_exit_rcu (20,202,020 samples, 0.08%)</title><rect x="887.0" y="789" width="1.1" height="15.0" fill="rgb(0,201,12)" rx="2" ry="2" /> +<text x="890.02" y="799.5" ></text> +</g> +<g > +<title>do_user_addr_fault (20,202,020 samples, 0.08%)</title><rect x="441.3" y="645" width="1.1" height="15.0" fill="rgb(0,215,60)" rx="2" ry="2" /> +<text x="444.35" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.08%)</title><rect x="287.0" y="549" width="1.0" height="15.0" fill="rgb(0,203,58)" rx="2" ry="2" /> +<text x="289.96" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (30,303,030 samples, 0.12%)</title><rect x="177.7" y="741" width="1.6" height="15.0" fill="rgb(0,192,189)" rx="2" ry="2" /> +<text x="180.66" y="751.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="444.0" y="645" width="0.5" height="15.0" fill="rgb(0,227,44)" rx="2" ry="2" /> +<text x="447.00" y="655.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.08%)</title><rect x="159.6" y="501" width="1.1" height="15.0" fill="rgb(0,201,203)" rx="2" ry="2" /> +<text x="162.62" y="511.5" ></text> +</g> +<g > +<title>ip_finish_output (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="549" width="1.6" height="15.0" fill="rgb(0,213,119)" rx="2" ry="2" /> +<text x="1370.19" y="559.5" ></text> +</g> +<g > +<title>getname (10,101,010 samples, 0.04%)</title><rect x="75.3" y="853" width="0.5" height="15.0" fill="rgb(0,219,96)" rx="2" ry="2" /> +<text x="78.26" y="863.5" ></text> +</g> +<g > +<title>remove (141,414,140 samples, 0.54%)</title><rect x="156.4" y="725" width="7.5" height="15.0" fill="rgb(0,200,166)" rx="2" ry="2" /> +<text x="159.44" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="440.8" y="645" width="0.5" height="15.0" fill="rgb(0,213,167)" rx="2" ry="2" /> +<text x="443.82" y="655.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.04%)</title><rect x="393.1" y="453" width="0.5" height="15.0" fill="rgb(0,231,160)" rx="2" ry="2" /> +<text x="396.07" y="463.5" ></text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.04%)</title><rect x="1380.4" y="149" width="0.6" height="15.0" fill="rgb(0,229,193)" rx="2" ry="2" /> +<text x="1383.45" y="159.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="167.6" y="517" width="0.5" height="15.0" fill="rgb(0,215,15)" rx="2" ry="2" /> +<text x="170.58" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,717,171,700 samples, 6.54%)</title><rect x="86.4" y="805" width="90.2" height="15.0" fill="rgb(0,228,195)" rx="2" ry="2" /> +<text x="89.40" y="815.5" >[libc.so.6]</text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.04%)</title><rect x="275.3" y="389" width="0.5" height="15.0" fill="rgb(0,202,167)" rx="2" ry="2" /> +<text x="278.28" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="473.2" y="645" width="0.5" height="15.0" fill="rgb(0,199,125)" rx="2" ry="2" /> +<text x="476.18" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (222,222,220 samples, 0.85%)</title><rect x="86.9" y="693" width="11.7" height="15.0" fill="rgb(0,194,121)" rx="2" ry="2" /> +<text x="89.93" y="703.5" ></text> +</g> +<g > +<title>ext4_append (20,202,020 samples, 0.08%)</title><rect x="419.1" y="613" width="1.0" height="15.0" fill="rgb(0,204,2)" rx="2" ry="2" /> +<text x="422.07" y="623.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.04%)</title><rect x="96.0" y="501" width="0.5" height="15.0" fill="rgb(0,190,35)" rx="2" ry="2" /> +<text x="98.95" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="475.3" y="693" width="0.5" height="15.0" fill="rgb(0,197,16)" rx="2" ry="2" /> +<text x="478.31" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="188.3" y="661" width="0.5" height="15.0" fill="rgb(0,218,74)" rx="2" ry="2" /> +<text x="191.27" y="671.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.04%)</title><rect x="597.3" y="645" width="0.6" height="15.0" fill="rgb(0,220,51)" rx="2" ry="2" /> +<text x="600.34" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.08%)</title><rect x="350.1" y="549" width="1.1" height="15.0" fill="rgb(0,212,54)" rx="2" ry="2" /> +<text x="353.09" y="559.5" ></text> +</g> +<g > +<title>tlb_remove_table_rcu (10,101,010 samples, 0.04%)</title><rect x="1386.8" y="485" width="0.5" height="15.0" fill="rgb(0,238,199)" rx="2" ry="2" /> +<text x="1389.82" y="495.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.04%)</title><rect x="1384.2" y="709" width="0.5" height="15.0" fill="rgb(0,229,0)" rx="2" ry="2" /> +<text x="1387.16" y="719.5" ></text> +</g> +<g > +<title>ext4_add_nondir (20,202,020 samples, 0.08%)</title><rect x="408.5" y="581" width="1.0" height="15.0" fill="rgb(0,239,171)" rx="2" ry="2" /> +<text x="411.45" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.04%)</title><rect x="154.8" y="533" width="0.6" height="15.0" fill="rgb(0,195,164)" rx="2" ry="2" /> +<text x="157.84" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="499.2" y="597" width="0.5" height="15.0" fill="rgb(0,224,160)" rx="2" ry="2" /> +<text x="502.18" y="607.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.04%)</title><rect x="234.4" y="277" width="0.6" height="15.0" fill="rgb(0,237,3)" rx="2" ry="2" /> +<text x="237.43" y="287.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="415.9" y="421" width="0.5" height="15.0" fill="rgb(0,232,82)" rx="2" ry="2" /> +<text x="418.88" y="431.5" ></text> +</g> +<g > +<title>__fput (40,404,040 samples, 0.15%)</title><rect x="32.3" y="693" width="2.1" height="15.0" fill="rgb(0,234,82)" rx="2" ry="2" /> +<text x="35.28" y="703.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (10,101,010 samples, 0.04%)</title><rect x="1385.8" y="389" width="0.5" height="15.0" fill="rgb(0,219,188)" rx="2" ry="2" /> +<text x="1388.76" y="399.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="505.5" y="693" width="0.6" height="15.0" fill="rgb(0,238,40)" rx="2" ry="2" /> +<text x="508.55" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="395.7" y="533" width="0.6" height="15.0" fill="rgb(0,231,4)" rx="2" ry="2" /> +<text x="398.72" y="543.5" ></text> +</g> +<g > +<title>do_user_addr_fault (393,939,390 samples, 1.50%)</title><rect x="908.8" y="757" width="20.7" height="15.0" fill="rgb(0,205,143)" rx="2" ry="2" /> +<text x="911.78" y="767.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.08%)</title><rect x="48.7" y="837" width="1.1" height="15.0" fill="rgb(0,214,71)" rx="2" ry="2" /> +<text x="51.73" y="847.5" ></text> +</g> +<g > +<title>generic_write_end (30,303,030 samples, 0.12%)</title><rect x="206.8" y="533" width="1.6" height="15.0" fill="rgb(0,233,93)" rx="2" ry="2" /> +<text x="209.84" y="543.5" ></text> +</g> +<g > +<title>eventfd (20,202,020 samples, 0.08%)</title><rect x="45.0" y="821" width="1.1" height="15.0" fill="rgb(0,230,164)" rx="2" ry="2" /> +<text x="48.02" y="831.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="196.8" y="581" width="0.5" height="15.0" fill="rgb(0,211,111)" rx="2" ry="2" /> +<text x="199.76" y="591.5" ></text> +</g> +<g > +<title>iput (30,303,030 samples, 0.12%)</title><rect x="172.4" y="677" width="1.5" height="15.0" fill="rgb(0,214,156)" rx="2" ry="2" /> +<text x="175.35" y="687.5" ></text> +</g> +<g > +<title>submit_bio_noacct (10,101,010 samples, 0.04%)</title><rect x="274.8" y="453" width="0.5" height="15.0" fill="rgb(0,223,3)" rx="2" ry="2" /> +<text x="277.75" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="473.2" y="613" width="0.5" height="15.0" fill="rgb(0,234,57)" rx="2" ry="2" /> +<text x="476.18" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="45.0" y="805" width="1.1" height="15.0" fill="rgb(0,198,94)" rx="2" ry="2" /> +<text x="48.02" y="815.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.04%)</title><rect x="503.4" y="565" width="0.6" height="15.0" fill="rgb(0,212,81)" rx="2" ry="2" /> +<text x="506.43" y="575.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="378.2" y="469" width="0.5" height="15.0" fill="rgb(0,237,40)" rx="2" ry="2" /> +<text x="381.21" y="479.5" ></text> +</g> +<g > +<title>__rseq_handle_notify_resume (10,101,010 samples, 0.04%)</title><rect x="1383.6" y="757" width="0.6" height="15.0" fill="rgb(0,207,70)" rx="2" ry="2" /> +<text x="1386.63" y="767.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="403.1" y="693" width="0.6" height="15.0" fill="rgb(0,196,174)" rx="2" ry="2" /> +<text x="406.15" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (70,707,070 samples, 0.27%)</title><rect x="166.0" y="693" width="3.7" height="15.0" fill="rgb(0,237,50)" rx="2" ry="2" /> +<text x="168.99" y="703.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="490.2" y="661" width="0.5" height="15.0" fill="rgb(0,232,95)" rx="2" ry="2" /> +<text x="493.16" y="671.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.04%)</title><rect x="186.1" y="485" width="0.6" height="15.0" fill="rgb(0,226,206)" rx="2" ry="2" /> +<text x="189.15" y="495.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (80,808,080 samples, 0.31%)</title><rect x="254.1" y="677" width="4.2" height="15.0" fill="rgb(0,193,141)" rx="2" ry="2" /> +<text x="257.06" y="687.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (60,606,060 samples, 0.23%)</title><rect x="11.1" y="517" width="3.1" height="15.0" fill="rgb(0,232,167)" rx="2" ry="2" /> +<text x="14.06" y="527.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.04%)</title><rect x="147.9" y="549" width="0.6" height="15.0" fill="rgb(0,239,63)" rx="2" ry="2" /> +<text x="150.95" y="559.5" ></text> +</g> +<g > +<title>process_backlog (10,101,010 samples, 0.04%)</title><rect x="1385.2" y="373" width="0.6" height="15.0" fill="rgb(0,213,124)" rx="2" ry="2" /> +<text x="1388.22" y="383.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.04%)</title><rect x="234.4" y="213" width="0.6" height="15.0" fill="rgb(0,197,191)" rx="2" ry="2" /> +<text x="237.43" y="223.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.04%)</title><rect x="510.3" y="709" width="0.6" height="15.0" fill="rgb(0,190,137)" rx="2" ry="2" /> +<text x="513.32" y="719.5" ></text> +</g> +<g > +<title>do_renameat2 (40,404,040 samples, 0.15%)</title><rect x="414.8" y="613" width="2.1" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" /> +<text x="417.82" y="623.5" ></text> +</g> +<g > +<title>scsi_queue_rq (10,101,010 samples, 0.04%)</title><rect x="372.4" y="325" width="0.5" height="15.0" fill="rgb(0,201,132)" rx="2" ry="2" /> +<text x="375.38" y="335.5" ></text> +</g> +<g > +<title>pipe_write (10,101,010 samples, 0.04%)</title><rect x="509.3" y="677" width="0.5" height="15.0" fill="rgb(0,232,144)" rx="2" ry="2" /> +<text x="512.26" y="687.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="167.0" y="501" width="0.6" height="15.0" fill="rgb(0,200,57)" rx="2" ry="2" /> +<text x="170.05" y="511.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (7,535,353,460 samples, 28.68%)</title><rect x="942.7" y="805" width="395.8" height="15.0" fill="rgb(0,216,179)" rx="2" ry="2" /> +<text x="945.73" y="815.5" >[libjson-c.so.5.1.0]</text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="149.0" y="709" width="0.5" height="15.0" fill="rgb(0,218,198)" rx="2" ry="2" /> +<text x="152.01" y="719.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.04%)</title><rect x="203.7" y="581" width="0.5" height="15.0" fill="rgb(0,219,78)" rx="2" ry="2" /> +<text x="206.66" y="591.5" ></text> +</g> +<g > +<title>start_this_handle (10,101,010 samples, 0.04%)</title><rect x="65.7" y="725" width="0.5" height="15.0" fill="rgb(0,211,98)" rx="2" ry="2" /> +<text x="68.71" y="735.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.04%)</title><rect x="412.7" y="693" width="0.5" height="15.0" fill="rgb(0,206,44)" rx="2" ry="2" /> +<text x="415.70" y="703.5" ></text> +</g> +<g > +<title>alloc_pipe_info (10,101,010 samples, 0.04%)</title><rect x="598.4" y="725" width="0.5" height="15.0" fill="rgb(0,213,178)" rx="2" ry="2" /> +<text x="601.40" y="735.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.04%)</title><rect x="180.3" y="629" width="0.5" height="15.0" fill="rgb(0,226,70)" rx="2" ry="2" /> +<text x="183.31" y="639.5" ></text> +</g> +<g > +<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.04%)</title><rect x="235.5" y="453" width="0.5" height="15.0" fill="rgb(0,232,128)" rx="2" ry="2" /> +<text x="238.49" y="463.5" ></text> +</g> +<g > +<title>git_config_snapshot (30,303,030 samples, 0.12%)</title><rect x="473.2" y="757" width="1.6" height="15.0" fill="rgb(0,231,14)" rx="2" ry="2" /> +<text x="476.18" y="767.5" ></text> +</g> +<g > +<title>net_rx_action (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="453" width="1.6" height="15.0" fill="rgb(0,201,167)" rx="2" ry="2" /> +<text x="1370.19" y="463.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.04%)</title><rect x="354.3" y="437" width="0.6" height="15.0" fill="rgb(0,194,63)" rx="2" ry="2" /> +<text x="357.34" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="299.2" y="597" width="0.5" height="15.0" fill="rgb(0,236,144)" rx="2" ry="2" /> +<text x="302.16" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="293.3" y="661" width="0.6" height="15.0" fill="rgb(0,218,45)" rx="2" ry="2" /> +<text x="296.32" y="671.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.04%)</title><rect x="205.2" y="613" width="0.6" height="15.0" fill="rgb(0,212,78)" rx="2" ry="2" /> +<text x="208.25" y="623.5" ></text> +</g> +<g > +<title>neigh_hh_output (10,101,010 samples, 0.04%)</title><rect x="1381.0" y="485" width="0.5" height="15.0" fill="rgb(0,209,119)" rx="2" ry="2" /> +<text x="1383.98" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (30,303,030 samples, 0.12%)</title><rect x="179.3" y="725" width="1.5" height="15.0" fill="rgb(0,213,115)" rx="2" ry="2" /> +<text x="182.25" y="735.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="302.9" y="549" width="0.5" height="15.0" fill="rgb(0,211,167)" rx="2" ry="2" /> +<text x="305.87" y="559.5" ></text> +</g> +<g > +<title>ip_rcv (10,101,010 samples, 0.04%)</title><rect x="1339.1" y="309" width="0.5" height="15.0" fill="rgb(0,237,29)" rx="2" ry="2" /> +<text x="1342.07" y="319.5" ></text> +</g> +<g > +<title>vfs_rename (90,909,090 samples, 0.35%)</title><rect x="448.8" y="613" width="4.8" height="15.0" fill="rgb(0,194,37)" rx="2" ry="2" /> +<text x="451.78" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.15%)</title><rect x="206.3" y="677" width="2.1" height="15.0" fill="rgb(0,202,81)" rx="2" ry="2" /> +<text x="209.31" y="687.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.04%)</title><rect x="94.9" y="453" width="0.5" height="15.0" fill="rgb(0,201,85)" rx="2" ry="2" /> +<text x="97.89" y="463.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.04%)</title><rect x="185.1" y="613" width="0.5" height="15.0" fill="rgb(0,196,168)" rx="2" ry="2" /> +<text x="188.09" y="623.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.04%)</title><rect x="146.9" y="581" width="0.5" height="15.0" fill="rgb(0,196,105)" rx="2" ry="2" /> +<text x="149.89" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="194.1" y="677" width="1.6" height="15.0" fill="rgb(0,204,38)" rx="2" ry="2" /> +<text x="197.11" y="687.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.08%)</title><rect x="175.5" y="597" width="1.1" height="15.0" fill="rgb(0,191,139)" rx="2" ry="2" /> +<text x="178.54" y="607.5" ></text> +</g> +<g > +<title>__netif_receive_skb (30,303,030 samples, 0.12%)</title><rect x="1367.2" y="405" width="1.6" height="15.0" fill="rgb(0,224,0)" rx="2" ry="2" /> +<text x="1370.19" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (1,020,202,010 samples, 3.88%)</title><rect x="224.3" y="773" width="53.6" height="15.0" fill="rgb(0,231,57)" rx="2" ry="2" /> +<text x="227.35" y="783.5" >[libg..</text> +</g> +<g > +<title>copy_pte_range (101,010,100 samples, 0.38%)</title><rect x="517.2" y="629" width="5.3" height="15.0" fill="rgb(0,206,103)" rx="2" ry="2" /> +<text x="520.22" y="639.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.04%)</title><rect x="888.1" y="757" width="0.5" height="15.0" fill="rgb(0,227,96)" rx="2" ry="2" /> +<text x="891.09" y="767.5" ></text> +</g> +<g > +<title>do_filp_open (40,404,040 samples, 0.15%)</title><rect x="408.5" y="661" width="2.1" height="15.0" fill="rgb(0,209,100)" rx="2" ry="2" /> +<text x="411.45" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="444.5" y="677" width="0.6" height="15.0" fill="rgb(0,224,20)" rx="2" ry="2" /> +<text x="447.53" y="687.5" ></text> +</g> +<g > +<title>vfs_rename (80,808,080 samples, 0.31%)</title><rect x="272.1" y="613" width="4.2" height="15.0" fill="rgb(0,226,58)" rx="2" ry="2" /> +<text x="275.10" y="623.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (10,101,010 samples, 0.04%)</title><rect x="343.7" y="469" width="0.6" height="15.0" fill="rgb(0,193,144)" rx="2" ry="2" /> +<text x="346.73" y="479.5" ></text> +</g> +<g > +<title>sbrk (20,202,020 samples, 0.08%)</title><rect x="619.1" y="789" width="1.0" height="15.0" fill="rgb(0,208,100)" rx="2" ry="2" /> +<text x="622.09" y="799.5" ></text> +</g> +<g > +<title>down_read (10,101,010 samples, 0.04%)</title><rect x="456.2" y="629" width="0.5" height="15.0" fill="rgb(0,231,22)" rx="2" ry="2" /> +<text x="459.21" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.08%)</title><rect x="355.4" y="629" width="1.1" height="15.0" fill="rgb(0,211,61)" rx="2" ry="2" /> +<text x="358.40" y="639.5" ></text> +</g> +<g > +<title>d_alloc (20,202,020 samples, 0.08%)</title><rect x="255.7" y="549" width="1.0" height="15.0" fill="rgb(0,219,43)" rx="2" ry="2" /> +<text x="258.65" y="559.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.04%)</title><rect x="440.3" y="469" width="0.5" height="15.0" fill="rgb(0,233,37)" rx="2" ry="2" /> +<text x="443.29" y="479.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.04%)</title><rect x="367.1" y="389" width="0.5" height="15.0" fill="rgb(0,207,160)" rx="2" ry="2" /> +<text x="370.07" y="399.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (20,202,020 samples, 0.08%)</title><rect x="23.8" y="853" width="1.1" height="15.0" fill="rgb(0,228,84)" rx="2" ry="2" /> +<text x="26.79" y="863.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.08%)</title><rect x="325.2" y="629" width="1.0" height="15.0" fill="rgb(0,207,128)" rx="2" ry="2" /> +<text x="328.16" y="639.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.04%)</title><rect x="169.7" y="709" width="0.5" height="15.0" fill="rgb(0,233,162)" rx="2" ry="2" /> +<text x="172.70" y="719.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.04%)</title><rect x="240.3" y="581" width="0.5" height="15.0" fill="rgb(0,231,159)" rx="2" ry="2" /> +<text x="243.27" y="591.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.12%)</title><rect x="411.6" y="741" width="1.6" height="15.0" fill="rgb(0,224,190)" rx="2" ry="2" /> +<text x="414.64" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (444,444,440 samples, 1.69%)</title><rect x="380.3" y="725" width="23.4" height="15.0" fill="rgb(0,212,78)" rx="2" ry="2" /> +<text x="383.33" y="735.5" >[..</text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.04%)</title><rect x="462.0" y="453" width="0.6" height="15.0" fill="rgb(0,234,138)" rx="2" ry="2" /> +<text x="465.04" y="463.5" ></text> +</g> +<g > +<title>__remove_inode_hash (10,101,010 samples, 0.04%)</title><rect x="131.0" y="549" width="0.5" height="15.0" fill="rgb(0,216,50)" rx="2" ry="2" /> +<text x="133.97" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="490.2" y="709" width="0.5" height="15.0" fill="rgb(0,207,61)" rx="2" ry="2" /> +<text x="493.16" y="719.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.04%)</title><rect x="150.6" y="613" width="0.5" height="15.0" fill="rgb(0,230,100)" rx="2" ry="2" /> +<text x="153.60" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.27%)</title><rect x="1368.8" y="853" width="3.7" height="15.0" fill="rgb(0,230,148)" rx="2" ry="2" /> +<text x="1371.78" y="863.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.08%)</title><rect x="382.5" y="501" width="1.0" height="15.0" fill="rgb(0,205,170)" rx="2" ry="2" /> +<text x="385.46" y="511.5" ></text> +</g> +<g > +<title>map_id_up (10,101,010 samples, 0.04%)</title><rect x="421.2" y="565" width="0.5" height="15.0" fill="rgb(0,218,145)" rx="2" ry="2" /> +<text x="424.19" y="575.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.04%)</title><rect x="132.6" y="501" width="0.5" height="15.0" fill="rgb(0,197,90)" rx="2" ry="2" /> +<text x="135.56" y="511.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.04%)</title><rect x="196.8" y="613" width="0.5" height="15.0" fill="rgb(0,224,190)" rx="2" ry="2" /> +<text x="199.76" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="277.9" y="693" width="1.1" height="15.0" fill="rgb(0,218,134)" rx="2" ry="2" /> +<text x="280.94" y="703.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.04%)</title><rect x="374.5" y="581" width="0.5" height="15.0" fill="rgb(0,223,106)" rx="2" ry="2" /> +<text x="377.50" y="591.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.04%)</title><rect x="57.8" y="645" width="0.5" height="15.0" fill="rgb(0,196,118)" rx="2" ry="2" /> +<text x="60.75" y="655.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.04%)</title><rect x="74.2" y="677" width="0.5" height="15.0" fill="rgb(0,193,70)" rx="2" ry="2" /> +<text x="77.20" y="687.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.08%)</title><rect x="220.6" y="549" width="1.1" height="15.0" fill="rgb(0,195,39)" rx="2" ry="2" /> +<text x="223.63" y="559.5" ></text> +</g> +<g > +<title>rename (131,313,130 samples, 0.50%)</title><rect x="446.7" y="693" width="6.9" height="15.0" fill="rgb(0,206,50)" rx="2" ry="2" /> +<text x="449.66" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (80,808,080 samples, 0.31%)</title><rect x="25.4" y="837" width="4.2" height="15.0" fill="rgb(0,236,87)" rx="2" ry="2" /> +<text x="28.39" y="847.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (333,333,330 samples, 1.27%)</title><rect x="380.3" y="693" width="17.5" height="15.0" fill="rgb(0,237,10)" rx="2" ry="2" /> +<text x="383.33" y="703.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.04%)</title><rect x="158.6" y="533" width="0.5" height="15.0" fill="rgb(0,215,19)" rx="2" ry="2" /> +<text x="161.56" y="543.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.04%)</title><rect x="302.9" y="613" width="0.5" height="15.0" fill="rgb(0,204,63)" rx="2" ry="2" /> +<text x="305.87" y="623.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (30,303,030 samples, 0.12%)</title><rect x="447.2" y="565" width="1.6" height="15.0" fill="rgb(0,190,186)" rx="2" ry="2" /> +<text x="450.19" y="575.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.04%)</title><rect x="188.3" y="597" width="0.5" height="15.0" fill="rgb(0,238,55)" rx="2" ry="2" /> +<text x="191.27" y="607.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.04%)</title><rect x="899.2" y="709" width="0.6" height="15.0" fill="rgb(0,224,158)" rx="2" ry="2" /> +<text x="902.23" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.04%)</title><rect x="294.9" y="661" width="0.5" height="15.0" fill="rgb(0,201,185)" rx="2" ry="2" /> +<text x="297.91" y="671.5" ></text> +</g> +<g > +<title>readdir64 (40,404,040 samples, 0.15%)</title><rect x="177.1" y="805" width="2.2" height="15.0" fill="rgb(0,233,106)" rx="2" ry="2" /> +<text x="180.13" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.08%)</title><rect x="292.3" y="661" width="1.0" height="15.0" fill="rgb(0,231,99)" rx="2" ry="2" /> +<text x="295.26" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (484,848,480 samples, 1.85%)</title><rect x="192.0" y="821" width="25.5" height="15.0" fill="rgb(0,214,65)" rx="2" ry="2" /> +<text x="194.98" y="831.5" >[..</text> +</g> +<g > +<title>path_lookupat (70,707,070 samples, 0.27%)</title><rect x="254.1" y="613" width="3.7" height="15.0" fill="rgb(0,193,78)" rx="2" ry="2" /> +<text x="257.06" y="623.5" ></text> +</g> +<g > +<title>exc_page_fault (121,212,120 samples, 0.46%)</title><rect x="611.7" y="821" width="6.3" height="15.0" fill="rgb(0,234,2)" rx="2" ry="2" /> +<text x="614.66" y="831.5" ></text> +</g> +<g > +<title>jsonrpc_request_from_json (10,101,010 samples, 0.04%)</title><rect x="1378.3" y="821" width="0.6" height="15.0" fill="rgb(0,223,0)" rx="2" ry="2" /> +<text x="1381.33" y="831.5" ></text> +</g> +<g > +<title>alloc_pages (282,828,280 samples, 1.08%)</title><rect x="1340.1" y="629" width="14.9" height="15.0" fill="rgb(0,220,79)" rx="2" ry="2" /> +<text x="1343.13" y="639.5" ></text> +</g> +<g > +<title>ext4_lookup.part.0 (10,101,010 samples, 0.04%)</title><rect x="378.7" y="597" width="0.6" height="15.0" fill="rgb(0,230,33)" rx="2" ry="2" /> +<text x="381.74" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.12%)</title><rect x="303.9" y="613" width="1.6" height="15.0" fill="rgb(0,216,37)" rx="2" ry="2" /> +<text x="306.93" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.04%)</title><rect x="281.1" y="597" width="0.5" height="15.0" fill="rgb(0,230,83)" rx="2" ry="2" /> +<text x="284.12" y="607.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.04%)</title><rect x="41.8" y="437" width="0.6" height="15.0" fill="rgb(0,202,83)" rx="2" ry="2" /> +<text x="44.83" y="447.5" ></text> +</g> +<g > +<title>open_last_lookups (10,101,010 samples, 0.04%)</title><rect x="381.9" y="517" width="0.6" height="15.0" fill="rgb(0,192,27)" rx="2" ry="2" /> +<text x="384.93" y="527.5" ></text> +</g> +<g > +<title>dma_map_sg_attrs (10,101,010 samples, 0.04%)</title><rect x="372.4" y="261" width="0.5" height="15.0" fill="rgb(0,215,8)" rx="2" ry="2" /> +<text x="375.38" y="271.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.04%)</title><rect x="47.1" y="549" width="0.6" height="15.0" fill="rgb(0,198,67)" rx="2" ry="2" /> +<text x="50.14" y="559.5" ></text> +</g> +<g > +<title>evict (20,202,020 samples, 0.08%)</title><rect x="414.8" y="517" width="1.1" height="15.0" fill="rgb(0,228,26)" rx="2" ry="2" /> +<text x="417.82" y="527.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.04%)</title><rect x="290.7" y="581" width="0.5" height="15.0" fill="rgb(0,228,84)" rx="2" ry="2" /> +<text x="293.67" y="591.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.04%)</title><rect x="378.7" y="613" width="0.6" height="15.0" fill="rgb(0,190,74)" rx="2" ry="2" /> +<text x="381.74" y="623.5" ></text> +</g> +<g > +<title>close (161,616,160 samples, 0.62%)</title><rect x="34.4" y="805" width="8.5" height="15.0" fill="rgb(0,193,88)" rx="2" ry="2" /> +<text x="37.41" y="815.5" ></text> +</g> +<g > +<title>security_inode_need_killpriv (10,101,010 samples, 0.04%)</title><rect x="392.0" y="469" width="0.5" height="15.0" fill="rgb(0,208,143)" rx="2" ry="2" /> +<text x="395.01" y="479.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="158.0" y="565" width="0.6" height="15.0" fill="rgb(0,190,53)" rx="2" ry="2" /> +<text x="161.03" y="575.5" ></text> +</g> +<g > +<title>git_repository_open_ext (111,111,110 samples, 0.42%)</title><rect x="294.4" y="725" width="5.8" height="15.0" fill="rgb(0,191,198)" rx="2" ry="2" /> +<text x="297.38" y="735.5" ></text> +</g> +<g > +<title>__ext4_check_dir_entry (10,101,010 samples, 0.04%)</title><rect x="129.9" y="501" width="0.5" height="15.0" fill="rgb(0,236,13)" rx="2" ry="2" /> +<text x="132.91" y="511.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.04%)</title><rect x="15.8" y="805" width="0.6" height="15.0" fill="rgb(0,194,157)" rx="2" ry="2" /> +<text x="18.84" y="815.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.04%)</title><rect x="181.4" y="757" width="0.5" height="15.0" fill="rgb(0,212,51)" rx="2" ry="2" /> +<text x="184.37" y="767.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.04%)</title><rect x="386.2" y="485" width="0.5" height="15.0" fill="rgb(0,199,52)" rx="2" ry="2" /> +<text x="389.17" y="495.5" ></text> +</g> +<g > +<title>read (20,202,020 samples, 0.08%)</title><rect x="347.4" y="629" width="1.1" height="15.0" fill="rgb(0,209,4)" rx="2" ry="2" /> +<text x="350.44" y="639.5" ></text> +</g> +<g > +<title>up_read (10,101,010 samples, 0.04%)</title><rect x="929.5" y="757" width="0.5" height="15.0" fill="rgb(0,227,130)" rx="2" ry="2" /> +<text x="932.47" y="767.5" ></text> +</g> +<g > +<title>grab_cache_page_write_begin (10,101,010 samples, 0.04%)</title><rect x="325.7" y="501" width="0.5" height="15.0" fill="rgb(0,224,58)" rx="2" ry="2" /> +<text x="328.69" y="511.5" ></text> +</g> +<g > +<title>git_odb_read (30,303,030 samples, 0.12%)</title><rect x="277.9" y="757" width="1.6" height="15.0" fill="rgb(0,199,142)" rx="2" ry="2" /> +<text x="280.94" y="767.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.04%)</title><rect x="521.5" y="517" width="0.5" height="15.0" fill="rgb(0,232,42)" rx="2" ry="2" /> +<text x="524.46" y="527.5" ></text> +</g> +<g > +<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.04%)</title><rect x="300.2" y="469" width="0.5" height="15.0" fill="rgb(0,208,164)" rx="2" ry="2" /> +<text x="303.22" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.15%)</title><rect x="30.2" y="789" width="2.1" height="15.0" fill="rgb(0,233,120)" rx="2" ry="2" /> +<text x="33.16" y="799.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.04%)</title><rect x="391.5" y="517" width="0.5" height="15.0" fill="rgb(0,230,0)" rx="2" ry="2" /> +<text x="394.48" y="527.5" ></text> +</g> +<g > +<title>do_faccessat (90,909,090 samples, 0.35%)</title><rect x="77.4" y="885" width="4.8" height="15.0" fill="rgb(0,231,183)" rx="2" ry="2" /> +<text x="80.38" y="895.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.04%)</title><rect x="293.9" y="645" width="0.5" height="15.0" fill="rgb(0,218,152)" rx="2" ry="2" /> +<text x="296.85" y="655.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.04%)</title><rect x="456.2" y="613" width="0.5" height="15.0" fill="rgb(0,215,62)" rx="2" ry="2" /> +<text x="459.21" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.04%)</title><rect x="492.3" y="773" width="0.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="495.28" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.04%)</title><rect x="196.8" y="645" width="0.5" height="15.0" fill="rgb(0,190,207)" rx="2" ry="2" /> +<text x="199.76" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.12%)</title><rect x="470.0" y="725" width="1.6" height="15.0" fill="rgb(0,209,135)" rx="2" ry="2" /> +<text x="473.00" y="735.5" ></text> +</g> +<g > +<title>ext4_lookup.part.0 (10,101,010 samples, 0.04%)</title><rect x="307.1" y="469" width="0.5" height="15.0" fill="rgb(0,208,134)" rx="2" ry="2" /> +<text x="310.12" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (171,717,170 samples, 0.65%)</title><rect x="292.3" y="741" width="9.0" height="15.0" fill="rgb(0,219,65)" rx="2" ry="2" /> +<text x="295.26" y="751.5" ></text> +</g> +</g> +</svg> diff --git a/flame_graphs/flame_graph_output_simple.svg b/flame_graphs/flame_graph_output_simple.svg new file mode 100644 index 0000000..ad07709 --- /dev/null +++ b/flame_graphs/flame_graph_output_simple.svg @@ -0,0 +1,23157 @@ +<?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="1046" onload="init(evt)" viewBox="0 0 1400 1046" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> +<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. --> +<!-- NOTES: --> +<defs> + <linearGradient id="background" y1="0" y2="1" x1="0" x2="0" > + <stop stop-color="#eef2ee" offset="5%" /> + <stop stop-color="#e0ffe0" offset="95%" /> + </linearGradient> +</defs> +<style type="text/css"> + text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); } + #search, #ignorecase { opacity:0.1; cursor:pointer; } + #search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; } + #subtitle { text-anchor:middle; font-color:rgb(160,160,160); } + #title { text-anchor:middle; font-size:17px} + #unzoom { cursor:pointer; } + #frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; } + .hide { display:none; } + .parent { opacity:0.5; } +</style> +<script type="text/ecmascript"> +<![CDATA[ + "use strict"; + var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn; + function init(evt) { + details = document.getElementById("details").firstChild; + searchbtn = document.getElementById("search"); + ignorecaseBtn = document.getElementById("ignorecase"); + unzoombtn = document.getElementById("unzoom"); + matchedtxt = document.getElementById("matched"); + svg = document.getElementsByTagName("svg")[0]; + searching = 0; + currentSearchTerm = null; + + // use GET parameters to restore a flamegraphs state. + var params = get_params(); + if (params.x && params.y) + zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]'))); + if (params.s) search(params.s); + } + + // event listeners + window.addEventListener("click", function(e) { + var target = find_group(e.target); + if (target) { + if (target.nodeName == "a") { + if (e.ctrlKey === false) return; + e.preventDefault(); + } + if (target.classList.contains("parent")) unzoom(true); + zoom(target); + if (!document.querySelector('.parent')) { + // we have basically done a clearzoom so clear the url + var params = get_params(); + if (params.x) delete params.x; + if (params.y) delete params.y; + history.replaceState(null, null, parse_params(params)); + unzoombtn.classList.add("hide"); + return; + } + + // set parameters for zoom state + var el = target.querySelector("rect"); + if (el && el.attributes && el.attributes.y && el.attributes._orig_x) { + var params = get_params() + params.x = el.attributes._orig_x.value; + params.y = el.attributes.y.value; + history.replaceState(null, null, parse_params(params)); + } + } + else if (e.target.id == "unzoom") clearzoom(); + else if (e.target.id == "search") search_prompt(); + else if (e.target.id == "ignorecase") toggle_ignorecase(); + }, false) + + // mouse-over for info + // show + window.addEventListener("mouseover", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = "Function: " + g_to_text(target); + }, false) + + // clear + window.addEventListener("mouseout", function(e) { + var target = find_group(e.target); + if (target) details.nodeValue = ' '; + }, false) + + // ctrl-F for search + // ctrl-I to toggle case-sensitive search + window.addEventListener("keydown",function (e) { + if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { + e.preventDefault(); + search_prompt(); + } + else if (e.ctrlKey && e.keyCode === 73) { + e.preventDefault(); + toggle_ignorecase(); + } + }, false) + + // functions + function get_params() { + var params = {}; + var paramsarr = window.location.search.substr(1).split('&'); + for (var i = 0; i < paramsarr.length; ++i) { + var tmp = paramsarr[i].split("="); + if (!tmp[0] || !tmp[1]) continue; + params[tmp[0]] = decodeURIComponent(tmp[1]); + } + return params; + } + function parse_params(params) { + var uri = "?"; + for (var key in params) { + uri += key + '=' + encodeURIComponent(params[key]) + '&'; + } + if (uri.slice(-1) == "&") + uri = uri.substring(0, uri.length - 1); + if (uri == '?') + uri = window.location.href.split('?')[0]; + return uri; + } + function find_child(node, selector) { + var children = node.querySelectorAll(selector); + if (children.length) return children[0]; + } + function find_group(node) { + var parent = node.parentElement; + if (!parent) return; + if (parent.id == "frames") return node; + return find_group(parent); + } + function orig_save(e, attr, val) { + if (e.attributes["_orig_" + attr] != undefined) return; + if (e.attributes[attr] == undefined) return; + if (val == undefined) val = e.attributes[attr].value; + e.setAttribute("_orig_" + attr, val); + } + function orig_load(e, attr) { + if (e.attributes["_orig_"+attr] == undefined) return; + e.attributes[attr].value = e.attributes["_orig_" + attr].value; + e.removeAttribute("_orig_"+attr); + } + function g_to_text(e) { + var text = find_child(e, "title").firstChild.nodeValue; + return (text) + } + function g_to_func(e) { + var func = g_to_text(e); + // if there's any manipulation we want to do to the function + // name before it's searched, do it here before returning. + return (func); + } + function update_text(e) { + var r = find_child(e, "rect"); + var t = find_child(e, "text"); + var w = parseFloat(r.attributes.width.value) -3; + var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); + t.attributes.x.value = parseFloat(r.attributes.x.value) + 3; + + // Smaller than this size won't fit anything + if (w < 2 * 12 * 0.59) { + t.textContent = ""; + return; + } + + t.textContent = txt; + var sl = t.getSubStringLength(0, txt.length); + // check if only whitespace or if we can fit the entire string into width w + if (/^ *$/.test(txt) || sl < w) + return; + + // this isn't perfect, but gives a good starting point + // and avoids calling getSubStringLength too often + var start = Math.floor((w/sl) * txt.length); + for (var x = start; x > 0; x = x-2) { + if (t.getSubStringLength(0, x + 2) <= w) { + t.textContent = txt.substring(0, x) + ".."; + return; + } + } + t.textContent = ""; + } + + // zoom + function zoom_reset(e) { + if (e.attributes != undefined) { + orig_load(e, "x"); + orig_load(e, "width"); + } + if (e.childNodes == undefined) return; + for (var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_reset(c[i]); + } + } + function zoom_child(e, x, ratio) { + if (e.attributes != undefined) { + if (e.attributes.x != undefined) { + orig_save(e, "x"); + e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10; + if (e.tagName == "text") + e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3; + } + if (e.attributes.width != undefined) { + orig_save(e, "width"); + e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio; + } + } + + if (e.childNodes == undefined) return; + for (var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_child(c[i], x - 10, ratio); + } + } + function zoom_parent(e) { + if (e.attributes) { + if (e.attributes.x != undefined) { + orig_save(e, "x"); + e.attributes.x.value = 10; + } + if (e.attributes.width != undefined) { + orig_save(e, "width"); + e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2); + } + } + if (e.childNodes == undefined) return; + for (var i = 0, c = e.childNodes; i < c.length; i++) { + zoom_parent(c[i]); + } + } + function zoom(node) { + var attr = find_child(node, "rect").attributes; + var width = parseFloat(attr.width.value); + var xmin = parseFloat(attr.x.value); + var xmax = parseFloat(xmin + width); + var ymin = parseFloat(attr.y.value); + var ratio = (svg.width.baseVal.value - 2 * 10) / width; + + // XXX: Workaround for JavaScript float issues (fix me) + var fudge = 0.0001; + + unzoombtn.classList.remove("hide"); + + var el = document.getElementById("frames").children; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var a = find_child(e, "rect").attributes; + var ex = parseFloat(a.x.value); + var ew = parseFloat(a.width.value); + var upstack; + // Is it an ancestor + if (0 == 0) { + upstack = parseFloat(a.y.value) > ymin; + } else { + upstack = parseFloat(a.y.value) < ymin; + } + if (upstack) { + // Direct ancestor + if (ex <= xmin && (ex+ew+fudge) >= xmax) { + e.classList.add("parent"); + zoom_parent(e); + update_text(e); + } + // not in current path + else + e.classList.add("hide"); + } + // Children maybe + else { + // no common path + if (ex < xmin || ex + fudge >= xmax) { + e.classList.add("hide"); + } + else { + zoom_child(e, xmin, ratio); + update_text(e); + } + } + } + search(); + } + function unzoom(dont_update_text) { + unzoombtn.classList.add("hide"); + var el = document.getElementById("frames").children; + for(var i = 0; i < el.length; i++) { + el[i].classList.remove("parent"); + el[i].classList.remove("hide"); + zoom_reset(el[i]); + if(!dont_update_text) update_text(el[i]); + } + search(); + } + function clearzoom() { + unzoom(); + + // remove zoom state + var params = get_params(); + if (params.x) delete params.x; + if (params.y) delete params.y; + history.replaceState(null, null, parse_params(params)); + } + + // search + function toggle_ignorecase() { + ignorecase = !ignorecase; + if (ignorecase) { + ignorecaseBtn.classList.add("show"); + } else { + ignorecaseBtn.classList.remove("show"); + } + reset_search(); + search(); + } + function reset_search() { + var el = document.querySelectorAll("#frames rect"); + for (var i = 0; i < el.length; i++) { + orig_load(el[i], "fill") + } + var params = get_params(); + delete params.s; + history.replaceState(null, null, parse_params(params)); + } + function search_prompt() { + if (!searching) { + var term = prompt("Enter a search term (regexp " + + "allowed, eg: ^ext4_)" + + (ignorecase ? ", ignoring case" : "") + + "\nPress Ctrl-i to toggle case sensitivity", ""); + if (term != null) search(term); + } else { + reset_search(); + searching = 0; + currentSearchTerm = null; + searchbtn.classList.remove("show"); + searchbtn.firstChild.nodeValue = "Search" + matchedtxt.classList.add("hide"); + matchedtxt.firstChild.nodeValue = "" + } + } + function search(term) { + if (term) currentSearchTerm = term; + + var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : ''); + var el = document.getElementById("frames").children; + var matches = new Object(); + var maxwidth = 0; + for (var i = 0; i < el.length; i++) { + var e = el[i]; + var func = g_to_func(e); + var rect = find_child(e, "rect"); + if (func == null || rect == null) + continue; + + // Save max width. Only works as we have a root frame + var w = parseFloat(rect.attributes.width.value); + if (w > maxwidth) + maxwidth = w; + + if (func.match(re)) { + // highlight + var x = parseFloat(rect.attributes.x.value); + orig_save(rect, "fill"); + rect.attributes.fill.value = "rgb(230,0,230)"; + + // remember matches + if (matches[x] == undefined) { + matches[x] = w; + } else { + if (w > matches[x]) { + // overwrite with parent + matches[x] = w; + } + } + searching = 1; + } + } + if (!searching) + return; + var params = get_params(); + params.s = currentSearchTerm; + history.replaceState(null, null, parse_params(params)); + + searchbtn.classList.add("show"); + searchbtn.firstChild.nodeValue = "Reset Search"; + + // calculate percent matched, excluding vertical overlap + var count = 0; + var lastx = -1; + var lastw = 0; + var keys = Array(); + for (k in matches) { + if (matches.hasOwnProperty(k)) + keys.push(k); + } + // sort the matched frames by their x location + // ascending, then width descending + keys.sort(function(a, b){ + return a - b; + }); + // Step through frames saving only the biggest bottom-up frames + // thanks to the sort order. This relies on the tree property + // where children are always smaller than their parents. + var fudge = 0.0001; // JavaScript floating point + for (var k in keys) { + var x = parseFloat(keys[k]); + var w = matches[keys[k]]; + if (x >= lastx + lastw - fudge) { + count += w; + lastx = x; + lastw = w; + } + } + // display matched percent + matchedtxt.classList.remove("hide"); + var pct = 100 * count / maxwidth; + if (pct != 100) pct = pct.toFixed(1) + matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; + } +]]> +</script> +<rect x="0.0" y="0" width="1400.0" height="1046.0" fill="url(#background)" /> +<text id="title" x="700.00" y="24" >Flame Graph</text> +<text id="details" x="10.00" y="1029" > </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="1029" > </text> +<g id="frames"> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="314.3" y="389" width="2.7" height="15.0" fill="rgb(0,219,23)" rx="2" ry="2" /> +<text x="317.27" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1205.6" y="741" width="1.3" height="15.0" fill="rgb(0,236,79)" rx="2" ry="2" /> +<text x="1208.55" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="864.9" y="549" width="1.4" height="15.0" fill="rgb(0,239,5)" rx="2" ry="2" /> +<text x="867.93" y="559.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.10%)</title><rect x="728.9" y="549" width="1.4" height="15.0" fill="rgb(0,199,170)" rx="2" ry="2" /> +<text x="731.95" y="559.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.10%)</title><rect x="209.3" y="389" width="1.3" height="15.0" fill="rgb(0,227,115)" rx="2" ry="2" /> +<text x="212.26" y="399.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="26.2" y="853" width="1.3" height="15.0" fill="rgb(0,216,115)" rx="2" ry="2" /> +<text x="29.16" y="863.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="443.5" y="629" width="1.4" height="15.0" fill="rgb(0,210,130)" rx="2" ry="2" /> +<text x="446.52" y="639.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum_set (10,101,010 samples, 0.10%)</title><rect x="229.5" y="469" width="1.3" height="15.0" fill="rgb(0,195,33)" rx="2" ry="2" /> +<text x="232.45" y="479.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.10%)</title><rect x="543.2" y="565" width="1.3" height="15.0" fill="rgb(0,202,76)" rx="2" ry="2" /> +<text x="546.15" y="575.5" ></text> +</g> +<g > +<title>evict (30,303,030 samples, 0.29%)</title><rect x="436.8" y="565" width="4.0" height="15.0" fill="rgb(0,209,75)" rx="2" ry="2" /> +<text x="439.79" y="575.5" ></text> +</g> +<g > +<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.10%)</title><rect x="1083.0" y="373" width="1.4" height="15.0" fill="rgb(0,222,22)" rx="2" ry="2" /> +<text x="1086.03" y="383.5" ></text> +</g> +<g > +<title>common_perm_cond (10,101,010 samples, 0.10%)</title><rect x="835.3" y="565" width="1.4" height="15.0" fill="rgb(0,220,97)" rx="2" ry="2" /> +<text x="838.31" y="575.5" ></text> +</g> +<g > +<title>_start (484,848,480 samples, 4.68%)</title><rect x="43.7" y="965" width="64.6" height="15.0" fill="rgb(0,190,24)" rx="2" ry="2" /> +<text x="46.66" y="975.5" >_start</text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="718.2" y="437" width="1.3" height="15.0" fill="rgb(0,218,23)" rx="2" ry="2" /> +<text x="721.18" y="447.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.10%)</title><rect x="42.3" y="725" width="1.4" height="15.0" fill="rgb(0,210,101)" rx="2" ry="2" /> +<text x="45.31" y="735.5" ></text> +</g> +<g > +<title>git_attr_cache_flush (40,404,040 samples, 0.39%)</title><rect x="195.8" y="789" width="5.4" height="15.0" fill="rgb(0,218,36)" rx="2" ry="2" /> +<text x="198.80" y="799.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.10%)</title><rect x="710.1" y="469" width="1.3" height="15.0" fill="rgb(0,237,189)" rx="2" ry="2" /> +<text x="713.10" y="479.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.10%)</title><rect x="788.2" y="613" width="1.3" height="15.0" fill="rgb(0,227,84)" rx="2" ry="2" /> +<text x="791.19" y="623.5" ></text> +</g> +<g > +<title>ext4_io_submit (30,303,030 samples, 0.29%)</title><rect x="656.2" y="469" width="4.1" height="15.0" fill="rgb(0,217,91)" rx="2" ry="2" /> +<text x="659.24" y="479.5" ></text> +</g> +<g > +<title>git_config_set_string (343,434,340 samples, 3.32%)</title><rect x="1088.4" y="741" width="45.8" height="15.0" fill="rgb(0,210,155)" rx="2" ry="2" /> +<text x="1091.42" y="751.5" >git_..</text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="980.7" y="629" width="1.4" height="15.0" fill="rgb(0,228,91)" rx="2" ry="2" /> +<text x="983.71" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="788.2" y="485" width="1.3" height="15.0" fill="rgb(0,231,111)" rx="2" ry="2" /> +<text x="791.19" y="495.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="870.3" y="517" width="1.4" height="15.0" fill="rgb(0,239,117)" rx="2" ry="2" /> +<text x="873.31" y="527.5" ></text> +</g> +<g > +<title>__release_sock (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="709" width="2.7" height="15.0" fill="rgb(0,223,81)" rx="2" ry="2" /> +<text x="1380.88" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="755.9" y="613" width="1.3" height="15.0" fill="rgb(0,207,92)" rx="2" ry="2" /> +<text x="758.87" y="623.5" ></text> +</g> +<g > +<title>__tcp_close (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="629" width="2.6" height="15.0" fill="rgb(0,220,102)" rx="2" ry="2" /> +<text x="1336.45" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="55.8" y="773" width="2.7" height="15.0" fill="rgb(0,228,162)" rx="2" ry="2" /> +<text x="58.78" y="783.5" ></text> +</g> +<g > +<title>save_fpregs_to_fpstate (10,101,010 samples, 0.10%)</title><rect x="216.0" y="405" width="1.3" height="15.0" fill="rgb(0,208,75)" rx="2" ry="2" /> +<text x="218.99" y="415.5" ></text> +</g> +<g > +<title>__srcu_read_unlock (10,101,010 samples, 0.10%)</title><rect x="343.9" y="517" width="1.3" height="15.0" fill="rgb(0,207,115)" rx="2" ry="2" /> +<text x="346.89" y="527.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.10%)</title><rect x="758.6" y="421" width="1.3" height="15.0" fill="rgb(0,238,146)" rx="2" ry="2" /> +<text x="761.57" y="431.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (30,303,030 samples, 0.29%)</title><rect x="224.1" y="533" width="4.0" height="15.0" fill="rgb(0,209,138)" rx="2" ry="2" /> +<text x="227.07" y="543.5" ></text> +</g> +<g > +<title>down_write (10,101,010 samples, 0.10%)</title><rect x="1011.7" y="597" width="1.3" height="15.0" fill="rgb(0,233,127)" rx="2" ry="2" /> +<text x="1014.68" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="925.5" y="693" width="1.4" height="15.0" fill="rgb(0,202,46)" rx="2" ry="2" /> +<text x="928.51" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="728.9" y="645" width="1.4" height="15.0" fill="rgb(0,199,129)" rx="2" ry="2" /> +<text x="731.95" y="655.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.10%)</title><rect x="621.2" y="565" width="1.4" height="15.0" fill="rgb(0,196,191)" rx="2" ry="2" /> +<text x="624.24" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="885.1" y="677" width="1.4" height="15.0" fill="rgb(0,216,200)" rx="2" ry="2" /> +<text x="888.12" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="914.7" y="693" width="4.1" height="15.0" fill="rgb(0,223,0)" rx="2" ry="2" /> +<text x="917.74" y="703.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="333.1" y="693" width="1.4" height="15.0" fill="rgb(0,216,101)" rx="2" ry="2" /> +<text x="336.12" y="703.5" ></text> +</g> +<g > +<title>git_config_snapshot (60,606,060 samples, 0.59%)</title><rect x="490.6" y="709" width="8.1" height="15.0" fill="rgb(0,237,80)" rx="2" ry="2" /> +<text x="493.64" y="719.5" ></text> +</g> +<g > +<title>do_readlinkat (10,101,010 samples, 0.10%)</title><rect x="485.3" y="613" width="1.3" height="15.0" fill="rgb(0,236,185)" rx="2" ry="2" /> +<text x="488.26" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (313,131,310 samples, 3.02%)</title><rect x="128.5" y="885" width="41.7" height="15.0" fill="rgb(0,195,54)" rx="2" ry="2" /> +<text x="131.48" y="895.5" >do_..</text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="565" width="1.3" height="15.0" fill="rgb(0,236,125)" rx="2" ry="2" /> +<text x="1029.49" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="516.2" y="645" width="1.4" height="15.0" fill="rgb(0,210,64)" rx="2" ry="2" /> +<text x="519.22" y="655.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="781.5" y="485" width="1.3" height="15.0" fill="rgb(0,236,139)" rx="2" ry="2" /> +<text x="784.45" y="495.5" ></text> +</g> +<g > +<title>inflate (10,101,010 samples, 0.10%)</title><rect x="444.9" y="661" width="1.3" height="15.0" fill="rgb(0,219,73)" rx="2" ry="2" /> +<text x="447.87" y="671.5" ></text> +</g> +<g > +<title>__sys_sendto (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="725" width="5.4" height="15.0" fill="rgb(0,238,166)" rx="2" ry="2" /> +<text x="1331.07" y="735.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="442.2" y="677" width="1.3" height="15.0" fill="rgb(0,200,2)" rx="2" ry="2" /> +<text x="445.18" y="687.5" ></text> +</g> +<g > +<title>filename_create (10,101,010 samples, 0.10%)</title><rect x="1079.0" y="581" width="1.3" height="15.0" fill="rgb(0,226,10)" rx="2" ry="2" /> +<text x="1082.00" y="591.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (50,505,050 samples, 0.49%)</title><rect x="1057.5" y="677" width="6.7" height="15.0" fill="rgb(0,198,121)" rx="2" ry="2" /> +<text x="1060.45" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="625.3" y="629" width="1.3" height="15.0" fill="rgb(0,219,125)" rx="2" ry="2" /> +<text x="628.28" y="639.5" ></text> +</g> +<g > +<title>close (20,202,020 samples, 0.20%)</title><rect x="745.1" y="581" width="2.7" height="15.0" fill="rgb(0,208,144)" rx="2" ry="2" /> +<text x="748.10" y="591.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.20%)</title><rect x="757.2" y="533" width="2.7" height="15.0" fill="rgb(0,222,198)" rx="2" ry="2" /> +<text x="760.22" y="543.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.10%)</title><rect x="688.6" y="485" width="1.3" height="15.0" fill="rgb(0,220,34)" rx="2" ry="2" /> +<text x="691.56" y="495.5" ></text> +</g> +<g > +<title>security_inode_init_security (10,101,010 samples, 0.10%)</title><rect x="1034.6" y="597" width="1.3" height="15.0" fill="rgb(0,207,97)" rx="2" ry="2" /> +<text x="1037.57" y="607.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="202.5" y="565" width="1.4" height="15.0" fill="rgb(0,224,52)" rx="2" ry="2" /> +<text x="205.53" y="575.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="481.2" y="549" width="1.4" height="15.0" fill="rgb(0,191,58)" rx="2" ry="2" /> +<text x="484.22" y="559.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="708.8" y="629" width="1.3" height="15.0" fill="rgb(0,190,207)" rx="2" ry="2" /> +<text x="711.75" y="639.5" ></text> +</g> +<g > +<title>ext4_bio_write_page (20,202,020 samples, 0.20%)</title><rect x="930.9" y="453" width="2.7" height="15.0" fill="rgb(0,212,41)" rx="2" ry="2" /> +<text x="933.90" y="463.5" ></text> +</g> +<g > +<title>submit_bio_noacct (10,101,010 samples, 0.10%)</title><rect x="817.8" y="453" width="1.4" height="15.0" fill="rgb(0,192,184)" rx="2" ry="2" /> +<text x="820.80" y="463.5" ></text> +</g> +<g > +<title>net_send (101,010,100 samples, 0.98%)</title><rect x="11.3" y="853" width="13.5" height="15.0" fill="rgb(0,216,57)" rx="2" ry="2" /> +<text x="14.35" y="863.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.10%)</title><rect x="541.8" y="549" width="1.4" height="15.0" fill="rgb(0,238,41)" rx="2" ry="2" /> +<text x="544.80" y="559.5" ></text> +</g> +<g > +<title>fdopendir (20,202,020 samples, 0.20%)</title><rect x="331.8" y="725" width="2.7" height="15.0" fill="rgb(0,197,120)" rx="2" ry="2" /> +<text x="334.78" y="735.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="469" width="1.3" height="15.0" fill="rgb(0,229,114)" rx="2" ry="2" /> +<text x="1029.49" y="479.5" ></text> +</g> +<g > +<title>__put_cred (10,101,010 samples, 0.10%)</title><rect x="176.9" y="837" width="1.4" height="15.0" fill="rgb(0,239,168)" rx="2" ry="2" /> +<text x="179.95" y="847.5" ></text> +</g> +<g > +<title>file_remove_privs (10,101,010 samples, 0.10%)</title><rect x="807.0" y="501" width="1.4" height="15.0" fill="rgb(0,229,178)" rx="2" ry="2" /> +<text x="810.03" y="511.5" ></text> +</g> +<g > +<title>git_repository_config_snapshot (121,212,120 samples, 1.17%)</title><rect x="893.2" y="725" width="16.2" height="15.0" fill="rgb(0,210,161)" rx="2" ry="2" /> +<text x="896.20" y="735.5" ></text> +</g> +<g > +<title>unlock_page (10,101,010 samples, 0.10%)</title><rect x="199.8" y="629" width="1.4" height="15.0" fill="rgb(0,192,99)" rx="2" ry="2" /> +<text x="202.83" y="639.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="730.3" y="485" width="1.3" height="15.0" fill="rgb(0,231,43)" rx="2" ry="2" /> +<text x="733.29" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="834.0" y="677" width="2.7" height="15.0" fill="rgb(0,210,92)" rx="2" ry="2" /> +<text x="836.96" y="687.5" ></text> +</g> +<g > +<title>ext4_fname_setup_ci_filename (10,101,010 samples, 0.10%)</title><rect x="847.4" y="533" width="1.4" height="15.0" fill="rgb(0,193,137)" rx="2" ry="2" /> +<text x="850.42" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="856.8" y="661" width="2.7" height="15.0" fill="rgb(0,196,147)" rx="2" ry="2" /> +<text x="859.85" y="671.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="1229.8" y="757" width="1.3" height="15.0" fill="rgb(0,208,49)" rx="2" ry="2" /> +<text x="1232.79" y="767.5" ></text> +</g> +<g > +<title>__blk_mq_delay_run_hw_queue (10,101,010 samples, 0.10%)</title><rect x="816.5" y="405" width="1.3" height="15.0" fill="rgb(0,219,70)" rx="2" ry="2" /> +<text x="819.46" y="415.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.49%)</title><rect x="436.8" y="709" width="6.7" height="15.0" fill="rgb(0,206,159)" rx="2" ry="2" /> +<text x="439.79" y="719.5" ></text> +</g> +<g > +<title>generic_write_end (10,101,010 samples, 0.10%)</title><rect x="688.6" y="469" width="1.3" height="15.0" fill="rgb(0,238,174)" rx="2" ry="2" /> +<text x="691.56" y="479.5" ></text> +</g> +<g > +<title>apparmor_task_getsecid (10,101,010 samples, 0.10%)</title><rect x="1000.9" y="549" width="1.4" height="15.0" fill="rgb(0,222,122)" rx="2" ry="2" /> +<text x="1003.91" y="559.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.10%)</title><rect x="88.1" y="645" width="1.3" height="15.0" fill="rgb(0,221,13)" rx="2" ry="2" /> +<text x="91.09" y="655.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.10%)</title><rect x="34.2" y="837" width="1.4" height="15.0" fill="rgb(0,229,8)" rx="2" ry="2" /> +<text x="37.23" y="847.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1196.1" y="517" width="1.4" height="15.0" fill="rgb(0,218,68)" rx="2" ry="2" /> +<text x="1199.13" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="1231.1" y="709" width="6.8" height="15.0" fill="rgb(0,206,167)" rx="2" ry="2" /> +<text x="1234.13" y="719.5" ></text> +</g> +<g > +<title>vfs_rmdir (40,404,040 samples, 0.39%)</title><rect x="407.2" y="677" width="5.4" height="15.0" fill="rgb(0,225,177)" rx="2" ry="2" /> +<text x="410.17" y="687.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="27.5" y="773" width="1.3" height="15.0" fill="rgb(0,198,131)" rx="2" ry="2" /> +<text x="30.50" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="947.1" y="565" width="2.6" height="15.0" fill="rgb(0,212,37)" rx="2" ry="2" /> +<text x="950.05" y="575.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="1015.7" y="517" width="1.4" height="15.0" fill="rgb(0,202,62)" rx="2" ry="2" /> +<text x="1018.72" y="527.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.10%)</title><rect x="839.3" y="437" width="1.4" height="15.0" fill="rgb(0,193,156)" rx="2" ry="2" /> +<text x="842.35" y="447.5" ></text> +</g> +<g > +<title>__add_to_page_cache_locked (10,101,010 samples, 0.10%)</title><rect x="1099.2" y="421" width="1.3" height="15.0" fill="rgb(0,203,154)" rx="2" ry="2" /> +<text x="1102.19" y="431.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.10%)</title><rect x="286.0" y="421" width="1.3" height="15.0" fill="rgb(0,216,161)" rx="2" ry="2" /> +<text x="289.00" y="431.5" ></text> +</g> +<g > +<title>_find_next_bit (10,101,010 samples, 0.10%)</title><rect x="147.3" y="741" width="1.4" height="15.0" fill="rgb(0,221,189)" rx="2" ry="2" /> +<text x="150.33" y="751.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="427.4" y="597" width="1.3" height="15.0" fill="rgb(0,231,149)" rx="2" ry="2" /> +<text x="430.37" y="607.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="326.4" y="645" width="1.3" height="15.0" fill="rgb(0,223,57)" rx="2" ry="2" /> +<text x="329.39" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="804.3" y="645" width="1.4" height="15.0" fill="rgb(0,238,91)" rx="2" ry="2" /> +<text x="807.34" y="655.5" ></text> +</g> +<g > +<title>pagevec_lookup_range (10,101,010 samples, 0.10%)</title><rect x="933.6" y="485" width="1.3" height="15.0" fill="rgb(0,211,202)" rx="2" ry="2" /> +<text x="936.59" y="495.5" ></text> +</g> +<g > +<title>send (101,010,100 samples, 0.98%)</title><rect x="11.3" y="821" width="13.5" height="15.0" fill="rgb(0,231,85)" rx="2" ry="2" /> +<text x="14.35" y="831.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="193.1" y="725" width="1.3" height="15.0" fill="rgb(0,199,3)" rx="2" ry="2" /> +<text x="196.10" y="735.5" ></text> +</g> +<g > +<title>security_inode_alloc (10,101,010 samples, 0.10%)</title><rect x="1017.1" y="501" width="1.3" height="15.0" fill="rgb(0,199,209)" rx="2" ry="2" /> +<text x="1020.06" y="511.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="506.8" y="693" width="1.3" height="15.0" fill="rgb(0,218,13)" rx="2" ry="2" /> +<text x="509.80" y="703.5" ></text> +</g> +<g > +<title>__open64_nocancel (30,303,030 samples, 0.29%)</title><rect x="1213.6" y="645" width="4.1" height="15.0" fill="rgb(0,190,20)" rx="2" ry="2" /> +<text x="1216.63" y="655.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.10%)</title><rect x="988.8" y="517" width="1.3" height="15.0" fill="rgb(0,232,36)" rx="2" ry="2" /> +<text x="991.79" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="541.8" y="629" width="1.4" height="15.0" fill="rgb(0,235,129)" rx="2" ry="2" /> +<text x="544.80" y="639.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="158.1" y="709" width="1.3" height="15.0" fill="rgb(0,220,35)" rx="2" ry="2" /> +<text x="161.10" y="719.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="486.6" y="709" width="1.4" height="15.0" fill="rgb(0,216,139)" rx="2" ry="2" /> +<text x="489.60" y="719.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.10%)</title><rect x="685.9" y="469" width="1.3" height="15.0" fill="rgb(0,221,92)" rx="2" ry="2" /> +<text x="688.86" y="479.5" ></text> +</g> +<g > +<title>do_faccessat (20,202,020 samples, 0.20%)</title><rect x="446.2" y="629" width="2.7" height="15.0" fill="rgb(0,226,168)" rx="2" ry="2" /> +<text x="449.21" y="639.5" ></text> +</g> +<g > +<title>tcp_write_xmit (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="581" width="1.4" height="15.0" fill="rgb(0,207,192)" rx="2" ry="2" /> +<text x="1379.54" y="591.5" ></text> +</g> +<g > +<title>blk_mq_do_dispatch_sched (10,101,010 samples, 0.10%)</title><rect x="440.8" y="373" width="1.4" height="15.0" fill="rgb(0,218,153)" rx="2" ry="2" /> +<text x="443.83" y="383.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.56%)</title><rect x="800.3" y="725" width="21.5" height="15.0" fill="rgb(0,214,104)" rx="2" ry="2" /> +<text x="803.30" y="735.5" >[..</text> +</g> +<g > +<title>free_page_and_swap_cache (10,101,010 samples, 0.10%)</title><rect x="921.5" y="501" width="1.3" height="15.0" fill="rgb(0,225,74)" rx="2" ry="2" /> +<text x="924.47" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="887.8" y="549" width="1.4" height="15.0" fill="rgb(0,193,107)" rx="2" ry="2" /> +<text x="890.81" y="559.5" ></text> +</g> +<g > +<title>inet_accept (10,101,010 samples, 0.10%)</title><rect x="88.1" y="693" width="1.3" height="15.0" fill="rgb(0,204,186)" rx="2" ry="2" /> +<text x="91.09" y="703.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="622.6" y="549" width="1.3" height="15.0" fill="rgb(0,227,193)" rx="2" ry="2" /> +<text x="625.59" y="559.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.10%)</title><rect x="181.0" y="709" width="1.3" height="15.0" fill="rgb(0,227,89)" rx="2" ry="2" /> +<text x="183.99" y="719.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="453" width="2.7" height="15.0" fill="rgb(0,191,78)" rx="2" ry="2" /> +<text x="1341.84" y="463.5" ></text> +</g> +<g > +<title>do_linkat (50,505,050 samples, 0.49%)</title><rect x="597.0" y="629" width="6.7" height="15.0" fill="rgb(0,191,88)" rx="2" ry="2" /> +<text x="600.00" y="639.5" ></text> +</g> +<g > +<title>_raw_write_lock (10,101,010 samples, 0.10%)</title><rect x="307.5" y="485" width="1.4" height="15.0" fill="rgb(0,203,59)" rx="2" ry="2" /> +<text x="310.54" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.39%)</title><rect x="407.2" y="725" width="5.4" height="15.0" fill="rgb(0,230,83)" rx="2" ry="2" /> +<text x="410.17" y="735.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.10%)</title><rect x="478.5" y="453" width="1.4" height="15.0" fill="rgb(0,218,172)" rx="2" ry="2" /> +<text x="481.53" y="463.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (10,101,010 samples, 0.10%)</title><rect x="820.5" y="437" width="1.3" height="15.0" fill="rgb(0,218,145)" rx="2" ry="2" /> +<text x="823.50" y="447.5" ></text> +</g> +<g > +<title>ext4_append (30,303,030 samples, 0.29%)</title><rect x="677.8" y="501" width="4.0" height="15.0" fill="rgb(0,218,10)" rx="2" ry="2" /> +<text x="680.79" y="511.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (50,505,050 samples, 0.49%)</title><rect x="1116.7" y="549" width="6.7" height="15.0" fill="rgb(0,191,157)" rx="2" ry="2" /> +<text x="1119.69" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="1182.7" y="693" width="5.3" height="15.0" fill="rgb(0,229,83)" rx="2" ry="2" /> +<text x="1185.66" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.68%)</title><rect x="704.7" y="709" width="9.4" height="15.0" fill="rgb(0,237,84)" rx="2" ry="2" /> +<text x="707.71" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="535.1" y="613" width="1.3" height="15.0" fill="rgb(0,192,186)" rx="2" ry="2" /> +<text x="538.07" y="623.5" ></text> +</g> +<g > +<title>ext4_writepages (20,202,020 samples, 0.20%)</title><rect x="1031.9" y="469" width="2.7" height="15.0" fill="rgb(0,196,108)" rx="2" ry="2" /> +<text x="1034.87" y="479.5" ></text> +</g> +<g > +<title>ext4_read_block_bitmap_nowait (10,101,010 samples, 0.10%)</title><rect x="770.7" y="357" width="1.3" height="15.0" fill="rgb(0,190,13)" rx="2" ry="2" /> +<text x="773.68" y="367.5" ></text> +</g> +<g > +<title>ext4_htree_store_dirent (20,202,020 samples, 0.20%)</title><rect x="615.9" y="549" width="2.6" height="15.0" fill="rgb(0,194,165)" rx="2" ry="2" /> +<text x="618.85" y="559.5" ></text> +</g> +<g > +<title>kfree_skbmem (10,101,010 samples, 0.10%)</title><rect x="1380.6" y="325" width="1.3" height="15.0" fill="rgb(0,195,52)" rx="2" ry="2" /> +<text x="1383.58" y="335.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.10%)</title><rect x="213.3" y="245" width="1.3" height="15.0" fill="rgb(0,227,147)" rx="2" ry="2" /> +<text x="216.30" y="255.5" ></text> +</g> +<g > +<title>ext4_lookup (20,202,020 samples, 0.20%)</title><rect x="1060.1" y="565" width="2.7" height="15.0" fill="rgb(0,221,166)" rx="2" ry="2" /> +<text x="1063.15" y="575.5" ></text> +</g> +<g > +<title>sigfillset (10,101,010 samples, 0.10%)</title><rect x="81.4" y="773" width="1.3" height="15.0" fill="rgb(0,238,73)" rx="2" ry="2" /> +<text x="84.36" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (979,797,970 samples, 9.46%)</title><rect x="201.2" y="725" width="130.6" height="15.0" fill="rgb(0,209,193)" rx="2" ry="2" /> +<text x="204.18" y="735.5" >[libc.so.6]</text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="199.8" y="757" width="1.4" height="15.0" fill="rgb(0,229,80)" rx="2" ry="2" /> +<text x="202.83" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="207.9" y="597" width="1.4" height="15.0" fill="rgb(0,196,57)" rx="2" ry="2" /> +<text x="210.91" y="607.5" ></text> +</g> +<g > +<title>check_stack_object (10,101,010 samples, 0.10%)</title><rect x="1369.8" y="501" width="1.4" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" /> +<text x="1372.80" y="511.5" ></text> +</g> +<g > +<title>map_id_up (10,101,010 samples, 0.10%)</title><rect x="230.8" y="405" width="1.3" height="15.0" fill="rgb(0,237,178)" rx="2" ry="2" /> +<text x="233.80" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="551.2" y="725" width="1.4" height="15.0" fill="rgb(0,235,105)" rx="2" ry="2" /> +<text x="554.23" y="735.5" ></text> +</g> +<g > +<title>cmd_dispatcher_handle_internal (10,101,010 samples, 0.10%)</title><rect x="1357.7" y="821" width="1.3" height="15.0" fill="rgb(0,213,142)" rx="2" ry="2" /> +<text x="1360.69" y="831.5" ></text> +</g> +<g > +<title>__ext4_check_dir_entry (10,101,010 samples, 0.10%)</title><rect x="773.4" y="485" width="1.3" height="15.0" fill="rgb(0,210,108)" rx="2" ry="2" /> +<text x="776.38" y="495.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="1209.6" y="581" width="1.3" height="15.0" fill="rgb(0,232,44)" rx="2" ry="2" /> +<text x="1212.59" y="591.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="206.6" y="421" width="1.3" height="15.0" fill="rgb(0,222,139)" rx="2" ry="2" /> +<text x="209.57" y="431.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="909.4" y="645" width="1.3" height="15.0" fill="rgb(0,234,158)" rx="2" ry="2" /> +<text x="912.36" y="655.5" ></text> +</g> +<g > +<title>tcp_rcv_synsent_state_process (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="661" width="2.7" height="15.0" fill="rgb(0,235,107)" rx="2" ry="2" /> +<text x="1380.88" y="671.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="902.6" y="517" width="1.4" height="15.0" fill="rgb(0,209,182)" rx="2" ry="2" /> +<text x="905.62" y="527.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="209.3" y="261" width="1.3" height="15.0" fill="rgb(0,194,188)" rx="2" ry="2" /> +<text x="212.26" y="271.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="995.5" y="565" width="1.4" height="15.0" fill="rgb(0,199,164)" rx="2" ry="2" /> +<text x="998.52" y="575.5" ></text> +</g> +<g > +<title>unlink (20,202,020 samples, 0.20%)</title><rect x="693.9" y="677" width="2.7" height="15.0" fill="rgb(0,206,96)" rx="2" ry="2" /> +<text x="696.94" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="432.8" y="677" width="1.3" height="15.0" fill="rgb(0,219,107)" rx="2" ry="2" /> +<text x="435.75" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="877.0" y="581" width="1.4" height="15.0" fill="rgb(0,238,119)" rx="2" ry="2" /> +<text x="880.04" y="591.5" ></text> +</g> +<g > +<title>__ext4_new_inode (10,101,010 samples, 0.10%)</title><rect x="1034.6" y="613" width="1.3" height="15.0" fill="rgb(0,234,64)" rx="2" ry="2" /> +<text x="1037.57" y="623.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="197" width="1.4" height="15.0" fill="rgb(0,193,198)" rx="2" ry="2" /> +<text x="1376.84" y="207.5" ></text> +</g> +<g > +<title>copy_process (90,909,090 samples, 0.88%)</title><rect x="31.5" y="869" width="12.2" height="15.0" fill="rgb(0,209,193)" rx="2" ry="2" /> +<text x="34.54" y="879.5" ></text> +</g> +<g > +<title>ext4_rename2 (30,303,030 samples, 0.29%)</title><rect x="1030.5" y="565" width="4.1" height="15.0" fill="rgb(0,190,89)" rx="2" ry="2" /> +<text x="1033.53" y="575.5" ></text> +</g> +<g > +<title>unlink_cb (70,707,070 samples, 0.68%)</title><rect x="228.1" y="661" width="9.4" height="15.0" fill="rgb(0,230,135)" rx="2" ry="2" /> +<text x="231.11" y="671.5" ></text> +</g> +<g > +<title>ext4_mb_free_metadata.isra.0 (10,101,010 samples, 0.10%)</title><rect x="318.3" y="421" width="1.4" height="15.0" fill="rgb(0,235,18)" rx="2" ry="2" /> +<text x="321.31" y="431.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="1019.8" y="613" width="1.3" height="15.0" fill="rgb(0,208,53)" rx="2" ry="2" /> +<text x="1022.76" y="623.5" ></text> +</g> +<g > +<title>__call_rcu (10,101,010 samples, 0.10%)</title><rect x="220.0" y="501" width="1.4" height="15.0" fill="rgb(0,197,155)" rx="2" ry="2" /> +<text x="223.03" y="511.5" ></text> +</g> +<g > +<title>__napi_poll (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="373" width="1.4" height="15.0" fill="rgb(0,225,134)" rx="2" ry="2" /> +<text x="1379.54" y="383.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.10%)</title><rect x="1243.2" y="581" width="1.4" height="15.0" fill="rgb(0,200,149)" rx="2" ry="2" /> +<text x="1246.25" y="591.5" ></text> +</g> +<g > +<title>sk_free (10,101,010 samples, 0.10%)</title><rect x="65.2" y="149" width="1.3" height="15.0" fill="rgb(0,210,131)" rx="2" ry="2" /> +<text x="68.20" y="159.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.10%)</title><rect x="1258.1" y="693" width="1.3" height="15.0" fill="rgb(0,211,35)" rx="2" ry="2" /> +<text x="1261.06" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="730.3" y="613" width="1.3" height="15.0" fill="rgb(0,217,20)" rx="2" ry="2" /> +<text x="733.29" y="623.5" ></text> +</g> +<g > +<title>sock_close (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="693" width="1.4" height="15.0" fill="rgb(0,207,29)" rx="2" ry="2" /> +<text x="1379.54" y="703.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.20%)</title><rect x="430.1" y="693" width="2.7" height="15.0" fill="rgb(0,207,188)" rx="2" ry="2" /> +<text x="433.06" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.39%)</title><rect x="242.9" y="645" width="5.4" height="15.0" fill="rgb(0,211,44)" rx="2" ry="2" /> +<text x="245.92" y="655.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="400.4" y="725" width="1.4" height="15.0" fill="rgb(0,232,137)" rx="2" ry="2" /> +<text x="403.44" y="735.5" ></text> +</g> +<g > +<title>git_repository_is_empty (212,121,210 samples, 2.05%)</title><rect x="1193.4" y="789" width="28.3" height="15.0" fill="rgb(0,192,0)" rx="2" ry="2" /> +<text x="1196.43" y="799.5" >g..</text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="565" width="1.4" height="15.0" fill="rgb(0,229,146)" rx="2" ry="2" /> +<text x="1379.54" y="575.5" ></text> +</g> +<g > +<title>close (20,202,020 samples, 0.20%)</title><rect x="1375.2" y="837" width="2.7" height="15.0" fill="rgb(0,191,65)" rx="2" ry="2" /> +<text x="1378.19" y="847.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.10%)</title><rect x="899.9" y="581" width="1.4" height="15.0" fill="rgb(0,215,197)" rx="2" ry="2" /> +<text x="902.93" y="591.5" ></text> +</g> +<g > +<title>net_rx_action (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="389" width="1.4" height="15.0" fill="rgb(0,236,179)" rx="2" ry="2" /> +<text x="1379.54" y="399.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="478.5" y="629" width="1.4" height="15.0" fill="rgb(0,192,51)" rx="2" ry="2" /> +<text x="481.53" y="639.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.10%)</title><rect x="498.7" y="629" width="1.4" height="15.0" fill="rgb(0,211,178)" rx="2" ry="2" /> +<text x="501.72" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1231.1" y="693" width="4.1" height="15.0" fill="rgb(0,208,20)" rx="2" ry="2" /> +<text x="1234.13" y="703.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="461.0" y="533" width="1.4" height="15.0" fill="rgb(0,211,1)" rx="2" ry="2" /> +<text x="464.02" y="543.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="909.4" y="677" width="1.3" height="15.0" fill="rgb(0,204,184)" rx="2" ry="2" /> +<text x="912.36" y="687.5" ></text> +</g> +<g > +<title>git_reference_iterator_new (131,313,130 samples, 1.27%)</title><rect x="863.6" y="709" width="17.5" height="15.0" fill="rgb(0,213,40)" rx="2" ry="2" /> +<text x="866.58" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="434.1" y="661" width="1.3" height="15.0" fill="rgb(0,204,141)" rx="2" ry="2" /> +<text x="437.10" y="671.5" ></text> +</g> +<g > +<title>ext4_evict_inode (20,202,020 samples, 0.20%)</title><rect x="839.3" y="517" width="2.7" height="15.0" fill="rgb(0,192,94)" rx="2" ry="2" /> +<text x="842.35" y="527.5" ></text> +</g> +<g > +<title>blk_mq_submit_bio (30,303,030 samples, 0.29%)</title><rect x="656.2" y="405" width="4.1" height="15.0" fill="rgb(0,190,134)" rx="2" ry="2" /> +<text x="659.24" y="415.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="675.1" y="597" width="1.3" height="15.0" fill="rgb(0,213,106)" rx="2" ry="2" /> +<text x="678.09" y="607.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.10%)</title><rect x="948.4" y="453" width="1.3" height="15.0" fill="rgb(0,208,85)" rx="2" ry="2" /> +<text x="951.40" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.20%)</title><rect x="100.2" y="725" width="2.7" height="15.0" fill="rgb(0,213,104)" rx="2" ry="2" /> +<text x="103.20" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (40,404,040 samples, 0.39%)</title><rect x="676.4" y="581" width="5.4" height="15.0" fill="rgb(0,209,40)" rx="2" ry="2" /> +<text x="679.44" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1167.9" y="661" width="4.0" height="15.0" fill="rgb(0,227,62)" rx="2" ry="2" /> +<text x="1170.85" y="671.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="921.5" y="613" width="1.3" height="15.0" fill="rgb(0,227,98)" rx="2" ry="2" /> +<text x="924.47" y="623.5" ></text> +</g> +<g > +<title>_find_next_bit (10,101,010 samples, 0.10%)</title><rect x="1147.7" y="501" width="1.3" height="15.0" fill="rgb(0,191,40)" rx="2" ry="2" /> +<text x="1150.66" y="511.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="622.6" y="565" width="1.3" height="15.0" fill="rgb(0,210,162)" rx="2" ry="2" /> +<text x="625.59" y="575.5" ></text> +</g> +<g > +<title>revert_creds (10,101,010 samples, 0.10%)</title><rect x="176.9" y="853" width="1.4" height="15.0" fill="rgb(0,238,111)" rx="2" ry="2" /> +<text x="179.95" y="863.5" ></text> +</g> +<g > +<title>dget_parent (10,101,010 samples, 0.10%)</title><rect x="541.8" y="501" width="1.4" height="15.0" fill="rgb(0,233,19)" rx="2" ry="2" /> +<text x="544.80" y="511.5" ></text> +</g> +<g > +<title>rename (101,010,100 samples, 0.98%)</title><rect x="808.4" y="693" width="13.4" height="15.0" fill="rgb(0,192,70)" rx="2" ry="2" /> +<text x="811.38" y="703.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="979.4" y="661" width="1.3" height="15.0" fill="rgb(0,238,181)" rx="2" ry="2" /> +<text x="982.37" y="671.5" ></text> +</g> +<g > +<title>ext4_free_blocks (10,101,010 samples, 0.10%)</title><rect x="358.7" y="469" width="1.3" height="15.0" fill="rgb(0,208,1)" rx="2" ry="2" /> +<text x="361.70" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1188.0" y="661" width="1.4" height="15.0" fill="rgb(0,194,31)" rx="2" ry="2" /> +<text x="1191.05" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="696.6" y="645" width="4.1" height="15.0" fill="rgb(0,219,203)" rx="2" ry="2" /> +<text x="699.63" y="655.5" ></text> +</g> +<g > +<title>filename_create (10,101,010 samples, 0.10%)</title><rect x="115.0" y="821" width="1.4" height="15.0" fill="rgb(0,199,135)" rx="2" ry="2" /> +<text x="118.01" y="831.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted.part.0 (10,101,010 samples, 0.10%)</title><rect x="347.9" y="517" width="1.4" height="15.0" fill="rgb(0,236,56)" rx="2" ry="2" /> +<text x="350.93" y="527.5" ></text> +</g> +<g > +<title>filename_lookup (40,404,040 samples, 0.39%)</title><rect x="1058.8" y="629" width="5.4" height="15.0" fill="rgb(0,238,191)" rx="2" ry="2" /> +<text x="1061.80" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1066.9" y="661" width="1.3" height="15.0" fill="rgb(0,231,13)" rx="2" ry="2" /> +<text x="1069.88" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="593.0" y="661" width="1.3" height="15.0" fill="rgb(0,227,180)" rx="2" ry="2" /> +<text x="595.97" y="671.5" ></text> +</g> +<g > +<title>____fput (20,202,020 samples, 0.20%)</title><rect x="1375.2" y="725" width="2.7" height="15.0" fill="rgb(0,206,109)" rx="2" ry="2" /> +<text x="1378.19" y="735.5" ></text> +</g> +<g > +<title>git_remote_lookup (20,202,020 samples, 0.20%)</title><rect x="854.2" y="757" width="2.6" height="15.0" fill="rgb(0,207,189)" rx="2" ry="2" /> +<text x="857.16" y="767.5" ></text> +</g> +<g > +<title>git_refdb_backend_fs (20,202,020 samples, 0.20%)</title><rect x="718.2" y="645" width="2.7" height="15.0" fill="rgb(0,211,208)" rx="2" ry="2" /> +<text x="721.18" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="1213.6" y="629" width="4.1" height="15.0" fill="rgb(0,196,79)" rx="2" ry="2" /> +<text x="1216.63" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="524.3" y="677" width="1.3" height="15.0" fill="rgb(0,219,99)" rx="2" ry="2" /> +<text x="527.30" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="419.3" y="677" width="1.3" height="15.0" fill="rgb(0,221,102)" rx="2" ry="2" /> +<text x="422.29" y="687.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.10%)</title><rect x="707.4" y="613" width="1.4" height="15.0" fill="rgb(0,222,79)" rx="2" ry="2" /> +<text x="710.40" y="623.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="539.1" y="677" width="1.4" height="15.0" fill="rgb(0,212,29)" rx="2" ry="2" /> +<text x="542.11" y="687.5" ></text> +</g> +<g > +<title>ext4_rename (50,505,050 samples, 0.49%)</title><rect x="815.1" y="581" width="6.7" height="15.0" fill="rgb(0,210,157)" rx="2" ry="2" /> +<text x="818.11" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (60,606,060 samples, 0.59%)</title><rect x="228.1" y="581" width="8.1" height="15.0" fill="rgb(0,209,176)" rx="2" ry="2" /> +<text x="231.11" y="591.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.10%)</title><rect x="172.9" y="917" width="1.4" height="15.0" fill="rgb(0,236,183)" rx="2" ry="2" /> +<text x="175.91" y="927.5" ></text> +</g> +<g > +<title>readlink (20,202,020 samples, 0.20%)</title><rect x="1227.1" y="709" width="2.7" height="15.0" fill="rgb(0,214,60)" rx="2" ry="2" /> +<text x="1230.09" y="719.5" ></text> +</g> +<g > +<title>ext4_unlink (40,404,040 samples, 0.39%)</title><rect x="378.9" y="613" width="5.4" height="15.0" fill="rgb(0,195,62)" rx="2" ry="2" /> +<text x="381.90" y="623.5" ></text> +</g> +<g > +<title>crc_20 (10,101,010 samples, 0.10%)</title><rect x="380.2" y="533" width="1.4" height="15.0" fill="rgb(0,207,84)" rx="2" ry="2" /> +<text x="383.24" y="543.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.10%)</title><rect x="926.9" y="629" width="1.3" height="15.0" fill="rgb(0,207,49)" rx="2" ry="2" /> +<text x="929.86" y="639.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="314.3" y="309" width="1.3" height="15.0" fill="rgb(0,196,85)" rx="2" ry="2" /> +<text x="317.27" y="319.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.10%)</title><rect x="12.7" y="629" width="1.3" height="15.0" fill="rgb(0,238,113)" rx="2" ry="2" /> +<text x="15.69" y="639.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="1314.6" y="677" width="1.4" height="15.0" fill="rgb(0,207,21)" rx="2" ry="2" /> +<text x="1317.60" y="687.5" ></text> +</g> +<g > +<title>tcp_v4_connect (60,606,060 samples, 0.59%)</title><rect x="1380.6" y="725" width="8.1" height="15.0" fill="rgb(0,212,58)" rx="2" ry="2" /> +<text x="1383.58" y="735.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.10%)</title><rect x="1368.5" y="501" width="1.3" height="15.0" fill="rgb(0,207,35)" rx="2" ry="2" /> +<text x="1371.46" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.20%)</title><rect x="672.4" y="581" width="2.7" height="15.0" fill="rgb(0,208,10)" rx="2" ry="2" /> +<text x="675.40" y="591.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="1224.4" y="645" width="2.7" height="15.0" fill="rgb(0,231,208)" rx="2" ry="2" /> +<text x="1227.40" y="655.5" ></text> +</g> +<g > +<title>__pthread_mutex_init (10,101,010 samples, 0.10%)</title><rect x="1065.5" y="693" width="1.4" height="15.0" fill="rgb(0,219,129)" rx="2" ry="2" /> +<text x="1068.53" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.49%)</title><rect x="1027.8" y="645" width="6.8" height="15.0" fill="rgb(0,230,92)" rx="2" ry="2" /> +<text x="1030.83" y="655.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (10,101,010 samples, 0.10%)</title><rect x="209.3" y="437" width="1.3" height="15.0" fill="rgb(0,235,173)" rx="2" ry="2" /> +<text x="212.26" y="447.5" ></text> +</g> +<g > +<title>proc_output_dump (10,101,010 samples, 0.10%)</title><rect x="1351.0" y="869" width="1.3" height="15.0" fill="rgb(0,205,43)" rx="2" ry="2" /> +<text x="1353.96" y="879.5" ></text> +</g> +<g > +<title>neigh_hh_output (10,101,010 samples, 0.10%)</title><rect x="71.9" y="373" width="1.4" height="15.0" fill="rgb(0,199,134)" rx="2" ry="2" /> +<text x="74.93" y="383.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="338.5" y="613" width="1.4" height="15.0" fill="rgb(0,208,133)" rx="2" ry="2" /> +<text x="341.51" y="623.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.10%)</title><rect x="788.2" y="517" width="1.3" height="15.0" fill="rgb(0,228,85)" rx="2" ry="2" /> +<text x="791.19" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="881.1" y="709" width="2.7" height="15.0" fill="rgb(0,192,36)" rx="2" ry="2" /> +<text x="884.08" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="870.3" y="565" width="1.4" height="15.0" fill="rgb(0,207,73)" rx="2" ry="2" /> +<text x="873.31" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="416.6" y="773" width="1.3" height="15.0" fill="rgb(0,234,24)" rx="2" ry="2" /> +<text x="419.60" y="783.5" ></text> +</g> +<g > +<title>filename_parentat (10,101,010 samples, 0.10%)</title><rect x="693.9" y="597" width="1.4" height="15.0" fill="rgb(0,217,170)" rx="2" ry="2" /> +<text x="696.94" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_connect (80,808,080 samples, 0.78%)</title><rect x="1377.9" y="805" width="10.8" height="15.0" fill="rgb(0,229,155)" rx="2" ry="2" /> +<text x="1380.88" y="815.5" ></text> +</g> +<g > +<title>[libc.so.6] (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="805" width="4.0" height="15.0" fill="rgb(0,204,137)" rx="2" ry="2" /> +<text x="1255.67" y="815.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (40,404,040 samples, 0.39%)</title><rect x="613.2" y="597" width="5.3" height="15.0" fill="rgb(0,238,1)" rx="2" ry="2" /> +<text x="616.16" y="607.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (20,202,020 samples, 0.20%)</title><rect x="839.3" y="469" width="2.7" height="15.0" fill="rgb(0,219,36)" rx="2" ry="2" /> +<text x="842.35" y="479.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="948.4" y="469" width="1.3" height="15.0" fill="rgb(0,223,93)" rx="2" ry="2" /> +<text x="951.40" y="479.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.10%)</title><rect x="524.3" y="549" width="1.3" height="15.0" fill="rgb(0,223,198)" rx="2" ry="2" /> +<text x="527.30" y="559.5" ></text> +</g> +<g > +<title>rcu_read_unlock_strict (10,101,010 samples, 0.10%)</title><rect x="749.1" y="501" width="1.4" height="15.0" fill="rgb(0,205,131)" rx="2" ry="2" /> +<text x="752.14" y="511.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.10%)</title><rect x="766.6" y="325" width="1.4" height="15.0" fill="rgb(0,236,116)" rx="2" ry="2" /> +<text x="769.64" y="335.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.29%)</title><rect x="972.6" y="645" width="4.1" height="15.0" fill="rgb(0,214,33)" rx="2" ry="2" /> +<text x="975.63" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="1305.2" y="757" width="4.0" height="15.0" fill="rgb(0,190,14)" rx="2" ry="2" /> +<text x="1308.18" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="1167.9" y="709" width="6.7" height="15.0" fill="rgb(0,190,75)" rx="2" ry="2" /> +<text x="1170.85" y="719.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="881.1" y="677" width="2.7" height="15.0" fill="rgb(0,203,73)" rx="2" ry="2" /> +<text x="884.08" y="687.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="1116.7" y="485" width="1.3" height="15.0" fill="rgb(0,196,209)" rx="2" ry="2" /> +<text x="1119.69" y="495.5" ></text> +</g> +<g > +<title>ext4_inode_block_valid (10,101,010 samples, 0.10%)</title><rect x="439.5" y="453" width="1.3" height="15.0" fill="rgb(0,198,86)" rx="2" ry="2" /> +<text x="442.48" y="463.5" ></text> +</g> +<g > +<title>memcpy_erms (10,101,010 samples, 0.10%)</title><rect x="337.2" y="565" width="1.3" height="15.0" fill="rgb(0,229,97)" rx="2" ry="2" /> +<text x="340.16" y="575.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="696.6" y="597" width="1.4" height="15.0" fill="rgb(0,195,148)" rx="2" ry="2" /> +<text x="699.63" y="607.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="925.5" y="709" width="1.4" height="15.0" fill="rgb(0,216,93)" rx="2" ry="2" /> +<text x="928.51" y="719.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.10%)</title><rect x="632.0" y="581" width="1.4" height="15.0" fill="rgb(0,224,190)" rx="2" ry="2" /> +<text x="635.01" y="591.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="434.1" y="517" width="1.3" height="15.0" fill="rgb(0,194,38)" rx="2" ry="2" /> +<text x="437.10" y="527.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="1314.6" y="693" width="1.4" height="15.0" fill="rgb(0,239,80)" rx="2" ry="2" /> +<text x="1317.60" y="703.5" ></text> +</g> +<g > +<title>pcre_exec (10,101,010 samples, 0.10%)</title><rect x="821.8" y="725" width="1.4" height="15.0" fill="rgb(0,231,94)" rx="2" ry="2" /> +<text x="824.84" y="735.5" ></text> +</g> +<g > +<title>generic_fillattr (10,101,010 samples, 0.10%)</title><rect x="506.8" y="613" width="1.3" height="15.0" fill="rgb(0,215,192)" rx="2" ry="2" /> +<text x="509.80" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="210.6" y="629" width="1.4" height="15.0" fill="rgb(0,199,150)" rx="2" ry="2" /> +<text x="213.60" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1205.6" y="709" width="1.3" height="15.0" fill="rgb(0,238,62)" rx="2" ry="2" /> +<text x="1208.55" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="885.1" y="709" width="1.4" height="15.0" fill="rgb(0,192,169)" rx="2" ry="2" /> +<text x="888.12" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="980.7" y="645" width="1.4" height="15.0" fill="rgb(0,231,118)" rx="2" ry="2" /> +<text x="983.71" y="655.5" ></text> +</g> +<g > +<title>__schedule (40,404,040 samples, 0.39%)</title><rect x="1352.3" y="709" width="5.4" height="15.0" fill="rgb(0,198,88)" rx="2" ry="2" /> +<text x="1355.30" y="719.5" ></text> +</g> +<g > +<title>pthread_sigmask (10,101,010 samples, 0.10%)</title><rect x="82.7" y="757" width="1.3" height="15.0" fill="rgb(0,235,25)" rx="2" ry="2" /> +<text x="85.70" y="767.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="645" width="1.4" height="15.0" fill="rgb(0,193,13)" rx="2" ry="2" /> +<text x="1312.22" y="655.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="1302.5" y="741" width="1.3" height="15.0" fill="rgb(0,210,121)" rx="2" ry="2" /> +<text x="1305.49" y="751.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="784.1" y="661" width="1.4" height="15.0" fill="rgb(0,221,8)" rx="2" ry="2" /> +<text x="787.15" y="671.5" ></text> +</g> +<g > +<title>flockfile (10,101,010 samples, 0.10%)</title><rect x="1310.6" y="821" width="1.3" height="15.0" fill="rgb(0,213,190)" rx="2" ry="2" /> +<text x="1313.57" y="831.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.10%)</title><rect x="431.4" y="453" width="1.4" height="15.0" fill="rgb(0,218,65)" rx="2" ry="2" /> +<text x="434.40" y="463.5" ></text> +</g> +<g > +<title>shrink_dentry_list (30,303,030 samples, 0.29%)</title><rect x="321.0" y="549" width="4.0" height="15.0" fill="rgb(0,224,51)" rx="2" ry="2" /> +<text x="324.00" y="559.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="493.3" y="533" width="1.4" height="15.0" fill="rgb(0,212,137)" rx="2" ry="2" /> +<text x="496.34" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.10%)</title><rect x="330.4" y="629" width="1.4" height="15.0" fill="rgb(0,201,50)" rx="2" ry="2" /> +<text x="333.43" y="639.5" ></text> +</g> +<g > +<title>ext4_release_dir (10,101,010 samples, 0.10%)</title><rect x="1210.9" y="517" width="1.4" height="15.0" fill="rgb(0,232,146)" rx="2" ry="2" /> +<text x="1213.94" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="796.3" y="645" width="2.7" height="15.0" fill="rgb(0,202,6)" rx="2" ry="2" /> +<text x="799.26" y="655.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="326.4" y="629" width="1.3" height="15.0" fill="rgb(0,231,16)" rx="2" ry="2" /> +<text x="329.39" y="639.5" ></text> +</g> +<g > +<title>snprintf (10,101,010 samples, 0.10%)</title><rect x="1251.3" y="773" width="1.4" height="15.0" fill="rgb(0,195,122)" rx="2" ry="2" /> +<text x="1254.33" y="783.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.29%)</title><rect x="365.4" y="741" width="4.1" height="15.0" fill="rgb(0,235,83)" rx="2" ry="2" /> +<text x="368.43" y="751.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="978.0" y="405" width="1.4" height="15.0" fill="rgb(0,194,178)" rx="2" ry="2" /> +<text x="981.02" y="415.5" ></text> +</g> +<g > +<title>__check_block_validity.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="574.1" y="485" width="1.4" height="15.0" fill="rgb(0,236,149)" rx="2" ry="2" /> +<text x="577.12" y="495.5" ></text> +</g> +<g > +<title>ext4_truncate (40,404,040 samples, 0.39%)</title><rect x="354.7" y="549" width="5.3" height="15.0" fill="rgb(0,190,51)" rx="2" ry="2" /> +<text x="357.66" y="559.5" ></text> +</g> +<g > +<title>my_chdir (40,404,040 samples, 0.39%)</title><rect x="1313.3" y="853" width="5.3" height="15.0" fill="rgb(0,236,159)" rx="2" ry="2" /> +<text x="1316.26" y="863.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="329.1" y="661" width="1.3" height="15.0" fill="rgb(0,227,76)" rx="2" ry="2" /> +<text x="332.08" y="671.5" ></text> +</g> +<g > +<title>vfs_rmdir (10,101,010 samples, 0.10%)</title><rect x="209.3" y="517" width="1.3" height="15.0" fill="rgb(0,195,25)" rx="2" ry="2" /> +<text x="212.26" y="527.5" ></text> +</g> +<g > +<title>submit_bio_checks (10,101,010 samples, 0.10%)</title><rect x="768.0" y="389" width="1.3" height="15.0" fill="rgb(0,219,35)" rx="2" ry="2" /> +<text x="770.99" y="399.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="710.1" y="613" width="1.3" height="15.0" fill="rgb(0,236,125)" rx="2" ry="2" /> +<text x="713.10" y="623.5" ></text> +</g> +<g > +<title>git_config_free (10,101,010 samples, 0.10%)</title><rect x="702.0" y="693" width="1.4" height="15.0" fill="rgb(0,237,21)" rx="2" ry="2" /> +<text x="705.02" y="703.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (20,202,020 samples, 0.20%)</title><rect x="952.4" y="485" width="2.7" height="15.0" fill="rgb(0,194,43)" rx="2" ry="2" /> +<text x="955.44" y="495.5" ></text> +</g> +<g > +<title>vfs_getattr_nosec (10,101,010 samples, 0.10%)</title><rect x="864.9" y="485" width="1.4" height="15.0" fill="rgb(0,214,76)" rx="2" ry="2" /> +<text x="867.93" y="495.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.10%)</title><rect x="408.5" y="581" width="1.4" height="15.0" fill="rgb(0,231,80)" rx="2" ry="2" /> +<text x="411.52" y="591.5" ></text> +</g> +<g > +<title>do_writepages (50,505,050 samples, 0.49%)</title><rect x="815.1" y="517" width="6.7" height="15.0" fill="rgb(0,216,134)" rx="2" ry="2" /> +<text x="818.11" y="527.5" ></text> +</g> +<g > +<title>ext4_free_blocks (10,101,010 samples, 0.10%)</title><rect x="234.8" y="405" width="1.4" height="15.0" fill="rgb(0,218,49)" rx="2" ry="2" /> +<text x="237.84" y="415.5" ></text> +</g> +<g > +<title>net_rx_action (30,303,030 samples, 0.29%)</title><rect x="1328.1" y="421" width="4.0" height="15.0" fill="rgb(0,238,175)" rx="2" ry="2" /> +<text x="1331.07" y="431.5" ></text> +</g> +<g > +<title>inet_stream_connect (80,808,080 samples, 0.78%)</title><rect x="1377.9" y="757" width="10.8" height="15.0" fill="rgb(0,200,127)" rx="2" ry="2" /> +<text x="1380.88" y="767.5" ></text> +</g> +<g > +<title>sock_put (10,101,010 samples, 0.10%)</title><rect x="65.2" y="165" width="1.3" height="15.0" fill="rgb(0,216,118)" rx="2" ry="2" /> +<text x="68.20" y="175.5" ></text> +</g> +<g > +<title>do_sys_openat2 (313,131,310 samples, 3.02%)</title><rect x="128.5" y="853" width="41.7" height="15.0" fill="rgb(0,225,29)" rx="2" ry="2" /> +<text x="131.48" y="863.5" >do_..</text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="689.9" y="661" width="2.7" height="15.0" fill="rgb(0,202,37)" rx="2" ry="2" /> +<text x="692.90" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 1.17%)</title><rect x="893.2" y="709" width="16.2" height="15.0" fill="rgb(0,196,198)" rx="2" ry="2" /> +<text x="896.20" y="719.5" ></text> +</g> +<g > +<title>get_random_u32 (10,101,010 samples, 0.10%)</title><rect x="326.4" y="517" width="1.3" height="15.0" fill="rgb(0,204,161)" rx="2" ry="2" /> +<text x="329.39" y="527.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="352.0" y="501" width="1.3" height="15.0" fill="rgb(0,209,88)" rx="2" ry="2" /> +<text x="354.97" y="511.5" ></text> +</g> +<g > +<title>percpu_counter_add_batch (10,101,010 samples, 0.10%)</title><rect x="300.8" y="501" width="1.4" height="15.0" fill="rgb(0,196,150)" rx="2" ry="2" /> +<text x="303.81" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1019.8" y="693" width="1.3" height="15.0" fill="rgb(0,205,187)" rx="2" ry="2" /> +<text x="1022.76" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="221.4" y="597" width="1.3" height="15.0" fill="rgb(0,238,93)" rx="2" ry="2" /> +<text x="224.38" y="607.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="308.9" y="453" width="1.3" height="15.0" fill="rgb(0,227,33)" rx="2" ry="2" /> +<text x="311.89" y="463.5" ></text> +</g> +<g > +<title>inet_csk_accept (10,101,010 samples, 0.10%)</title><rect x="88.1" y="677" width="1.3" height="15.0" fill="rgb(0,228,138)" rx="2" ry="2" /> +<text x="91.09" y="687.5" ></text> +</g> +<g > +<title>vfs_write (30,303,030 samples, 0.29%)</title><rect x="509.5" y="613" width="4.0" height="15.0" fill="rgb(0,237,113)" rx="2" ry="2" /> +<text x="512.49" y="623.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="1056.1" y="741" width="1.4" height="15.0" fill="rgb(0,202,88)" rx="2" ry="2" /> +<text x="1059.11" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="432.8" y="693" width="1.3" height="15.0" fill="rgb(0,200,206)" rx="2" ry="2" /> +<text x="435.75" y="703.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="909.4" y="597" width="1.3" height="15.0" fill="rgb(0,219,128)" rx="2" ry="2" /> +<text x="912.36" y="607.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="660.3" y="517" width="1.3" height="15.0" fill="rgb(0,213,95)" rx="2" ry="2" /> +<text x="663.28" y="527.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="245" width="1.4" height="15.0" fill="rgb(0,200,80)" rx="2" ry="2" /> +<text x="1379.54" y="255.5" ></text> +</g> +<g > +<title>dentry_kill (60,606,060 samples, 0.59%)</title><rect x="1115.3" y="581" width="8.1" height="15.0" fill="rgb(0,217,190)" rx="2" ry="2" /> +<text x="1118.35" y="591.5" ></text> +</g> +<g > +<title>generic_fillattr (10,101,010 samples, 0.10%)</title><rect x="864.9" y="453" width="1.4" height="15.0" fill="rgb(0,204,190)" rx="2" ry="2" /> +<text x="867.93" y="463.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (202,020,200 samples, 1.95%)</title><rect x="141.9" y="789" width="27.0" height="15.0" fill="rgb(0,217,129)" rx="2" ry="2" /> +<text x="144.94" y="799.5" >l..</text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="1140.9" y="501" width="1.4" height="15.0" fill="rgb(0,211,171)" rx="2" ry="2" /> +<text x="1143.93" y="511.5" ></text> +</g> +<g > +<title>main (484,848,480 samples, 4.68%)</title><rect x="43.7" y="917" width="64.6" height="15.0" fill="rgb(0,215,161)" rx="2" ry="2" /> +<text x="46.66" y="927.5" >main</text> +</g> +<g > +<title>git_revparse_single (60,606,060 samples, 0.59%)</title><rect x="552.6" y="821" width="8.1" height="15.0" fill="rgb(0,213,180)" rx="2" ry="2" /> +<text x="555.58" y="831.5" ></text> +</g> +<g > +<title>do_syscall_64 (80,808,080 samples, 0.78%)</title><rect x="1377.9" y="821" width="10.8" height="15.0" fill="rgb(0,190,38)" rx="2" ry="2" /> +<text x="1380.88" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="704.7" y="645" width="6.7" height="15.0" fill="rgb(0,228,203)" rx="2" ry="2" /> +<text x="707.71" y="655.5" ></text> +</g> +<g > +<title>__kfree_skb (10,101,010 samples, 0.10%)</title><rect x="1336.1" y="661" width="1.4" height="15.0" fill="rgb(0,238,94)" rx="2" ry="2" /> +<text x="1339.15" y="671.5" ></text> +</g> +<g > +<title>sk_reset_timer (10,101,010 samples, 0.10%)</title><rect x="23.5" y="597" width="1.3" height="15.0" fill="rgb(0,195,142)" rx="2" ry="2" /> +<text x="26.46" y="607.5" ></text> +</g> +<g > +<title>new_sync_read (10,101,010 samples, 0.10%)</title><rect x="710.1" y="533" width="1.3" height="15.0" fill="rgb(0,227,65)" rx="2" ry="2" /> +<text x="713.10" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="886.5" y="677" width="1.3" height="15.0" fill="rgb(0,222,88)" rx="2" ry="2" /> +<text x="889.47" y="687.5" ></text> +</g> +<g > +<title>mark_page_accessed (10,101,010 samples, 0.10%)</title><rect x="395.1" y="549" width="1.3" height="15.0" fill="rgb(0,238,146)" rx="2" ry="2" /> +<text x="398.05" y="559.5" ></text> +</g> +<g > +<title>____fput (80,808,080 samples, 0.78%)</title><rect x="62.5" y="677" width="10.8" height="15.0" fill="rgb(0,204,98)" rx="2" ry="2" /> +<text x="65.51" y="687.5" ></text> +</g> +<g > +<title>__ip_local_out (30,303,030 samples, 0.29%)</title><rect x="1341.5" y="629" width="4.1" height="15.0" fill="rgb(0,226,83)" rx="2" ry="2" /> +<text x="1344.53" y="639.5" ></text> +</g> +<g > +<title>close (20,202,020 samples, 0.20%)</title><rect x="543.2" y="693" width="2.6" height="15.0" fill="rgb(0,231,140)" rx="2" ry="2" /> +<text x="546.15" y="703.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="708.8" y="501" width="1.3" height="15.0" fill="rgb(0,229,194)" rx="2" ry="2" /> +<text x="711.75" y="511.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (30,303,030 samples, 0.29%)</title><rect x="582.2" y="485" width="4.0" height="15.0" fill="rgb(0,238,56)" rx="2" ry="2" /> +<text x="585.20" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.98%)</title><rect x="836.7" y="677" width="13.4" height="15.0" fill="rgb(0,233,16)" rx="2" ry="2" /> +<text x="839.65" y="687.5" ></text> +</g> +<g > +<title>__sys_connect (101,010,100 samples, 0.98%)</title><rect x="1336.1" y="789" width="13.5" height="15.0" fill="rgb(0,229,53)" rx="2" ry="2" /> +<text x="1339.15" y="799.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="357.4" y="453" width="1.3" height="15.0" fill="rgb(0,210,173)" rx="2" ry="2" /> +<text x="360.36" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="1167.9" y="629" width="2.6" height="15.0" fill="rgb(0,201,108)" rx="2" ry="2" /> +<text x="1170.85" y="639.5" ></text> +</g> +<g > +<title>ext4_writepages (10,101,010 samples, 0.10%)</title><rect x="1130.2" y="501" width="1.3" height="15.0" fill="rgb(0,226,98)" rx="2" ry="2" /> +<text x="1133.16" y="511.5" ></text> +</g> +<g > +<title>__ext4_new_inode (10,101,010 samples, 0.10%)</title><rect x="1003.6" y="533" width="1.3" height="15.0" fill="rgb(0,190,146)" rx="2" ry="2" /> +<text x="1006.60" y="543.5" ></text> +</g> +<g > +<title>do_mkdirat (20,202,020 samples, 0.20%)</title><rect x="1034.6" y="661" width="2.7" height="15.0" fill="rgb(0,204,41)" rx="2" ry="2" /> +<text x="1037.57" y="671.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="559.3" y="677" width="1.4" height="15.0" fill="rgb(0,219,17)" rx="2" ry="2" /> +<text x="562.31" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="488.0" y="693" width="2.6" height="15.0" fill="rgb(0,223,82)" rx="2" ry="2" /> +<text x="490.95" y="703.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.10%)</title><rect x="479.9" y="677" width="1.3" height="15.0" fill="rgb(0,193,35)" rx="2" ry="2" /> +<text x="482.87" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="982.1" y="629" width="1.3" height="15.0" fill="rgb(0,225,207)" rx="2" ry="2" /> +<text x="985.06" y="639.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (60,606,060 samples, 0.59%)</title><rect x="1341.5" y="693" width="8.1" height="15.0" fill="rgb(0,217,202)" rx="2" ry="2" /> +<text x="1344.53" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="1072.3" y="645" width="5.3" height="15.0" fill="rgb(0,236,107)" rx="2" ry="2" /> +<text x="1075.26" y="655.5" ></text> +</g> +<g > +<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.10%)</title><rect x="358.7" y="453" width="1.3" height="15.0" fill="rgb(0,220,158)" rx="2" ry="2" /> +<text x="361.70" y="463.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="284.7" y="405" width="1.3" height="15.0" fill="rgb(0,199,133)" rx="2" ry="2" /> +<text x="287.65" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="671.1" y="677" width="1.3" height="15.0" fill="rgb(0,239,140)" rx="2" ry="2" /> +<text x="674.05" y="687.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="427.4" y="677" width="1.3" height="15.0" fill="rgb(0,200,2)" rx="2" ry="2" /> +<text x="430.37" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.68%)</title><rect x="897.2" y="645" width="9.5" height="15.0" fill="rgb(0,207,93)" rx="2" ry="2" /> +<text x="900.24" y="655.5" ></text> +</g> +<g > +<title>__release_sock (10,101,010 samples, 0.10%)</title><rect x="62.5" y="549" width="1.4" height="15.0" fill="rgb(0,216,16)" rx="2" ry="2" /> +<text x="65.51" y="559.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (50,505,050 samples, 0.49%)</title><rect x="653.6" y="549" width="6.7" height="15.0" fill="rgb(0,233,162)" rx="2" ry="2" /> +<text x="656.55" y="559.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (10,101,010 samples, 0.10%)</title><rect x="384.3" y="645" width="1.3" height="15.0" fill="rgb(0,207,204)" rx="2" ry="2" /> +<text x="387.28" y="655.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="1294.4" y="629" width="1.4" height="15.0" fill="rgb(0,219,180)" rx="2" ry="2" /> +<text x="1297.41" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="430.1" y="661" width="2.7" height="15.0" fill="rgb(0,223,26)" rx="2" ry="2" /> +<text x="433.06" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="781.5" y="517" width="1.3" height="15.0" fill="rgb(0,213,132)" rx="2" ry="2" /> +<text x="784.45" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.78%)</title><rect x="1239.2" y="709" width="10.8" height="15.0" fill="rgb(0,237,26)" rx="2" ry="2" /> +<text x="1242.21" y="719.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="482.6" y="581" width="1.3" height="15.0" fill="rgb(0,237,77)" rx="2" ry="2" /> +<text x="485.57" y="591.5" ></text> +</g> +<g > +<title>grab_cache_page_write_begin (20,202,020 samples, 0.20%)</title><rect x="1053.4" y="549" width="2.7" height="15.0" fill="rgb(0,198,35)" rx="2" ry="2" /> +<text x="1056.41" y="559.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="199.8" y="725" width="1.4" height="15.0" fill="rgb(0,198,62)" rx="2" ry="2" /> +<text x="202.83" y="735.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.10%)</title><rect x="354.7" y="517" width="1.3" height="15.0" fill="rgb(0,202,156)" rx="2" ry="2" /> +<text x="357.66" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="531.0" y="709" width="5.4" height="15.0" fill="rgb(0,231,77)" rx="2" ry="2" /> +<text x="534.03" y="719.5" ></text> +</g> +<g > +<title>__put_cred (10,101,010 samples, 0.10%)</title><rect x="1069.6" y="581" width="1.3" height="15.0" fill="rgb(0,190,145)" rx="2" ry="2" /> +<text x="1072.57" y="591.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="237.5" y="613" width="1.4" height="15.0" fill="rgb(0,217,52)" rx="2" ry="2" /> +<text x="240.53" y="623.5" ></text> +</g> +<g > +<title>git_signature_default (60,606,060 samples, 0.59%)</title><rect x="774.7" y="693" width="8.1" height="15.0" fill="rgb(0,218,21)" rx="2" ry="2" /> +<text x="777.72" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.78%)</title><rect x="1023.8" y="709" width="10.8" height="15.0" fill="rgb(0,197,129)" rx="2" ry="2" /> +<text x="1026.80" y="719.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.10%)</title><rect x="840.7" y="437" width="1.3" height="15.0" fill="rgb(0,204,141)" rx="2" ry="2" /> +<text x="843.69" y="447.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="331.8" y="709" width="2.7" height="15.0" fill="rgb(0,193,136)" rx="2" ry="2" /> +<text x="334.78" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (10,101,010 samples, 0.10%)</title><rect x="788.2" y="693" width="1.3" height="15.0" fill="rgb(0,228,8)" rx="2" ry="2" /> +<text x="791.19" y="703.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="565" width="5.4" height="15.0" fill="rgb(0,203,207)" rx="2" ry="2" /> +<text x="1331.07" y="575.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (20,202,020 samples, 0.20%)</title><rect x="314.3" y="405" width="2.7" height="15.0" fill="rgb(0,230,98)" rx="2" ry="2" /> +<text x="317.27" y="415.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="210.6" y="645" width="1.4" height="15.0" fill="rgb(0,205,56)" rx="2" ry="2" /> +<text x="213.60" y="655.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.10%)</title><rect x="327.7" y="533" width="1.4" height="15.0" fill="rgb(0,223,25)" rx="2" ry="2" /> +<text x="330.74" y="543.5" ></text> +</g> +<g > +<title>put_cred_rcu (10,101,010 samples, 0.10%)</title><rect x="176.9" y="821" width="1.4" height="15.0" fill="rgb(0,203,31)" rx="2" ry="2" /> +<text x="179.95" y="831.5" ></text> +</g> +<g > +<title>[libc.so.6] (30,303,030 samples, 0.29%)</title><rect x="54.4" y="821" width="4.1" height="15.0" fill="rgb(0,195,40)" rx="2" ry="2" /> +<text x="57.43" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="706.1" y="597" width="1.3" height="15.0" fill="rgb(0,226,132)" rx="2" ry="2" /> +<text x="709.06" y="607.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.10%)</title><rect x="607.8" y="597" width="1.3" height="15.0" fill="rgb(0,239,126)" rx="2" ry="2" /> +<text x="610.78" y="607.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.10%)</title><rect x="964.6" y="517" width="1.3" height="15.0" fill="rgb(0,217,171)" rx="2" ry="2" /> +<text x="967.56" y="527.5" ></text> +</g> +<g > +<title>blk_mq_sched_insert_requests (10,101,010 samples, 0.10%)</title><rect x="816.5" y="437" width="1.3" height="15.0" fill="rgb(0,204,50)" rx="2" ry="2" /> +<text x="819.46" y="447.5" ></text> +</g> +<g > +<title>__x64_sys_rename (50,505,050 samples, 0.49%)</title><rect x="1027.8" y="613" width="6.8" height="15.0" fill="rgb(0,239,122)" rx="2" ry="2" /> +<text x="1030.83" y="623.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="1161.1" y="677" width="1.4" height="15.0" fill="rgb(0,229,16)" rx="2" ry="2" /> +<text x="1164.12" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.39%)</title><rect x="242.9" y="661" width="5.4" height="15.0" fill="rgb(0,204,13)" rx="2" ry="2" /> +<text x="245.92" y="671.5" ></text> +</g> +<g > +<title>__es_insert_extent (20,202,020 samples, 0.20%)</title><rect x="1050.7" y="485" width="2.7" height="15.0" fill="rgb(0,214,191)" rx="2" ry="2" /> +<text x="1053.72" y="495.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="913.4" y="597" width="1.3" height="15.0" fill="rgb(0,233,149)" rx="2" ry="2" /> +<text x="916.40" y="607.5" ></text> +</g> +<g > +<title>ext4_lookup.part.0 (10,101,010 samples, 0.10%)</title><rect x="751.8" y="517" width="1.4" height="15.0" fill="rgb(0,210,55)" rx="2" ry="2" /> +<text x="754.83" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="540.5" y="757" width="8.0" height="15.0" fill="rgb(0,222,147)" rx="2" ry="2" /> +<text x="543.46" y="767.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="734.3" y="613" width="1.4" height="15.0" fill="rgb(0,218,24)" rx="2" ry="2" /> +<text x="737.33" y="623.5" ></text> +</g> +<g > +<title>__submit_bio (10,101,010 samples, 0.10%)</title><rect x="817.8" y="437" width="1.4" height="15.0" fill="rgb(0,233,25)" rx="2" ry="2" /> +<text x="820.80" y="447.5" ></text> +</g> +<g > +<title>apparmor_file_permission (10,101,010 samples, 0.10%)</title><rect x="805.7" y="533" width="1.3" height="15.0" fill="rgb(0,192,58)" rx="2" ry="2" /> +<text x="808.69" y="543.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.10%)</title><rect x="186.4" y="773" width="1.3" height="15.0" fill="rgb(0,209,182)" rx="2" ry="2" /> +<text x="189.37" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="525.6" y="645" width="1.4" height="15.0" fill="rgb(0,202,193)" rx="2" ry="2" /> +<text x="528.65" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_openat (30,303,030 samples, 0.29%)</title><rect x="502.8" y="693" width="4.0" height="15.0" fill="rgb(0,204,30)" rx="2" ry="2" /> +<text x="505.76" y="703.5" ></text> +</g> +<g > +<title>rmdir (383,838,380 samples, 3.71%)</title><rect x="273.9" y="661" width="51.1" height="15.0" fill="rgb(0,210,178)" rx="2" ry="2" /> +<text x="276.88" y="671.5" >rmdir</text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.10%)</title><rect x="1219.0" y="629" width="1.4" height="15.0" fill="rgb(0,203,189)" rx="2" ry="2" /> +<text x="1222.01" y="639.5" ></text> +</g> +<g > +<title>ext4_ext_get_access (10,101,010 samples, 0.10%)</title><rect x="1254.0" y="581" width="1.4" height="15.0" fill="rgb(0,230,164)" rx="2" ry="2" /> +<text x="1257.02" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="949.7" y="501" width="2.7" height="15.0" fill="rgb(0,211,104)" rx="2" ry="2" /> +<text x="952.75" y="511.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.10%)</title><rect x="957.8" y="485" width="1.4" height="15.0" fill="rgb(0,223,70)" rx="2" ry="2" /> +<text x="960.82" y="495.5" ></text> +</g> +<g > +<title>git_config_snapshot (50,505,050 samples, 0.49%)</title><rect x="1231.1" y="773" width="6.8" height="15.0" fill="rgb(0,211,0)" rx="2" ry="2" /> +<text x="1234.13" y="783.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="1212.3" y="549" width="1.3" height="15.0" fill="rgb(0,234,79)" rx="2" ry="2" /> +<text x="1215.28" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_rt_sigprocmask (10,101,010 samples, 0.10%)</title><rect x="82.7" y="709" width="1.3" height="15.0" fill="rgb(0,226,46)" rx="2" ry="2" /> +<text x="85.70" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="189.1" y="789" width="6.7" height="15.0" fill="rgb(0,237,99)" rx="2" ry="2" /> +<text x="192.06" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (171,717,170 samples, 1.66%)</title><rect x="800.3" y="741" width="22.9" height="15.0" fill="rgb(0,233,118)" rx="2" ry="2" /> +<text x="803.30" y="751.5" >[..</text> +</g> +<g > +<title>do_sys_poll (80,808,080 samples, 0.78%)</title><rect x="43.7" y="789" width="10.7" height="15.0" fill="rgb(0,206,49)" rx="2" ry="2" /> +<text x="46.66" y="799.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="548.5" y="677" width="1.4" height="15.0" fill="rgb(0,221,106)" rx="2" ry="2" /> +<text x="551.54" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="494.7" y="613" width="1.3" height="15.0" fill="rgb(0,196,116)" rx="2" ry="2" /> +<text x="497.68" y="623.5" ></text> +</g> +<g > +<title>readlink (20,202,020 samples, 0.20%)</title><rect x="483.9" y="661" width="2.7" height="15.0" fill="rgb(0,237,203)" rx="2" ry="2" /> +<text x="486.91" y="671.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="288.7" y="501" width="1.3" height="15.0" fill="rgb(0,205,205)" rx="2" ry="2" /> +<text x="291.69" y="511.5" ></text> +</g> +<g > +<title>unlink_cb (60,606,060 samples, 0.59%)</title><rect x="212.0" y="645" width="8.0" height="15.0" fill="rgb(0,236,59)" rx="2" ry="2" /> +<text x="214.95" y="655.5" ></text> +</g> +<g > +<title>__ext4_new_inode (30,303,030 samples, 0.29%)</title><rect x="570.1" y="565" width="4.0" height="15.0" fill="rgb(0,219,10)" rx="2" ry="2" /> +<text x="573.08" y="575.5" ></text> +</g> +<g > +<title>git_buf_dispose (10,101,010 samples, 0.10%)</title><rect x="875.7" y="629" width="1.3" height="15.0" fill="rgb(0,226,160)" rx="2" ry="2" /> +<text x="878.70" y="639.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="1241.9" y="549" width="1.3" height="15.0" fill="rgb(0,192,181)" rx="2" ry="2" /> +<text x="1244.90" y="559.5" ></text> +</g> +<g > +<title>ext4_inode_block_valid (10,101,010 samples, 0.10%)</title><rect x="1031.9" y="373" width="1.3" height="15.0" fill="rgb(0,191,133)" rx="2" ry="2" /> +<text x="1034.87" y="383.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="488.0" y="629" width="1.3" height="15.0" fill="rgb(0,219,100)" rx="2" ry="2" /> +<text x="490.95" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="918.8" y="581" width="1.3" height="15.0" fill="rgb(0,235,2)" rx="2" ry="2" /> +<text x="921.78" y="591.5" ></text> +</g> +<g > +<title>close (20,202,020 samples, 0.20%)</title><rect x="58.5" y="805" width="2.7" height="15.0" fill="rgb(0,205,18)" rx="2" ry="2" /> +<text x="61.47" y="815.5" ></text> +</g> +<g > +<title>read (20,202,020 samples, 0.20%)</title><rect x="986.1" y="597" width="2.7" height="15.0" fill="rgb(0,200,179)" rx="2" ry="2" /> +<text x="989.10" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_eventfd2 (10,101,010 samples, 0.10%)</title><rect x="85.4" y="757" width="1.3" height="15.0" fill="rgb(0,210,118)" rx="2" ry="2" /> +<text x="88.40" y="767.5" ></text> +</g> +<g > +<title>ip_local_out (20,202,020 samples, 0.20%)</title><rect x="18.1" y="165" width="2.7" height="15.0" fill="rgb(0,221,199)" rx="2" ry="2" /> +<text x="21.08" y="175.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="366.8" y="613" width="1.3" height="15.0" fill="rgb(0,229,133)" rx="2" ry="2" /> +<text x="369.78" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="918.8" y="645" width="1.3" height="15.0" fill="rgb(0,223,71)" rx="2" ry="2" /> +<text x="921.78" y="655.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.20%)</title><rect x="1313.3" y="757" width="2.7" height="15.0" fill="rgb(0,229,208)" rx="2" ry="2" /> +<text x="1316.26" y="767.5" ></text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.10%)</title><rect x="794.9" y="629" width="1.4" height="15.0" fill="rgb(0,202,86)" rx="2" ry="2" /> +<text x="797.92" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="998.2" y="565" width="1.4" height="15.0" fill="rgb(0,239,111)" rx="2" ry="2" /> +<text x="1001.21" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.39%)</title><rect x="222.7" y="629" width="5.4" height="15.0" fill="rgb(0,213,173)" rx="2" ry="2" /> +<text x="225.72" y="639.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="213.3" y="501" width="1.3" height="15.0" fill="rgb(0,193,209)" rx="2" ry="2" /> +<text x="216.30" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="479.9" y="629" width="1.3" height="15.0" fill="rgb(0,222,2)" rx="2" ry="2" /> +<text x="482.87" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="237.5" y="677" width="4.1" height="15.0" fill="rgb(0,218,4)" rx="2" ry="2" /> +<text x="240.53" y="687.5" ></text> +</g> +<g > +<title>nf_conntrack_handle_packet (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="53" width="1.4" height="15.0" fill="rgb(0,204,169)" rx="2" ry="2" /> +<text x="1376.84" y="63.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.10%)</title><rect x="831.3" y="469" width="1.3" height="15.0" fill="rgb(0,201,100)" rx="2" ry="2" /> +<text x="834.27" y="479.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="389.7" y="773" width="2.7" height="15.0" fill="rgb(0,222,93)" rx="2" ry="2" /> +<text x="392.67" y="783.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="988.8" y="533" width="1.3" height="15.0" fill="rgb(0,234,19)" rx="2" ry="2" /> +<text x="991.79" y="543.5" ></text> +</g> +<g > +<title>ext4_mb_complex_scan_group (20,202,020 samples, 0.20%)</title><rect x="583.5" y="437" width="2.7" height="15.0" fill="rgb(0,226,75)" rx="2" ry="2" /> +<text x="586.54" y="447.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="885.1" y="597" width="1.4" height="15.0" fill="rgb(0,222,80)" rx="2" ry="2" /> +<text x="888.12" y="607.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="930.9" y="373" width="1.3" height="15.0" fill="rgb(0,206,199)" rx="2" ry="2" /> +<text x="933.90" y="383.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="325" width="1.3" height="15.0" fill="rgb(0,193,108)" rx="2" ry="2" /> +<text x="1337.80" y="335.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (787,878,780 samples, 7.61%)</title><rect x="562.0" y="757" width="105.0" height="15.0" fill="rgb(0,224,93)" rx="2" ry="2" /> +<text x="565.00" y="767.5" >[libgit2.so...</text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="400.4" y="741" width="1.4" height="15.0" fill="rgb(0,237,150)" rx="2" ry="2" /> +<text x="403.44" y="751.5" ></text> +</g> +<g > +<title>do_softirq (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="421" width="1.4" height="15.0" fill="rgb(0,214,130)" rx="2" ry="2" /> +<text x="1379.54" y="431.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="711.4" y="581" width="1.4" height="15.0" fill="rgb(0,207,149)" rx="2" ry="2" /> +<text x="714.44" y="591.5" ></text> +</g> +<g > +<title>task_work_run (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="741" width="2.6" height="15.0" fill="rgb(0,215,143)" rx="2" ry="2" /> +<text x="1336.45" y="751.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.10%)</title><rect x="1060.1" y="517" width="1.4" height="15.0" fill="rgb(0,238,80)" rx="2" ry="2" /> +<text x="1063.15" y="527.5" ></text> +</g> +<g > +<title>atime_needs_update (10,101,010 samples, 0.10%)</title><rect x="172.9" y="741" width="1.4" height="15.0" fill="rgb(0,220,196)" rx="2" ry="2" /> +<text x="175.91" y="751.5" ></text> +</g> +<g > +<title>ip_finish_output (20,202,020 samples, 0.20%)</title><rect x="1345.6" y="613" width="2.7" height="15.0" fill="rgb(0,197,160)" rx="2" ry="2" /> +<text x="1348.57" y="623.5" ></text> +</g> +<g > +<title>generic_write_end (10,101,010 samples, 0.10%)</title><rect x="1076.3" y="453" width="1.3" height="15.0" fill="rgb(0,225,54)" rx="2" ry="2" /> +<text x="1079.30" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_read (30,303,030 samples, 0.29%)</title><rect x="1305.2" y="741" width="4.0" height="15.0" fill="rgb(0,210,61)" rx="2" ry="2" /> +<text x="1308.18" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="1037.3" y="709" width="2.7" height="15.0" fill="rgb(0,210,39)" rx="2" ry="2" /> +<text x="1040.26" y="719.5" ></text> +</g> +<g > +<title>git_branch_is_checked_out (282,828,280 samples, 2.73%)</title><rect x="715.5" y="741" width="37.7" height="15.0" fill="rgb(0,225,94)" rx="2" ry="2" /> +<text x="718.48" y="751.5" >git..</text> +</g> +<g > +<title>do_syscall_64 (141,414,140 samples, 1.37%)</title><rect x="949.7" y="581" width="18.9" height="15.0" fill="rgb(0,215,113)" rx="2" ry="2" /> +<text x="952.75" y="591.5" ></text> +</g> +<g > +<title>__socket (10,101,010 samples, 0.10%)</title><rect x="1388.7" y="853" width="1.3" height="15.0" fill="rgb(0,232,13)" rx="2" ry="2" /> +<text x="1391.65" y="863.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="461.0" y="629" width="1.4" height="15.0" fill="rgb(0,230,121)" rx="2" ry="2" /> +<text x="464.02" y="639.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (20,202,020 samples, 0.20%)</title><rect x="543.2" y="629" width="2.6" height="15.0" fill="rgb(0,228,91)" rx="2" ry="2" /> +<text x="546.15" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="193.1" y="741" width="1.3" height="15.0" fill="rgb(0,197,143)" rx="2" ry="2" /> +<text x="196.10" y="751.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="825.9" y="709" width="1.3" height="15.0" fill="rgb(0,214,198)" rx="2" ry="2" /> +<text x="828.88" y="719.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="493.3" y="437" width="1.4" height="15.0" fill="rgb(0,215,1)" rx="2" ry="2" /> +<text x="496.34" y="447.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="545.8" y="517" width="1.4" height="15.0" fill="rgb(0,228,126)" rx="2" ry="2" /> +<text x="548.84" y="527.5" ></text> +</g> +<g > +<title>fsnotify_destroy_marks (10,101,010 samples, 0.10%)</title><rect x="838.0" y="533" width="1.3" height="15.0" fill="rgb(0,211,120)" rx="2" ry="2" /> +<text x="841.00" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="490.6" y="629" width="4.1" height="15.0" fill="rgb(0,236,51)" rx="2" ry="2" /> +<text x="493.64" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (70,707,070 samples, 0.68%)</title><rect x="248.3" y="597" width="9.4" height="15.0" fill="rgb(0,195,136)" rx="2" ry="2" /> +<text x="251.30" y="607.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="453" width="1.3" height="15.0" fill="rgb(0,232,126)" rx="2" ry="2" /> +<text x="1032.18" y="463.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="715.5" y="453" width="1.3" height="15.0" fill="rgb(0,204,84)" rx="2" ry="2" /> +<text x="718.48" y="463.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="302.2" y="485" width="1.3" height="15.0" fill="rgb(0,230,22)" rx="2" ry="2" /> +<text x="305.16" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1239.2" y="677" width="4.0" height="15.0" fill="rgb(0,214,116)" rx="2" ry="2" /> +<text x="1242.21" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.59%)</title><rect x="115.0" y="885" width="8.1" height="15.0" fill="rgb(0,216,101)" rx="2" ry="2" /> +<text x="118.01" y="895.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="788.2" y="597" width="1.3" height="15.0" fill="rgb(0,190,96)" rx="2" ry="2" /> +<text x="791.19" y="607.5" ></text> +</g> +<g > +<title>__ext4_new_inode (20,202,020 samples, 0.20%)</title><rect x="672.4" y="469" width="2.7" height="15.0" fill="rgb(0,223,120)" rx="2" ry="2" /> +<text x="675.40" y="479.5" ></text> +</g> +<g > +<title>readdir64 (10,101,010 samples, 0.10%)</title><rect x="384.3" y="757" width="1.3" height="15.0" fill="rgb(0,211,186)" rx="2" ry="2" /> +<text x="387.28" y="767.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="1197.5" y="565" width="1.3" height="15.0" fill="rgb(0,193,130)" rx="2" ry="2" /> +<text x="1200.47" y="575.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.10%)</title><rect x="754.5" y="469" width="1.4" height="15.0" fill="rgb(0,232,196)" rx="2" ry="2" /> +<text x="757.53" y="479.5" ></text> +</g> +<g > +<title>__free_pages (10,101,010 samples, 0.10%)</title><rect x="1307.9" y="565" width="1.3" height="15.0" fill="rgb(0,198,64)" rx="2" ry="2" /> +<text x="1310.87" y="575.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (30,303,030 samples, 0.29%)</title><rect x="838.0" y="565" width="4.0" height="15.0" fill="rgb(0,191,102)" rx="2" ry="2" /> +<text x="841.00" y="575.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.10%)</title><rect x="948.4" y="437" width="1.3" height="15.0" fill="rgb(0,235,188)" rx="2" ry="2" /> +<text x="951.40" y="447.5" ></text> +</g> +<g > +<title>ext4_rename (60,606,060 samples, 0.59%)</title><rect x="653.6" y="565" width="8.0" height="15.0" fill="rgb(0,211,207)" rx="2" ry="2" /> +<text x="656.55" y="575.5" ></text> +</g> +<g > +<title>__ip_finish_output (40,404,040 samples, 0.39%)</title><rect x="15.4" y="533" width="5.4" height="15.0" fill="rgb(0,231,18)" rx="2" ry="2" /> +<text x="18.39" y="543.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="953.8" y="437" width="1.3" height="15.0" fill="rgb(0,205,77)" rx="2" ry="2" /> +<text x="956.79" y="447.5" ></text> +</g> +<g > +<title>__tcp_close (80,808,080 samples, 0.78%)</title><rect x="62.5" y="565" width="10.8" height="15.0" fill="rgb(0,191,44)" rx="2" ry="2" /> +<text x="65.51" y="575.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="680.5" y="437" width="1.3" height="15.0" fill="rgb(0,202,142)" rx="2" ry="2" /> +<text x="683.48" y="447.5" ></text> +</g> +<g > +<title>ip_output (60,606,060 samples, 0.59%)</title><rect x="65.2" y="437" width="8.1" height="15.0" fill="rgb(0,236,114)" rx="2" ry="2" /> +<text x="68.20" y="447.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1364.4" y="709" width="1.4" height="15.0" fill="rgb(0,214,65)" rx="2" ry="2" /> +<text x="1367.42" y="719.5" ></text> +</g> +<g > +<title>release_sock (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="725" width="2.7" height="15.0" fill="rgb(0,214,155)" rx="2" ry="2" /> +<text x="1380.88" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="693.9" y="645" width="2.7" height="15.0" fill="rgb(0,198,176)" rx="2" ry="2" /> +<text x="696.94" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="728.9" y="677" width="1.4" height="15.0" fill="rgb(0,190,79)" rx="2" ry="2" /> +<text x="731.95" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="638.7" y="645" width="2.7" height="15.0" fill="rgb(0,238,164)" rx="2" ry="2" /> +<text x="641.74" y="655.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.10%)</title><rect x="633.4" y="565" width="1.3" height="15.0" fill="rgb(0,237,204)" rx="2" ry="2" /> +<text x="636.36" y="575.5" ></text> +</g> +<g > +<title>blkcg_ioprio_track (10,101,010 samples, 0.10%)</title><rect x="658.9" y="373" width="1.4" height="15.0" fill="rgb(0,219,70)" rx="2" ry="2" /> +<text x="661.94" y="383.5" ></text> +</g> +<g > +<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.10%)</title><rect x="182.3" y="709" width="1.4" height="15.0" fill="rgb(0,214,186)" rx="2" ry="2" /> +<text x="185.33" y="719.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.10%)</title><rect x="275.2" y="565" width="1.4" height="15.0" fill="rgb(0,226,128)" rx="2" ry="2" /> +<text x="278.23" y="575.5" ></text> +</g> +<g > +<title>d_alloc (30,303,030 samples, 0.29%)</title><rect x="181.0" y="757" width="4.0" height="15.0" fill="rgb(0,195,155)" rx="2" ry="2" /> +<text x="183.99" y="767.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="784.1" y="645" width="1.4" height="15.0" fill="rgb(0,211,19)" rx="2" ry="2" /> +<text x="787.15" y="655.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="1114.0" y="629" width="1.3" height="15.0" fill="rgb(0,201,142)" rx="2" ry="2" /> +<text x="1117.00" y="639.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.10%)</title><rect x="512.2" y="437" width="1.3" height="15.0" fill="rgb(0,218,54)" rx="2" ry="2" /> +<text x="515.19" y="447.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="754.5" y="501" width="1.4" height="15.0" fill="rgb(0,218,88)" rx="2" ry="2" /> +<text x="757.53" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="327.7" y="661" width="1.4" height="15.0" fill="rgb(0,220,106)" rx="2" ry="2" /> +<text x="330.74" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="517.6" y="629" width="2.7" height="15.0" fill="rgb(0,199,118)" rx="2" ry="2" /> +<text x="520.57" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="921.5" y="677" width="1.3" height="15.0" fill="rgb(0,236,25)" rx="2" ry="2" /> +<text x="924.47" y="687.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.10%)</title><rect x="807.0" y="565" width="1.4" height="15.0" fill="rgb(0,199,17)" rx="2" ry="2" /> +<text x="810.03" y="575.5" ></text> +</g> +<g > +<title>tcp_done (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="149" width="1.4" height="15.0" fill="rgb(0,206,197)" rx="2" ry="2" /> +<text x="1379.54" y="159.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.10%)</title><rect x="1069.6" y="629" width="1.3" height="15.0" fill="rgb(0,221,96)" rx="2" ry="2" /> +<text x="1072.57" y="639.5" ></text> +</g> +<g > +<title>__inet_lookup_established (10,101,010 samples, 0.10%)</title><rect x="1329.4" y="261" width="1.4" height="15.0" fill="rgb(0,212,124)" rx="2" ry="2" /> +<text x="1332.41" y="271.5" ></text> +</g> +<g > +<title>mkdir (40,404,040 samples, 0.39%)</title><rect x="676.4" y="629" width="5.4" height="15.0" fill="rgb(0,197,77)" rx="2" ry="2" /> +<text x="679.44" y="639.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.10%)</title><rect x="1163.8" y="581" width="1.4" height="15.0" fill="rgb(0,208,58)" rx="2" ry="2" /> +<text x="1166.81" y="591.5" ></text> +</g> +<g > +<title>lockref_get_not_dead (10,101,010 samples, 0.10%)</title><rect x="186.4" y="741" width="1.3" height="15.0" fill="rgb(0,205,186)" rx="2" ry="2" /> +<text x="189.37" y="751.5" ></text> +</g> +<g > +<title>log_entry_start (111,111,110 samples, 1.07%)</title><rect x="93.5" y="869" width="14.8" height="15.0" fill="rgb(0,201,25)" rx="2" ry="2" /> +<text x="96.47" y="879.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="444.9" y="629" width="1.3" height="15.0" fill="rgb(0,191,65)" rx="2" ry="2" /> +<text x="447.87" y="639.5" ></text> +</g> +<g > +<title>git_buf_dispose (10,101,010 samples, 0.10%)</title><rect x="567.4" y="677" width="1.3" height="15.0" fill="rgb(0,204,95)" rx="2" ry="2" /> +<text x="570.39" y="687.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (10,101,010 samples, 0.10%)</title><rect x="1035.9" y="613" width="1.4" height="15.0" fill="rgb(0,200,176)" rx="2" ry="2" /> +<text x="1038.91" y="623.5" ></text> +</g> +<g > +<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.10%)</title><rect x="1216.3" y="485" width="1.4" height="15.0" fill="rgb(0,203,120)" rx="2" ry="2" /> +<text x="1219.32" y="495.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.10%)</title><rect x="969.9" y="453" width="1.4" height="15.0" fill="rgb(0,197,114)" rx="2" ry="2" /> +<text x="972.94" y="463.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="1077.6" y="581" width="1.4" height="15.0" fill="rgb(0,209,124)" rx="2" ry="2" /> +<text x="1080.65" y="591.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (10,101,010 samples, 0.10%)</title><rect x="1386.0" y="549" width="1.3" height="15.0" fill="rgb(0,225,170)" rx="2" ry="2" /> +<text x="1388.96" y="559.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.10%)</title><rect x="632.0" y="565" width="1.4" height="15.0" fill="rgb(0,236,168)" rx="2" ry="2" /> +<text x="635.01" y="575.5" ></text> +</g> +<g > +<title>ext4_mb_check_limits (10,101,010 samples, 0.10%)</title><rect x="1149.0" y="485" width="1.4" height="15.0" fill="rgb(0,200,169)" rx="2" ry="2" /> +<text x="1152.00" y="495.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="372.2" y="565" width="1.3" height="15.0" fill="rgb(0,229,90)" rx="2" ry="2" /> +<text x="375.17" y="575.5" ></text> +</g> +<g > +<title>__ip_finish_output (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="517" width="2.7" height="15.0" fill="rgb(0,194,17)" rx="2" ry="2" /> +<text x="1341.84" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="545.8" y="645" width="2.7" height="15.0" fill="rgb(0,219,150)" rx="2" ry="2" /> +<text x="548.84" y="655.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (30,303,030 samples, 0.29%)</title><rect x="1073.6" y="517" width="4.0" height="15.0" fill="rgb(0,220,23)" rx="2" ry="2" /> +<text x="1076.61" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (131,313,130 samples, 1.27%)</title><rect x="1070.9" y="709" width="17.5" height="15.0" fill="rgb(0,229,20)" rx="2" ry="2" /> +<text x="1073.92" y="719.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.10%)</title><rect x="680.5" y="485" width="1.3" height="15.0" fill="rgb(0,191,161)" rx="2" ry="2" /> +<text x="683.48" y="495.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="420.6" y="789" width="1.4" height="15.0" fill="rgb(0,199,29)" rx="2" ry="2" /> +<text x="423.63" y="799.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="216.0" y="437" width="1.3" height="15.0" fill="rgb(0,224,37)" rx="2" ry="2" /> +<text x="218.99" y="447.5" ></text> +</g> +<g > +<title>errseq_check (10,101,010 samples, 0.10%)</title><rect x="1135.5" y="597" width="1.4" height="15.0" fill="rgb(0,191,164)" rx="2" ry="2" /> +<text x="1138.54" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="821" width="2.6" height="15.0" fill="rgb(0,225,192)" rx="2" ry="2" /> +<text x="1336.45" y="831.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="921.5" y="597" width="1.3" height="15.0" fill="rgb(0,219,198)" rx="2" ry="2" /> +<text x="924.47" y="607.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="233.5" y="357" width="1.3" height="15.0" fill="rgb(0,201,46)" rx="2" ry="2" /> +<text x="236.49" y="367.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="718.2" y="485" width="1.3" height="15.0" fill="rgb(0,192,0)" rx="2" ry="2" /> +<text x="721.18" y="495.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (20,202,020 samples, 0.20%)</title><rect x="286.0" y="501" width="2.7" height="15.0" fill="rgb(0,213,141)" rx="2" ry="2" /> +<text x="289.00" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="877.0" y="613" width="2.7" height="15.0" fill="rgb(0,193,47)" rx="2" ry="2" /> +<text x="880.04" y="623.5" ></text> +</g> +<g > +<title>_raw_read_lock (20,202,020 samples, 0.20%)</title><rect x="613.2" y="485" width="2.7" height="15.0" fill="rgb(0,198,152)" rx="2" ry="2" /> +<text x="616.16" y="495.5" ></text> +</g> +<g > +<title>ext4_match.part.0 (10,101,010 samples, 0.10%)</title><rect x="934.9" y="533" width="1.4" height="15.0" fill="rgb(0,239,14)" rx="2" ry="2" /> +<text x="937.94" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_rename (80,808,080 samples, 0.78%)</title><rect x="764.0" y="613" width="10.7" height="15.0" fill="rgb(0,225,17)" rx="2" ry="2" /> +<text x="766.95" y="623.5" ></text> +</g> +<g > +<title>__netif_receive_skb (50,505,050 samples, 0.49%)</title><rect x="65.2" y="277" width="6.7" height="15.0" fill="rgb(0,233,186)" rx="2" ry="2" /> +<text x="68.20" y="287.5" ></text> +</g> +<g > +<title>crc_1 (10,101,010 samples, 0.10%)</title><rect x="288.7" y="485" width="1.3" height="15.0" fill="rgb(0,206,130)" rx="2" ry="2" /> +<text x="291.69" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.78%)</title><rect x="863.6" y="629" width="10.8" height="15.0" fill="rgb(0,198,99)" rx="2" ry="2" /> +<text x="866.58" y="639.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="548.5" y="661" width="1.4" height="15.0" fill="rgb(0,233,62)" rx="2" ry="2" /> +<text x="551.54" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (171,717,170 samples, 1.66%)</title><rect x="1134.2" y="693" width="22.9" height="15.0" fill="rgb(0,233,65)" rx="2" ry="2" /> +<text x="1137.20" y="703.5" >_..</text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="895.9" y="677" width="1.3" height="15.0" fill="rgb(0,198,107)" rx="2" ry="2" /> +<text x="898.89" y="687.5" ></text> +</g> +<g > +<title>tcp_rcv_synsent_state_process (30,303,030 samples, 0.29%)</title><rect x="1337.5" y="661" width="4.0" height="15.0" fill="rgb(0,230,6)" rx="2" ry="2" /> +<text x="1340.49" y="671.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="1021.1" y="661" width="1.3" height="15.0" fill="rgb(0,222,123)" rx="2" ry="2" /> +<text x="1024.10" y="671.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.10%)</title><rect x="642.8" y="581" width="1.3" height="15.0" fill="rgb(0,219,15)" rx="2" ry="2" /> +<text x="645.78" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="528.3" y="629" width="1.4" height="15.0" fill="rgb(0,237,177)" rx="2" ry="2" /> +<text x="531.34" y="639.5" ></text> +</g> +<g > +<title>ext4_rmdir.part.0 (40,404,040 samples, 0.39%)</title><rect x="345.2" y="581" width="5.4" height="15.0" fill="rgb(0,237,149)" rx="2" ry="2" /> +<text x="348.24" y="591.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.10%)</title><rect x="440.8" y="405" width="1.4" height="15.0" fill="rgb(0,207,82)" rx="2" ry="2" /> +<text x="443.83" y="415.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.10%)</title><rect x="395.1" y="565" width="1.3" height="15.0" fill="rgb(0,203,182)" rx="2" ry="2" /> +<text x="398.05" y="575.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="493.3" y="469" width="1.4" height="15.0" fill="rgb(0,235,130)" rx="2" ry="2" /> +<text x="496.34" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="471.8" y="645" width="6.7" height="15.0" fill="rgb(0,211,37)" rx="2" ry="2" /> +<text x="474.80" y="655.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="718.2" y="389" width="1.3" height="15.0" fill="rgb(0,213,114)" rx="2" ry="2" /> +<text x="721.18" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="471.8" y="629" width="2.7" height="15.0" fill="rgb(0,195,186)" rx="2" ry="2" /> +<text x="474.80" y="639.5" ></text> +</g> +<g > +<title>__ext4_unlink (40,404,040 samples, 0.39%)</title><rect x="378.9" y="597" width="5.4" height="15.0" fill="rgb(0,239,167)" rx="2" ry="2" /> +<text x="381.90" y="607.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1220.4" y="613" width="1.3" height="15.0" fill="rgb(0,225,189)" rx="2" ry="2" /> +<text x="1223.36" y="623.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="929.6" y="421" width="1.3" height="15.0" fill="rgb(0,206,174)" rx="2" ry="2" /> +<text x="932.55" y="431.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (111,111,110 samples, 1.07%)</title><rect x="174.3" y="917" width="14.8" height="15.0" fill="rgb(0,199,106)" rx="2" ry="2" /> +<text x="177.25" y="927.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="232.1" y="453" width="1.4" height="15.0" fill="rgb(0,206,127)" rx="2" ry="2" /> +<text x="235.15" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="741.1" y="597" width="6.7" height="15.0" fill="rgb(0,230,122)" rx="2" ry="2" /> +<text x="744.06" y="607.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="661" width="1.3" height="15.0" fill="rgb(0,226,49)" rx="2" ry="2" /> +<text x="1182.97" y="671.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.10%)</title><rect x="758.6" y="485" width="1.3" height="15.0" fill="rgb(0,208,45)" rx="2" ry="2" /> +<text x="761.57" y="495.5" ></text> +</g> +<g > +<title>read (20,202,020 samples, 0.20%)</title><rect x="1368.5" y="757" width="2.7" height="15.0" fill="rgb(0,208,35)" rx="2" ry="2" /> +<text x="1371.46" y="767.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="493.3" y="453" width="1.4" height="15.0" fill="rgb(0,194,143)" rx="2" ry="2" /> +<text x="496.34" y="463.5" ></text> +</g> +<g > +<title>do_filp_open (30,303,030 samples, 0.29%)</title><rect x="1213.6" y="565" width="4.1" height="15.0" fill="rgb(0,195,166)" rx="2" ry="2" /> +<text x="1216.63" y="575.5" ></text> +</g> +<g > +<title>remove (10,101,010 samples, 0.10%)</title><rect x="209.3" y="613" width="1.3" height="15.0" fill="rgb(0,197,35)" rx="2" ry="2" /> +<text x="212.26" y="623.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="575.5" y="533" width="1.3" height="15.0" fill="rgb(0,201,108)" rx="2" ry="2" /> +<text x="578.46" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="890.5" y="581" width="1.4" height="15.0" fill="rgb(0,193,49)" rx="2" ry="2" /> +<text x="893.51" y="591.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="496.0" y="613" width="1.4" height="15.0" fill="rgb(0,201,28)" rx="2" ry="2" /> +<text x="499.03" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="202.5" y="581" width="1.4" height="15.0" fill="rgb(0,206,151)" rx="2" ry="2" /> +<text x="205.53" y="591.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (10,101,010 samples, 0.10%)</title><rect x="93.5" y="805" width="1.3" height="15.0" fill="rgb(0,221,108)" rx="2" ry="2" /> +<text x="96.47" y="815.5" ></text> +</g> +<g > +<title>server_wait_for_action (20,202,020 samples, 0.20%)</title><rect x="28.8" y="917" width="2.7" height="15.0" fill="rgb(0,225,185)" rx="2" ry="2" /> +<text x="31.85" y="927.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.10%)</title><rect x="574.1" y="549" width="1.4" height="15.0" fill="rgb(0,218,164)" rx="2" ry="2" /> +<text x="577.12" y="559.5" ></text> +</g> +<g > +<title>__strdup (10,101,010 samples, 0.10%)</title><rect x="1186.7" y="661" width="1.3" height="15.0" fill="rgb(0,221,209)" rx="2" ry="2" /> +<text x="1189.70" y="671.5" ></text> +</g> +<g > +<title>shrink_dentry_list (10,101,010 samples, 0.10%)</title><rect x="387.0" y="613" width="1.3" height="15.0" fill="rgb(0,233,76)" rx="2" ry="2" /> +<text x="389.98" y="623.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="437" width="1.4" height="15.0" fill="rgb(0,208,73)" rx="2" ry="2" /> +<text x="1207.20" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="704.7" y="629" width="4.1" height="15.0" fill="rgb(0,192,18)" rx="2" ry="2" /> +<text x="707.71" y="639.5" ></text> +</g> +<g > +<title>net_rx_action (40,404,040 samples, 0.39%)</title><rect x="15.4" y="453" width="5.4" height="15.0" fill="rgb(0,202,33)" rx="2" ry="2" /> +<text x="18.39" y="463.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.10%)</title><rect x="1188.0" y="629" width="1.4" height="15.0" fill="rgb(0,222,157)" rx="2" ry="2" /> +<text x="1191.05" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="778.8" y="581" width="4.0" height="15.0" fill="rgb(0,222,119)" rx="2" ry="2" /> +<text x="781.76" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="236.2" y="597" width="1.3" height="15.0" fill="rgb(0,201,136)" rx="2" ry="2" /> +<text x="239.19" y="607.5" ></text> +</g> +<g > +<title>git_reference_dwim (60,606,060 samples, 0.59%)</title><rect x="552.6" y="773" width="8.1" height="15.0" fill="rgb(0,205,58)" rx="2" ry="2" /> +<text x="555.58" y="783.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="372.2" y="581" width="1.3" height="15.0" fill="rgb(0,208,126)" rx="2" ry="2" /> +<text x="375.17" y="591.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.10%)</title><rect x="1056.1" y="629" width="1.4" height="15.0" fill="rgb(0,204,9)" rx="2" ry="2" /> +<text x="1059.11" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="715.5" y="629" width="2.7" height="15.0" fill="rgb(0,213,107)" rx="2" ry="2" /> +<text x="718.48" y="639.5" ></text> +</g> +<g > +<title>ext4fs_dirhash (10,101,010 samples, 0.10%)</title><rect x="498.7" y="549" width="1.4" height="15.0" fill="rgb(0,199,135)" rx="2" ry="2" /> +<text x="501.72" y="559.5" ></text> +</g> +<g > +<title>getname_flags (20,202,020 samples, 0.20%)</title><rect x="1316.0" y="757" width="2.6" height="15.0" fill="rgb(0,210,58)" rx="2" ry="2" /> +<text x="1318.95" y="767.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="866.3" y="549" width="2.7" height="15.0" fill="rgb(0,224,113)" rx="2" ry="2" /> +<text x="869.27" y="559.5" ></text> +</g> +<g > +<title>tcp_server_accept (131,313,130 samples, 1.27%)</title><rect x="76.0" y="837" width="17.5" height="15.0" fill="rgb(0,190,30)" rx="2" ry="2" /> +<text x="78.97" y="847.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1161.1" y="725" width="1.4" height="15.0" fill="rgb(0,230,46)" rx="2" ry="2" /> +<text x="1164.12" y="735.5" ></text> +</g> +<g > +<title>do_sys_openat2 (30,303,030 samples, 0.29%)</title><rect x="1213.6" y="581" width="4.1" height="15.0" fill="rgb(0,196,146)" rx="2" ry="2" /> +<text x="1216.63" y="591.5" ></text> +</g> +<g > +<title>submit_bio (10,101,010 samples, 0.10%)</title><rect x="842.0" y="469" width="1.4" height="15.0" fill="rgb(0,239,206)" rx="2" ry="2" /> +<text x="845.04" y="479.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="415.2" y="789" width="1.4" height="15.0" fill="rgb(0,227,172)" rx="2" ry="2" /> +<text x="418.25" y="799.5" ></text> +</g> +<g > +<title>net_connect (111,111,110 samples, 1.07%)</title><rect x="1336.1" y="869" width="14.9" height="15.0" fill="rgb(0,218,137)" rx="2" ry="2" /> +<text x="1339.15" y="879.5" ></text> +</g> +<g > +<title>__sock_create (10,101,010 samples, 0.10%)</title><rect x="1388.7" y="773" width="1.3" height="15.0" fill="rgb(0,232,54)" rx="2" ry="2" /> +<text x="1391.65" y="783.5" ></text> +</g> +<g > +<title>ext4_es_insert_delayed_block (20,202,020 samples, 0.20%)</title><rect x="1050.7" y="501" width="2.7" height="15.0" fill="rgb(0,227,122)" rx="2" ry="2" /> +<text x="1053.72" y="511.5" ></text> +</g> +<g > +<title>ip_queue_xmit (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="549" width="2.6" height="15.0" fill="rgb(0,207,152)" rx="2" ry="2" /> +<text x="1336.45" y="559.5" ></text> +</g> +<g > +<title>atime_needs_update (10,101,010 samples, 0.10%)</title><rect x="987.4" y="421" width="1.4" height="15.0" fill="rgb(0,226,190)" rx="2" ry="2" /> +<text x="990.44" y="431.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.10%)</title><rect x="646.8" y="501" width="1.4" height="15.0" fill="rgb(0,203,186)" rx="2" ry="2" /> +<text x="649.82" y="511.5" ></text> +</g> +<g > +<title>git_repository_open_ext (212,121,210 samples, 2.05%)</title><rect x="1221.7" y="789" width="28.3" height="15.0" fill="rgb(0,227,68)" rx="2" ry="2" /> +<text x="1224.71" y="799.5" >g..</text> +</g> +<g > +<title>__sock_create (10,101,010 samples, 0.10%)</title><rect x="1349.6" y="773" width="1.4" height="15.0" fill="rgb(0,217,106)" rx="2" ry="2" /> +<text x="1352.61" y="783.5" ></text> +</g> +<g > +<title>resolve_normal_ct (10,101,010 samples, 0.10%)</title><rect x="1344.2" y="565" width="1.4" height="15.0" fill="rgb(0,236,107)" rx="2" ry="2" /> +<text x="1347.22" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="757.2" y="629" width="2.7" height="15.0" fill="rgb(0,205,207)" rx="2" ry="2" /> +<text x="760.22" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="1241.9" y="597" width="1.3" height="15.0" fill="rgb(0,237,189)" rx="2" ry="2" /> +<text x="1244.90" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="446.2" y="677" width="2.7" height="15.0" fill="rgb(0,238,77)" rx="2" ry="2" /> +<text x="449.21" y="687.5" ></text> +</g> +<g > +<title>crc_120 (10,101,010 samples, 0.10%)</title><rect x="676.4" y="453" width="1.4" height="15.0" fill="rgb(0,228,92)" rx="2" ry="2" /> +<text x="679.44" y="463.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="781.5" y="469" width="1.3" height="15.0" fill="rgb(0,214,199)" rx="2" ry="2" /> +<text x="784.45" y="479.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="969.9" y="565" width="1.4" height="15.0" fill="rgb(0,192,126)" rx="2" ry="2" /> +<text x="972.94" y="575.5" ></text> +</g> +<g > +<title>opendir (30,303,030 samples, 0.29%)</title><rect x="864.9" y="597" width="4.1" height="15.0" fill="rgb(0,221,66)" rx="2" ry="2" /> +<text x="867.93" y="607.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.20%)</title><rect x="936.3" y="677" width="2.7" height="15.0" fill="rgb(0,233,83)" rx="2" ry="2" /> +<text x="939.28" y="687.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="782.8" y="501" width="1.3" height="15.0" fill="rgb(0,231,182)" rx="2" ry="2" /> +<text x="785.80" y="511.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="115.0" y="741" width="1.4" height="15.0" fill="rgb(0,219,47)" rx="2" ry="2" /> +<text x="118.01" y="751.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.20%)</title><rect x="850.1" y="549" width="2.7" height="15.0" fill="rgb(0,214,186)" rx="2" ry="2" /> +<text x="853.12" y="559.5" ></text> +</g> +<g > +<title>nf_confirm (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="245" width="1.3" height="15.0" fill="rgb(0,221,57)" rx="2" ry="2" /> +<text x="1337.80" y="255.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.78%)</title><rect x="450.3" y="709" width="10.7" height="15.0" fill="rgb(0,198,164)" rx="2" ry="2" /> +<text x="453.25" y="719.5" ></text> +</g> +<g > +<title>tcp_done (20,202,020 samples, 0.20%)</title><rect x="69.2" y="85" width="2.7" height="15.0" fill="rgb(0,197,154)" rx="2" ry="2" /> +<text x="72.24" y="95.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.10%)</title><rect x="431.4" y="565" width="1.4" height="15.0" fill="rgb(0,201,4)" rx="2" ry="2" /> +<text x="434.40" y="575.5" ></text> +</g> +<g > +<title>ext4_orphan_add (10,101,010 samples, 0.10%)</title><rect x="399.1" y="613" width="1.3" height="15.0" fill="rgb(0,200,62)" rx="2" ry="2" /> +<text x="402.09" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="1101.9" y="613" width="1.3" height="15.0" fill="rgb(0,230,60)" rx="2" ry="2" /> +<text x="1104.88" y="623.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="1062.8" y="565" width="1.4" height="15.0" fill="rgb(0,224,18)" rx="2" ry="2" /> +<text x="1065.84" y="575.5" ></text> +</g> +<g > +<title>page_counter_uncharge (10,101,010 samples, 0.10%)</title><rect x="652.2" y="389" width="1.4" height="15.0" fill="rgb(0,221,34)" rx="2" ry="2" /> +<text x="655.20" y="399.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="172.9" y="901" width="1.4" height="15.0" fill="rgb(0,231,8)" rx="2" ry="2" /> +<text x="175.91" y="911.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="443.5" y="741" width="5.4" height="15.0" fill="rgb(0,221,172)" rx="2" ry="2" /> +<text x="446.52" y="751.5" ></text> +</g> +<g > +<title>git_repository__cleanup (30,303,030 samples, 0.29%)</title><rect x="720.9" y="693" width="4.0" height="15.0" fill="rgb(0,206,136)" rx="2" ry="2" /> +<text x="723.87" y="703.5" ></text> +</g> +<g > +<title>ext4_rename (70,707,070 samples, 0.68%)</title><rect x="765.3" y="549" width="9.4" height="15.0" fill="rgb(0,227,159)" rx="2" ry="2" /> +<text x="768.30" y="559.5" ></text> +</g> +<g > +<title>storvsc_do_io (10,101,010 samples, 0.10%)</title><rect x="1126.1" y="229" width="1.4" height="15.0" fill="rgb(0,206,24)" rx="2" ry="2" /> +<text x="1129.12" y="239.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="978.0" y="485" width="1.4" height="15.0" fill="rgb(0,205,32)" rx="2" ry="2" /> +<text x="981.02" y="495.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.10%)</title><rect x="1077.6" y="533" width="1.4" height="15.0" fill="rgb(0,192,180)" rx="2" ry="2" /> +<text x="1080.65" y="543.5" ></text> +</g> +<g > +<title>ip_local_out (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="565" width="2.7" height="15.0" fill="rgb(0,217,209)" rx="2" ry="2" /> +<text x="1380.88" y="575.5" ></text> +</g> +<g > +<title>rcu_read_unlock_strict (10,101,010 samples, 0.10%)</title><rect x="152.7" y="725" width="1.4" height="15.0" fill="rgb(0,190,81)" rx="2" ry="2" /> +<text x="155.71" y="735.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1237.9" y="693" width="1.3" height="15.0" fill="rgb(0,235,52)" rx="2" ry="2" /> +<text x="1240.86" y="703.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.10%)</title><rect x="688.6" y="437" width="1.3" height="15.0" fill="rgb(0,211,114)" rx="2" ry="2" /> +<text x="691.56" y="447.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="232.1" y="405" width="1.4" height="15.0" fill="rgb(0,228,186)" rx="2" ry="2" /> +<text x="235.15" y="415.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.10%)</title><rect x="805.7" y="581" width="1.3" height="15.0" fill="rgb(0,236,185)" rx="2" ry="2" /> +<text x="808.69" y="591.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.20%)</title><rect x="100.2" y="693" width="2.7" height="15.0" fill="rgb(0,218,6)" rx="2" ry="2" /> +<text x="103.20" y="703.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="677" width="4.0" height="15.0" fill="rgb(0,200,7)" rx="2" ry="2" /> +<text x="1255.67" y="687.5" ></text> +</g> +<g > +<title>blk_mq_do_dispatch_sched (30,303,030 samples, 0.29%)</title><rect x="1124.8" y="325" width="4.0" height="15.0" fill="rgb(0,231,191)" rx="2" ry="2" /> +<text x="1127.77" y="335.5" ></text> +</g> +<g > +<title>blk_finish_plug (10,101,010 samples, 0.10%)</title><rect x="440.8" y="517" width="1.4" height="15.0" fill="rgb(0,190,43)" rx="2" ry="2" /> +<text x="443.83" y="527.5" ></text> +</g> +<g > +<title>ip_queue_xmit (50,505,050 samples, 0.49%)</title><rect x="1380.6" y="677" width="6.7" height="15.0" fill="rgb(0,214,91)" rx="2" ry="2" /> +<text x="1383.58" y="687.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="252.3" y="469" width="1.4" height="15.0" fill="rgb(0,224,174)" rx="2" ry="2" /> +<text x="255.34" y="479.5" ></text> +</g> +<g > +<title>ext4_rmdir (101,010,100 samples, 0.98%)</title><rect x="276.6" y="565" width="13.4" height="15.0" fill="rgb(0,222,70)" rx="2" ry="2" /> +<text x="279.58" y="575.5" ></text> +</g> +<g > +<title>cap_inode_need_killpriv (10,101,010 samples, 0.10%)</title><rect x="1046.7" y="533" width="1.3" height="15.0" fill="rgb(0,203,72)" rx="2" ry="2" /> +<text x="1049.68" y="543.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="913.4" y="645" width="1.3" height="15.0" fill="rgb(0,232,75)" rx="2" ry="2" /> +<text x="916.40" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1209.6" y="613" width="1.3" height="15.0" fill="rgb(0,238,58)" rx="2" ry="2" /> +<text x="1212.59" y="623.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.10%)</title><rect x="964.6" y="501" width="1.3" height="15.0" fill="rgb(0,218,73)" rx="2" ry="2" /> +<text x="967.56" y="511.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="1140.9" y="549" width="1.4" height="15.0" fill="rgb(0,226,41)" rx="2" ry="2" /> +<text x="1143.93" y="559.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (10,101,010 samples, 0.10%)</title><rect x="62.5" y="533" width="1.4" height="15.0" fill="rgb(0,214,53)" rx="2" ry="2" /> +<text x="65.51" y="543.5" ></text> +</g> +<g > +<title>__fget_light (20,202,020 samples, 0.20%)</title><rect x="43.7" y="741" width="2.7" height="15.0" fill="rgb(0,206,128)" rx="2" ry="2" /> +<text x="46.66" y="751.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.10%)</title><rect x="1025.1" y="629" width="1.4" height="15.0" fill="rgb(0,198,12)" rx="2" ry="2" /> +<text x="1028.14" y="639.5" ></text> +</g> +<g > +<title>dup_task_struct (40,404,040 samples, 0.39%)</title><rect x="36.9" y="853" width="5.4" height="15.0" fill="rgb(0,231,67)" rx="2" ry="2" /> +<text x="39.93" y="863.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.10%)</title><rect x="1161.1" y="693" width="1.4" height="15.0" fill="rgb(0,198,157)" rx="2" ry="2" /> +<text x="1164.12" y="703.5" ></text> +</g> +<g > +<title>ext4_map_blocks (20,202,020 samples, 0.20%)</title><rect x="843.4" y="469" width="2.7" height="15.0" fill="rgb(0,197,119)" rx="2" ry="2" /> +<text x="846.39" y="479.5" ></text> +</g> +<g > +<title>blk_finish_plug (10,101,010 samples, 0.10%)</title><rect x="816.5" y="485" width="1.3" height="15.0" fill="rgb(0,223,152)" rx="2" ry="2" /> +<text x="819.46" y="495.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.10%)</title><rect x="440.8" y="389" width="1.4" height="15.0" fill="rgb(0,237,37)" rx="2" ry="2" /> +<text x="443.83" y="399.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="633.4" y="613" width="1.3" height="15.0" fill="rgb(0,200,92)" rx="2" ry="2" /> +<text x="636.36" y="623.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="444.9" y="645" width="1.3" height="15.0" fill="rgb(0,222,49)" rx="2" ry="2" /> +<text x="447.87" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="991.5" y="565" width="4.0" height="15.0" fill="rgb(0,197,24)" rx="2" ry="2" /> +<text x="994.48" y="575.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="244.3" y="533" width="1.3" height="15.0" fill="rgb(0,239,186)" rx="2" ry="2" /> +<text x="247.26" y="543.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.10%)</title><rect x="998.2" y="437" width="1.4" height="15.0" fill="rgb(0,220,179)" rx="2" ry="2" /> +<text x="1001.21" y="447.5" ></text> +</g> +<g > +<title>signal_set_mask_internal (10,101,010 samples, 0.10%)</title><rect x="84.0" y="773" width="1.4" height="15.0" fill="rgb(0,204,171)" rx="2" ry="2" /> +<text x="87.05" y="783.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1196.1" y="597" width="1.4" height="15.0" fill="rgb(0,232,197)" rx="2" ry="2" /> +<text x="1199.13" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="664.3" y="677" width="1.4" height="15.0" fill="rgb(0,207,63)" rx="2" ry="2" /> +<text x="667.32" y="687.5" ></text> +</g> +<g > +<title>bvec_alloc (10,101,010 samples, 0.10%)</title><rect x="930.9" y="421" width="1.3" height="15.0" fill="rgb(0,198,130)" rx="2" ry="2" /> +<text x="933.90" y="431.5" ></text> +</g> +<g > +<title>do_writepages (20,202,020 samples, 0.20%)</title><rect x="1084.4" y="485" width="2.7" height="15.0" fill="rgb(0,230,60)" rx="2" ry="2" /> +<text x="1087.38" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 1.17%)</title><rect x="734.3" y="677" width="16.2" height="15.0" fill="rgb(0,233,191)" rx="2" ry="2" /> +<text x="737.33" y="687.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="913.4" y="725" width="1.3" height="15.0" fill="rgb(0,226,53)" rx="2" ry="2" /> +<text x="916.40" y="735.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="719.5" y="485" width="1.4" height="15.0" fill="rgb(0,223,46)" rx="2" ry="2" /> +<text x="722.52" y="495.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.10%)</title><rect x="220.0" y="549" width="1.4" height="15.0" fill="rgb(0,208,203)" rx="2" ry="2" /> +<text x="223.03" y="559.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="899.9" y="533" width="1.4" height="15.0" fill="rgb(0,220,93)" rx="2" ry="2" /> +<text x="902.93" y="543.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="834.0" y="613" width="2.7" height="15.0" fill="rgb(0,203,95)" rx="2" ry="2" /> +<text x="836.96" y="623.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="700.7" y="469" width="1.3" height="15.0" fill="rgb(0,237,82)" rx="2" ry="2" /> +<text x="703.67" y="479.5" ></text> +</g> +<g > +<title>ext4_bread (20,202,020 samples, 0.20%)</title><rect x="613.2" y="533" width="2.7" height="15.0" fill="rgb(0,210,19)" rx="2" ry="2" /> +<text x="616.16" y="543.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.10%)</title><rect x="1313.3" y="709" width="1.3" height="15.0" fill="rgb(0,213,1)" rx="2" ry="2" /> +<text x="1316.26" y="719.5" ></text> +</g> +<g > +<title>__submit_bio (10,101,010 samples, 0.10%)</title><rect x="768.0" y="405" width="1.3" height="15.0" fill="rgb(0,226,14)" rx="2" ry="2" /> +<text x="770.99" y="415.5" ></text> +</g> +<g > +<title>ext4_map_blocks (20,202,020 samples, 0.20%)</title><rect x="613.2" y="501" width="2.7" height="15.0" fill="rgb(0,238,28)" rx="2" ry="2" /> +<text x="616.16" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.49%)</title><rect x="1080.3" y="645" width="6.8" height="15.0" fill="rgb(0,206,144)" rx="2" ry="2" /> +<text x="1083.34" y="655.5" ></text> +</g> +<g > +<title>__ext4_unlink (10,101,010 samples, 0.10%)</title><rect x="982.1" y="549" width="1.3" height="15.0" fill="rgb(0,236,169)" rx="2" ry="2" /> +<text x="985.06" y="559.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (30,303,030 samples, 0.29%)</title><rect x="1380.6" y="357" width="4.0" height="15.0" fill="rgb(0,217,55)" rx="2" ry="2" /> +<text x="1383.58" y="367.5" ></text> +</g> +<g > +<title>_IO_file_overflow (10,101,010 samples, 0.10%)</title><rect x="94.8" y="789" width="1.4" height="15.0" fill="rgb(0,224,98)" rx="2" ry="2" /> +<text x="97.82" y="799.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="1003.6" y="501" width="1.3" height="15.0" fill="rgb(0,212,85)" rx="2" ry="2" /> +<text x="1006.60" y="511.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="1210.9" y="581" width="1.4" height="15.0" fill="rgb(0,218,113)" rx="2" ry="2" /> +<text x="1213.94" y="591.5" ></text> +</g> +<g > +<title>git_remote_create (424,242,420 samples, 4.10%)</title><rect x="800.3" y="789" width="56.5" height="15.0" fill="rgb(0,215,40)" rx="2" ry="2" /> +<text x="803.30" y="799.5" >git_r..</text> +</g> +<g > +<title>__x64_sys_sendto (101,010,100 samples, 0.98%)</title><rect x="11.3" y="773" width="13.5" height="15.0" fill="rgb(0,210,104)" rx="2" ry="2" /> +<text x="14.35" y="783.5" ></text> +</g> +<g > +<title>git_object_lookup_prefix (90,909,090 samples, 0.88%)</title><rect x="514.9" y="757" width="12.1" height="15.0" fill="rgb(0,230,59)" rx="2" ry="2" /> +<text x="517.88" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="483.9" y="629" width="2.7" height="15.0" fill="rgb(0,223,5)" rx="2" ry="2" /> +<text x="486.91" y="639.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="974.0" y="485" width="1.3" height="15.0" fill="rgb(0,210,111)" rx="2" ry="2" /> +<text x="976.98" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="703.4" y="565" width="1.3" height="15.0" fill="rgb(0,217,151)" rx="2" ry="2" /> +<text x="706.37" y="575.5" ></text> +</g> +<g > +<title>nf_confirm (10,101,010 samples, 0.10%)</title><rect x="1386.0" y="581" width="1.3" height="15.0" fill="rgb(0,229,164)" rx="2" ry="2" /> +<text x="1388.96" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="728.9" y="661" width="1.4" height="15.0" fill="rgb(0,224,149)" rx="2" ry="2" /> +<text x="731.95" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="986.1" y="581" width="2.7" height="15.0" fill="rgb(0,191,74)" rx="2" ry="2" /> +<text x="989.10" y="591.5" ></text> +</g> +<g > +<title>ip_queue_xmit (50,505,050 samples, 0.49%)</title><rect x="14.0" y="613" width="6.8" height="15.0" fill="rgb(0,211,163)" rx="2" ry="2" /> +<text x="17.04" y="623.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="695.3" y="517" width="1.3" height="15.0" fill="rgb(0,233,95)" rx="2" ry="2" /> +<text x="698.29" y="527.5" ></text> +</g> +<g > +<title>__close_nocancel (20,202,020 samples, 0.20%)</title><rect x="1217.7" y="677" width="2.7" height="15.0" fill="rgb(0,230,36)" rx="2" ry="2" /> +<text x="1220.67" y="687.5" ></text> +</g> +<g > +<title>tcp_recvmsg (20,202,020 samples, 0.20%)</title><rect x="1368.5" y="597" width="2.7" height="15.0" fill="rgb(0,230,158)" rx="2" ry="2" /> +<text x="1371.46" y="607.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="220.0" y="581" width="1.4" height="15.0" fill="rgb(0,237,196)" rx="2" ry="2" /> +<text x="223.03" y="591.5" ></text> +</g> +<g > +<title>do_readlinkat (10,101,010 samples, 0.10%)</title><rect x="483.9" y="597" width="1.4" height="15.0" fill="rgb(0,227,115)" rx="2" ry="2" /> +<text x="486.91" y="607.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.10%)</title><rect x="755.9" y="533" width="1.3" height="15.0" fill="rgb(0,217,63)" rx="2" ry="2" /> +<text x="758.87" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (595,959,590 samples, 5.76%)</title><rect x="920.1" y="757" width="79.5" height="15.0" fill="rgb(0,204,166)" rx="2" ry="2" /> +<text x="923.13" y="767.5" >[libgit2...</text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="458.3" y="645" width="1.4" height="15.0" fill="rgb(0,208,208)" rx="2" ry="2" /> +<text x="461.33" y="655.5" ></text> +</g> +<g > +<title>close (30,303,030 samples, 0.29%)</title><rect x="536.4" y="741" width="4.1" height="15.0" fill="rgb(0,235,15)" rx="2" ry="2" /> +<text x="539.42" y="751.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="1241.9" y="581" width="1.3" height="15.0" fill="rgb(0,238,33)" rx="2" ry="2" /> +<text x="1244.90" y="591.5" ></text> +</g> +<g > +<title>mb_find_order_for_block (20,202,020 samples, 0.20%)</title><rect x="1150.4" y="469" width="2.6" height="15.0" fill="rgb(0,220,9)" rx="2" ry="2" /> +<text x="1153.35" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="887.8" y="613" width="2.7" height="15.0" fill="rgb(0,221,13)" rx="2" ry="2" /> +<text x="890.81" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="545.8" y="677" width="2.7" height="15.0" fill="rgb(0,196,4)" rx="2" ry="2" /> +<text x="548.84" y="687.5" ></text> +</g> +<g > +<title>ext4_create (10,101,010 samples, 0.10%)</title><rect x="1003.6" y="549" width="1.3" height="15.0" fill="rgb(0,194,38)" rx="2" ry="2" /> +<text x="1006.60" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.98%)</title><rect x="808.4" y="677" width="13.4" height="15.0" fill="rgb(0,193,174)" rx="2" ry="2" /> +<text x="811.38" y="687.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.10%)</title><rect x="423.3" y="645" width="1.4" height="15.0" fill="rgb(0,211,29)" rx="2" ry="2" /> +<text x="426.33" y="655.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (50,505,050 samples, 0.49%)</title><rect x="815.1" y="533" width="6.7" height="15.0" fill="rgb(0,201,204)" rx="2" ry="2" /> +<text x="818.11" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="863.6" y="565" width="1.3" height="15.0" fill="rgb(0,209,55)" rx="2" ry="2" /> +<text x="866.58" y="575.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.10%)</title><rect x="882.4" y="517" width="1.4" height="15.0" fill="rgb(0,209,4)" rx="2" ry="2" /> +<text x="885.43" y="527.5" ></text> +</g> +<g > +<title>sock_close (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="693" width="2.6" height="15.0" fill="rgb(0,215,173)" rx="2" ry="2" /> +<text x="1336.45" y="703.5" ></text> +</g> +<g > +<title>alloc_inode (10,101,010 samples, 0.10%)</title><rect x="572.8" y="533" width="1.3" height="15.0" fill="rgb(0,216,35)" rx="2" ry="2" /> +<text x="575.77" y="543.5" ></text> +</g> +<g > +<title>git_config_open_default (80,808,080 samples, 0.78%)</title><rect x="1163.8" y="757" width="10.8" height="15.0" fill="rgb(0,224,5)" rx="2" ry="2" /> +<text x="1166.81" y="767.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (10,101,010 samples, 0.10%)</title><rect x="440.8" y="597" width="1.4" height="15.0" fill="rgb(0,208,75)" rx="2" ry="2" /> +<text x="443.83" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="423.3" y="693" width="5.4" height="15.0" fill="rgb(0,197,101)" rx="2" ry="2" /> +<text x="426.33" y="703.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="268.5" y="501" width="1.3" height="15.0" fill="rgb(0,204,75)" rx="2" ry="2" /> +<text x="271.50" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="401.8" y="725" width="2.7" height="15.0" fill="rgb(0,226,11)" rx="2" ry="2" /> +<text x="404.79" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (10,101,010 samples, 0.10%)</title><rect x="405.8" y="725" width="1.4" height="15.0" fill="rgb(0,221,105)" rx="2" ry="2" /> +<text x="408.82" y="735.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.10%)</title><rect x="172.9" y="805" width="1.4" height="15.0" fill="rgb(0,199,168)" rx="2" ry="2" /> +<text x="175.91" y="815.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="447.6" y="597" width="1.3" height="15.0" fill="rgb(0,193,71)" rx="2" ry="2" /> +<text x="450.56" y="607.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.10%)</title><rect x="478.5" y="661" width="1.4" height="15.0" fill="rgb(0,225,8)" rx="2" ry="2" /> +<text x="481.53" y="671.5" ></text> +</g> +<g > +<title>generic_perform_write (40,404,040 samples, 0.39%)</title><rect x="1095.2" y="501" width="5.3" height="15.0" fill="rgb(0,226,136)" rx="2" ry="2" /> +<text x="1098.15" y="511.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.10%)</title><rect x="980.7" y="533" width="1.4" height="15.0" fill="rgb(0,230,147)" rx="2" ry="2" /> +<text x="983.71" y="543.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="782.8" y="613" width="1.3" height="15.0" fill="rgb(0,190,27)" rx="2" ry="2" /> +<text x="785.80" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="514.9" y="661" width="8.1" height="15.0" fill="rgb(0,209,185)" rx="2" ry="2" /> +<text x="517.88" y="671.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="443.5" y="597" width="1.4" height="15.0" fill="rgb(0,195,85)" rx="2" ry="2" /> +<text x="446.52" y="607.5" ></text> +</g> +<g > +<title>free_task (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="373" width="1.3" height="15.0" fill="rgb(0,227,70)" rx="2" ry="2" /> +<text x="1032.18" y="383.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1210.9" y="645" width="1.4" height="15.0" fill="rgb(0,192,66)" rx="2" ry="2" /> +<text x="1213.94" y="655.5" ></text> +</g> +<g > +<title>find_get_pages_range (10,101,010 samples, 0.10%)</title><rect x="933.6" y="469" width="1.3" height="15.0" fill="rgb(0,210,122)" rx="2" ry="2" /> +<text x="936.59" y="479.5" ></text> +</g> +<g > +<title>__submit_bio (10,101,010 samples, 0.10%)</title><rect x="842.0" y="437" width="1.4" height="15.0" fill="rgb(0,229,49)" rx="2" ry="2" /> +<text x="845.04" y="447.5" ></text> +</g> +<g > +<title>tcp_time_wait (20,202,020 samples, 0.20%)</title><rect x="69.2" y="101" width="2.7" height="15.0" fill="rgb(0,191,32)" rx="2" ry="2" /> +<text x="72.24" y="111.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="454.3" y="581" width="2.7" height="15.0" fill="rgb(0,195,186)" rx="2" ry="2" /> +<text x="457.29" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (50,505,050 samples, 0.49%)</title><rect x="213.3" y="565" width="6.7" height="15.0" fill="rgb(0,206,145)" rx="2" ry="2" /> +<text x="216.30" y="575.5" ></text> +</g> +<g > +<title>rm_rf (1,626,262,610 samples, 15.71%)</title><rect x="201.2" y="837" width="216.7" height="15.0" fill="rgb(0,191,188)" rx="2" ry="2" /> +<text x="204.18" y="847.5" >rm_rf</text> +</g> +<g > +<title>getname (10,101,010 samples, 0.10%)</title><rect x="238.9" y="613" width="1.3" height="15.0" fill="rgb(0,197,6)" rx="2" ry="2" /> +<text x="241.88" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="417.9" y="757" width="2.7" height="15.0" fill="rgb(0,222,64)" rx="2" ry="2" /> +<text x="420.94" y="767.5" ></text> +</g> +<g > +<title>vfs_unlink (50,505,050 samples, 0.49%)</title><rect x="251.0" y="565" width="6.7" height="15.0" fill="rgb(0,194,161)" rx="2" ry="2" /> +<text x="254.00" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (242,424,240 samples, 2.34%)</title><rect x="672.4" y="725" width="32.3" height="15.0" fill="rgb(0,203,113)" rx="2" ry="2" /> +<text x="675.40" y="735.5" >[l..</text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="708.8" y="565" width="1.3" height="15.0" fill="rgb(0,200,74)" rx="2" ry="2" /> +<text x="711.75" y="575.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1215.0" y="469" width="1.3" height="15.0" fill="rgb(0,213,44)" rx="2" ry="2" /> +<text x="1217.98" y="479.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="356.0" y="485" width="1.4" height="15.0" fill="rgb(0,225,48)" rx="2" ry="2" /> +<text x="359.01" y="495.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="688.6" y="453" width="1.3" height="15.0" fill="rgb(0,199,208)" rx="2" ry="2" /> +<text x="691.56" y="463.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (20,202,020 samples, 0.20%)</title><rect x="638.7" y="597" width="2.7" height="15.0" fill="rgb(0,200,18)" rx="2" ry="2" /> +<text x="641.74" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="391.0" y="741" width="1.4" height="15.0" fill="rgb(0,195,0)" rx="2" ry="2" /> +<text x="394.01" y="751.5" ></text> +</g> +<g > +<title>clear_huge_page (10,101,010 samples, 0.10%)</title><rect x="80.0" y="661" width="1.4" height="15.0" fill="rgb(0,234,166)" rx="2" ry="2" /> +<text x="83.01" y="671.5" ></text> +</g> +<g > +<title>ext4_rmdir.part.0 (20,202,020 samples, 0.20%)</title><rect x="407.2" y="645" width="2.7" height="15.0" fill="rgb(0,233,162)" rx="2" ry="2" /> +<text x="410.17" y="655.5" ></text> +</g> +<g > +<title>revert_creds (10,101,010 samples, 0.10%)</title><rect x="1069.6" y="597" width="1.3" height="15.0" fill="rgb(0,191,208)" rx="2" ry="2" /> +<text x="1072.57" y="607.5" ></text> +</g> +<g > +<title>anon_vma_interval_tree_insert (20,202,020 samples, 0.20%)</title><rect x="1268.8" y="613" width="2.7" height="15.0" fill="rgb(0,215,9)" rx="2" ry="2" /> +<text x="1271.83" y="623.5" ></text> +</g> +<g > +<title>ext4_delete_entry (20,202,020 samples, 0.20%)</title><rect x="255.0" y="517" width="2.7" height="15.0" fill="rgb(0,196,9)" rx="2" ry="2" /> +<text x="258.03" y="527.5" ></text> +</g> +<g > +<title>iterate_dir (40,404,040 samples, 0.39%)</title><rect x="613.2" y="629" width="5.3" height="15.0" fill="rgb(0,217,179)" rx="2" ry="2" /> +<text x="616.16" y="639.5" ></text> +</g> +<g > +<title>lockref_get (10,101,010 samples, 0.10%)</title><rect x="136.6" y="757" width="1.3" height="15.0" fill="rgb(0,199,60)" rx="2" ry="2" /> +<text x="139.56" y="767.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="1208.2" y="629" width="1.4" height="15.0" fill="rgb(0,204,29)" rx="2" ry="2" /> +<text x="1211.24" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="531.0" y="757" width="5.4" height="15.0" fill="rgb(0,211,183)" rx="2" ry="2" /> +<text x="534.03" y="767.5" ></text> +</g> +<g > +<title>vfs_link (20,202,020 samples, 0.20%)</title><rect x="601.0" y="613" width="2.7" height="15.0" fill="rgb(0,195,165)" rx="2" ry="2" /> +<text x="604.04" y="623.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="327.7" y="709" width="2.7" height="15.0" fill="rgb(0,228,18)" rx="2" ry="2" /> +<text x="330.74" y="719.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="500.1" y="709" width="1.3" height="15.0" fill="rgb(0,231,165)" rx="2" ry="2" /> +<text x="503.07" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="901.3" y="597" width="1.3" height="15.0" fill="rgb(0,232,101)" rx="2" ry="2" /> +<text x="904.28" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="516.2" y="597" width="1.4" height="15.0" fill="rgb(0,212,103)" rx="2" ry="2" /> +<text x="519.22" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="800.3" y="677" width="1.3" height="15.0" fill="rgb(0,193,11)" rx="2" ry="2" /> +<text x="803.30" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.39%)</title><rect x="1313.3" y="805" width="5.3" height="15.0" fill="rgb(0,195,105)" rx="2" ry="2" /> +<text x="1316.26" y="815.5" ></text> +</g> +<g > +<title>ext4_alloc_inode (20,202,020 samples, 0.20%)</title><rect x="154.1" y="709" width="2.7" height="15.0" fill="rgb(0,199,173)" rx="2" ry="2" /> +<text x="157.06" y="719.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="688.6" y="405" width="1.3" height="15.0" fill="rgb(0,227,11)" rx="2" ry="2" /> +<text x="691.56" y="415.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.39%)</title><rect x="676.4" y="597" width="5.4" height="15.0" fill="rgb(0,230,38)" rx="2" ry="2" /> +<text x="679.44" y="607.5" ></text> +</g> +<g > +<title>__handle_mm_fault (10,101,010 samples, 0.10%)</title><rect x="1105.9" y="597" width="1.4" height="15.0" fill="rgb(0,201,6)" rx="2" ry="2" /> +<text x="1108.92" y="607.5" ></text> +</g> +<g > +<title>tcp_send_ack (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="645" width="2.7" height="15.0" fill="rgb(0,203,13)" rx="2" ry="2" /> +<text x="1341.84" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="1034.6" y="693" width="2.7" height="15.0" fill="rgb(0,217,43)" rx="2" ry="2" /> +<text x="1037.57" y="703.5" ></text> +</g> +<g > +<title>__check_heap_object (10,101,010 samples, 0.10%)</title><rect x="895.9" y="485" width="1.3" height="15.0" fill="rgb(0,231,181)" rx="2" ry="2" /> +<text x="898.89" y="495.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="700.7" y="517" width="1.3" height="15.0" fill="rgb(0,223,112)" rx="2" ry="2" /> +<text x="703.67" y="527.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="759.9" y="501" width="1.4" height="15.0" fill="rgb(0,197,38)" rx="2" ry="2" /> +<text x="762.91" y="511.5" ></text> +</g> +<g > +<title>worker_do_run (8,727,272,640 samples, 84.29%)</title><rect x="189.1" y="885" width="1163.2" height="15.0" fill="rgb(0,190,99)" rx="2" ry="2" /> +<text x="192.06" y="895.5" >worker_do_run</text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="924.2" y="677" width="1.3" height="15.0" fill="rgb(0,219,172)" rx="2" ry="2" /> +<text x="927.17" y="687.5" ></text> +</g> +<g > +<title>__connect (101,010,100 samples, 0.98%)</title><rect x="1336.1" y="853" width="13.5" height="15.0" fill="rgb(0,214,78)" rx="2" ry="2" /> +<text x="1339.15" y="863.5" ></text> +</g> +<g > +<title>__schedule (60,606,060 samples, 0.59%)</title><rect x="46.4" y="709" width="8.0" height="15.0" fill="rgb(0,223,27)" rx="2" ry="2" /> +<text x="49.35" y="719.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.10%)</title><rect x="207.9" y="549" width="1.4" height="15.0" fill="rgb(0,208,209)" rx="2" ry="2" /> +<text x="210.91" y="559.5" ></text> +</g> +<g > +<title>readdir64 (60,606,060 samples, 0.59%)</title><rect x="611.8" y="709" width="8.1" height="15.0" fill="rgb(0,196,24)" rx="2" ry="2" /> +<text x="614.81" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="999.6" y="757" width="1.3" height="15.0" fill="rgb(0,222,15)" rx="2" ry="2" /> +<text x="1002.56" y="767.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="718.2" y="533" width="2.7" height="15.0" fill="rgb(0,218,129)" rx="2" ry="2" /> +<text x="721.18" y="543.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.10%)</title><rect x="882.4" y="501" width="1.4" height="15.0" fill="rgb(0,236,121)" rx="2" ry="2" /> +<text x="885.43" y="511.5" ></text> +</g> +<g > +<title>inode_free_by_rcu (10,101,010 samples, 0.10%)</title><rect x="788.2" y="501" width="1.3" height="15.0" fill="rgb(0,227,74)" rx="2" ry="2" /> +<text x="791.19" y="511.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="1163.8" y="645" width="1.4" height="15.0" fill="rgb(0,235,27)" rx="2" ry="2" /> +<text x="1166.81" y="655.5" ></text> +</g> +<g > +<title>inet_release (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="661" width="1.4" height="15.0" fill="rgb(0,210,74)" rx="2" ry="2" /> +<text x="1379.54" y="671.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="1076.3" y="437" width="1.3" height="15.0" fill="rgb(0,229,19)" rx="2" ry="2" /> +<text x="1079.30" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1021.1" y="693" width="1.3" height="15.0" fill="rgb(0,237,87)" rx="2" ry="2" /> +<text x="1024.10" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (60,606,060 samples, 0.59%)</title><rect x="202.5" y="645" width="8.1" height="15.0" fill="rgb(0,204,0)" rx="2" ry="2" /> +<text x="205.53" y="655.5" ></text> +</g> +<g > +<title>do_renameat2 (101,010,100 samples, 0.98%)</title><rect x="808.4" y="629" width="13.4" height="15.0" fill="rgb(0,227,208)" rx="2" ry="2" /> +<text x="811.38" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="1017.1" y="485" width="1.3" height="15.0" fill="rgb(0,216,164)" rx="2" ry="2" /> +<text x="1020.06" y="495.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="1158.4" y="581" width="1.4" height="15.0" fill="rgb(0,239,64)" rx="2" ry="2" /> +<text x="1161.43" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1243.2" y="629" width="1.4" height="15.0" fill="rgb(0,215,60)" rx="2" ry="2" /> +<text x="1246.25" y="639.5" ></text> +</g> +<g > +<title>git_repository__cleanup (10,101,010 samples, 0.10%)</title><rect x="910.7" y="725" width="1.3" height="15.0" fill="rgb(0,239,24)" rx="2" ry="2" /> +<text x="913.70" y="735.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.10%)</title><rect x="687.2" y="389" width="1.4" height="15.0" fill="rgb(0,230,58)" rx="2" ry="2" /> +<text x="690.21" y="399.5" ></text> +</g> +<g > +<title>__fget_light (10,101,010 samples, 0.10%)</title><rect x="222.7" y="581" width="1.4" height="15.0" fill="rgb(0,198,79)" rx="2" ry="2" /> +<text x="225.72" y="591.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.10%)</title><rect x="1163.8" y="661" width="1.4" height="15.0" fill="rgb(0,215,191)" rx="2" ry="2" /> +<text x="1166.81" y="671.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="782.8" y="533" width="1.3" height="15.0" fill="rgb(0,236,189)" rx="2" ry="2" /> +<text x="785.80" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.10%)</title><rect x="700.7" y="597" width="1.3" height="15.0" fill="rgb(0,209,109)" rx="2" ry="2" /> +<text x="703.67" y="607.5" ></text> +</g> +<g > +<title>__do_sys_clone3 (90,909,090 samples, 0.88%)</title><rect x="31.5" y="901" width="12.2" height="15.0" fill="rgb(0,221,155)" rx="2" ry="2" /> +<text x="34.54" y="911.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="160.8" y="645" width="1.3" height="15.0" fill="rgb(0,191,22)" rx="2" ry="2" /> +<text x="163.79" y="655.5" ></text> +</g> +<g > +<title>__open64_nocancel (10,101,010 samples, 0.10%)</title><rect x="664.3" y="725" width="1.4" height="15.0" fill="rgb(0,204,191)" rx="2" ry="2" /> +<text x="667.32" y="735.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.20%)</title><rect x="850.1" y="533" width="2.7" height="15.0" fill="rgb(0,237,194)" rx="2" ry="2" /> +<text x="853.12" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="493.3" y="549" width="1.4" height="15.0" fill="rgb(0,219,45)" rx="2" ry="2" /> +<text x="496.34" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="677" width="1.4" height="15.0" fill="rgb(0,212,199)" rx="2" ry="2" /> +<text x="1207.20" y="687.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (30,303,030 samples, 0.29%)</title><rect x="1305.2" y="629" width="4.0" height="15.0" fill="rgb(0,229,162)" rx="2" ry="2" /> +<text x="1308.18" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="543.2" y="677" width="2.6" height="15.0" fill="rgb(0,227,141)" rx="2" ry="2" /> +<text x="546.15" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="873.0" y="565" width="1.4" height="15.0" fill="rgb(0,219,84)" rx="2" ry="2" /> +<text x="876.00" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="805.7" y="629" width="1.3" height="15.0" fill="rgb(0,215,104)" rx="2" ry="2" /> +<text x="808.69" y="639.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.10%)</title><rect x="1013.0" y="597" width="1.4" height="15.0" fill="rgb(0,209,53)" rx="2" ry="2" /> +<text x="1016.02" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.88%)</title><rect x="1237.9" y="757" width="12.1" height="15.0" fill="rgb(0,229,129)" rx="2" ry="2" /> +<text x="1240.86" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (40,404,040 samples, 0.39%)</title><rect x="242.9" y="629" width="5.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="245.92" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (313,131,310 samples, 3.02%)</title><rect x="422.0" y="773" width="41.7" height="15.0" fill="rgb(0,227,76)" rx="2" ry="2" /> +<text x="424.98" y="783.5" >[li..</text> +</g> +<g > +<title>__mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="314.3" y="421" width="2.7" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" /> +<text x="317.27" y="431.5" ></text> +</g> +<g > +<title>__ext4_new_inode (30,303,030 samples, 0.29%)</title><rect x="1136.9" y="629" width="4.0" height="15.0" fill="rgb(0,226,81)" rx="2" ry="2" /> +<text x="1139.89" y="639.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="481.2" y="613" width="1.4" height="15.0" fill="rgb(0,226,143)" rx="2" ry="2" /> +<text x="484.22" y="623.5" ></text> +</g> +<g > +<title>ext4_orphan_add (10,101,010 samples, 0.10%)</title><rect x="848.8" y="565" width="1.3" height="15.0" fill="rgb(0,213,37)" rx="2" ry="2" /> +<text x="851.77" y="575.5" ></text> +</g> +<g > +<title>remove (80,808,080 samples, 0.78%)</title><rect x="248.3" y="661" width="10.8" height="15.0" fill="rgb(0,218,69)" rx="2" ry="2" /> +<text x="251.30" y="671.5" ></text> +</g> +<g > +<title>mempool_alloc_slab (10,101,010 samples, 0.10%)</title><rect x="930.9" y="389" width="1.3" height="15.0" fill="rgb(0,214,196)" rx="2" ry="2" /> +<text x="933.90" y="399.5" ></text> +</g> +<g > +<title>tcp_sendmsg_locked (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="661" width="5.4" height="15.0" fill="rgb(0,196,84)" rx="2" ry="2" /> +<text x="1331.07" y="671.5" ></text> +</g> +<g > +<title>do_rmdir (373,737,370 samples, 3.61%)</title><rect x="275.2" y="597" width="49.8" height="15.0" fill="rgb(0,232,67)" rx="2" ry="2" /> +<text x="278.23" y="607.5" >do_rm..</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="626.6" y="645" width="5.4" height="15.0" fill="rgb(0,232,127)" rx="2" ry="2" /> +<text x="629.62" y="655.5" ></text> +</g> +<g > +<title>git_config_add_backend (50,505,050 samples, 0.49%)</title><rect x="1167.9" y="725" width="6.7" height="15.0" fill="rgb(0,216,55)" rx="2" ry="2" /> +<text x="1170.85" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1056.1" y="725" width="1.4" height="15.0" fill="rgb(0,222,39)" rx="2" ry="2" /> +<text x="1059.11" y="735.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="1247.3" y="565" width="1.3" height="15.0" fill="rgb(0,231,62)" rx="2" ry="2" /> +<text x="1250.29" y="575.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.10%)</title><rect x="405.8" y="693" width="1.4" height="15.0" fill="rgb(0,212,101)" rx="2" ry="2" /> +<text x="408.82" y="703.5" ></text> +</g> +<g > +<title>ext4_free_blocks (80,808,080 samples, 0.78%)</title><rect x="310.2" y="437" width="10.8" height="15.0" fill="rgb(0,191,97)" rx="2" ry="2" /> +<text x="313.23" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1101.9" y="629" width="1.3" height="15.0" fill="rgb(0,213,35)" rx="2" ry="2" /> +<text x="1104.88" y="639.5" ></text> +</g> +<g > +<title>key_put (10,101,010 samples, 0.10%)</title><rect x="1069.6" y="549" width="1.3" height="15.0" fill="rgb(0,207,141)" rx="2" ry="2" /> +<text x="1072.57" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="629.3" y="597" width="1.4" height="15.0" fill="rgb(0,210,169)" rx="2" ry="2" /> +<text x="632.32" y="607.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="437" width="1.3" height="15.0" fill="rgb(0,210,17)" rx="2" ry="2" /> +<text x="1337.80" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="85.4" y="789" width="1.3" height="15.0" fill="rgb(0,205,207)" rx="2" ry="2" /> +<text x="88.40" y="799.5" ></text> +</g> +<g > +<title>do_syscall_64 (101,010,100 samples, 0.98%)</title><rect x="370.8" y="677" width="13.5" height="15.0" fill="rgb(0,233,6)" rx="2" ry="2" /> +<text x="373.82" y="687.5" ></text> +</g> +<g > +<title>evict (10,101,010 samples, 0.10%)</title><rect x="409.9" y="645" width="1.3" height="15.0" fill="rgb(0,200,75)" rx="2" ry="2" /> +<text x="412.86" y="655.5" ></text> +</g> +<g > +<title>process_backlog (30,303,030 samples, 0.29%)</title><rect x="1328.1" y="389" width="4.0" height="15.0" fill="rgb(0,191,10)" rx="2" ry="2" /> +<text x="1331.07" y="399.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (50,505,050 samples, 0.49%)</title><rect x="1380.6" y="693" width="6.7" height="15.0" fill="rgb(0,210,172)" rx="2" ry="2" /> +<text x="1383.58" y="703.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.10%)</title><rect x="385.6" y="581" width="1.4" height="15.0" fill="rgb(0,199,122)" rx="2" ry="2" /> +<text x="388.63" y="591.5" ></text> +</g> +<g > +<title>pcre_compile2 (10,101,010 samples, 0.10%)</title><rect x="823.2" y="725" width="1.3" height="15.0" fill="rgb(0,239,127)" rx="2" ry="2" /> +<text x="826.19" y="735.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="811.1" y="501" width="1.3" height="15.0" fill="rgb(0,226,135)" rx="2" ry="2" /> +<text x="814.07" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="739.7" y="597" width="1.4" height="15.0" fill="rgb(0,199,121)" rx="2" ry="2" /> +<text x="742.72" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (484,848,480 samples, 4.68%)</title><rect x="109.6" y="933" width="64.7" height="15.0" fill="rgb(0,235,40)" rx="2" ry="2" /> +<text x="112.63" y="943.5" >[libgit..</text> +</g> +<g > +<title>file_close (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="853" width="2.6" height="15.0" fill="rgb(0,204,184)" rx="2" ry="2" /> +<text x="1336.45" y="863.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="1241.9" y="565" width="1.3" height="15.0" fill="rgb(0,217,78)" rx="2" ry="2" /> +<text x="1244.90" y="575.5" ></text> +</g> +<g > +<title>vfs_getattr_nosec (10,101,010 samples, 0.10%)</title><rect x="1177.3" y="613" width="1.3" height="15.0" fill="rgb(0,191,4)" rx="2" ry="2" /> +<text x="1180.28" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="483.9" y="677" width="2.7" height="15.0" fill="rgb(0,233,156)" rx="2" ry="2" /> +<text x="486.91" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.88%)</title><rect x="1044.0" y="709" width="12.1" height="15.0" fill="rgb(0,210,112)" rx="2" ry="2" /> +<text x="1046.99" y="719.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.10%)</title><rect x="172.9" y="837" width="1.4" height="15.0" fill="rgb(0,239,148)" rx="2" ry="2" /> +<text x="175.91" y="847.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="735.7" y="613" width="2.7" height="15.0" fill="rgb(0,220,20)" rx="2" ry="2" /> +<text x="738.68" y="623.5" ></text> +</g> +<g > +<title>d_lookup (10,101,010 samples, 0.10%)</title><rect x="248.3" y="533" width="1.3" height="15.0" fill="rgb(0,216,179)" rx="2" ry="2" /> +<text x="251.30" y="543.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.10%)</title><rect x="862.2" y="501" width="1.4" height="15.0" fill="rgb(0,219,138)" rx="2" ry="2" /> +<text x="865.23" y="511.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (10,101,010 samples, 0.10%)</title><rect x="283.3" y="517" width="1.4" height="15.0" fill="rgb(0,197,66)" rx="2" ry="2" /> +<text x="286.31" y="527.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="708.8" y="517" width="1.3" height="15.0" fill="rgb(0,223,109)" rx="2" ry="2" /> +<text x="711.75" y="527.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.10%)</title><rect x="687.2" y="453" width="1.4" height="15.0" fill="rgb(0,200,49)" rx="2" ry="2" /> +<text x="690.21" y="463.5" ></text> +</g> +<g > +<title>__alloc_pages (20,202,020 samples, 0.20%)</title><rect x="1073.6" y="389" width="2.7" height="15.0" fill="rgb(0,208,192)" rx="2" ry="2" /> +<text x="1076.61" y="399.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="895.9" y="661" width="1.3" height="15.0" fill="rgb(0,208,17)" rx="2" ry="2" /> +<text x="898.89" y="671.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.10%)</title><rect x="1280.9" y="581" width="1.4" height="15.0" fill="rgb(0,239,108)" rx="2" ry="2" /> +<text x="1283.95" y="591.5" ></text> +</g> +<g > +<title>down_read_trylock (10,101,010 samples, 0.10%)</title><rect x="1302.5" y="629" width="1.3" height="15.0" fill="rgb(0,223,57)" rx="2" ry="2" /> +<text x="1305.49" y="639.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="909.4" y="629" width="1.3" height="15.0" fill="rgb(0,196,118)" rx="2" ry="2" /> +<text x="912.36" y="639.5" ></text> +</g> +<g > +<title>scsi_dma_map (10,101,010 samples, 0.10%)</title><rect x="440.8" y="277" width="1.4" height="15.0" fill="rgb(0,212,207)" rx="2" ry="2" /> +<text x="443.83" y="287.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.10%)</title><rect x="843.4" y="405" width="1.3" height="15.0" fill="rgb(0,197,91)" rx="2" ry="2" /> +<text x="846.39" y="415.5" ></text> +</g> +<g > +<title>ip_queue_xmit (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="581" width="5.4" height="15.0" fill="rgb(0,222,162)" rx="2" ry="2" /> +<text x="1331.07" y="591.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="703.4" y="533" width="1.3" height="15.0" fill="rgb(0,216,100)" rx="2" ry="2" /> +<text x="706.37" y="543.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.10%)</title><rect x="361.4" y="613" width="1.3" height="15.0" fill="rgb(0,193,141)" rx="2" ry="2" /> +<text x="364.40" y="623.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.10%)</title><rect x="1084.4" y="325" width="1.3" height="15.0" fill="rgb(0,202,21)" rx="2" ry="2" /> +<text x="1087.38" y="335.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="1377.9" y="165" width="1.3" height="15.0" fill="rgb(0,211,69)" rx="2" ry="2" /> +<text x="1380.88" y="175.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (20,202,020 samples, 0.20%)</title><rect x="843.4" y="485" width="2.7" height="15.0" fill="rgb(0,232,41)" rx="2" ry="2" /> +<text x="846.39" y="495.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="1225.7" y="565" width="1.4" height="15.0" fill="rgb(0,209,45)" rx="2" ry="2" /> +<text x="1228.75" y="575.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="905.3" y="501" width="1.4" height="15.0" fill="rgb(0,193,200)" rx="2" ry="2" /> +<text x="908.32" y="511.5" ></text> +</g> +<g > +<title>ext4_evict_inode (10,101,010 samples, 0.10%)</title><rect x="209.3" y="469" width="1.3" height="15.0" fill="rgb(0,202,65)" rx="2" ry="2" /> +<text x="212.26" y="479.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="461.0" y="501" width="1.4" height="15.0" fill="rgb(0,223,34)" rx="2" ry="2" /> +<text x="464.02" y="511.5" ></text> +</g> +<g > +<title>tasklet_action_common.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="1215.0" y="405" width="1.3" height="15.0" fill="rgb(0,212,155)" rx="2" ry="2" /> +<text x="1217.98" y="415.5" ></text> +</g> +<g > +<title>blk_flush_plug_list (30,303,030 samples, 0.29%)</title><rect x="1124.8" y="453" width="4.0" height="15.0" fill="rgb(0,199,193)" rx="2" ry="2" /> +<text x="1127.77" y="463.5" ></text> +</g> +<g > +<title>getdents64 (50,505,050 samples, 0.49%)</title><rect x="613.2" y="693" width="6.7" height="15.0" fill="rgb(0,196,205)" rx="2" ry="2" /> +<text x="616.16" y="703.5" ></text> +</g> +<g > +<title>lockref_put_return (10,101,010 samples, 0.10%)</title><rect x="135.2" y="725" width="1.4" height="15.0" fill="rgb(0,196,191)" rx="2" ry="2" /> +<text x="138.21" y="735.5" ></text> +</g> +<g > +<title>clear_page_erms (10,101,010 samples, 0.10%)</title><rect x="512.2" y="421" width="1.3" height="15.0" fill="rgb(0,225,14)" rx="2" ry="2" /> +<text x="515.19" y="431.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.10%)</title><rect x="921.5" y="629" width="1.3" height="15.0" fill="rgb(0,234,25)" rx="2" ry="2" /> +<text x="924.47" y="639.5" ></text> +</g> +<g > +<title>link (10,101,010 samples, 0.10%)</title><rect x="692.6" y="677" width="1.3" height="15.0" fill="rgb(0,234,156)" rx="2" ry="2" /> +<text x="695.60" y="687.5" ></text> +</g> +<g > +<title>vfs_write (30,303,030 samples, 0.29%)</title><rect x="685.9" y="565" width="4.0" height="15.0" fill="rgb(0,209,21)" rx="2" ry="2" /> +<text x="688.86" y="575.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.10%)</title><rect x="533.7" y="501" width="1.4" height="15.0" fill="rgb(0,196,194)" rx="2" ry="2" /> +<text x="536.73" y="511.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="980.7" y="597" width="1.4" height="15.0" fill="rgb(0,196,201)" rx="2" ry="2" /> +<text x="983.71" y="607.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.10%)</title><rect x="234.8" y="373" width="1.4" height="15.0" fill="rgb(0,219,12)" rx="2" ry="2" /> +<text x="237.84" y="383.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.10%)</title><rect x="633.4" y="581" width="1.3" height="15.0" fill="rgb(0,202,139)" rx="2" ry="2" /> +<text x="636.36" y="591.5" ></text> +</g> +<g > +<title>git_config_add_backend (20,202,020 samples, 0.20%)</title><rect x="854.2" y="725" width="2.6" height="15.0" fill="rgb(0,235,92)" rx="2" ry="2" /> +<text x="857.16" y="735.5" ></text> +</g> +<g > +<title>__indirect_thunk_start (10,101,010 samples, 0.10%)</title><rect x="877.0" y="453" width="1.4" height="15.0" fill="rgb(0,233,70)" rx="2" ry="2" /> +<text x="880.04" y="463.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.20%)</title><rect x="1224.4" y="581" width="2.7" height="15.0" fill="rgb(0,196,87)" rx="2" ry="2" /> +<text x="1227.40" y="591.5" ></text> +</g> +<g > +<title>__wake_up (10,101,010 samples, 0.10%)</title><rect x="478.5" y="405" width="1.4" height="15.0" fill="rgb(0,216,70)" rx="2" ry="2" /> +<text x="481.53" y="415.5" ></text> +</g> +<g > +<title>clear_page_erms (10,101,010 samples, 0.10%)</title><rect x="1073.6" y="357" width="1.4" height="15.0" fill="rgb(0,234,84)" rx="2" ry="2" /> +<text x="1076.61" y="367.5" ></text> +</g> +<g > +<title>json_tokener_parse_ex (10,101,010 samples, 0.10%)</title><rect x="1365.8" y="757" width="1.3" height="15.0" fill="rgb(0,209,180)" rx="2" ry="2" /> +<text x="1368.77" y="767.5" ></text> +</g> +<g > +<title>ext4fs_dirhash (10,101,010 samples, 0.10%)</title><rect x="265.8" y="533" width="1.4" height="15.0" fill="rgb(0,232,7)" rx="2" ry="2" /> +<text x="268.80" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1158.4" y="677" width="1.4" height="15.0" fill="rgb(0,229,132)" rx="2" ry="2" /> +<text x="1161.43" y="687.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="706.1" y="565" width="1.3" height="15.0" fill="rgb(0,208,164)" rx="2" ry="2" /> +<text x="709.06" y="575.5" ></text> +</g> +<g > +<title>getname (10,101,010 samples, 0.10%)</title><rect x="871.7" y="517" width="1.3" height="15.0" fill="rgb(0,222,103)" rx="2" ry="2" /> +<text x="874.66" y="527.5" ></text> +</g> +<g > +<title>kmem_cache_alloc_node (10,101,010 samples, 0.10%)</title><rect x="1387.3" y="661" width="1.4" height="15.0" fill="rgb(0,211,5)" rx="2" ry="2" /> +<text x="1390.31" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (353,535,350 samples, 3.41%)</title><rect x="417.9" y="821" width="47.2" height="15.0" fill="rgb(0,233,149)" rx="2" ry="2" /> +<text x="420.94" y="831.5" >[lib..</text> +</g> +<g > +<title>filemap_fdatawrite_wbc (10,101,010 samples, 0.10%)</title><rect x="440.8" y="565" width="1.4" height="15.0" fill="rgb(0,226,65)" rx="2" ry="2" /> +<text x="443.83" y="575.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.10%)</title><rect x="553.9" y="517" width="1.4" height="15.0" fill="rgb(0,216,122)" rx="2" ry="2" /> +<text x="556.92" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.56%)</title><rect x="422.0" y="741" width="21.5" height="15.0" fill="rgb(0,190,191)" rx="2" ry="2" /> +<text x="424.98" y="751.5" >[..</text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="645" width="1.3" height="15.0" fill="rgb(0,220,152)" rx="2" ry="2" /> +<text x="1182.97" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1185.4" y="645" width="1.3" height="15.0" fill="rgb(0,227,20)" rx="2" ry="2" /> +<text x="1188.36" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="895.9" y="629" width="1.3" height="15.0" fill="rgb(0,210,179)" rx="2" ry="2" /> +<text x="898.89" y="639.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="718.2" y="421" width="1.3" height="15.0" fill="rgb(0,197,61)" rx="2" ry="2" /> +<text x="721.18" y="431.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="947.1" y="613" width="2.6" height="15.0" fill="rgb(0,205,103)" rx="2" ry="2" /> +<text x="950.05" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="759.9" y="613" width="2.7" height="15.0" fill="rgb(0,196,173)" rx="2" ry="2" /> +<text x="762.91" y="623.5" ></text> +</g> +<g > +<title>finished_request_create (30,303,030 samples, 0.29%)</title><rect x="1318.6" y="869" width="4.1" height="15.0" fill="rgb(0,201,149)" rx="2" ry="2" /> +<text x="1321.64" y="879.5" ></text> +</g> +<g > +<title>do_faccessat (111,111,110 samples, 1.07%)</title><rect x="174.3" y="869" width="14.8" height="15.0" fill="rgb(0,192,198)" rx="2" ry="2" /> +<text x="177.25" y="879.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.10%)</title><rect x="936.3" y="581" width="1.3" height="15.0" fill="rgb(0,229,144)" rx="2" ry="2" /> +<text x="939.28" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="703.4" y="549" width="1.3" height="15.0" fill="rgb(0,232,167)" rx="2" ry="2" /> +<text x="706.37" y="559.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.10%)</title><rect x="1371.2" y="741" width="1.3" height="15.0" fill="rgb(0,212,24)" rx="2" ry="2" /> +<text x="1374.15" y="751.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="1243.2" y="597" width="1.4" height="15.0" fill="rgb(0,192,139)" rx="2" ry="2" /> +<text x="1246.25" y="607.5" ></text> +</g> +<g > +<title>alloc_inode (20,202,020 samples, 0.20%)</title><rect x="154.1" y="725" width="2.7" height="15.0" fill="rgb(0,194,166)" rx="2" ry="2" /> +<text x="157.06" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_sendto (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="741" width="5.4" height="15.0" fill="rgb(0,220,93)" rx="2" ry="2" /> +<text x="1331.07" y="751.5" ></text> +</g> +<g > +<title>ext4_file_open (10,101,010 samples, 0.10%)</title><rect x="1002.3" y="533" width="1.3" height="15.0" fill="rgb(0,191,123)" rx="2" ry="2" /> +<text x="1005.25" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="365.4" y="709" width="4.1" height="15.0" fill="rgb(0,221,43)" rx="2" ry="2" /> +<text x="368.43" y="719.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.10%)</title><rect x="595.7" y="565" width="1.3" height="15.0" fill="rgb(0,199,24)" rx="2" ry="2" /> +<text x="598.66" y="575.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (10,101,010 samples, 0.10%)</title><rect x="440.8" y="453" width="1.4" height="15.0" fill="rgb(0,194,79)" rx="2" ry="2" /> +<text x="443.83" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="887.8" y="565" width="1.4" height="15.0" fill="rgb(0,228,131)" rx="2" ry="2" /> +<text x="890.81" y="575.5" ></text> +</g> +<g > +<title>tcp_new (10,101,010 samples, 0.10%)</title><rect x="1341.5" y="533" width="1.4" height="15.0" fill="rgb(0,207,3)" rx="2" ry="2" /> +<text x="1344.53" y="543.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (50,505,050 samples, 0.49%)</title><rect x="1093.8" y="517" width="6.7" height="15.0" fill="rgb(0,225,185)" rx="2" ry="2" /> +<text x="1096.80" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.56%)</title><rect x="753.2" y="693" width="21.5" height="15.0" fill="rgb(0,236,159)" rx="2" ry="2" /> +<text x="756.18" y="703.5" >[..</text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="1080.3" y="469" width="1.4" height="15.0" fill="rgb(0,193,60)" rx="2" ry="2" /> +<text x="1083.34" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (80,808,080 samples, 0.78%)</title><rect x="764.0" y="629" width="10.7" height="15.0" fill="rgb(0,192,81)" rx="2" ry="2" /> +<text x="766.95" y="639.5" ></text> +</g> +<g > +<title>rcu_read_unlock_strict (10,101,010 samples, 0.10%)</title><rect x="1287.7" y="533" width="1.3" height="15.0" fill="rgb(0,231,30)" rx="2" ry="2" /> +<text x="1290.68" y="543.5" ></text> +</g> +<g > +<title>copy_user_generic_unrolled (10,101,010 samples, 0.10%)</title><rect x="1096.5" y="485" width="1.3" height="15.0" fill="rgb(0,237,190)" rx="2" ry="2" /> +<text x="1099.50" y="495.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.10%)</title><rect x="856.8" y="629" width="1.4" height="15.0" fill="rgb(0,198,39)" rx="2" ry="2" /> +<text x="859.85" y="639.5" ></text> +</g> +<g > +<title>vfs_mkdir (131,313,130 samples, 1.27%)</title><rect x="570.1" y="597" width="17.5" height="15.0" fill="rgb(0,231,23)" rx="2" ry="2" /> +<text x="573.08" y="607.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="405.8" y="629" width="1.4" height="15.0" fill="rgb(0,202,113)" rx="2" ry="2" /> +<text x="408.82" y="639.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="599.7" y="597" width="1.3" height="15.0" fill="rgb(0,215,126)" rx="2" ry="2" /> +<text x="602.70" y="607.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.10%)</title><rect x="1225.7" y="533" width="1.4" height="15.0" fill="rgb(0,209,171)" rx="2" ry="2" /> +<text x="1228.75" y="543.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.20%)</title><rect x="148.7" y="693" width="2.7" height="15.0" fill="rgb(0,204,160)" rx="2" ry="2" /> +<text x="151.67" y="703.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.10%)</title><rect x="42.3" y="757" width="1.4" height="15.0" fill="rgb(0,200,176)" rx="2" ry="2" /> +<text x="45.31" y="767.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="858.2" y="645" width="1.3" height="15.0" fill="rgb(0,230,20)" rx="2" ry="2" /> +<text x="861.20" y="655.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.10%)</title><rect x="766.6" y="293" width="1.4" height="15.0" fill="rgb(0,219,115)" rx="2" ry="2" /> +<text x="769.64" y="303.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="665.7" y="725" width="1.3" height="15.0" fill="rgb(0,199,56)" rx="2" ry="2" /> +<text x="668.67" y="735.5" ></text> +</g> +<g > +<title>git_config_add_backend (10,101,010 samples, 0.10%)</title><rect x="703.4" y="677" width="1.3" height="15.0" fill="rgb(0,207,44)" rx="2" ry="2" /> +<text x="706.37" y="687.5" ></text> +</g> +<g > +<title>wait_on_page_bit_common (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="405" width="1.4" height="15.0" fill="rgb(0,223,135)" rx="2" ry="2" /> +<text x="1030.83" y="415.5" ></text> +</g> +<g > +<title>security_inode_getattr (10,101,010 samples, 0.10%)</title><rect x="835.3" y="597" width="1.4" height="15.0" fill="rgb(0,198,27)" rx="2" ry="2" /> +<text x="838.31" y="607.5" ></text> +</g> +<g > +<title>net_send_buf (101,010,100 samples, 0.98%)</title><rect x="11.3" y="869" width="13.5" height="15.0" fill="rgb(0,223,55)" rx="2" ry="2" /> +<text x="14.35" y="879.5" ></text> +</g> +<g > +<title>__close_nocancel (10,101,010 samples, 0.10%)</title><rect x="874.4" y="629" width="1.3" height="15.0" fill="rgb(0,194,72)" rx="2" ry="2" /> +<text x="877.35" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,585,858,570 samples, 15.32%)</title><rect x="201.2" y="805" width="211.4" height="15.0" fill="rgb(0,228,29)" rx="2" ry="2" /> +<text x="204.18" y="815.5" >[libc.so.6]</text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="139.2" y="805" width="1.4" height="15.0" fill="rgb(0,201,84)" rx="2" ry="2" /> +<text x="142.25" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (171,717,170 samples, 1.66%)</title><rect x="1134.2" y="725" width="22.9" height="15.0" fill="rgb(0,223,86)" rx="2" ry="2" /> +<text x="1137.20" y="735.5" >e..</text> +</g> +<g > +<title>security_file_alloc (10,101,010 samples, 0.10%)</title><rect x="479.9" y="533" width="1.3" height="15.0" fill="rgb(0,235,144)" rx="2" ry="2" /> +<text x="482.87" y="543.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (10,101,010 samples, 0.10%)</title><rect x="649.5" y="469" width="1.4" height="15.0" fill="rgb(0,200,92)" rx="2" ry="2" /> +<text x="652.51" y="479.5" ></text> +</g> +<g > +<title>link (10,101,010 samples, 0.10%)</title><rect x="980.7" y="661" width="1.4" height="15.0" fill="rgb(0,206,7)" rx="2" ry="2" /> +<text x="983.71" y="671.5" ></text> +</g> +<g > +<title>open_last_lookups (10,101,010 samples, 0.10%)</title><rect x="1003.6" y="581" width="1.3" height="15.0" fill="rgb(0,217,46)" rx="2" ry="2" /> +<text x="1006.60" y="591.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (20,202,020 samples, 0.20%)</title><rect x="1031.9" y="453" width="2.7" height="15.0" fill="rgb(0,201,204)" rx="2" ry="2" /> +<text x="1034.87" y="463.5" ></text> +</g> +<g > +<title>git_config_snapshot (30,303,030 samples, 0.29%)</title><rect x="778.8" y="677" width="4.0" height="15.0" fill="rgb(0,191,155)" rx="2" ry="2" /> +<text x="781.76" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="996.9" y="693" width="2.7" height="15.0" fill="rgb(0,206,110)" rx="2" ry="2" /> +<text x="999.87" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="887.8" y="645" width="4.1" height="15.0" fill="rgb(0,219,55)" rx="2" ry="2" /> +<text x="890.81" y="655.5" ></text> +</g> +<g > +<title>sd_setup_read_write_cmnd (10,101,010 samples, 0.10%)</title><rect x="766.6" y="213" width="1.4" height="15.0" fill="rgb(0,234,50)" rx="2" ry="2" /> +<text x="769.64" y="223.5" ></text> +</g> +<g > +<title>__lookup_hash (10,101,010 samples, 0.10%)</title><rect x="248.3" y="565" width="1.3" height="15.0" fill="rgb(0,197,135)" rx="2" ry="2" /> +<text x="251.30" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="741.1" y="581" width="4.0" height="15.0" fill="rgb(0,199,100)" rx="2" ry="2" /> +<text x="744.06" y="591.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.10%)</title><rect x="1128.8" y="453" width="1.4" height="15.0" fill="rgb(0,196,80)" rx="2" ry="2" /> +<text x="1131.81" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="866.3" y="565" width="2.7" height="15.0" fill="rgb(0,195,2)" rx="2" ry="2" /> +<text x="869.27" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="887.8" y="693" width="5.4" height="15.0" fill="rgb(0,239,142)" rx="2" ry="2" /> +<text x="890.81" y="703.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="230.8" y="437" width="1.3" height="15.0" fill="rgb(0,201,138)" rx="2" ry="2" /> +<text x="233.80" y="447.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="909.4" y="613" width="1.3" height="15.0" fill="rgb(0,190,29)" rx="2" ry="2" /> +<text x="912.36" y="623.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.10%)</title><rect x="210.6" y="565" width="1.4" height="15.0" fill="rgb(0,209,144)" rx="2" ry="2" /> +<text x="213.60" y="575.5" ></text> +</g> +<g > +<title>__ip_finish_output (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="597" width="5.4" height="15.0" fill="rgb(0,219,130)" rx="2" ry="2" /> +<text x="1383.58" y="607.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="622.6" y="533" width="1.3" height="15.0" fill="rgb(0,197,75)" rx="2" ry="2" /> +<text x="625.59" y="543.5" ></text> +</g> +<g > +<title>ext4_es_insert_delayed_block (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="405" width="1.3" height="15.0" fill="rgb(0,231,28)" rx="2" ry="2" /> +<text x="1029.49" y="415.5" ></text> +</g> +<g > +<title>filename_create (10,101,010 samples, 0.10%)</title><rect x="598.4" y="613" width="1.3" height="15.0" fill="rgb(0,195,177)" rx="2" ry="2" /> +<text x="601.35" y="623.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (20,202,020 samples, 0.20%)</title><rect x="1031.9" y="501" width="2.7" height="15.0" fill="rgb(0,221,176)" rx="2" ry="2" /> +<text x="1034.87" y="511.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="419.3" y="613" width="1.3" height="15.0" fill="rgb(0,197,135)" rx="2" ry="2" /> +<text x="422.29" y="623.5" ></text> +</g> +<g > +<title>unmap_region (10,101,010 samples, 0.10%)</title><rect x="54.4" y="677" width="1.4" height="15.0" fill="rgb(0,235,68)" rx="2" ry="2" /> +<text x="57.43" y="687.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="405" width="1.3" height="15.0" fill="rgb(0,222,200)" rx="2" ry="2" /> +<text x="1337.80" y="415.5" ></text> +</g> +<g > +<title>ext4_clear_inode (10,101,010 samples, 0.10%)</title><rect x="436.8" y="517" width="1.3" height="15.0" fill="rgb(0,217,96)" rx="2" ry="2" /> +<text x="439.79" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.78%)</title><rect x="43.7" y="837" width="10.7" height="15.0" fill="rgb(0,221,132)" rx="2" ry="2" /> +<text x="46.66" y="847.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="327.7" y="597" width="1.4" height="15.0" fill="rgb(0,210,0)" rx="2" ry="2" /> +<text x="330.74" y="607.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.10%)</title><rect x="408.5" y="565" width="1.4" height="15.0" fill="rgb(0,208,59)" rx="2" ry="2" /> +<text x="411.52" y="575.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="728.9" y="613" width="1.4" height="15.0" fill="rgb(0,226,4)" rx="2" ry="2" /> +<text x="731.95" y="623.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="917.4" y="469" width="1.4" height="15.0" fill="rgb(0,236,105)" rx="2" ry="2" /> +<text x="920.43" y="479.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.10%)</title><rect x="504.1" y="581" width="1.4" height="15.0" fill="rgb(0,213,131)" rx="2" ry="2" /> +<text x="507.11" y="591.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (20,202,020 samples, 0.20%)</title><rect x="18.1" y="309" width="2.7" height="15.0" fill="rgb(0,199,161)" rx="2" ry="2" /> +<text x="21.08" y="319.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="951.1" y="485" width="1.3" height="15.0" fill="rgb(0,231,143)" rx="2" ry="2" /> +<text x="954.09" y="495.5" ></text> +</g> +<g > +<title>ima_file_check (10,101,010 samples, 0.10%)</title><rect x="664.3" y="597" width="1.4" height="15.0" fill="rgb(0,216,62)" rx="2" ry="2" /> +<text x="667.32" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1210.9" y="629" width="1.4" height="15.0" fill="rgb(0,200,162)" rx="2" ry="2" /> +<text x="1213.94" y="639.5" ></text> +</g> +<g > +<title>ext4_file_getattr (10,101,010 samples, 0.10%)</title><rect x="506.8" y="645" width="1.3" height="15.0" fill="rgb(0,238,128)" rx="2" ry="2" /> +<text x="509.80" y="655.5" ></text> +</g> +<g > +<title>git_config_add_backend (20,202,020 samples, 0.20%)</title><rect x="796.3" y="693" width="2.7" height="15.0" fill="rgb(0,193,183)" rx="2" ry="2" /> +<text x="799.26" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_rename (50,505,050 samples, 0.49%)</title><rect x="1080.3" y="613" width="6.8" height="15.0" fill="rgb(0,195,71)" rx="2" ry="2" /> +<text x="1083.34" y="623.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="728.9" y="597" width="1.4" height="15.0" fill="rgb(0,195,40)" rx="2" ry="2" /> +<text x="731.95" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="545.8" y="661" width="2.7" height="15.0" fill="rgb(0,225,198)" rx="2" ry="2" /> +<text x="548.84" y="671.5" ></text> +</g> +<g > +<title>sg_alloc_table_chained (10,101,010 samples, 0.10%)</title><rect x="766.6" y="181" width="1.4" height="15.0" fill="rgb(0,209,13)" rx="2" ry="2" /> +<text x="769.64" y="191.5" ></text> +</g> +<g > +<title>down_read_trylock (10,101,010 samples, 0.10%)</title><rect x="198.5" y="709" width="1.3" height="15.0" fill="rgb(0,222,145)" rx="2" ry="2" /> +<text x="201.49" y="719.5" ></text> +</g> +<g > +<title>ext4_orphan_add (10,101,010 samples, 0.10%)</title><rect x="1131.5" y="549" width="1.3" height="15.0" fill="rgb(0,206,127)" rx="2" ry="2" /> +<text x="1134.50" y="559.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (20,202,020 samples, 0.20%)</title><rect x="1084.4" y="501" width="2.7" height="15.0" fill="rgb(0,190,133)" rx="2" ry="2" /> +<text x="1087.38" y="511.5" ></text> +</g> +<g > +<title>git_repository_config_snapshot (40,404,040 samples, 0.39%)</title><rect x="1188.0" y="741" width="5.4" height="15.0" fill="rgb(0,200,33)" rx="2" ry="2" /> +<text x="1191.05" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="715.5" y="533" width="1.3" height="15.0" fill="rgb(0,195,46)" rx="2" ry="2" /> +<text x="718.48" y="543.5" ></text> +</g> +<g > +<title>inode_init_always (10,101,010 samples, 0.10%)</title><rect x="1017.1" y="517" width="1.3" height="15.0" fill="rgb(0,239,42)" rx="2" ry="2" /> +<text x="1020.06" y="527.5" ></text> +</g> +<g > +<title>tcp_conn_request (20,202,020 samples, 0.20%)</title><rect x="1381.9" y="293" width="2.7" height="15.0" fill="rgb(0,228,118)" rx="2" ry="2" /> +<text x="1384.92" y="303.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (30,303,030 samples, 0.29%)</title><rect x="1380.6" y="341" width="4.0" height="15.0" fill="rgb(0,216,127)" rx="2" ry="2" /> +<text x="1383.58" y="351.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="209.3" y="293" width="1.3" height="15.0" fill="rgb(0,223,105)" rx="2" ry="2" /> +<text x="212.26" y="303.5" ></text> +</g> +<g > +<title>atime_needs_update (10,101,010 samples, 0.10%)</title><rect x="788.2" y="645" width="1.3" height="15.0" fill="rgb(0,235,137)" rx="2" ry="2" /> +<text x="791.19" y="655.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="565" width="1.3" height="15.0" fill="rgb(0,214,99)" rx="2" ry="2" /> +<text x="1182.97" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="720.9" y="645" width="2.7" height="15.0" fill="rgb(0,219,203)" rx="2" ry="2" /> +<text x="723.87" y="655.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.20%)</title><rect x="672.4" y="565" width="2.7" height="15.0" fill="rgb(0,198,118)" rx="2" ry="2" /> +<text x="675.40" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="434.1" y="693" width="2.7" height="15.0" fill="rgb(0,205,101)" rx="2" ry="2" /> +<text x="437.10" y="703.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.10%)</title><rect x="224.1" y="501" width="1.3" height="15.0" fill="rgb(0,235,155)" rx="2" ry="2" /> +<text x="227.07" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="636.0" y="629" width="1.4" height="15.0" fill="rgb(0,199,83)" rx="2" ry="2" /> +<text x="639.05" y="639.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (10,101,010 samples, 0.10%)</title><rect x="929.6" y="453" width="1.3" height="15.0" fill="rgb(0,194,192)" rx="2" ry="2" /> +<text x="932.55" y="463.5" ></text> +</g> +<g > +<title>skb_clone (10,101,010 samples, 0.10%)</title><rect x="20.8" y="613" width="1.3" height="15.0" fill="rgb(0,225,167)" rx="2" ry="2" /> +<text x="23.77" y="623.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (20,202,020 samples, 0.20%)</title><rect x="1250.0" y="789" width="2.7" height="15.0" fill="rgb(0,194,53)" rx="2" ry="2" /> +<text x="1252.98" y="799.5" ></text> +</g> +<g > +<title>__fdget (20,202,020 samples, 0.20%)</title><rect x="43.7" y="757" width="2.7" height="15.0" fill="rgb(0,238,160)" rx="2" ry="2" /> +<text x="46.66" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="858.2" y="597" width="1.3" height="15.0" fill="rgb(0,211,5)" rx="2" ry="2" /> +<text x="861.20" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1189.4" y="645" width="1.3" height="15.0" fill="rgb(0,214,117)" rx="2" ry="2" /> +<text x="1192.40" y="655.5" ></text> +</g> +<g > +<title>tcp_v4_syn_recv_sock (10,101,010 samples, 0.10%)</title><rect x="1377.9" y="245" width="1.3" height="15.0" fill="rgb(0,192,48)" rx="2" ry="2" /> +<text x="1380.88" y="255.5" ></text> +</g> +<g > +<title>process_backlog (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="357" width="1.3" height="15.0" fill="rgb(0,226,6)" rx="2" ry="2" /> +<text x="1337.80" y="367.5" ></text> +</g> +<g > +<title>remove (60,606,060 samples, 0.59%)</title><rect x="392.4" y="757" width="8.0" height="15.0" fill="rgb(0,201,122)" rx="2" ry="2" /> +<text x="395.36" y="767.5" ></text> +</g> +<g > +<title>mkdir (171,717,170 samples, 1.66%)</title><rect x="1134.2" y="741" width="22.9" height="15.0" fill="rgb(0,209,36)" rx="2" ry="2" /> +<text x="1137.20" y="751.5" >m..</text> +</g> +<g > +<title>jsonrpc_notification_create (20,202,020 samples, 0.20%)</title><rect x="1318.6" y="853" width="2.7" height="15.0" fill="rgb(0,223,9)" rx="2" ry="2" /> +<text x="1321.64" y="863.5" ></text> +</g> +<g > +<title>do_writepages (20,202,020 samples, 0.20%)</title><rect x="1031.9" y="485" width="2.7" height="15.0" fill="rgb(0,193,25)" rx="2" ry="2" /> +<text x="1034.87" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.39%)</title><rect x="1352.3" y="837" width="5.4" height="15.0" fill="rgb(0,223,116)" rx="2" ry="2" /> +<text x="1355.30" y="847.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.10%)</title><rect x="610.5" y="581" width="1.3" height="15.0" fill="rgb(0,222,0)" rx="2" ry="2" /> +<text x="613.47" y="591.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.10%)</title><rect x="831.3" y="581" width="1.3" height="15.0" fill="rgb(0,207,57)" rx="2" ry="2" /> +<text x="834.27" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="474.5" y="597" width="4.0" height="15.0" fill="rgb(0,212,115)" rx="2" ry="2" /> +<text x="477.49" y="607.5" ></text> +</g> +<g > +<title>mpage_submit_page (20,202,020 samples, 0.20%)</title><rect x="930.9" y="469" width="2.7" height="15.0" fill="rgb(0,204,29)" rx="2" ry="2" /> +<text x="933.90" y="479.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (20,202,020 samples, 0.20%)</title><rect x="936.3" y="613" width="2.7" height="15.0" fill="rgb(0,191,14)" rx="2" ry="2" /> +<text x="939.28" y="623.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="109.6" y="837" width="1.4" height="15.0" fill="rgb(0,220,77)" rx="2" ry="2" /> +<text x="112.63" y="847.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="330.4" y="645" width="1.4" height="15.0" fill="rgb(0,203,129)" rx="2" ry="2" /> +<text x="333.43" y="655.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (20,202,020 samples, 0.20%)</title><rect x="1375.2" y="789" width="2.7" height="15.0" fill="rgb(0,205,158)" rx="2" ry="2" /> +<text x="1378.19" y="799.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.10%)</title><rect x="599.7" y="549" width="1.3" height="15.0" fill="rgb(0,203,92)" rx="2" ry="2" /> +<text x="602.70" y="559.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="862.2" y="597" width="1.4" height="15.0" fill="rgb(0,207,58)" rx="2" ry="2" /> +<text x="865.23" y="607.5" ></text> +</g> +<g > +<title>__socket (10,101,010 samples, 0.10%)</title><rect x="1349.6" y="853" width="1.4" height="15.0" fill="rgb(0,206,12)" rx="2" ry="2" /> +<text x="1352.61" y="863.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="864.9" y="581" width="1.4" height="15.0" fill="rgb(0,238,124)" rx="2" ry="2" /> +<text x="867.93" y="591.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.10%)</title><rect x="710.1" y="485" width="1.3" height="15.0" fill="rgb(0,201,192)" rx="2" ry="2" /> +<text x="713.10" y="495.5" ></text> +</g> +<g > +<title>do_linkat (10,101,010 samples, 0.10%)</title><rect x="692.6" y="613" width="1.3" height="15.0" fill="rgb(0,223,137)" rx="2" ry="2" /> +<text x="695.60" y="623.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="964.6" y="533" width="1.3" height="15.0" fill="rgb(0,228,154)" rx="2" ry="2" /> +<text x="967.56" y="543.5" ></text> +</g> +<g > +<title>new_inode_pseudo (10,101,010 samples, 0.10%)</title><rect x="90.8" y="677" width="1.3" height="15.0" fill="rgb(0,230,145)" rx="2" ry="2" /> +<text x="93.78" y="687.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.10%)</title><rect x="951.1" y="421" width="1.3" height="15.0" fill="rgb(0,233,150)" rx="2" ry="2" /> +<text x="954.09" y="431.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="816.5" y="181" width="1.3" height="15.0" fill="rgb(0,238,148)" rx="2" ry="2" /> +<text x="819.46" y="191.5" ></text> +</g> +<g > +<title>copy_page_from_iter_atomic (10,101,010 samples, 0.10%)</title><rect x="1048.0" y="565" width="1.4" height="15.0" fill="rgb(0,204,10)" rx="2" ry="2" /> +<text x="1051.03" y="575.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.10%)</title><rect x="42.3" y="741" width="1.4" height="15.0" fill="rgb(0,191,9)" rx="2" ry="2" /> +<text x="45.31" y="751.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.10%)</title><rect x="633.4" y="549" width="1.3" height="15.0" fill="rgb(0,196,179)" rx="2" ry="2" /> +<text x="636.36" y="559.5" ></text> +</g> +<g > +<title>dentry_kill (50,505,050 samples, 0.49%)</title><rect x="646.8" y="581" width="6.8" height="15.0" fill="rgb(0,200,107)" rx="2" ry="2" /> +<text x="649.82" y="591.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.10%)</title><rect x="479.9" y="549" width="1.3" height="15.0" fill="rgb(0,233,168)" rx="2" ry="2" /> +<text x="482.87" y="559.5" ></text> +</g> +<g > +<title>ip_local_deliver (10,101,010 samples, 0.10%)</title><rect x="1377.9" y="341" width="1.3" height="15.0" fill="rgb(0,209,193)" rx="2" ry="2" /> +<text x="1380.88" y="351.5" ></text> +</g> +<g > +<title>tzset (20,202,020 samples, 0.20%)</title><rect x="461.0" y="725" width="2.7" height="15.0" fill="rgb(0,222,49)" rx="2" ry="2" /> +<text x="464.02" y="735.5" ></text> +</g> +<g > +<title>filp_close (20,202,020 samples, 0.20%)</title><rect x="536.4" y="661" width="2.7" height="15.0" fill="rgb(0,231,120)" rx="2" ry="2" /> +<text x="539.42" y="671.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (20,202,020 samples, 0.20%)</title><rect x="1316.0" y="741" width="2.6" height="15.0" fill="rgb(0,217,2)" rx="2" ry="2" /> +<text x="1318.95" y="751.5" ></text> +</g> +<g > +<title>__dentry_kill (10,101,010 samples, 0.10%)</title><rect x="322.4" y="533" width="1.3" height="15.0" fill="rgb(0,225,10)" rx="2" ry="2" /> +<text x="325.35" y="543.5" ></text> +</g> +<g > +<title>__page_cache_alloc (20,202,020 samples, 0.20%)</title><rect x="1073.6" y="421" width="2.7" height="15.0" fill="rgb(0,218,105)" rx="2" ry="2" /> +<text x="1076.61" y="431.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.10%)</title><rect x="42.3" y="837" width="1.4" height="15.0" fill="rgb(0,208,121)" rx="2" ry="2" /> +<text x="45.31" y="847.5" ></text> +</g> +<g > +<title>git_branch_upstream_remote (20,202,020 samples, 0.20%)</title><rect x="939.0" y="741" width="2.7" height="15.0" fill="rgb(0,237,133)" rx="2" ry="2" /> +<text x="941.98" y="751.5" ></text> +</g> +<g > +<title>dup_mmap (292,929,290 samples, 2.83%)</title><rect x="1260.8" y="661" width="39.0" height="15.0" fill="rgb(0,211,112)" rx="2" ry="2" /> +<text x="1263.75" y="671.5" >dup..</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="548.5" y="789" width="4.1" height="15.0" fill="rgb(0,196,130)" rx="2" ry="2" /> +<text x="551.54" y="799.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (90,909,090 samples, 0.88%)</title><rect x="308.9" y="485" width="12.1" height="15.0" fill="rgb(0,235,54)" rx="2" ry="2" /> +<text x="311.89" y="495.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="353.3" y="485" width="1.4" height="15.0" fill="rgb(0,212,47)" rx="2" ry="2" /> +<text x="356.32" y="495.5" ></text> +</g> +<g > +<title>getdents64 (40,404,040 samples, 0.39%)</title><rect x="222.7" y="645" width="5.4" height="15.0" fill="rgb(0,233,43)" rx="2" ry="2" /> +<text x="225.72" y="655.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (20,202,020 samples, 0.20%)</title><rect x="233.5" y="453" width="2.7" height="15.0" fill="rgb(0,204,40)" rx="2" ry="2" /> +<text x="236.49" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="774.7" y="645" width="2.7" height="15.0" fill="rgb(0,192,165)" rx="2" ry="2" /> +<text x="777.72" y="655.5" ></text> +</g> +<g > +<title>crc_57 (10,101,010 samples, 0.10%)</title><rect x="963.2" y="453" width="1.4" height="15.0" fill="rgb(0,211,79)" rx="2" ry="2" /> +<text x="966.21" y="463.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="27.5" y="805" width="1.3" height="15.0" fill="rgb(0,196,41)" rx="2" ry="2" /> +<text x="30.50" y="815.5" ></text> +</g> +<g > +<title>ip_rcv (50,505,050 samples, 0.49%)</title><rect x="65.2" y="245" width="6.7" height="15.0" fill="rgb(0,217,41)" rx="2" ry="2" /> +<text x="68.20" y="255.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="882.4" y="549" width="1.4" height="15.0" fill="rgb(0,218,37)" rx="2" ry="2" /> +<text x="885.43" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.88%)</title><rect x="1193.4" y="757" width="12.2" height="15.0" fill="rgb(0,209,146)" rx="2" ry="2" /> +<text x="1196.43" y="767.5" ></text> +</g> +<g > +<title>__ext4_journal_get_create_access (10,101,010 samples, 0.10%)</title><rect x="1142.3" y="565" width="1.3" height="15.0" fill="rgb(0,219,122)" rx="2" ry="2" /> +<text x="1145.27" y="575.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.10%)</title><rect x="794.9" y="693" width="1.4" height="15.0" fill="rgb(0,229,6)" rx="2" ry="2" /> +<text x="797.92" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="715.5" y="693" width="5.4" height="15.0" fill="rgb(0,238,98)" rx="2" ry="2" /> +<text x="718.48" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="790.9" y="629" width="1.3" height="15.0" fill="rgb(0,193,192)" rx="2" ry="2" /> +<text x="793.88" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="710.1" y="597" width="1.3" height="15.0" fill="rgb(0,204,3)" rx="2" ry="2" /> +<text x="713.10" y="607.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="269.8" y="501" width="1.4" height="15.0" fill="rgb(0,195,183)" rx="2" ry="2" /> +<text x="272.84" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="1305.2" y="773" width="4.0" height="15.0" fill="rgb(0,197,168)" rx="2" ry="2" /> +<text x="1308.18" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.49%)</title><rect x="213.3" y="597" width="6.7" height="15.0" fill="rgb(0,226,173)" rx="2" ry="2" /> +<text x="216.30" y="607.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="209.3" y="357" width="1.3" height="15.0" fill="rgb(0,217,36)" rx="2" ry="2" /> +<text x="212.26" y="367.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="1239.2" y="693" width="5.4" height="15.0" fill="rgb(0,237,162)" rx="2" ry="2" /> +<text x="1242.21" y="703.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="405.8" y="613" width="1.4" height="15.0" fill="rgb(0,217,122)" rx="2" ry="2" /> +<text x="408.82" y="623.5" ></text> +</g> +<g > +<title>ext4_mb_use_best_found (10,101,010 samples, 0.10%)</title><rect x="583.5" y="421" width="1.4" height="15.0" fill="rgb(0,201,120)" rx="2" ry="2" /> +<text x="586.54" y="431.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.68%)</title><rect x="1010.3" y="709" width="9.5" height="15.0" fill="rgb(0,223,114)" rx="2" ry="2" /> +<text x="1013.33" y="719.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="945.7" y="517" width="1.4" height="15.0" fill="rgb(0,191,82)" rx="2" ry="2" /> +<text x="948.71" y="527.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.10%)</title><rect x="478.5" y="549" width="1.4" height="15.0" fill="rgb(0,223,209)" rx="2" ry="2" /> +<text x="481.53" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="782.8" y="629" width="1.3" height="15.0" fill="rgb(0,236,208)" rx="2" ry="2" /> +<text x="785.80" y="639.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="782.8" y="517" width="1.3" height="15.0" fill="rgb(0,236,120)" rx="2" ry="2" /> +<text x="785.80" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1167.9" y="581" width="1.3" height="15.0" fill="rgb(0,212,97)" rx="2" ry="2" /> +<text x="1170.85" y="591.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="356.0" y="501" width="1.4" height="15.0" fill="rgb(0,207,101)" rx="2" ry="2" /> +<text x="359.01" y="511.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="213" width="1.4" height="15.0" fill="rgb(0,230,51)" rx="2" ry="2" /> +<text x="1379.54" y="223.5" ></text> +</g> +<g > +<title>do_writepages (50,505,050 samples, 0.49%)</title><rect x="766.6" y="485" width="6.8" height="15.0" fill="rgb(0,209,88)" rx="2" ry="2" /> +<text x="769.64" y="495.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="1165.2" y="677" width="1.3" height="15.0" fill="rgb(0,209,175)" rx="2" ry="2" /> +<text x="1168.16" y="687.5" ></text> +</g> +<g > +<title>_Fork (353,535,350 samples, 3.41%)</title><rect x="1256.7" y="789" width="47.1" height="15.0" fill="rgb(0,232,79)" rx="2" ry="2" /> +<text x="1259.71" y="799.5" >_Fork</text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="805.7" y="645" width="1.3" height="15.0" fill="rgb(0,208,64)" rx="2" ry="2" /> +<text x="808.69" y="655.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.10%)</title><rect x="988.8" y="501" width="1.3" height="15.0" fill="rgb(0,206,14)" rx="2" ry="2" /> +<text x="991.79" y="511.5" ></text> +</g> +<g > +<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="485" width="1.3" height="15.0" fill="rgb(0,238,74)" rx="2" ry="2" /> +<text x="1182.97" y="495.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.10%)</title><rect x="632.0" y="501" width="1.4" height="15.0" fill="rgb(0,232,66)" rx="2" ry="2" /> +<text x="635.01" y="511.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.10%)</title><rect x="816.5" y="373" width="1.3" height="15.0" fill="rgb(0,233,137)" rx="2" ry="2" /> +<text x="819.46" y="383.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="417.9" y="741" width="2.7" height="15.0" fill="rgb(0,235,125)" rx="2" ry="2" /> +<text x="420.94" y="751.5" ></text> +</g> +<g > +<title>__blk_mq_delay_run_hw_queue (10,101,010 samples, 0.10%)</title><rect x="766.6" y="373" width="1.4" height="15.0" fill="rgb(0,190,123)" rx="2" ry="2" /> +<text x="769.64" y="383.5" ></text> +</g> +<g > +<title>nd_jump_root (10,101,010 samples, 0.10%)</title><rect x="1019.8" y="581" width="1.3" height="15.0" fill="rgb(0,206,95)" rx="2" ry="2" /> +<text x="1022.76" y="591.5" ></text> +</g> +<g > +<title>ip_output (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="549" width="2.7" height="15.0" fill="rgb(0,204,159)" rx="2" ry="2" /> +<text x="1380.88" y="559.5" ></text> +</g> +<g > +<title>ip_finish_output (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="517" width="5.4" height="15.0" fill="rgb(0,196,78)" rx="2" ry="2" /> +<text x="1331.07" y="527.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="1003.6" y="437" width="1.3" height="15.0" fill="rgb(0,228,127)" rx="2" ry="2" /> +<text x="1006.60" y="447.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.10%)</title><rect x="478.5" y="517" width="1.4" height="15.0" fill="rgb(0,211,184)" rx="2" ry="2" /> +<text x="481.53" y="527.5" ></text> +</g> +<g > +<title>generic_write_end (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="517" width="1.4" height="15.0" fill="rgb(0,220,103)" rx="2" ry="2" /> +<text x="1007.95" y="527.5" ></text> +</g> +<g > +<title>git_repository_free (90,909,090 samples, 0.88%)</title><rect x="189.1" y="821" width="12.1" height="15.0" fill="rgb(0,201,133)" rx="2" ry="2" /> +<text x="192.06" y="831.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (80,808,080 samples, 0.78%)</title><rect x="14.0" y="661" width="10.8" height="15.0" fill="rgb(0,203,200)" rx="2" ry="2" /> +<text x="17.04" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1022.4" y="693" width="1.4" height="15.0" fill="rgb(0,214,179)" rx="2" ry="2" /> +<text x="1025.45" y="703.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.10%)</title><rect x="325.0" y="565" width="1.4" height="15.0" fill="rgb(0,204,106)" rx="2" ry="2" /> +<text x="328.04" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (191,919,190 samples, 1.85%)</title><rect x="800.3" y="757" width="25.6" height="15.0" fill="rgb(0,198,87)" rx="2" ry="2" /> +<text x="803.30" y="767.5" >[..</text> +</g> +<g > +<title>ext4_file_write_iter (50,505,050 samples, 0.49%)</title><rect x="1093.8" y="533" width="6.7" height="15.0" fill="rgb(0,190,147)" rx="2" ry="2" /> +<text x="1096.80" y="543.5" ></text> +</g> +<g > +<title>make_kuid (10,101,010 samples, 0.10%)</title><rect x="747.8" y="533" width="1.3" height="15.0" fill="rgb(0,239,28)" rx="2" ry="2" /> +<text x="750.80" y="543.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.10%)</title><rect x="321.0" y="533" width="1.4" height="15.0" fill="rgb(0,200,20)" rx="2" ry="2" /> +<text x="324.00" y="543.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.10%)</title><rect x="758.6" y="469" width="1.3" height="15.0" fill="rgb(0,211,16)" rx="2" ry="2" /> +<text x="761.57" y="479.5" ></text> +</g> +<g > +<title>git_reference_symbolic_create_matching (232,323,230 samples, 2.24%)</title><rect x="753.2" y="725" width="30.9" height="15.0" fill="rgb(0,218,137)" rx="2" ry="2" /> +<text x="756.18" y="735.5" >gi..</text> +</g> +<g > +<title>filemap_flush (20,202,020 samples, 0.20%)</title><rect x="1084.4" y="517" width="2.7" height="15.0" fill="rgb(0,218,120)" rx="2" ry="2" /> +<text x="1087.38" y="527.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.20%)</title><rect x="972.6" y="549" width="2.7" height="15.0" fill="rgb(0,214,105)" rx="2" ry="2" /> +<text x="975.63" y="559.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="754.5" y="629" width="1.4" height="15.0" fill="rgb(0,210,209)" rx="2" ry="2" /> +<text x="757.53" y="639.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (80,808,080 samples, 0.78%)</title><rect x="62.5" y="725" width="10.8" height="15.0" fill="rgb(0,207,84)" rx="2" ry="2" /> +<text x="65.51" y="735.5" ></text> +</g> +<g > +<title>user_path_at_empty (40,404,040 samples, 0.39%)</title><rect x="1058.8" y="645" width="5.4" height="15.0" fill="rgb(0,227,20)" rx="2" ry="2" /> +<text x="1061.80" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="527.0" y="677" width="4.0" height="15.0" fill="rgb(0,237,175)" rx="2" ry="2" /> +<text x="530.00" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1069.6" y="661" width="1.3" height="15.0" fill="rgb(0,193,148)" rx="2" ry="2" /> +<text x="1072.57" y="671.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="517" width="1.3" height="15.0" fill="rgb(0,191,127)" rx="2" ry="2" /> +<text x="1032.18" y="527.5" ></text> +</g> +<g > +<title>json_from_string (40,404,040 samples, 0.39%)</title><rect x="1361.7" y="789" width="5.4" height="15.0" fill="rgb(0,222,87)" rx="2" ry="2" /> +<text x="1364.73" y="799.5" ></text> +</g> +<g > +<title>alloc_inode (10,101,010 samples, 0.10%)</title><rect x="1017.1" y="533" width="1.3" height="15.0" fill="rgb(0,218,127)" rx="2" ry="2" /> +<text x="1020.06" y="543.5" ></text> +</g> +<g > +<title>unlink_cb (30,303,030 samples, 0.29%)</title><rect x="203.9" y="613" width="4.0" height="15.0" fill="rgb(0,228,42)" rx="2" ry="2" /> +<text x="206.87" y="623.5" ></text> +</g> +<g > +<title>vfs_statx (50,505,050 samples, 0.49%)</title><rect x="1057.5" y="661" width="6.7" height="15.0" fill="rgb(0,225,115)" rx="2" ry="2" /> +<text x="1060.45" y="671.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.10%)</title><rect x="770.7" y="341" width="1.3" height="15.0" fill="rgb(0,223,147)" rx="2" ry="2" /> +<text x="773.68" y="351.5" ></text> +</g> +<g > +<title>slab_free_freelist_hook.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="918.8" y="565" width="1.3" height="15.0" fill="rgb(0,222,149)" rx="2" ry="2" /> +<text x="921.78" y="575.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="164.8" y="677" width="1.4" height="15.0" fill="rgb(0,227,50)" rx="2" ry="2" /> +<text x="167.83" y="687.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.10%)</title><rect x="809.7" y="501" width="1.4" height="15.0" fill="rgb(0,227,41)" rx="2" ry="2" /> +<text x="812.73" y="511.5" ></text> +</g> +<g > +<title>ext4_finish_bio (10,101,010 samples, 0.10%)</title><rect x="213.3" y="277" width="1.3" height="15.0" fill="rgb(0,195,55)" rx="2" ry="2" /> +<text x="216.30" y="287.5" ></text> +</g> +<g > +<title>do_filp_open (313,131,310 samples, 3.02%)</title><rect x="128.5" y="837" width="41.7" height="15.0" fill="rgb(0,210,39)" rx="2" ry="2" /> +<text x="131.48" y="847.5" >do_..</text> +</g> +<g > +<title>tcp_rcv_established (20,202,020 samples, 0.20%)</title><rect x="18.1" y="277" width="2.7" height="15.0" fill="rgb(0,209,74)" rx="2" ry="2" /> +<text x="21.08" y="287.5" ></text> +</g> +<g > +<title>__open64_nocancel (10,101,010 samples, 0.10%)</title><rect x="871.7" y="597" width="1.3" height="15.0" fill="rgb(0,220,153)" rx="2" ry="2" /> +<text x="874.66" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="939.0" y="709" width="2.7" height="15.0" fill="rgb(0,217,126)" rx="2" ry="2" /> +<text x="941.98" y="719.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.10%)</title><rect x="755.9" y="549" width="1.3" height="15.0" fill="rgb(0,235,136)" rx="2" ry="2" /> +<text x="758.87" y="559.5" ></text> +</g> +<g > +<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.10%)</title><rect x="438.1" y="517" width="1.4" height="15.0" fill="rgb(0,203,168)" rx="2" ry="2" /> +<text x="441.14" y="527.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (10,101,010 samples, 0.10%)</title><rect x="1084.4" y="389" width="1.3" height="15.0" fill="rgb(0,202,69)" rx="2" ry="2" /> +<text x="1087.38" y="399.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="581" width="1.3" height="15.0" fill="rgb(0,239,121)" rx="2" ry="2" /> +<text x="1182.97" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="602.4" y="517" width="1.3" height="15.0" fill="rgb(0,235,121)" rx="2" ry="2" /> +<text x="605.39" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="443.5" y="613" width="1.4" height="15.0" fill="rgb(0,191,76)" rx="2" ry="2" /> +<text x="446.52" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.39%)</title><rect x="1313.3" y="821" width="5.3" height="15.0" fill="rgb(0,206,68)" rx="2" ry="2" /> +<text x="1316.26" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="190.4" y="773" width="1.4" height="15.0" fill="rgb(0,220,91)" rx="2" ry="2" /> +<text x="193.41" y="783.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="831.3" y="629" width="1.3" height="15.0" fill="rgb(0,216,149)" rx="2" ry="2" /> +<text x="834.27" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (131,313,130 samples, 1.27%)</title><rect x="202.5" y="661" width="17.5" height="15.0" fill="rgb(0,194,152)" rx="2" ry="2" /> +<text x="205.53" y="671.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.10%)</title><rect x="364.1" y="613" width="1.3" height="15.0" fill="rgb(0,221,110)" rx="2" ry="2" /> +<text x="367.09" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (20,202,020 samples, 0.20%)</title><rect x="385.6" y="677" width="2.7" height="15.0" fill="rgb(0,219,142)" rx="2" ry="2" /> +<text x="388.63" y="687.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.10%)</title><rect x="27.5" y="725" width="1.3" height="15.0" fill="rgb(0,227,33)" rx="2" ry="2" /> +<text x="30.50" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="704.7" y="677" width="8.1" height="15.0" fill="rgb(0,219,83)" rx="2" ry="2" /> +<text x="707.71" y="687.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.20%)</title><rect x="672.4" y="421" width="2.7" height="15.0" fill="rgb(0,213,10)" rx="2" ry="2" /> +<text x="675.40" y="431.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.20%)</title><rect x="947.1" y="517" width="2.6" height="15.0" fill="rgb(0,216,196)" rx="2" ry="2" /> +<text x="950.05" y="527.5" ></text> +</g> +<g > +<title>crypto_shash_update (20,202,020 samples, 0.20%)</title><rect x="216.0" y="453" width="2.7" height="15.0" fill="rgb(0,218,179)" rx="2" ry="2" /> +<text x="218.99" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="172.9" y="885" width="1.4" height="15.0" fill="rgb(0,220,6)" rx="2" ry="2" /> +<text x="175.91" y="895.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="918.8" y="709" width="1.3" height="15.0" fill="rgb(0,200,12)" rx="2" ry="2" /> +<text x="921.78" y="719.5" ></text> +</g> +<g > +<title>crc_20 (10,101,010 samples, 0.10%)</title><rect x="1153.0" y="581" width="1.4" height="15.0" fill="rgb(0,224,200)" rx="2" ry="2" /> +<text x="1156.04" y="591.5" ></text> +</g> +<g > +<title>[unknown] (606,060,600 samples, 5.85%)</title><rect x="108.3" y="965" width="80.8" height="15.0" fill="rgb(0,201,114)" rx="2" ry="2" /> +<text x="111.28" y="975.5" >[unknown]</text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="788.2" y="565" width="1.3" height="15.0" fill="rgb(0,239,50)" rx="2" ry="2" /> +<text x="791.19" y="575.5" ></text> +</g> +<g > +<title>nf_ct_destroy (10,101,010 samples, 0.10%)</title><rect x="1342.9" y="565" width="1.3" height="15.0" fill="rgb(0,213,118)" rx="2" ry="2" /> +<text x="1345.88" y="575.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.20%)</title><rect x="972.6" y="517" width="2.7" height="15.0" fill="rgb(0,239,177)" rx="2" ry="2" /> +<text x="975.63" y="527.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="1136.9" y="565" width="1.3" height="15.0" fill="rgb(0,209,13)" rx="2" ry="2" /> +<text x="1139.89" y="575.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.10%)</title><rect x="1280.9" y="597" width="1.4" height="15.0" fill="rgb(0,222,62)" rx="2" ry="2" /> +<text x="1283.95" y="607.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="757.2" y="453" width="1.4" height="15.0" fill="rgb(0,238,40)" rx="2" ry="2" /> +<text x="760.22" y="463.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="341" width="1.3" height="15.0" fill="rgb(0,194,184)" rx="2" ry="2" /> +<text x="1032.18" y="351.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (20,202,020 samples, 0.20%)</title><rect x="1375.2" y="757" width="2.7" height="15.0" fill="rgb(0,212,32)" rx="2" ry="2" /> +<text x="1378.19" y="767.5" ></text> +</g> +<g > +<title>page_mapping (10,101,010 samples, 0.10%)</title><rect x="1033.2" y="389" width="1.4" height="15.0" fill="rgb(0,227,162)" rx="2" ry="2" /> +<text x="1036.22" y="399.5" ></text> +</g> +<g > +<title>ext4_es_remove_extent (10,101,010 samples, 0.10%)</title><rect x="1118.0" y="453" width="1.4" height="15.0" fill="rgb(0,236,75)" rx="2" ry="2" /> +<text x="1121.04" y="463.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="708.8" y="549" width="1.3" height="15.0" fill="rgb(0,239,170)" rx="2" ry="2" /> +<text x="711.75" y="559.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.10%)</title><rect x="831.3" y="565" width="1.3" height="15.0" fill="rgb(0,209,123)" rx="2" ry="2" /> +<text x="834.27" y="575.5" ></text> +</g> +<g > +<title>sock_close (10,101,010 samples, 0.10%)</title><rect x="27.5" y="709" width="1.3" height="15.0" fill="rgb(0,198,170)" rx="2" ry="2" /> +<text x="30.50" y="719.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.10%)</title><rect x="302.2" y="517" width="1.3" height="15.0" fill="rgb(0,236,68)" rx="2" ry="2" /> +<text x="305.16" y="527.5" ></text> +</g> +<g > +<title>lookup_dcache (10,101,010 samples, 0.10%)</title><rect x="598.4" y="581" width="1.3" height="15.0" fill="rgb(0,226,200)" rx="2" ry="2" /> +<text x="601.35" y="591.5" ></text> +</g> +<g > +<title>git_refdb_open (30,303,030 samples, 0.29%)</title><rect x="877.0" y="677" width="4.1" height="15.0" fill="rgb(0,192,159)" rx="2" ry="2" /> +<text x="880.04" y="687.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="902.6" y="549" width="1.4" height="15.0" fill="rgb(0,204,142)" rx="2" ry="2" /> +<text x="905.62" y="559.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.10%)</title><rect x="1330.8" y="149" width="1.3" height="15.0" fill="rgb(0,228,44)" rx="2" ry="2" /> +<text x="1333.76" y="159.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (40,404,040 samples, 0.39%)</title><rect x="929.6" y="549" width="5.3" height="15.0" fill="rgb(0,223,188)" rx="2" ry="2" /> +<text x="932.55" y="559.5" ></text> +</g> +<g > +<title>__blk_mq_delay_run_hw_queue (30,303,030 samples, 0.29%)</title><rect x="1124.8" y="389" width="4.0" height="15.0" fill="rgb(0,197,105)" rx="2" ry="2" /> +<text x="1127.77" y="399.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.10%)</title><rect x="755.9" y="565" width="1.3" height="15.0" fill="rgb(0,231,53)" rx="2" ry="2" /> +<text x="758.87" y="575.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="1022.4" y="677" width="1.4" height="15.0" fill="rgb(0,239,127)" rx="2" ry="2" /> +<text x="1025.45" y="687.5" ></text> +</g> +<g > +<title>crc_28 (10,101,010 samples, 0.10%)</title><rect x="960.5" y="453" width="1.4" height="15.0" fill="rgb(0,223,53)" rx="2" ry="2" /> +<text x="963.52" y="463.5" ></text> +</g> +<g > +<title>snprintf (20,202,020 samples, 0.20%)</title><rect x="105.6" y="837" width="2.7" height="15.0" fill="rgb(0,206,145)" rx="2" ry="2" /> +<text x="108.59" y="847.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="613" width="1.4" height="15.0" fill="rgb(0,193,180)" rx="2" ry="2" /> +<text x="1207.20" y="623.5" ></text> +</g> +<g > +<title>ipv4_conntrack_local (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="85" width="1.4" height="15.0" fill="rgb(0,229,102)" rx="2" ry="2" /> +<text x="1376.84" y="95.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="599.7" y="581" width="1.3" height="15.0" fill="rgb(0,228,50)" rx="2" ry="2" /> +<text x="602.70" y="591.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="304.8" y="469" width="1.4" height="15.0" fill="rgb(0,214,60)" rx="2" ry="2" /> +<text x="307.85" y="479.5" ></text> +</g> +<g > +<title>list_lru_del (10,101,010 samples, 0.10%)</title><rect x="360.0" y="533" width="1.4" height="15.0" fill="rgb(0,233,130)" rx="2" ry="2" /> +<text x="363.05" y="543.5" ></text> +</g> +<g > +<title>_IO_fprintf (10,101,010 samples, 0.10%)</title><rect x="416.6" y="789" width="1.3" height="15.0" fill="rgb(0,207,111)" rx="2" ry="2" /> +<text x="419.60" y="799.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="485" width="2.7" height="15.0" fill="rgb(0,210,13)" rx="2" ry="2" /> +<text x="1341.84" y="495.5" ></text> +</g> +<g > +<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.10%)</title><rect x="1095.2" y="485" width="1.3" height="15.0" fill="rgb(0,221,23)" rx="2" ry="2" /> +<text x="1098.15" y="495.5" ></text> +</g> +<g > +<title>ext4_append (10,101,010 samples, 0.10%)</title><rect x="1035.9" y="597" width="1.4" height="15.0" fill="rgb(0,213,156)" rx="2" ry="2" /> +<text x="1038.91" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="759.9" y="565" width="2.7" height="15.0" fill="rgb(0,229,70)" rx="2" ry="2" /> +<text x="762.91" y="575.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="895.9" y="613" width="1.3" height="15.0" fill="rgb(0,191,94)" rx="2" ry="2" /> +<text x="898.89" y="623.5" ></text> +</g> +<g > +<title>__d_lookup (10,101,010 samples, 0.10%)</title><rect x="598.4" y="549" width="1.3" height="15.0" fill="rgb(0,215,5)" rx="2" ry="2" /> +<text x="601.35" y="559.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (80,808,080 samples, 0.78%)</title><rect x="739.7" y="661" width="10.8" height="15.0" fill="rgb(0,200,129)" rx="2" ry="2" /> +<text x="742.72" y="671.5" ></text> +</g> +<g > +<title>copy_thread (10,101,010 samples, 0.10%)</title><rect x="35.6" y="853" width="1.3" height="15.0" fill="rgb(0,190,116)" rx="2" ry="2" /> +<text x="38.58" y="863.5" ></text> +</g> +<g > +<title>shrink_dentry_list (10,101,010 samples, 0.10%)</title><rect x="411.2" y="645" width="1.4" height="15.0" fill="rgb(0,213,80)" rx="2" ry="2" /> +<text x="414.21" y="655.5" ></text> +</g> +<g > +<title>git_reference_symbolic_create_matching (70,707,070 samples, 0.68%)</title><rect x="789.5" y="757" width="9.5" height="15.0" fill="rgb(0,226,101)" rx="2" ry="2" /> +<text x="792.53" y="767.5" ></text> +</g> +<g > +<title>ext4_rename2 (70,707,070 samples, 0.68%)</title><rect x="1123.4" y="581" width="9.4" height="15.0" fill="rgb(0,200,58)" rx="2" ry="2" /> +<text x="1126.42" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_write (30,303,030 samples, 0.29%)</title><rect x="509.5" y="645" width="4.0" height="15.0" fill="rgb(0,226,142)" rx="2" ry="2" /> +<text x="512.49" y="655.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1162.5" y="677" width="1.3" height="15.0" fill="rgb(0,216,198)" rx="2" ry="2" /> +<text x="1165.47" y="687.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="1201.5" y="693" width="1.4" height="15.0" fill="rgb(0,220,128)" rx="2" ry="2" /> +<text x="1204.51" y="703.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="1068.2" y="661" width="1.4" height="15.0" fill="rgb(0,194,84)" rx="2" ry="2" /> +<text x="1071.22" y="671.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="545.8" y="565" width="1.4" height="15.0" fill="rgb(0,216,145)" rx="2" ry="2" /> +<text x="548.84" y="575.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.10%)</title><rect x="1101.9" y="661" width="1.3" height="15.0" fill="rgb(0,196,117)" rx="2" ry="2" /> +<text x="1104.88" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="799.0" y="757" width="1.3" height="15.0" fill="rgb(0,203,68)" rx="2" ry="2" /> +<text x="801.96" y="767.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.20%)</title><rect x="1224.4" y="613" width="2.7" height="15.0" fill="rgb(0,236,77)" rx="2" ry="2" /> +<text x="1227.40" y="623.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="885.1" y="645" width="1.4" height="15.0" fill="rgb(0,213,196)" rx="2" ry="2" /> +<text x="888.12" y="655.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="314.3" y="373" width="1.3" height="15.0" fill="rgb(0,217,53)" rx="2" ry="2" /> +<text x="317.27" y="383.5" ></text> +</g> +<g > +<title>wb_get_create (10,101,010 samples, 0.10%)</title><rect x="677.8" y="373" width="1.3" height="15.0" fill="rgb(0,204,186)" rx="2" ry="2" /> +<text x="680.79" y="383.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="696.6" y="661" width="5.4" height="15.0" fill="rgb(0,192,67)" rx="2" ry="2" /> +<text x="699.63" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="671.1" y="645" width="1.3" height="15.0" fill="rgb(0,223,127)" rx="2" ry="2" /> +<text x="674.05" y="655.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="843.4" y="421" width="1.3" height="15.0" fill="rgb(0,211,65)" rx="2" ry="2" /> +<text x="846.39" y="431.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.10%)</title><rect x="917.4" y="581" width="1.4" height="15.0" fill="rgb(0,194,122)" rx="2" ry="2" /> +<text x="920.43" y="591.5" ></text> +</g> +<g > +<title>git_buf_set (10,101,010 samples, 0.10%)</title><rect x="1178.6" y="709" width="1.4" height="15.0" fill="rgb(0,206,48)" rx="2" ry="2" /> +<text x="1181.62" y="719.5" ></text> +</g> +<g > +<title>__dquot_alloc_space (10,101,010 samples, 0.10%)</title><rect x="1035.9" y="501" width="1.4" height="15.0" fill="rgb(0,193,172)" rx="2" ry="2" /> +<text x="1038.91" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="877.0" y="565" width="1.4" height="15.0" fill="rgb(0,191,114)" rx="2" ry="2" /> +<text x="880.04" y="575.5" ></text> +</g> +<g > +<title>__inet_stream_connect (101,010,100 samples, 0.98%)</title><rect x="1336.1" y="741" width="13.5" height="15.0" fill="rgb(0,203,156)" rx="2" ry="2" /> +<text x="1339.15" y="751.5" ></text> +</g> +<g > +<title>ext4_evict_inode (20,202,020 samples, 0.20%)</title><rect x="393.7" y="629" width="2.7" height="15.0" fill="rgb(0,225,202)" rx="2" ry="2" /> +<text x="396.71" y="639.5" ></text> +</g> +<g > +<title>opendir (20,202,020 samples, 0.20%)</title><rect x="1208.2" y="645" width="2.7" height="15.0" fill="rgb(0,239,75)" rx="2" ry="2" /> +<text x="1211.24" y="655.5" ></text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.10%)</title><rect x="1330.8" y="133" width="1.3" height="15.0" fill="rgb(0,214,128)" rx="2" ry="2" /> +<text x="1333.76" y="143.5" ></text> +</g> +<g > +<title>ext4_mkdir (131,313,130 samples, 1.27%)</title><rect x="570.1" y="581" width="17.5" height="15.0" fill="rgb(0,228,75)" rx="2" ry="2" /> +<text x="573.08" y="591.5" ></text> +</g> +<g > +<title>inode_init_always (10,101,010 samples, 0.10%)</title><rect x="956.5" y="453" width="1.3" height="15.0" fill="rgb(0,238,64)" rx="2" ry="2" /> +<text x="959.48" y="463.5" ></text> +</g> +<g > +<title>ext4_mb_normalize_request.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="679.1" y="421" width="1.4" height="15.0" fill="rgb(0,227,165)" rx="2" ry="2" /> +<text x="682.13" y="431.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.39%)</title><rect x="294.1" y="517" width="5.4" height="15.0" fill="rgb(0,225,14)" rx="2" ry="2" /> +<text x="297.08" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="887.8" y="533" width="1.4" height="15.0" fill="rgb(0,204,44)" rx="2" ry="2" /> +<text x="890.81" y="543.5" ></text> +</g> +<g > +<title>select_collect (10,101,010 samples, 0.10%)</title><rect x="360.0" y="565" width="1.4" height="15.0" fill="rgb(0,227,0)" rx="2" ry="2" /> +<text x="363.05" y="575.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.10%)</title><rect x="512.2" y="501" width="1.3" height="15.0" fill="rgb(0,209,155)" rx="2" ry="2" /> +<text x="515.19" y="511.5" ></text> +</g> +<g > +<title>__indirect_thunk_start (10,101,010 samples, 0.10%)</title><rect x="1046.7" y="517" width="1.3" height="15.0" fill="rgb(0,225,85)" rx="2" ry="2" /> +<text x="1049.68" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="413.9" y="773" width="1.3" height="15.0" fill="rgb(0,207,84)" rx="2" ry="2" /> +<text x="416.90" y="783.5" ></text> +</g> +<g > +<title>grab_cache_page_write_begin (10,101,010 samples, 0.10%)</title><rect x="1099.2" y="469" width="1.3" height="15.0" fill="rgb(0,222,59)" rx="2" ry="2" /> +<text x="1102.19" y="479.5" ></text> +</g> +<g > +<title>ip_local_deliver (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="421" width="5.4" height="15.0" fill="rgb(0,216,205)" rx="2" ry="2" /> +<text x="1383.58" y="431.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="1041.3" y="485" width="1.3" height="15.0" fill="rgb(0,222,71)" rx="2" ry="2" /> +<text x="1044.30" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="667.0" y="709" width="4.1" height="15.0" fill="rgb(0,233,8)" rx="2" ry="2" /> +<text x="670.01" y="719.5" ></text> +</g> +<g > +<title>security_socket_accept (10,101,010 samples, 0.10%)</title><rect x="89.4" y="693" width="1.4" height="15.0" fill="rgb(0,218,14)" rx="2" ry="2" /> +<text x="92.43" y="703.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.10%)</title><rect x="93.5" y="773" width="1.3" height="15.0" fill="rgb(0,211,108)" rx="2" ry="2" /> +<text x="96.47" y="783.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.10%)</title><rect x="267.2" y="533" width="1.3" height="15.0" fill="rgb(0,233,58)" rx="2" ry="2" /> +<text x="270.15" y="543.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (40,404,040 samples, 0.39%)</title><rect x="1352.3" y="693" width="5.4" height="15.0" fill="rgb(0,238,125)" rx="2" ry="2" /> +<text x="1355.30" y="703.5" ></text> +</g> +<g > +<title>worker_handle_cmd_start (10,101,010 samples, 0.10%)</title><rect x="1357.7" y="805" width="1.3" height="15.0" fill="rgb(0,227,36)" rx="2" ry="2" /> +<text x="1360.69" y="815.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="353.3" y="533" width="1.4" height="15.0" fill="rgb(0,216,123)" rx="2" ry="2" /> +<text x="356.32" y="543.5" ></text> +</g> +<g > +<title>fput (10,101,010 samples, 0.10%)</title><rect x="1219.0" y="581" width="1.4" height="15.0" fill="rgb(0,215,171)" rx="2" ry="2" /> +<text x="1222.01" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (10,101,010 samples, 0.10%)</title><rect x="384.3" y="693" width="1.3" height="15.0" fill="rgb(0,190,189)" rx="2" ry="2" /> +<text x="387.28" y="703.5" ></text> +</g> +<g > +<title>__sock_release (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="677" width="2.6" height="15.0" fill="rgb(0,207,31)" rx="2" ry="2" /> +<text x="1336.45" y="687.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="453" width="1.4" height="15.0" fill="rgb(0,197,130)" rx="2" ry="2" /> +<text x="1030.83" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (10,101,010 samples, 0.10%)</title><rect x="209.3" y="549" width="1.3" height="15.0" fill="rgb(0,220,56)" rx="2" ry="2" /> +<text x="212.26" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="757.2" y="597" width="2.7" height="15.0" fill="rgb(0,209,177)" rx="2" ry="2" /> +<text x="760.22" y="607.5" ></text> +</g> +<g > +<title>generic_perform_write (20,202,020 samples, 0.20%)</title><rect x="510.8" y="549" width="2.7" height="15.0" fill="rgb(0,206,88)" rx="2" ry="2" /> +<text x="513.84" y="559.5" ></text> +</g> +<g > +<title>ip_rcv (30,303,030 samples, 0.29%)</title><rect x="16.7" y="373" width="4.1" height="15.0" fill="rgb(0,206,1)" rx="2" ry="2" /> +<text x="19.73" y="383.5" ></text> +</g> +<g > +<title>nft_do_chain_ipv4 (10,101,010 samples, 0.10%)</title><rect x="1330.8" y="85" width="1.3" height="15.0" fill="rgb(0,198,138)" rx="2" ry="2" /> +<text x="1333.76" y="95.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.20%)</title><rect x="100.2" y="709" width="2.7" height="15.0" fill="rgb(0,217,12)" rx="2" ry="2" /> +<text x="103.20" y="719.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (10,101,010 samples, 0.10%)</title><rect x="374.9" y="549" width="1.3" height="15.0" fill="rgb(0,209,33)" rx="2" ry="2" /> +<text x="377.86" y="559.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="1136.9" y="613" width="1.3" height="15.0" fill="rgb(0,219,158)" rx="2" ry="2" /> +<text x="1139.89" y="623.5" ></text> +</g> +<g > +<title>anon_vma_clone (60,606,060 samples, 0.59%)</title><rect x="1266.1" y="629" width="8.1" height="15.0" fill="rgb(0,213,160)" rx="2" ry="2" /> +<text x="1269.14" y="639.5" ></text> +</g> +<g > +<title>clear_page_erms (10,101,010 samples, 0.10%)</title><rect x="80.0" y="645" width="1.4" height="15.0" fill="rgb(0,215,178)" rx="2" ry="2" /> +<text x="83.01" y="655.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="883.8" y="709" width="1.3" height="15.0" fill="rgb(0,226,123)" rx="2" ry="2" /> +<text x="886.78" y="719.5" ></text> +</g> +<g > +<title>pthread_mutex_destroy (10,101,010 samples, 0.10%)</title><rect x="194.4" y="741" width="1.4" height="15.0" fill="rgb(0,224,173)" rx="2" ry="2" /> +<text x="197.45" y="751.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.10%)</title><rect x="1313.3" y="693" width="1.3" height="15.0" fill="rgb(0,239,197)" rx="2" ry="2" /> +<text x="1316.26" y="703.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="724.9" y="549" width="1.4" height="15.0" fill="rgb(0,206,93)" rx="2" ry="2" /> +<text x="727.91" y="559.5" ></text> +</g> +<g > +<title>crc_1 (10,101,010 samples, 0.10%)</title><rect x="660.3" y="501" width="1.3" height="15.0" fill="rgb(0,191,132)" rx="2" ry="2" /> +<text x="663.28" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="525.6" y="677" width="1.4" height="15.0" fill="rgb(0,220,91)" rx="2" ry="2" /> +<text x="528.65" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="996.9" y="709" width="2.7" height="15.0" fill="rgb(0,194,80)" rx="2" ry="2" /> +<text x="999.87" y="719.5" ></text> +</g> +<g > +<title>list_lru_add (10,101,010 samples, 0.10%)</title><rect x="597.0" y="581" width="1.4" height="15.0" fill="rgb(0,207,36)" rx="2" ry="2" /> +<text x="600.00" y="591.5" ></text> +</g> +<g > +<title>security_path_symlink (10,101,010 samples, 0.10%)</title><rect x="1038.6" y="661" width="1.4" height="15.0" fill="rgb(0,220,112)" rx="2" ry="2" /> +<text x="1041.60" y="671.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="951.1" y="453" width="1.3" height="15.0" fill="rgb(0,222,78)" rx="2" ry="2" /> +<text x="954.09" y="463.5" ></text> +</g> +<g > +<title>ext4_readdir (40,404,040 samples, 0.39%)</title><rect x="613.2" y="613" width="5.3" height="15.0" fill="rgb(0,218,3)" rx="2" ry="2" /> +<text x="616.16" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="434.1" y="581" width="1.3" height="15.0" fill="rgb(0,212,85)" rx="2" ry="2" /> +<text x="437.10" y="591.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="397.7" y="581" width="1.4" height="15.0" fill="rgb(0,208,171)" rx="2" ry="2" /> +<text x="400.75" y="591.5" ></text> +</g> +<g > +<title>__dentry_kill (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="549" width="1.4" height="15.0" fill="rgb(0,196,202)" rx="2" ry="2" /> +<text x="1030.83" y="559.5" ></text> +</g> +<g > +<title>tcp_rearm_rto (10,101,010 samples, 0.10%)</title><rect x="23.5" y="613" width="1.3" height="15.0" fill="rgb(0,195,199)" rx="2" ry="2" /> +<text x="26.46" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="718.2" y="549" width="2.7" height="15.0" fill="rgb(0,218,52)" rx="2" ry="2" /> +<text x="721.18" y="559.5" ></text> +</g> +<g > +<title>errseq_check (10,101,010 samples, 0.10%)</title><rect x="808.4" y="485" width="1.3" height="15.0" fill="rgb(0,233,118)" rx="2" ry="2" /> +<text x="811.38" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="883.8" y="661" width="1.3" height="15.0" fill="rgb(0,200,20)" rx="2" ry="2" /> +<text x="886.78" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="858.2" y="629" width="1.3" height="15.0" fill="rgb(0,211,60)" rx="2" ry="2" /> +<text x="861.20" y="639.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="551.2" y="613" width="1.4" height="15.0" fill="rgb(0,237,137)" rx="2" ry="2" /> +<text x="554.23" y="623.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.10%)</title><rect x="1245.9" y="533" width="1.4" height="15.0" fill="rgb(0,214,0)" rx="2" ry="2" /> +<text x="1248.94" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (30,303,030 samples, 0.29%)</title><rect x="54.4" y="805" width="4.1" height="15.0" fill="rgb(0,211,36)" rx="2" ry="2" /> +<text x="57.43" y="815.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (20,202,020 samples, 0.20%)</title><rect x="769.3" y="405" width="2.7" height="15.0" fill="rgb(0,222,105)" rx="2" ry="2" /> +<text x="772.34" y="415.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.20%)</title><rect x="454.3" y="533" width="2.7" height="15.0" fill="rgb(0,214,78)" rx="2" ry="2" /> +<text x="457.29" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="529.7" y="629" width="1.3" height="15.0" fill="rgb(0,216,135)" rx="2" ry="2" /> +<text x="532.69" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="326.4" y="581" width="1.3" height="15.0" fill="rgb(0,210,98)" rx="2" ry="2" /> +<text x="329.39" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1189.4" y="661" width="1.3" height="15.0" fill="rgb(0,210,140)" rx="2" ry="2" /> +<text x="1192.40" y="671.5" ></text> +</g> +<g > +<title>ext4_map_blocks (20,202,020 samples, 0.20%)</title><rect x="769.3" y="437" width="2.7" height="15.0" fill="rgb(0,229,202)" rx="2" ry="2" /> +<text x="772.34" y="447.5" ></text> +</g> +<g > +<title>vfs_statx (40,404,040 samples, 0.39%)</title><rect x="242.9" y="597" width="5.4" height="15.0" fill="rgb(0,192,95)" rx="2" ry="2" /> +<text x="245.92" y="607.5" ></text> +</g> +<g > +<title>__pthread_rwlock_rdlock (10,101,010 samples, 0.10%)</title><rect x="734.3" y="597" width="1.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="737.33" y="607.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="368.1" y="693" width="1.4" height="15.0" fill="rgb(0,210,27)" rx="2" ry="2" /> +<text x="371.13" y="703.5" ></text> +</g> +<g > +<title>__alloc_file (20,202,020 samples, 0.20%)</title><rect x="128.5" y="789" width="2.7" height="15.0" fill="rgb(0,194,127)" rx="2" ry="2" /> +<text x="131.48" y="799.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="389" width="5.4" height="15.0" fill="rgb(0,193,147)" rx="2" ry="2" /> +<text x="1383.58" y="399.5" ></text> +</g> +<g > +<title>__libc_fork (353,535,350 samples, 3.41%)</title><rect x="1256.7" y="805" width="47.1" height="15.0" fill="rgb(0,209,183)" rx="2" ry="2" /> +<text x="1259.71" y="815.5" >__li..</text> +</g> +<g > +<title>tcp_write_xmit (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="613" width="2.7" height="15.0" fill="rgb(0,191,46)" rx="2" ry="2" /> +<text x="1375.50" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1212.3" y="645" width="1.3" height="15.0" fill="rgb(0,192,134)" rx="2" ry="2" /> +<text x="1215.28" y="655.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="541.8" y="581" width="1.4" height="15.0" fill="rgb(0,205,203)" rx="2" ry="2" /> +<text x="544.80" y="591.5" ></text> +</g> +<g > +<title>__remove_inode_hash (20,202,020 samples, 0.20%)</title><rect x="291.4" y="533" width="2.7" height="15.0" fill="rgb(0,234,163)" rx="2" ry="2" /> +<text x="294.39" y="543.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="391.0" y="709" width="1.4" height="15.0" fill="rgb(0,190,179)" rx="2" ry="2" /> +<text x="394.01" y="719.5" ></text> +</g> +<g > +<title>getname_flags (20,202,020 samples, 0.20%)</title><rect x="603.7" y="629" width="2.7" height="15.0" fill="rgb(0,207,19)" rx="2" ry="2" /> +<text x="606.74" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="405.8" y="645" width="1.4" height="15.0" fill="rgb(0,214,100)" rx="2" ry="2" /> +<text x="408.82" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1351.0" y="821" width="1.3" height="15.0" fill="rgb(0,215,20)" rx="2" ry="2" /> +<text x="1353.96" y="831.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (20,202,020 samples, 0.20%)</title><rect x="952.4" y="453" width="2.7" height="15.0" fill="rgb(0,190,47)" rx="2" ry="2" /> +<text x="955.44" y="463.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="792.2" y="453" width="1.4" height="15.0" fill="rgb(0,204,93)" rx="2" ry="2" /> +<text x="795.22" y="463.5" ></text> +</g> +<g > +<title>do_unlinkat (20,202,020 samples, 0.20%)</title><rect x="693.9" y="613" width="2.7" height="15.0" fill="rgb(0,203,179)" rx="2" ry="2" /> +<text x="696.94" y="623.5" ></text> +</g> +<g > +<title>readdir64 (70,707,070 samples, 0.68%)</title><rect x="264.5" y="693" width="9.4" height="15.0" fill="rgb(0,211,96)" rx="2" ry="2" /> +<text x="267.46" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="784.1" y="709" width="1.4" height="15.0" fill="rgb(0,206,81)" rx="2" ry="2" /> +<text x="787.15" y="719.5" ></text> +</g> +<g > +<title>git_config_open_ondisk (40,404,040 samples, 0.39%)</title><rect x="1065.5" y="741" width="5.4" height="15.0" fill="rgb(0,223,163)" rx="2" ry="2" /> +<text x="1068.53" y="751.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="1212.3" y="661" width="1.3" height="15.0" fill="rgb(0,198,185)" rx="2" ry="2" /> +<text x="1215.28" y="671.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.10%)</title><rect x="408.5" y="597" width="1.4" height="15.0" fill="rgb(0,219,180)" rx="2" ry="2" /> +<text x="411.52" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="417.9" y="805" width="2.7" height="15.0" fill="rgb(0,207,160)" rx="2" ry="2" /> +<text x="420.94" y="815.5" ></text> +</g> +<g > +<title>jsonrpc_request_destroy (10,101,010 samples, 0.10%)</title><rect x="1322.7" y="869" width="1.3" height="15.0" fill="rgb(0,229,90)" rx="2" ry="2" /> +<text x="1325.68" y="879.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.10%)</title><rect x="1010.3" y="597" width="1.4" height="15.0" fill="rgb(0,229,204)" rx="2" ry="2" /> +<text x="1013.33" y="607.5" ></text> +</g> +<g > +<title>tcp_close (80,808,080 samples, 0.78%)</title><rect x="62.5" y="581" width="10.8" height="15.0" fill="rgb(0,219,112)" rx="2" ry="2" /> +<text x="65.51" y="591.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="233.5" y="341" width="1.3" height="15.0" fill="rgb(0,226,161)" rx="2" ry="2" /> +<text x="236.49" y="351.5" ></text> +</g> +<g > +<title>getdents64 (10,101,010 samples, 0.10%)</title><rect x="917.4" y="661" width="1.4" height="15.0" fill="rgb(0,198,96)" rx="2" ry="2" /> +<text x="920.43" y="671.5" ></text> +</g> +<g > +<title>ipv4_conntrack_local (30,303,030 samples, 0.29%)</title><rect x="1341.5" y="597" width="4.1" height="15.0" fill="rgb(0,233,53)" rx="2" ry="2" /> +<text x="1344.53" y="607.5" ></text> +</g> +<g > +<title>lock_two_nondirectories (10,101,010 samples, 0.10%)</title><rect x="661.6" y="581" width="1.4" height="15.0" fill="rgb(0,203,180)" rx="2" ry="2" /> +<text x="664.63" y="591.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="781.5" y="421" width="1.3" height="15.0" fill="rgb(0,220,85)" rx="2" ry="2" /> +<text x="784.45" y="431.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (30,303,030 samples, 0.29%)</title><rect x="575.5" y="549" width="4.0" height="15.0" fill="rgb(0,197,61)" rx="2" ry="2" /> +<text x="578.46" y="559.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (10,101,010 samples, 0.10%)</title><rect x="120.4" y="677" width="1.3" height="15.0" fill="rgb(0,207,100)" rx="2" ry="2" /> +<text x="123.40" y="687.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="755.9" y="357" width="1.3" height="15.0" fill="rgb(0,231,166)" rx="2" ry="2" /> +<text x="758.87" y="367.5" ></text> +</g> +<g > +<title>[libc.so.6] (40,404,040 samples, 0.39%)</title><rect x="202.5" y="629" width="5.4" height="15.0" fill="rgb(0,232,16)" rx="2" ry="2" /> +<text x="205.53" y="639.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.10%)</title><rect x="263.1" y="597" width="1.4" height="15.0" fill="rgb(0,203,12)" rx="2" ry="2" /> +<text x="266.11" y="607.5" ></text> +</g> +<g > +<title>shrink_dcache_parent (30,303,030 samples, 0.29%)</title><rect x="321.0" y="565" width="4.0" height="15.0" fill="rgb(0,225,97)" rx="2" ry="2" /> +<text x="324.00" y="575.5" ></text> +</g> +<g > +<title>ksys_write (30,303,030 samples, 0.29%)</title><rect x="685.9" y="581" width="4.0" height="15.0" fill="rgb(0,206,105)" rx="2" ry="2" /> +<text x="688.86" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1194.8" y="661" width="4.0" height="15.0" fill="rgb(0,230,7)" rx="2" ry="2" /> +<text x="1197.78" y="671.5" ></text> +</g> +<g > +<title>vfs_rmdir (141,414,140 samples, 1.37%)</title><rect x="342.5" y="613" width="18.9" height="15.0" fill="rgb(0,209,10)" rx="2" ry="2" /> +<text x="345.55" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="228.1" y="469" width="1.4" height="15.0" fill="rgb(0,237,168)" rx="2" ry="2" /> +<text x="231.11" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_chmod (20,202,020 samples, 0.20%)</title><rect x="1006.3" y="661" width="2.7" height="15.0" fill="rgb(0,227,133)" rx="2" ry="2" /> +<text x="1009.29" y="671.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="730.3" y="517" width="1.3" height="15.0" fill="rgb(0,231,62)" rx="2" ry="2" /> +<text x="733.29" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="551.2" y="757" width="1.4" height="15.0" fill="rgb(0,215,72)" rx="2" ry="2" /> +<text x="554.23" y="767.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="443.5" y="581" width="1.4" height="15.0" fill="rgb(0,197,173)" rx="2" ry="2" /> +<text x="446.52" y="591.5" ></text> +</g> +<g > +<title>ext4_writepages (50,505,050 samples, 0.49%)</title><rect x="766.6" y="469" width="6.8" height="15.0" fill="rgb(0,238,139)" rx="2" ry="2" /> +<text x="769.64" y="479.5" ></text> +</g> +<g > +<title>__indirect_thunk_start (10,101,010 samples, 0.10%)</title><rect x="575.5" y="453" width="1.3" height="15.0" fill="rgb(0,192,40)" rx="2" ry="2" /> +<text x="578.46" y="463.5" ></text> +</g> +<g > +<title>do_faccessat (20,202,020 samples, 0.20%)</title><rect x="1245.9" y="629" width="2.7" height="15.0" fill="rgb(0,209,87)" rx="2" ry="2" /> +<text x="1248.94" y="639.5" ></text> +</g> +<g > +<title>inet_csk_clone_lock (10,101,010 samples, 0.10%)</title><rect x="1377.9" y="213" width="1.3" height="15.0" fill="rgb(0,222,157)" rx="2" ry="2" /> +<text x="1380.88" y="223.5" ></text> +</g> +<g > +<title>path_openat (313,131,310 samples, 3.02%)</title><rect x="128.5" y="821" width="41.7" height="15.0" fill="rgb(0,194,159)" rx="2" ry="2" /> +<text x="131.48" y="831.5" >pat..</text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.20%)</title><rect x="532.4" y="581" width="2.7" height="15.0" fill="rgb(0,212,73)" rx="2" ry="2" /> +<text x="535.38" y="591.5" ></text> +</g> +<g > +<title>__blk_mq_alloc_request (10,101,010 samples, 0.10%)</title><rect x="817.8" y="405" width="1.4" height="15.0" fill="rgb(0,215,161)" rx="2" ry="2" /> +<text x="820.80" y="415.5" ></text> +</g> +<g > +<title>inet_recvmsg (20,202,020 samples, 0.20%)</title><rect x="1368.5" y="613" width="2.7" height="15.0" fill="rgb(0,210,28)" rx="2" ry="2" /> +<text x="1371.46" y="623.5" ></text> +</g> +<g > +<title>ext4_nonda_switch (10,101,010 samples, 0.10%)</title><rect x="1097.8" y="469" width="1.4" height="15.0" fill="rgb(0,217,53)" rx="2" ry="2" /> +<text x="1100.84" y="479.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.10%)</title><rect x="874.4" y="549" width="1.3" height="15.0" fill="rgb(0,190,49)" rx="2" ry="2" /> +<text x="877.35" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="202.5" y="613" width="1.4" height="15.0" fill="rgb(0,230,1)" rx="2" ry="2" /> +<text x="205.53" y="623.5" ></text> +</g> +<g > +<title>lookup_dcache (10,101,010 samples, 0.10%)</title><rect x="248.3" y="549" width="1.3" height="15.0" fill="rgb(0,219,127)" rx="2" ry="2" /> +<text x="251.30" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="850.1" y="661" width="2.7" height="15.0" fill="rgb(0,193,168)" rx="2" ry="2" /> +<text x="853.12" y="671.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="1302.5" y="645" width="1.3" height="15.0" fill="rgb(0,191,177)" rx="2" ry="2" /> +<text x="1305.49" y="655.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.10%)</title><rect x="373.5" y="581" width="1.4" height="15.0" fill="rgb(0,191,181)" rx="2" ry="2" /> +<text x="376.51" y="591.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (10,101,010 samples, 0.10%)</title><rect x="1031.9" y="405" width="1.3" height="15.0" fill="rgb(0,201,98)" rx="2" ry="2" /> +<text x="1034.87" y="415.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.10%)</title><rect x="1197.5" y="645" width="1.3" height="15.0" fill="rgb(0,192,115)" rx="2" ry="2" /> +<text x="1200.47" y="655.5" ></text> +</g> +<g > +<title>kernel_clone (90,909,090 samples, 0.88%)</title><rect x="31.5" y="885" width="12.2" height="15.0" fill="rgb(0,226,177)" rx="2" ry="2" /> +<text x="34.54" y="895.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="754.5" y="613" width="1.4" height="15.0" fill="rgb(0,227,56)" rx="2" ry="2" /> +<text x="757.53" y="623.5" ></text> +</g> +<g > +<title>inet6_release (80,808,080 samples, 0.78%)</title><rect x="62.5" y="613" width="10.8" height="15.0" fill="rgb(0,196,140)" rx="2" ry="2" /> +<text x="65.51" y="623.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="160.8" y="677" width="1.3" height="15.0" fill="rgb(0,195,54)" rx="2" ry="2" /> +<text x="163.79" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="564.7" y="661" width="2.7" height="15.0" fill="rgb(0,230,146)" rx="2" ry="2" /> +<text x="567.69" y="671.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="65.2" y="101" width="1.3" height="15.0" fill="rgb(0,228,94)" rx="2" ry="2" /> +<text x="68.20" y="111.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="1220.4" y="677" width="1.3" height="15.0" fill="rgb(0,218,13)" rx="2" ry="2" /> +<text x="1223.36" y="687.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.10%)</title><rect x="850.1" y="501" width="1.4" height="15.0" fill="rgb(0,199,138)" rx="2" ry="2" /> +<text x="853.12" y="511.5" ></text> +</g> +<g > +<title>ext4_find_entry (20,202,020 samples, 0.20%)</title><rect x="407.2" y="629" width="2.7" height="15.0" fill="rgb(0,220,188)" rx="2" ry="2" /> +<text x="410.17" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="706.1" y="549" width="1.3" height="15.0" fill="rgb(0,220,99)" rx="2" ry="2" /> +<text x="709.06" y="559.5" ></text> +</g> +<g > +<title>__add_to_page_cache_locked (10,101,010 samples, 0.10%)</title><rect x="1054.8" y="501" width="1.3" height="15.0" fill="rgb(0,222,172)" rx="2" ry="2" /> +<text x="1057.76" y="511.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="661" width="1.4" height="15.0" fill="rgb(0,215,76)" rx="2" ry="2" /> +<text x="1312.22" y="671.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.10%)</title><rect x="233.5" y="437" width="1.3" height="15.0" fill="rgb(0,202,0)" rx="2" ry="2" /> +<text x="236.49" y="447.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (80,808,080 samples, 0.78%)</title><rect x="310.2" y="469" width="10.8" height="15.0" fill="rgb(0,235,42)" rx="2" ry="2" /> +<text x="313.23" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.10%)</title><rect x="980.7" y="613" width="1.4" height="15.0" fill="rgb(0,239,198)" rx="2" ry="2" /> +<text x="983.71" y="623.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.10%)</title><rect x="419.3" y="709" width="1.3" height="15.0" fill="rgb(0,231,114)" rx="2" ry="2" /> +<text x="422.29" y="719.5" ></text> +</g> +<g > +<title>close_fd (20,202,020 samples, 0.20%)</title><rect x="536.4" y="677" width="2.7" height="15.0" fill="rgb(0,239,128)" rx="2" ry="2" /> +<text x="539.42" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="474.5" y="613" width="4.0" height="15.0" fill="rgb(0,214,44)" rx="2" ry="2" /> +<text x="477.49" y="623.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (20,202,020 samples, 0.20%)</title><rect x="18.1" y="181" width="2.7" height="15.0" fill="rgb(0,233,104)" rx="2" ry="2" /> +<text x="21.08" y="191.5" ></text> +</g> +<g > +<title>ext4_alloc_io_end_vec (10,101,010 samples, 0.10%)</title><rect x="653.6" y="469" width="1.3" height="15.0" fill="rgb(0,207,85)" rx="2" ry="2" /> +<text x="656.55" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1220.4" y="629" width="1.3" height="15.0" fill="rgb(0,219,188)" rx="2" ry="2" /> +<text x="1223.36" y="639.5" ></text> +</g> +<g > +<title>free (20,202,020 samples, 0.20%)</title><rect x="195.8" y="741" width="2.7" height="15.0" fill="rgb(0,229,76)" rx="2" ry="2" /> +<text x="198.80" y="751.5" ></text> +</g> +<g > +<title>ext4_mkdir (40,404,040 samples, 0.39%)</title><rect x="117.7" y="805" width="5.4" height="15.0" fill="rgb(0,211,182)" rx="2" ry="2" /> +<text x="120.71" y="815.5" ></text> +</g> +<g > +<title>shrink_dcache_parent (10,101,010 samples, 0.10%)</title><rect x="360.0" y="597" width="1.4" height="15.0" fill="rgb(0,210,89)" rx="2" ry="2" /> +<text x="363.05" y="607.5" ></text> +</g> +<g > +<title>ext4_fname_setup_filename (10,101,010 samples, 0.10%)</title><rect x="167.5" y="725" width="1.4" height="15.0" fill="rgb(0,198,54)" rx="2" ry="2" /> +<text x="170.52" y="735.5" ></text> +</g> +<g > +<title>copy_user_enhanced_fast_string (10,101,010 samples, 0.10%)</title><rect x="790.9" y="501" width="1.3" height="15.0" fill="rgb(0,196,131)" rx="2" ry="2" /> +<text x="793.88" y="511.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="597" width="1.4" height="15.0" fill="rgb(0,200,169)" rx="2" ry="2" /> +<text x="1007.95" y="607.5" ></text> +</g> +<g > +<title>jsonrpc_request_send (30,303,030 samples, 0.29%)</title><rect x="1371.2" y="869" width="4.0" height="15.0" fill="rgb(0,210,51)" rx="2" ry="2" /> +<text x="1374.15" y="879.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="917.4" y="453" width="1.4" height="15.0" fill="rgb(0,207,207)" rx="2" ry="2" /> +<text x="920.43" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.78%)</title><rect x="450.3" y="693" width="10.7" height="15.0" fill="rgb(0,215,7)" rx="2" ry="2" /> +<text x="453.25" y="703.5" ></text> +</g> +<g > +<title>__srcu_read_lock (10,101,010 samples, 0.10%)</title><rect x="838.0" y="501" width="1.3" height="15.0" fill="rgb(0,219,150)" rx="2" ry="2" /> +<text x="841.00" y="511.5" ></text> +</g> +<g > +<title>flockfile (10,101,010 samples, 0.10%)</title><rect x="415.2" y="805" width="1.4" height="15.0" fill="rgb(0,237,68)" rx="2" ry="2" /> +<text x="418.25" y="815.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="373" width="1.3" height="15.0" fill="rgb(0,234,9)" rx="2" ry="2" /> +<text x="1029.49" y="383.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.20%)</title><rect x="454.3" y="501" width="2.7" height="15.0" fill="rgb(0,196,62)" rx="2" ry="2" /> +<text x="457.29" y="511.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="545.8" y="693" width="2.7" height="15.0" fill="rgb(0,206,79)" rx="2" ry="2" /> +<text x="548.84" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="450.3" y="661" width="6.7" height="15.0" fill="rgb(0,201,150)" rx="2" ry="2" /> +<text x="453.25" y="671.5" ></text> +</g> +<g > +<title>ext4_free_inode (20,202,020 samples, 0.20%)</title><rect x="393.7" y="613" width="2.7" height="15.0" fill="rgb(0,206,196)" rx="2" ry="2" /> +<text x="396.71" y="623.5" ></text> +</g> +<g > +<title>ip_finish_output2 (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="501" width="2.7" height="15.0" fill="rgb(0,208,54)" rx="2" ry="2" /> +<text x="1380.88" y="511.5" ></text> +</g> +<g > +<title>filename_parentat (10,101,010 samples, 0.10%)</title><rect x="275.2" y="581" width="1.4" height="15.0" fill="rgb(0,191,121)" rx="2" ry="2" /> +<text x="278.23" y="591.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="372.2" y="549" width="1.3" height="15.0" fill="rgb(0,213,196)" rx="2" ry="2" /> +<text x="375.17" y="559.5" ></text> +</g> +<g > +<title>rb_next (10,101,010 samples, 0.10%)</title><rect x="319.7" y="421" width="1.3" height="15.0" fill="rgb(0,236,197)" rx="2" ry="2" /> +<text x="322.66" y="431.5" ></text> +</g> +<g > +<title>filename_parentat (10,101,010 samples, 0.10%)</title><rect x="325.0" y="581" width="1.4" height="15.0" fill="rgb(0,210,187)" rx="2" ry="2" /> +<text x="328.04" y="591.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="870.3" y="485" width="1.4" height="15.0" fill="rgb(0,235,53)" rx="2" ry="2" /> +<text x="873.31" y="495.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="730.3" y="453" width="1.3" height="15.0" fill="rgb(0,223,133)" rx="2" ry="2" /> +<text x="733.29" y="463.5" ></text> +</g> +<g > +<title>do_sys_openat2 (30,303,030 samples, 0.29%)</title><rect x="552.6" y="597" width="4.0" height="15.0" fill="rgb(0,204,98)" rx="2" ry="2" /> +<text x="555.58" y="607.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.10%)</title><rect x="956.5" y="405" width="1.3" height="15.0" fill="rgb(0,198,29)" rx="2" ry="2" /> +<text x="959.48" y="415.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (30,303,030 samples, 0.29%)</title><rect x="1049.4" y="549" width="4.0" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" /> +<text x="1052.38" y="559.5" ></text> +</g> +<g > +<title>apparmor_file_open (10,101,010 samples, 0.10%)</title><rect x="553.9" y="501" width="1.4" height="15.0" fill="rgb(0,208,162)" rx="2" ry="2" /> +<text x="556.92" y="511.5" ></text> +</g> +<g > +<title>prepare_creds (20,202,020 samples, 0.20%)</title><rect x="174.3" y="853" width="2.6" height="15.0" fill="rgb(0,209,70)" rx="2" ry="2" /> +<text x="177.25" y="863.5" ></text> +</g> +<g > +<title>security_inode_permission (10,101,010 samples, 0.10%)</title><rect x="947.1" y="453" width="1.3" height="15.0" fill="rgb(0,217,155)" rx="2" ry="2" /> +<text x="950.05" y="463.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.10%)</title><rect x="236.2" y="517" width="1.3" height="15.0" fill="rgb(0,231,12)" rx="2" ry="2" /> +<text x="239.19" y="527.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="327.7" y="645" width="1.4" height="15.0" fill="rgb(0,195,13)" rx="2" ry="2" /> +<text x="330.74" y="655.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (30,303,030 samples, 0.29%)</title><rect x="1080.3" y="533" width="4.1" height="15.0" fill="rgb(0,194,139)" rx="2" ry="2" /> +<text x="1083.34" y="543.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="160.8" y="661" width="1.3" height="15.0" fill="rgb(0,212,105)" rx="2" ry="2" /> +<text x="163.79" y="671.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="675.1" y="629" width="1.3" height="15.0" fill="rgb(0,227,145)" rx="2" ry="2" /> +<text x="678.09" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="261.8" y="677" width="2.7" height="15.0" fill="rgb(0,227,201)" rx="2" ry="2" /> +<text x="264.77" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1237.9" y="725" width="1.3" height="15.0" fill="rgb(0,235,41)" rx="2" ry="2" /> +<text x="1240.86" y="735.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="304.8" y="421" width="1.4" height="15.0" fill="rgb(0,198,30)" rx="2" ry="2" /> +<text x="307.85" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="417.9" y="773" width="2.7" height="15.0" fill="rgb(0,227,126)" rx="2" ry="2" /> +<text x="420.94" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.10%)</title><rect x="746.4" y="533" width="1.4" height="15.0" fill="rgb(0,235,93)" rx="2" ry="2" /> +<text x="749.45" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_link (70,707,070 samples, 0.68%)</title><rect x="597.0" y="645" width="9.4" height="15.0" fill="rgb(0,198,137)" rx="2" ry="2" /> +<text x="600.00" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="199.8" y="741" width="1.4" height="15.0" fill="rgb(0,207,202)" rx="2" ry="2" /> +<text x="202.83" y="751.5" ></text> +</g> +<g > +<title>__tcp_ack_snd_check (10,101,010 samples, 0.10%)</title><rect x="1330.8" y="229" width="1.3" height="15.0" fill="rgb(0,238,188)" rx="2" ry="2" /> +<text x="1333.76" y="239.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="711.4" y="645" width="1.4" height="15.0" fill="rgb(0,195,167)" rx="2" ry="2" /> +<text x="714.44" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="871.7" y="549" width="1.3" height="15.0" fill="rgb(0,200,0)" rx="2" ry="2" /> +<text x="874.66" y="559.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.10%)</title><rect x="649.5" y="437" width="1.4" height="15.0" fill="rgb(0,200,177)" rx="2" ry="2" /> +<text x="652.51" y="447.5" ></text> +</g> +<g > +<title>sk_stream_alloc_skb (10,101,010 samples, 0.10%)</title><rect x="1387.3" y="693" width="1.4" height="15.0" fill="rgb(0,232,39)" rx="2" ry="2" /> +<text x="1390.31" y="703.5" ></text> +</g> +<g > +<title>git_filter_list_stream_data (40,404,040 samples, 0.39%)</title><rect x="509.5" y="741" width="5.4" height="15.0" fill="rgb(0,203,30)" rx="2" ry="2" /> +<text x="512.49" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="82.7" y="741" width="1.3" height="15.0" fill="rgb(0,231,80)" rx="2" ry="2" /> +<text x="85.70" y="751.5" ></text> +</g> +<g > +<title>git_transport_new (10,101,010 samples, 0.10%)</title><rect x="909.4" y="757" width="1.3" height="15.0" fill="rgb(0,204,24)" rx="2" ry="2" /> +<text x="912.36" y="767.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1371.2" y="725" width="1.3" height="15.0" fill="rgb(0,236,183)" rx="2" ry="2" /> +<text x="1374.15" y="735.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (30,303,030 samples, 0.29%)</title><rect x="677.8" y="517" width="4.0" height="15.0" fill="rgb(0,210,98)" rx="2" ry="2" /> +<text x="680.79" y="527.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.20%)</title><rect x="18.1" y="229" width="2.7" height="15.0" fill="rgb(0,201,114)" rx="2" ry="2" /> +<text x="21.08" y="239.5" ></text> +</g> +<g > +<title>__open64 (40,404,040 samples, 0.39%)</title><rect x="501.4" y="741" width="5.4" height="15.0" fill="rgb(0,239,2)" rx="2" ry="2" /> +<text x="504.41" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="850.1" y="725" width="2.7" height="15.0" fill="rgb(0,201,19)" rx="2" ry="2" /> +<text x="853.12" y="735.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="421" width="1.3" height="15.0" fill="rgb(0,193,154)" rx="2" ry="2" /> +<text x="1029.49" y="431.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="862.2" y="581" width="1.4" height="15.0" fill="rgb(0,238,180)" rx="2" ry="2" /> +<text x="865.23" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="230.8" y="469" width="1.3" height="15.0" fill="rgb(0,212,54)" rx="2" ry="2" /> +<text x="233.80" y="479.5" ></text> +</g> +<g > +<title>do_rmdir (141,414,140 samples, 1.37%)</title><rect x="342.5" y="629" width="18.9" height="15.0" fill="rgb(0,219,95)" rx="2" ry="2" /> +<text x="345.55" y="639.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="454.3" y="565" width="2.7" height="15.0" fill="rgb(0,230,0)" rx="2" ry="2" /> +<text x="457.29" y="575.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="1108.6" y="677" width="1.4" height="15.0" fill="rgb(0,230,172)" rx="2" ry="2" /> +<text x="1111.61" y="687.5" ></text> +</g> +<g > +<title>fscrypt_file_open (20,202,020 samples, 0.20%)</title><rect x="133.9" y="741" width="2.7" height="15.0" fill="rgb(0,213,29)" rx="2" ry="2" /> +<text x="136.86" y="751.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="1056.1" y="693" width="1.4" height="15.0" fill="rgb(0,233,168)" rx="2" ry="2" /> +<text x="1059.11" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="532.4" y="597" width="2.7" height="15.0" fill="rgb(0,194,60)" rx="2" ry="2" /> +<text x="535.38" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1388.7" y="821" width="1.3" height="15.0" fill="rgb(0,200,113)" rx="2" ry="2" /> +<text x="1391.65" y="831.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.10%)</title><rect x="652.2" y="469" width="1.4" height="15.0" fill="rgb(0,236,72)" rx="2" ry="2" /> +<text x="655.20" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="1224.4" y="677" width="2.7" height="15.0" fill="rgb(0,206,203)" rx="2" ry="2" /> +<text x="1227.40" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1025.1" y="613" width="1.4" height="15.0" fill="rgb(0,234,177)" rx="2" ry="2" /> +<text x="1028.14" y="623.5" ></text> +</g> +<g > +<title>realpath (20,202,020 samples, 0.20%)</title><rect x="483.9" y="693" width="2.7" height="15.0" fill="rgb(0,230,111)" rx="2" ry="2" /> +<text x="486.91" y="703.5" ></text> +</g> +<g > +<title>ext4_truncate (10,101,010 samples, 0.10%)</title><rect x="374.9" y="581" width="1.3" height="15.0" fill="rgb(0,220,182)" rx="2" ry="2" /> +<text x="377.86" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.10%)</title><rect x="794.9" y="645" width="1.4" height="15.0" fill="rgb(0,218,37)" rx="2" ry="2" /> +<text x="797.92" y="655.5" ></text> +</g> +<g > +<title>git_remote_disconnect (10,101,010 samples, 0.10%)</title><rect x="910.7" y="773" width="1.3" height="15.0" fill="rgb(0,217,144)" rx="2" ry="2" /> +<text x="913.70" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="696.6" y="629" width="4.1" height="15.0" fill="rgb(0,233,9)" rx="2" ry="2" /> +<text x="699.63" y="639.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="781.5" y="565" width="1.3" height="15.0" fill="rgb(0,228,14)" rx="2" ry="2" /> +<text x="784.45" y="575.5" ></text> +</g> +<g > +<title>git_config_snapshot (40,404,040 samples, 0.39%)</title><rect x="887.8" y="725" width="5.4" height="15.0" fill="rgb(0,236,39)" rx="2" ry="2" /> +<text x="890.81" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="796.3" y="629" width="2.7" height="15.0" fill="rgb(0,237,0)" rx="2" ry="2" /> +<text x="799.26" y="639.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.10%)</title><rect x="303.5" y="501" width="1.3" height="15.0" fill="rgb(0,211,207)" rx="2" ry="2" /> +<text x="306.50" y="511.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.10%)</title><rect x="1118.0" y="485" width="1.4" height="15.0" fill="rgb(0,197,183)" rx="2" ry="2" /> +<text x="1121.04" y="495.5" ></text> +</g> +<g > +<title>blk_mq_do_dispatch_sched (10,101,010 samples, 0.10%)</title><rect x="766.6" y="309" width="1.4" height="15.0" fill="rgb(0,225,192)" rx="2" ry="2" /> +<text x="769.64" y="319.5" ></text> +</g> +<g > +<title>do_writepages (40,404,040 samples, 0.39%)</title><rect x="1124.8" y="501" width="5.4" height="15.0" fill="rgb(0,192,164)" rx="2" ry="2" /> +<text x="1127.77" y="511.5" ></text> +</g> +<g > +<title>ip_output (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="501" width="1.3" height="15.0" fill="rgb(0,239,48)" rx="2" ry="2" /> +<text x="1337.80" y="511.5" ></text> +</g> +<g > +<title>git_repository_open_ext (141,414,140 samples, 1.37%)</title><rect x="1174.6" y="757" width="18.8" height="15.0" fill="rgb(0,200,140)" rx="2" ry="2" /> +<text x="1177.59" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="718.2" y="565" width="2.7" height="15.0" fill="rgb(0,238,82)" rx="2" ry="2" /> +<text x="721.18" y="575.5" ></text> +</g> +<g > +<title>git_reference_create (242,424,240 samples, 2.34%)</title><rect x="672.4" y="757" width="32.3" height="15.0" fill="rgb(0,190,184)" rx="2" ry="2" /> +<text x="675.40" y="767.5" >gi..</text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="233.5" y="405" width="1.3" height="15.0" fill="rgb(0,195,166)" rx="2" ry="2" /> +<text x="236.49" y="415.5" ></text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="549" width="1.4" height="15.0" fill="rgb(0,214,49)" rx="2" ry="2" /> +<text x="1376.84" y="559.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="326.4" y="661" width="1.3" height="15.0" fill="rgb(0,216,78)" rx="2" ry="2" /> +<text x="329.39" y="671.5" ></text> +</g> +<g > +<title>generic_perform_write (30,303,030 samples, 0.29%)</title><rect x="1073.6" y="485" width="4.0" height="15.0" fill="rgb(0,195,193)" rx="2" ry="2" /> +<text x="1076.61" y="495.5" ></text> +</g> +<g > +<title>new_sync_write (30,303,030 samples, 0.29%)</title><rect x="1073.6" y="533" width="4.0" height="15.0" fill="rgb(0,205,200)" rx="2" ry="2" /> +<text x="1076.61" y="543.5" ></text> +</g> +<g > +<title>__netif_receive_skb (20,202,020 samples, 0.20%)</title><rect x="1345.6" y="469" width="2.7" height="15.0" fill="rgb(0,232,125)" rx="2" ry="2" /> +<text x="1348.57" y="479.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="757" width="1.4" height="15.0" fill="rgb(0,192,94)" rx="2" ry="2" /> +<text x="1312.22" y="767.5" ></text> +</g> +<g > +<title>__close_nocancel (10,101,010 samples, 0.10%)</title><rect x="400.4" y="789" width="1.4" height="15.0" fill="rgb(0,194,115)" rx="2" ry="2" /> +<text x="403.44" y="799.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1349.6" y="837" width="1.4" height="15.0" fill="rgb(0,237,154)" rx="2" ry="2" /> +<text x="1352.61" y="847.5" ></text> +</g> +<g > +<title>net_rx_action (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="389" width="1.3" height="15.0" fill="rgb(0,225,61)" rx="2" ry="2" /> +<text x="1337.80" y="399.5" ></text> +</g> +<g > +<title>__fput (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="709" width="2.6" height="15.0" fill="rgb(0,192,92)" rx="2" ry="2" /> +<text x="1336.45" y="719.5" ></text> +</g> +<g > +<title>up_write (10,101,010 samples, 0.10%)</title><rect x="1290.4" y="645" width="1.3" height="15.0" fill="rgb(0,212,32)" rx="2" ry="2" /> +<text x="1293.37" y="655.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (10,101,010 samples, 0.10%)</title><rect x="439.5" y="517" width="1.3" height="15.0" fill="rgb(0,194,55)" rx="2" ry="2" /> +<text x="442.48" y="527.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (10,101,010 samples, 0.10%)</title><rect x="209.3" y="421" width="1.3" height="15.0" fill="rgb(0,216,105)" rx="2" ry="2" /> +<text x="212.26" y="431.5" ></text> +</g> +<g > +<title>ext4_rmdir (40,404,040 samples, 0.39%)</title><rect x="345.2" y="597" width="5.4" height="15.0" fill="rgb(0,233,12)" rx="2" ry="2" /> +<text x="348.24" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (101,010,100 samples, 0.98%)</title><rect x="370.8" y="661" width="13.5" height="15.0" fill="rgb(0,225,62)" rx="2" ry="2" /> +<text x="373.82" y="671.5" ></text> +</g> +<g > +<title>__lookup_slow (30,303,030 samples, 0.29%)</title><rect x="181.0" y="789" width="4.0" height="15.0" fill="rgb(0,190,177)" rx="2" ry="2" /> +<text x="183.99" y="799.5" ></text> +</g> +<g > +<title>down_write (10,101,010 samples, 0.10%)</title><rect x="1289.0" y="645" width="1.4" height="15.0" fill="rgb(0,223,114)" rx="2" ry="2" /> +<text x="1292.02" y="655.5" ></text> +</g> +<g > +<title>sk_wait_data (10,101,010 samples, 0.10%)</title><rect x="1368.5" y="565" width="1.3" height="15.0" fill="rgb(0,223,166)" rx="2" ry="2" /> +<text x="1371.46" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="237.5" y="661" width="4.1" height="15.0" fill="rgb(0,237,22)" rx="2" ry="2" /> +<text x="240.53" y="671.5" ></text> +</g> +<g > +<title>ip_queue_xmit (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="597" width="2.7" height="15.0" fill="rgb(0,210,185)" rx="2" ry="2" /> +<text x="1380.88" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="856.8" y="693" width="2.7" height="15.0" fill="rgb(0,196,170)" rx="2" ry="2" /> +<text x="859.85" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="552.6" y="677" width="4.0" height="15.0" fill="rgb(0,228,179)" rx="2" ry="2" /> +<text x="555.58" y="687.5" ></text> +</g> +<g > +<title>vfs_write (30,303,030 samples, 0.29%)</title><rect x="1073.6" y="549" width="4.0" height="15.0" fill="rgb(0,226,152)" rx="2" ry="2" /> +<text x="1076.61" y="559.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.10%)</title><rect x="695.3" y="549" width="1.3" height="15.0" fill="rgb(0,206,191)" rx="2" ry="2" /> +<text x="698.29" y="559.5" ></text> +</g> +<g > +<title>mktime (20,202,020 samples, 0.20%)</title><rect x="461.0" y="741" width="2.7" height="15.0" fill="rgb(0,237,56)" rx="2" ry="2" /> +<text x="464.02" y="751.5" ></text> +</g> +<g > +<title>git_signature_default (80,808,080 samples, 0.78%)</title><rect x="450.3" y="757" width="10.7" height="15.0" fill="rgb(0,196,164)" rx="2" ry="2" /> +<text x="453.25" y="767.5" ></text> +</g> +<g > +<title>tcp_sendmsg (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="677" width="5.4" height="15.0" fill="rgb(0,238,0)" rx="2" ry="2" /> +<text x="1331.07" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="1175.9" y="693" width="2.7" height="15.0" fill="rgb(0,217,184)" rx="2" ry="2" /> +<text x="1178.93" y="703.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.10%)</title><rect x="249.6" y="549" width="1.4" height="15.0" fill="rgb(0,221,204)" rx="2" ry="2" /> +<text x="252.65" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_socket (10,101,010 samples, 0.10%)</title><rect x="1388.7" y="805" width="1.3" height="15.0" fill="rgb(0,224,69)" rx="2" ry="2" /> +<text x="1391.65" y="815.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.10%)</title><rect x="419.3" y="581" width="1.3" height="15.0" fill="rgb(0,203,173)" rx="2" ry="2" /> +<text x="422.29" y="591.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="593.0" y="645" width="1.3" height="15.0" fill="rgb(0,210,48)" rx="2" ry="2" /> +<text x="595.97" y="655.5" ></text> +</g> +<g > +<title>vm_area_dup (30,303,030 samples, 0.29%)</title><rect x="1291.7" y="645" width="4.1" height="15.0" fill="rgb(0,205,122)" rx="2" ry="2" /> +<text x="1294.72" y="655.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="1131.5" y="517" width="1.3" height="15.0" fill="rgb(0,211,3)" rx="2" ry="2" /> +<text x="1134.50" y="527.5" ></text> +</g> +<g > +<title>__open64 (20,202,020 samples, 0.20%)</title><rect x="672.4" y="629" width="2.7" height="15.0" fill="rgb(0,224,54)" rx="2" ry="2" /> +<text x="675.40" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="443.5" y="677" width="2.7" height="15.0" fill="rgb(0,203,37)" rx="2" ry="2" /> +<text x="446.52" y="687.5" ></text> +</g> +<g > +<title>cimple-worker (9,616,161,520 samples, 92.88%)</title><rect x="108.3" y="981" width="1281.7" height="15.0" fill="rgb(0,197,170)" rx="2" ry="2" /> +<text x="111.28" y="991.5" >cimple-worker</text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.10%)</title><rect x="755.9" y="421" width="1.3" height="15.0" fill="rgb(0,196,83)" rx="2" ry="2" /> +<text x="758.87" y="431.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="405" width="1.4" height="15.0" fill="rgb(0,213,182)" rx="2" ry="2" /> +<text x="1007.95" y="415.5" ></text> +</g> +<g > +<title>git_attr_add_macro (20,202,020 samples, 0.20%)</title><rect x="488.0" y="709" width="2.6" height="15.0" fill="rgb(0,212,78)" rx="2" ry="2" /> +<text x="490.95" y="719.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="677" width="1.4" height="15.0" fill="rgb(0,190,28)" rx="2" ry="2" /> +<text x="1312.22" y="687.5" ></text> +</g> +<g > +<title>libgit_repository_free (90,909,090 samples, 0.88%)</title><rect x="189.1" y="837" width="12.1" height="15.0" fill="rgb(0,238,177)" rx="2" ry="2" /> +<text x="192.06" y="847.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.10%)</title><rect x="451.6" y="581" width="1.3" height="15.0" fill="rgb(0,206,64)" rx="2" ry="2" /> +<text x="454.60" y="591.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="644.1" y="517" width="1.4" height="15.0" fill="rgb(0,204,91)" rx="2" ry="2" /> +<text x="647.13" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="661" width="1.4" height="15.0" fill="rgb(0,234,96)" rx="2" ry="2" /> +<text x="1007.95" y="671.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.10%)</title><rect x="443.5" y="549" width="1.4" height="15.0" fill="rgb(0,198,162)" rx="2" ry="2" /> +<text x="446.52" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="548.5" y="741" width="1.4" height="15.0" fill="rgb(0,232,188)" rx="2" ry="2" /> +<text x="551.54" y="751.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.10%)</title><rect x="1330.8" y="101" width="1.3" height="15.0" fill="rgb(0,194,172)" rx="2" ry="2" /> +<text x="1333.76" y="111.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (10,101,010 samples, 0.10%)</title><rect x="1371.2" y="789" width="1.3" height="15.0" fill="rgb(0,193,11)" rx="2" ry="2" /> +<text x="1374.15" y="799.5" ></text> +</g> +<g > +<title>wait_woken (10,101,010 samples, 0.10%)</title><rect x="1368.5" y="549" width="1.3" height="15.0" fill="rgb(0,213,195)" rx="2" ry="2" /> +<text x="1371.46" y="559.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="42.3" y="789" width="1.4" height="15.0" fill="rgb(0,215,26)" rx="2" ry="2" /> +<text x="45.31" y="799.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="1139.6" y="581" width="1.3" height="15.0" fill="rgb(0,206,6)" rx="2" ry="2" /> +<text x="1142.58" y="591.5" ></text> +</g> +<g > +<title>ext4_map_blocks (30,303,030 samples, 0.29%)</title><rect x="582.2" y="501" width="4.0" height="15.0" fill="rgb(0,204,65)" rx="2" ry="2" /> +<text x="585.20" y="511.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="925.5" y="629" width="1.4" height="15.0" fill="rgb(0,214,115)" rx="2" ry="2" /> +<text x="928.51" y="639.5" ></text> +</g> +<g > +<title>filename_parentat (10,101,010 samples, 0.10%)</title><rect x="1040.0" y="645" width="1.3" height="15.0" fill="rgb(0,219,3)" rx="2" ry="2" /> +<text x="1042.95" y="655.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="1167.9" y="437" width="1.3" height="15.0" fill="rgb(0,234,15)" rx="2" ry="2" /> +<text x="1170.85" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="754.5" y="645" width="2.7" height="15.0" fill="rgb(0,235,191)" rx="2" ry="2" /> +<text x="757.53" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="746.4" y="565" width="1.4" height="15.0" fill="rgb(0,233,64)" rx="2" ry="2" /> +<text x="749.45" y="575.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="730.3" y="469" width="1.3" height="15.0" fill="rgb(0,230,79)" rx="2" ry="2" /> +<text x="733.29" y="479.5" ></text> +</g> +<g > +<title>git_refdb_backend_fs (20,202,020 samples, 0.20%)</title><rect x="1202.9" y="725" width="2.7" height="15.0" fill="rgb(0,224,145)" rx="2" ry="2" /> +<text x="1205.86" y="735.5" ></text> +</g> +<g > +<title>clear_page_dirty_for_io (10,101,010 samples, 0.10%)</title><rect x="1033.2" y="405" width="1.4" height="15.0" fill="rgb(0,232,180)" rx="2" ry="2" /> +<text x="1036.22" y="415.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="193.1" y="709" width="1.3" height="15.0" fill="rgb(0,193,137)" rx="2" ry="2" /> +<text x="196.10" y="719.5" ></text> +</g> +<g > +<title>rename (70,707,070 samples, 0.68%)</title><rect x="926.9" y="709" width="9.4" height="15.0" fill="rgb(0,220,130)" rx="2" ry="2" /> +<text x="929.86" y="719.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="735.7" y="533" width="1.3" height="15.0" fill="rgb(0,223,117)" rx="2" ry="2" /> +<text x="738.68" y="543.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="799.0" y="693" width="1.3" height="15.0" fill="rgb(0,238,5)" rx="2" ry="2" /> +<text x="801.96" y="703.5" ></text> +</g> +<g > +<title>path_init (10,101,010 samples, 0.10%)</title><rect x="168.9" y="805" width="1.3" height="15.0" fill="rgb(0,219,155)" rx="2" ry="2" /> +<text x="171.87" y="815.5" ></text> +</g> +<g > +<title>revert_creds (10,101,010 samples, 0.10%)</title><rect x="1188.0" y="613" width="1.4" height="15.0" fill="rgb(0,195,111)" rx="2" ry="2" /> +<text x="1191.05" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="502.8" y="725" width="4.0" height="15.0" fill="rgb(0,231,29)" rx="2" ry="2" /> +<text x="505.76" y="735.5" ></text> +</g> +<g > +<title>json_tokener_parse_verbose (40,404,040 samples, 0.39%)</title><rect x="1361.7" y="773" width="5.4" height="15.0" fill="rgb(0,226,147)" rx="2" ry="2" /> +<text x="1364.73" y="783.5" ></text> +</g> +<g > +<title>__strdup (10,101,010 samples, 0.10%)</title><rect x="458.3" y="661" width="1.4" height="15.0" fill="rgb(0,209,98)" rx="2" ry="2" /> +<text x="461.33" y="671.5" ></text> +</g> +<g > +<title>__do_munmap (10,101,010 samples, 0.10%)</title><rect x="54.4" y="693" width="1.4" height="15.0" fill="rgb(0,210,208)" rx="2" ry="2" /> +<text x="57.43" y="703.5" ></text> +</g> +<g > +<title>do_mkdirat (111,111,110 samples, 1.07%)</title><rect x="949.7" y="549" width="14.9" height="15.0" fill="rgb(0,239,45)" rx="2" ry="2" /> +<text x="952.75" y="559.5" ></text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="517" width="1.4" height="15.0" fill="rgb(0,195,51)" rx="2" ry="2" /> +<text x="1379.54" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="862.2" y="613" width="1.4" height="15.0" fill="rgb(0,219,77)" rx="2" ry="2" /> +<text x="865.23" y="623.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="549" width="1.3" height="15.0" fill="rgb(0,199,180)" rx="2" ry="2" /> +<text x="1029.49" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.49%)</title><rect x="436.8" y="693" width="6.7" height="15.0" fill="rgb(0,223,87)" rx="2" ry="2" /> +<text x="439.79" y="703.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (40,404,040 samples, 0.39%)</title><rect x="613.2" y="581" width="5.3" height="15.0" fill="rgb(0,190,155)" rx="2" ry="2" /> +<text x="616.16" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="870.3" y="581" width="1.4" height="15.0" fill="rgb(0,235,82)" rx="2" ry="2" /> +<text x="873.31" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="825.9" y="725" width="1.3" height="15.0" fill="rgb(0,219,118)" rx="2" ry="2" /> +<text x="828.88" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="479.9" y="645" width="1.3" height="15.0" fill="rgb(0,193,185)" rx="2" ry="2" /> +<text x="482.87" y="655.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.10%)</title><rect x="921.5" y="565" width="1.3" height="15.0" fill="rgb(0,234,55)" rx="2" ry="2" /> +<text x="924.47" y="575.5" ></text> +</g> +<g > +<title>ext4_bread (80,808,080 samples, 0.78%)</title><rect x="1142.3" y="597" width="10.7" height="15.0" fill="rgb(0,229,67)" rx="2" ry="2" /> +<text x="1145.27" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="527.0" y="709" width="4.0" height="15.0" fill="rgb(0,221,139)" rx="2" ry="2" /> +<text x="530.00" y="719.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="757.2" y="565" width="2.7" height="15.0" fill="rgb(0,236,71)" rx="2" ry="2" /> +<text x="760.22" y="575.5" ></text> +</g> +<g > +<title>git_object_lookup_prefix (60,606,060 samples, 0.59%)</title><rect x="540.5" y="789" width="8.0" height="15.0" fill="rgb(0,220,136)" rx="2" ry="2" /> +<text x="543.46" y="799.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.10%)</title><rect x="395.1" y="581" width="1.3" height="15.0" fill="rgb(0,204,130)" rx="2" ry="2" /> +<text x="398.05" y="591.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (40,404,040 samples, 0.39%)</title><rect x="15.4" y="501" width="5.4" height="15.0" fill="rgb(0,224,91)" rx="2" ry="2" /> +<text x="18.39" y="511.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="904.0" y="629" width="2.7" height="15.0" fill="rgb(0,199,197)" rx="2" ry="2" /> +<text x="906.97" y="639.5" ></text> +</g> +<g > +<title>atime_needs_update (10,101,010 samples, 0.10%)</title><rect x="710.1" y="453" width="1.3" height="15.0" fill="rgb(0,227,147)" rx="2" ry="2" /> +<text x="713.10" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="478.5" y="645" width="1.4" height="15.0" fill="rgb(0,222,80)" rx="2" ry="2" /> +<text x="481.53" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.49%)</title><rect x="613.2" y="661" width="6.7" height="15.0" fill="rgb(0,224,77)" rx="2" ry="2" /> +<text x="616.16" y="671.5" ></text> +</g> +<g > +<title>_IO_fprintf (70,707,070 samples, 0.68%)</title><rect x="94.8" y="837" width="9.4" height="15.0" fill="rgb(0,199,97)" rx="2" ry="2" /> +<text x="97.82" y="847.5" ></text> +</g> +<g > +<title>nd_jump_root (10,101,010 samples, 0.10%)</title><rect x="548.5" y="613" width="1.4" height="15.0" fill="rgb(0,201,166)" rx="2" ry="2" /> +<text x="551.54" y="623.5" ></text> +</g> +<g > +<title>rw_verify_area (10,101,010 samples, 0.10%)</title><rect x="805.7" y="565" width="1.3" height="15.0" fill="rgb(0,217,110)" rx="2" ry="2" /> +<text x="808.69" y="575.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="951.1" y="469" width="1.3" height="15.0" fill="rgb(0,216,93)" rx="2" ry="2" /> +<text x="954.09" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="782.8" y="565" width="1.3" height="15.0" fill="rgb(0,214,125)" rx="2" ry="2" /> +<text x="785.80" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1079.0" y="645" width="1.3" height="15.0" fill="rgb(0,228,148)" rx="2" ry="2" /> +<text x="1082.00" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.68%)</title><rect x="1208.2" y="677" width="9.5" height="15.0" fill="rgb(0,236,114)" rx="2" ry="2" /> +<text x="1211.24" y="687.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.10%)</title><rect x="691.2" y="469" width="1.4" height="15.0" fill="rgb(0,226,127)" rx="2" ry="2" /> +<text x="694.25" y="479.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="917.4" y="501" width="1.4" height="15.0" fill="rgb(0,197,44)" rx="2" ry="2" /> +<text x="920.43" y="511.5" ></text> +</g> +<g > +<title>vfs_rmdir (20,202,020 samples, 0.20%)</title><rect x="385.6" y="645" width="2.7" height="15.0" fill="rgb(0,198,24)" rx="2" ry="2" /> +<text x="388.63" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (30,303,030 samples, 0.29%)</title><rect x="474.5" y="581" width="4.0" height="15.0" fill="rgb(0,239,91)" rx="2" ry="2" /> +<text x="477.49" y="591.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="969.9" y="501" width="1.4" height="15.0" fill="rgb(0,205,89)" rx="2" ry="2" /> +<text x="972.94" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="461.0" y="661" width="1.4" height="15.0" fill="rgb(0,201,55)" rx="2" ry="2" /> +<text x="464.02" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="918.8" y="693" width="1.3" height="15.0" fill="rgb(0,219,57)" rx="2" ry="2" /> +<text x="921.78" y="703.5" ></text> +</g> +<g > +<title>simple_copy_to_iter (10,101,010 samples, 0.10%)</title><rect x="1369.8" y="533" width="1.4" height="15.0" fill="rgb(0,231,10)" rx="2" ry="2" /> +<text x="1372.80" y="543.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="1255.4" y="533" width="1.3" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" /> +<text x="1258.37" y="543.5" ></text> +</g> +<g > +<title>git_repository_config_snapshot (90,909,090 samples, 0.88%)</title><rect x="1237.9" y="773" width="12.1" height="15.0" fill="rgb(0,234,137)" rx="2" ry="2" /> +<text x="1240.86" y="783.5" ></text> +</g> +<g > +<title>__libc_calloc (20,202,020 samples, 0.20%)</title><rect x="991.5" y="549" width="2.7" height="15.0" fill="rgb(0,194,68)" rx="2" ry="2" /> +<text x="994.48" y="559.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="782.8" y="437" width="1.3" height="15.0" fill="rgb(0,226,175)" rx="2" ry="2" /> +<text x="785.80" y="447.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.10%)</title><rect x="574.1" y="533" width="1.4" height="15.0" fill="rgb(0,230,182)" rx="2" ry="2" /> +<text x="577.12" y="543.5" ></text> +</g> +<g > +<title>event_loop_run (373,737,370 samples, 3.61%)</title><rect x="43.7" y="869" width="49.8" height="15.0" fill="rgb(0,239,197)" rx="2" ry="2" /> +<text x="46.66" y="879.5" >event..</text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="1161.1" y="661" width="1.4" height="15.0" fill="rgb(0,214,114)" rx="2" ry="2" /> +<text x="1164.12" y="671.5" ></text> +</g> +<g > +<title>ext4_fc_init_inode (10,101,010 samples, 0.10%)</title><rect x="572.8" y="501" width="1.3" height="15.0" fill="rgb(0,196,61)" rx="2" ry="2" /> +<text x="575.77" y="511.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="597" width="1.4" height="15.0" fill="rgb(0,198,127)" rx="2" ry="2" /> +<text x="1379.54" y="607.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.20%)</title><rect x="672.4" y="549" width="2.7" height="15.0" fill="rgb(0,195,69)" rx="2" ry="2" /> +<text x="675.40" y="559.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (20,202,020 samples, 0.20%)</title><rect x="1324.0" y="789" width="2.7" height="15.0" fill="rgb(0,202,56)" rx="2" ry="2" /> +<text x="1327.03" y="799.5" ></text> +</g> +<g > +<title>ip_output (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="533" width="5.4" height="15.0" fill="rgb(0,235,194)" rx="2" ry="2" /> +<text x="1331.07" y="543.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="629" width="2.7" height="15.0" fill="rgb(0,231,98)" rx="2" ry="2" /> +<text x="1375.50" y="639.5" ></text> +</g> +<g > +<title>iput (50,505,050 samples, 0.49%)</title><rect x="646.8" y="533" width="6.8" height="15.0" fill="rgb(0,196,83)" rx="2" ry="2" /> +<text x="649.82" y="543.5" ></text> +</g> +<g > +<title>_IO_file_write (60,606,060 samples, 0.59%)</title><rect x="96.2" y="789" width="8.0" height="15.0" fill="rgb(0,225,46)" rx="2" ry="2" /> +<text x="99.17" y="799.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="885.1" y="629" width="1.4" height="15.0" fill="rgb(0,221,7)" rx="2" ry="2" /> +<text x="888.12" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="1136.9" y="597" width="1.3" height="15.0" fill="rgb(0,225,30)" rx="2" ry="2" /> +<text x="1139.89" y="607.5" ></text> +</g> +<g > +<title>lockref_put_return (10,101,010 samples, 0.10%)</title><rect x="1375.2" y="693" width="1.3" height="15.0" fill="rgb(0,196,203)" rx="2" ry="2" /> +<text x="1378.19" y="703.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="479.9" y="613" width="1.3" height="15.0" fill="rgb(0,197,145)" rx="2" ry="2" /> +<text x="482.87" y="623.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="613" width="1.4" height="15.0" fill="rgb(0,231,132)" rx="2" ry="2" /> +<text x="1312.22" y="623.5" ></text> +</g> +<g > +<title>ext4_getblk (80,808,080 samples, 0.78%)</title><rect x="1142.3" y="581" width="10.7" height="15.0" fill="rgb(0,210,129)" rx="2" ry="2" /> +<text x="1145.27" y="591.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (20,202,020 samples, 0.20%)</title><rect x="1084.4" y="533" width="2.7" height="15.0" fill="rgb(0,201,29)" rx="2" ry="2" /> +<text x="1087.38" y="543.5" ></text> +</g> +<g > +<title>pipe_write (10,101,010 samples, 0.10%)</title><rect x="101.6" y="661" width="1.3" height="15.0" fill="rgb(0,233,139)" rx="2" ry="2" /> +<text x="104.55" y="671.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (20,202,020 samples, 0.20%)</title><rect x="1138.2" y="613" width="2.7" height="15.0" fill="rgb(0,239,55)" rx="2" ry="2" /> +<text x="1141.23" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="453" width="1.4" height="15.0" fill="rgb(0,230,185)" rx="2" ry="2" /> +<text x="1007.95" y="463.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.10%)</title><rect x="687.2" y="421" width="1.4" height="15.0" fill="rgb(0,232,135)" rx="2" ry="2" /> +<text x="690.21" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="509.5" y="709" width="4.0" height="15.0" fill="rgb(0,232,150)" rx="2" ry="2" /> +<text x="512.49" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="778.8" y="629" width="4.0" height="15.0" fill="rgb(0,236,52)" rx="2" ry="2" /> +<text x="781.76" y="639.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.20%)</title><rect x="747.8" y="613" width="2.7" height="15.0" fill="rgb(0,217,1)" rx="2" ry="2" /> +<text x="750.80" y="623.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.10%)</title><rect x="55.8" y="677" width="1.3" height="15.0" fill="rgb(0,234,119)" rx="2" ry="2" /> +<text x="58.78" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (434,343,430 samples, 4.20%)</title><rect x="562.0" y="725" width="57.9" height="15.0" fill="rgb(0,219,134)" rx="2" ry="2" /> +<text x="565.00" y="735.5" >[libgi..</text> +</g> +<g > +<title>mb_find_order_for_block (10,101,010 samples, 0.10%)</title><rect x="584.9" y="405" width="1.3" height="15.0" fill="rgb(0,197,61)" rx="2" ry="2" /> +<text x="587.89" y="415.5" ></text> +</g> +<g > +<title>iput (20,202,020 samples, 0.20%)</title><rect x="839.3" y="549" width="2.7" height="15.0" fill="rgb(0,229,208)" rx="2" ry="2" /> +<text x="842.35" y="559.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="1080.3" y="405" width="1.4" height="15.0" fill="rgb(0,202,196)" rx="2" ry="2" /> +<text x="1083.34" y="415.5" ></text> +</g> +<g > +<title>put_cred_rcu (10,101,010 samples, 0.10%)</title><rect x="1069.6" y="565" width="1.3" height="15.0" fill="rgb(0,236,170)" rx="2" ry="2" /> +<text x="1072.57" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="626.6" y="613" width="2.7" height="15.0" fill="rgb(0,221,101)" rx="2" ry="2" /> +<text x="629.62" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="789" width="1.4" height="15.0" fill="rgb(0,227,36)" rx="2" ry="2" /> +<text x="1312.22" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="983.4" y="645" width="6.7" height="15.0" fill="rgb(0,225,146)" rx="2" ry="2" /> +<text x="986.40" y="655.5" ></text> +</g> +<g > +<title>tcp_send_fin (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="613" width="1.4" height="15.0" fill="rgb(0,199,103)" rx="2" ry="2" /> +<text x="1379.54" y="623.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="500.1" y="725" width="1.3" height="15.0" fill="rgb(0,239,181)" rx="2" ry="2" /> +<text x="503.07" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="1073.6" y="597" width="4.0" height="15.0" fill="rgb(0,233,6)" rx="2" ry="2" /> +<text x="1076.61" y="607.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="998.2" y="549" width="1.4" height="15.0" fill="rgb(0,194,26)" rx="2" ry="2" /> +<text x="1001.21" y="559.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (101,010,100 samples, 0.98%)</title><rect x="895.9" y="693" width="13.5" height="15.0" fill="rgb(0,216,201)" rx="2" ry="2" /> +<text x="898.89" y="703.5" ></text> +</g> +<g > +<title>tcp_data_queue (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="197" width="1.4" height="15.0" fill="rgb(0,210,139)" rx="2" ry="2" /> +<text x="1379.54" y="207.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="629" width="1.4" height="15.0" fill="rgb(0,206,147)" rx="2" ry="2" /> +<text x="1007.95" y="639.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.10%)</title><rect x="80.0" y="725" width="1.4" height="15.0" fill="rgb(0,239,201)" rx="2" ry="2" /> +<text x="83.01" y="735.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="755.9" y="437" width="1.3" height="15.0" fill="rgb(0,197,76)" rx="2" ry="2" /> +<text x="758.87" y="447.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="728.9" y="581" width="1.4" height="15.0" fill="rgb(0,190,78)" rx="2" ry="2" /> +<text x="731.95" y="591.5" ></text> +</g> +<g > +<title>git_repository_open_ext (212,121,210 samples, 2.05%)</title><rect x="881.1" y="741" width="28.3" height="15.0" fill="rgb(0,238,18)" rx="2" ry="2" /> +<text x="884.08" y="751.5" >g..</text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="895.9" y="533" width="1.3" height="15.0" fill="rgb(0,220,52)" rx="2" ry="2" /> +<text x="898.89" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1189.4" y="677" width="4.0" height="15.0" fill="rgb(0,196,62)" rx="2" ry="2" /> +<text x="1192.40" y="687.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.10%)</title><rect x="431.4" y="549" width="1.4" height="15.0" fill="rgb(0,232,170)" rx="2" ry="2" /> +<text x="434.40" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="529.7" y="645" width="1.3" height="15.0" fill="rgb(0,216,99)" rx="2" ry="2" /> +<text x="532.69" y="655.5" ></text> +</g> +<g > +<title>irqentry_exit (10,101,010 samples, 0.10%)</title><rect x="754.5" y="549" width="1.4" height="15.0" fill="rgb(0,228,30)" rx="2" ry="2" /> +<text x="757.53" y="559.5" ></text> +</g> +<g > +<title>task_work_run (20,202,020 samples, 0.20%)</title><rect x="543.2" y="597" width="2.6" height="15.0" fill="rgb(0,204,86)" rx="2" ry="2" /> +<text x="546.15" y="607.5" ></text> +</g> +<g > +<title>io_schedule (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="389" width="1.4" height="15.0" fill="rgb(0,194,138)" rx="2" ry="2" /> +<text x="1030.83" y="399.5" ></text> +</g> +<g > +<title>main (9,010,100,920 samples, 87.02%)</title><rect x="189.1" y="917" width="1200.9" height="15.0" fill="rgb(0,228,43)" rx="2" ry="2" /> +<text x="192.06" y="927.5" >main</text> +</g> +<g > +<title>dentry_kill (30,303,030 samples, 0.29%)</title><rect x="1080.3" y="565" width="4.1" height="15.0" fill="rgb(0,200,151)" rx="2" ry="2" /> +<text x="1083.34" y="575.5" ></text> +</g> +<g > +<title>stop_this_handle (10,101,010 samples, 0.10%)</title><rect x="146.0" y="725" width="1.3" height="15.0" fill="rgb(0,197,17)" rx="2" ry="2" /> +<text x="148.98" y="735.5" ></text> +</g> +<g > +<title>close_fd (10,101,010 samples, 0.10%)</title><rect x="1303.8" y="741" width="1.4" height="15.0" fill="rgb(0,207,95)" rx="2" ry="2" /> +<text x="1306.83" y="751.5" ></text> +</g> +<g > +<title>proc_capture (393,939,390 samples, 3.80%)</title><rect x="1256.7" y="821" width="52.5" height="15.0" fill="rgb(0,206,44)" rx="2" ry="2" /> +<text x="1259.71" y="831.5" >proc_..</text> +</g> +<g > +<title>ext4_lookup.part.0 (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="629" width="1.4" height="15.0" fill="rgb(0,225,102)" rx="2" ry="2" /> +<text x="1312.22" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="552.6" y="789" width="8.1" height="15.0" fill="rgb(0,226,11)" rx="2" ry="2" /> +<text x="555.58" y="799.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="1224.4" y="629" width="2.7" height="15.0" fill="rgb(0,233,103)" rx="2" ry="2" /> +<text x="1227.40" y="639.5" ></text> +</g> +<g > +<title>call_filldir (10,101,010 samples, 0.10%)</title><rect x="334.5" y="597" width="1.3" height="15.0" fill="rgb(0,225,35)" rx="2" ry="2" /> +<text x="337.47" y="607.5" ></text> +</g> +<g > +<title>nf_conntrack_handle_packet (10,101,010 samples, 0.10%)</title><rect x="1333.5" y="437" width="1.3" height="15.0" fill="rgb(0,190,209)" rx="2" ry="2" /> +<text x="1336.45" y="447.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="689.9" y="581" width="2.7" height="15.0" fill="rgb(0,205,163)" rx="2" ry="2" /> +<text x="692.90" y="591.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="189.1" y="629" width="1.3" height="15.0" fill="rgb(0,216,19)" rx="2" ry="2" /> +<text x="192.06" y="639.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (30,303,030 samples, 0.29%)</title><rect x="16.7" y="389" width="4.1" height="15.0" fill="rgb(0,237,20)" rx="2" ry="2" /> +<text x="19.73" y="399.5" ></text> +</g> +<g > +<title>git_refdb_backend_fs (30,303,030 samples, 0.29%)</title><rect x="877.0" y="661" width="4.1" height="15.0" fill="rgb(0,202,19)" rx="2" ry="2" /> +<text x="880.04" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="854.2" y="693" width="2.6" height="15.0" fill="rgb(0,236,64)" rx="2" ry="2" /> +<text x="857.16" y="703.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="225.4" y="517" width="2.7" height="15.0" fill="rgb(0,228,53)" rx="2" ry="2" /> +<text x="228.41" y="527.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="230.8" y="453" width="1.3" height="15.0" fill="rgb(0,191,154)" rx="2" ry="2" /> +<text x="233.80" y="463.5" ></text> +</g> +<g > +<title>ext4_inode_csum (30,303,030 samples, 0.29%)</title><rect x="294.1" y="453" width="4.0" height="15.0" fill="rgb(0,236,40)" rx="2" ry="2" /> +<text x="297.08" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="443.5" y="709" width="5.4" height="15.0" fill="rgb(0,213,206)" rx="2" ry="2" /> +<text x="446.52" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="803.0" y="661" width="2.7" height="15.0" fill="rgb(0,238,142)" rx="2" ry="2" /> +<text x="806.00" y="671.5" ></text> +</g> +<g > +<title>vfs_unlink (10,101,010 samples, 0.10%)</title><rect x="695.3" y="597" width="1.3" height="15.0" fill="rgb(0,200,30)" rx="2" ry="2" /> +<text x="698.29" y="607.5" ></text> +</g> +<g > +<title>ext4_get_group_desc (10,101,010 samples, 0.10%)</title><rect x="317.0" y="421" width="1.3" height="15.0" fill="rgb(0,213,91)" rx="2" ry="2" /> +<text x="319.97" y="431.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (10,101,010 samples, 0.10%)</title><rect x="1003.6" y="565" width="1.3" height="15.0" fill="rgb(0,202,128)" rx="2" ry="2" /> +<text x="1006.60" y="575.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="871.7" y="533" width="1.3" height="15.0" fill="rgb(0,234,50)" rx="2" ry="2" /> +<text x="874.66" y="543.5" ></text> +</g> +<g > +<title>client_create_thread (70,707,070 samples, 0.68%)</title><rect x="76.0" y="805" width="9.4" height="15.0" fill="rgb(0,204,83)" rx="2" ry="2" /> +<text x="78.97" y="815.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.10%)</title><rect x="754.5" y="485" width="1.4" height="15.0" fill="rgb(0,231,208)" rx="2" ry="2" /> +<text x="757.53" y="495.5" ></text> +</g> +<g > +<title>__blk_mq_run_hw_queue (10,101,010 samples, 0.10%)</title><rect x="816.5" y="389" width="1.3" height="15.0" fill="rgb(0,235,95)" rx="2" ry="2" /> +<text x="819.46" y="399.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="426.0" y="677" width="1.4" height="15.0" fill="rgb(0,229,139)" rx="2" ry="2" /> +<text x="429.02" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="492.0" y="613" width="2.7" height="15.0" fill="rgb(0,199,68)" rx="2" ry="2" /> +<text x="494.99" y="623.5" ></text> +</g> +<g > +<title>tcp_server_accept_handler (131,313,130 samples, 1.27%)</title><rect x="76.0" y="853" width="17.5" height="15.0" fill="rgb(0,211,158)" rx="2" ry="2" /> +<text x="78.97" y="863.5" ></text> +</g> +<g > +<title>__find_get_block_slow (10,101,010 samples, 0.10%)</title><rect x="286.0" y="437" width="1.3" height="15.0" fill="rgb(0,207,205)" rx="2" ry="2" /> +<text x="289.00" y="447.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.10%)</title><rect x="755.9" y="469" width="1.3" height="15.0" fill="rgb(0,226,129)" rx="2" ry="2" /> +<text x="758.87" y="479.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1232.5" y="629" width="1.3" height="15.0" fill="rgb(0,230,174)" rx="2" ry="2" /> +<text x="1235.48" y="639.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="781.5" y="453" width="1.3" height="15.0" fill="rgb(0,228,92)" rx="2" ry="2" /> +<text x="784.45" y="463.5" ></text> +</g> +<g > +<title>bio_endio (10,101,010 samples, 0.10%)</title><rect x="213.3" y="309" width="1.3" height="15.0" fill="rgb(0,230,153)" rx="2" ry="2" /> +<text x="216.30" y="319.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="533" width="1.4" height="15.0" fill="rgb(0,211,172)" rx="2" ry="2" /> +<text x="1030.83" y="543.5" ></text> +</g> +<g > +<title>json_to_string (20,202,020 samples, 0.20%)</title><rect x="1324.0" y="837" width="2.7" height="15.0" fill="rgb(0,229,89)" rx="2" ry="2" /> +<text x="1327.03" y="847.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="506.8" y="757" width="1.3" height="15.0" fill="rgb(0,222,38)" rx="2" ry="2" /> +<text x="509.80" y="767.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="1110.0" y="565" width="1.3" height="15.0" fill="rgb(0,234,65)" rx="2" ry="2" /> +<text x="1112.96" y="575.5" ></text> +</g> +<g > +<title>ip_output (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="501" width="1.4" height="15.0" fill="rgb(0,210,15)" rx="2" ry="2" /> +<text x="1379.54" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.10%)</title><rect x="1079.0" y="613" width="1.3" height="15.0" fill="rgb(0,226,18)" rx="2" ry="2" /> +<text x="1082.00" y="623.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.10%)</title><rect x="728.9" y="533" width="1.4" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="731.95" y="543.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="883.8" y="645" width="1.3" height="15.0" fill="rgb(0,230,196)" rx="2" ry="2" /> +<text x="886.78" y="655.5" ></text> +</g> +<g > +<title>__d_alloc (10,101,010 samples, 0.10%)</title><rect x="936.3" y="565" width="1.3" height="15.0" fill="rgb(0,208,75)" rx="2" ry="2" /> +<text x="939.28" y="575.5" ></text> +</g> +<g > +<title>blk_flush_plug_list (10,101,010 samples, 0.10%)</title><rect x="440.8" y="501" width="1.4" height="15.0" fill="rgb(0,229,175)" rx="2" ry="2" /> +<text x="443.83" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1194.8" y="581" width="1.3" height="15.0" fill="rgb(0,214,64)" rx="2" ry="2" /> +<text x="1197.78" y="591.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="681.8" y="389" width="1.4" height="15.0" fill="rgb(0,233,74)" rx="2" ry="2" /> +<text x="684.82" y="399.5" ></text> +</g> +<g > +<title>__netif_receive_skb (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="389" width="2.7" height="15.0" fill="rgb(0,213,24)" rx="2" ry="2" /> +<text x="1380.88" y="399.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.10%)</title><rect x="236.2" y="533" width="1.3" height="15.0" fill="rgb(0,204,106)" rx="2" ry="2" /> +<text x="239.19" y="543.5" ></text> +</g> +<g > +<title>alloc_file_pseudo (10,101,010 samples, 0.10%)</title><rect x="85.4" y="693" width="1.3" height="15.0" fill="rgb(0,190,72)" rx="2" ry="2" /> +<text x="88.40" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1167.9" y="613" width="1.3" height="15.0" fill="rgb(0,202,173)" rx="2" ry="2" /> +<text x="1170.85" y="623.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (20,202,020 samples, 0.20%)</title><rect x="681.8" y="501" width="2.7" height="15.0" fill="rgb(0,237,165)" rx="2" ry="2" /> +<text x="684.82" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.59%)</title><rect x="115.0" y="869" width="8.1" height="15.0" fill="rgb(0,225,63)" rx="2" ry="2" /> +<text x="118.01" y="879.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="284.7" y="421" width="1.3" height="15.0" fill="rgb(0,235,127)" rx="2" ry="2" /> +<text x="287.65" y="431.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="711.4" y="597" width="1.4" height="15.0" fill="rgb(0,199,51)" rx="2" ry="2" /> +<text x="714.44" y="607.5" ></text> +</g> +<g > +<title>net_send_buf (50,505,050 samples, 0.49%)</title><rect x="1326.7" y="837" width="6.8" height="15.0" fill="rgb(0,239,11)" rx="2" ry="2" /> +<text x="1329.72" y="847.5" ></text> +</g> +<g > +<title>__close_nocancel (20,202,020 samples, 0.20%)</title><rect x="606.4" y="709" width="2.7" height="15.0" fill="rgb(0,196,75)" rx="2" ry="2" /> +<text x="609.43" y="719.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (10,101,010 samples, 0.10%)</title><rect x="439.5" y="501" width="1.3" height="15.0" fill="rgb(0,196,134)" rx="2" ry="2" /> +<text x="442.48" y="511.5" ></text> +</g> +<g > +<title>__brelse (10,101,010 samples, 0.10%)</title><rect x="1076.3" y="373" width="1.3" height="15.0" fill="rgb(0,207,198)" rx="2" ry="2" /> +<text x="1079.30" y="383.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.20%)</title><rect x="148.7" y="709" width="2.7" height="15.0" fill="rgb(0,196,94)" rx="2" ry="2" /> +<text x="151.67" y="719.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="413.9" y="757" width="1.3" height="15.0" fill="rgb(0,202,203)" rx="2" ry="2" /> +<text x="416.90" y="767.5" ></text> +</g> +<g > +<title>ext4_truncate (10,101,010 samples, 0.10%)</title><rect x="1120.7" y="485" width="1.4" height="15.0" fill="rgb(0,191,148)" rx="2" ry="2" /> +<text x="1123.73" y="495.5" ></text> +</g> +<g > +<title>ext4_setent (10,101,010 samples, 0.10%)</title><rect x="660.3" y="549" width="1.3" height="15.0" fill="rgb(0,239,182)" rx="2" ry="2" /> +<text x="663.28" y="559.5" ></text> +</g> +<g > +<title>call_rcu (10,101,010 samples, 0.10%)</title><rect x="220.0" y="517" width="1.4" height="15.0" fill="rgb(0,223,183)" rx="2" ry="2" /> +<text x="223.03" y="527.5" ></text> +</g> +<g > +<title>crc_56 (10,101,010 samples, 0.10%)</title><rect x="121.7" y="741" width="1.4" height="15.0" fill="rgb(0,238,191)" rx="2" ry="2" /> +<text x="124.75" y="751.5" ></text> +</g> +<g > +<title>getdents64 (10,101,010 samples, 0.10%)</title><rect x="207.9" y="613" width="1.4" height="15.0" fill="rgb(0,219,50)" rx="2" ry="2" /> +<text x="210.91" y="623.5" ></text> +</g> +<g > +<title>pick_file (10,101,010 samples, 0.10%)</title><rect x="1171.9" y="581" width="1.3" height="15.0" fill="rgb(0,229,94)" rx="2" ry="2" /> +<text x="1174.89" y="591.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="1052.1" y="469" width="1.3" height="15.0" fill="rgb(0,227,152)" rx="2" ry="2" /> +<text x="1055.07" y="479.5" ></text> +</g> +<g > +<title>__ext4_read_dirblock (20,202,020 samples, 0.20%)</title><rect x="613.2" y="549" width="2.7" height="15.0" fill="rgb(0,195,139)" rx="2" ry="2" /> +<text x="616.16" y="559.5" ></text> +</g> +<g > +<title>signal_set_mask_internal (10,101,010 samples, 0.10%)</title><rect x="82.7" y="773" width="1.3" height="15.0" fill="rgb(0,229,171)" rx="2" ry="2" /> +<text x="85.70" y="783.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="111.0" y="837" width="2.7" height="15.0" fill="rgb(0,203,194)" rx="2" ry="2" /> +<text x="113.98" y="847.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="988.8" y="581" width="1.3" height="15.0" fill="rgb(0,209,102)" rx="2" ry="2" /> +<text x="991.79" y="591.5" ></text> +</g> +<g > +<title>log_entry_start (20,202,020 samples, 0.20%)</title><rect x="1250.0" y="805" width="2.7" height="15.0" fill="rgb(0,193,122)" rx="2" ry="2" /> +<text x="1252.98" y="815.5" ></text> +</g> +<g > +<title>jbd2_journal_get_create_access (10,101,010 samples, 0.10%)</title><rect x="1142.3" y="549" width="1.3" height="15.0" fill="rgb(0,216,7)" rx="2" ry="2" /> +<text x="1145.27" y="559.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="493.3" y="485" width="1.4" height="15.0" fill="rgb(0,220,97)" rx="2" ry="2" /> +<text x="496.34" y="495.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.20%)</title><rect x="893.2" y="677" width="2.7" height="15.0" fill="rgb(0,201,128)" rx="2" ry="2" /> +<text x="896.20" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="753.2" y="629" width="1.3" height="15.0" fill="rgb(0,208,162)" rx="2" ry="2" /> +<text x="756.18" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="117.7" y="661" width="1.4" height="15.0" fill="rgb(0,197,190)" rx="2" ry="2" /> +<text x="120.71" y="671.5" ></text> +</g> +<g > +<title>lockref_get_not_dead (10,101,010 samples, 0.10%)</title><rect x="1224.4" y="517" width="1.3" height="15.0" fill="rgb(0,226,80)" rx="2" ry="2" /> +<text x="1227.40" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="667.0" y="661" width="2.7" height="15.0" fill="rgb(0,195,31)" rx="2" ry="2" /> +<text x="670.01" y="671.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="80.0" y="757" width="1.4" height="15.0" fill="rgb(0,215,140)" rx="2" ry="2" /> +<text x="83.01" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="881.1" y="725" width="4.0" height="15.0" fill="rgb(0,195,116)" rx="2" ry="2" /> +<text x="884.08" y="735.5" ></text> +</g> +<g > +<title>wp_page_reuse (10,101,010 samples, 0.10%)</title><rect x="189.1" y="645" width="1.3" height="15.0" fill="rgb(0,235,3)" rx="2" ry="2" /> +<text x="192.06" y="655.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.10%)</title><rect x="628.0" y="597" width="1.3" height="15.0" fill="rgb(0,190,132)" rx="2" ry="2" /> +<text x="630.97" y="607.5" ></text> +</g> +<g > +<title>mem_cgroup_handle_over_high (10,101,010 samples, 0.10%)</title><rect x="539.1" y="661" width="1.4" height="15.0" fill="rgb(0,198,94)" rx="2" ry="2" /> +<text x="542.11" y="671.5" ></text> +</g> +<g > +<title>ext4_find_dest_de (20,202,020 samples, 0.20%)</title><rect x="162.1" y="709" width="2.7" height="15.0" fill="rgb(0,237,72)" rx="2" ry="2" /> +<text x="165.14" y="719.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="610.5" y="629" width="1.3" height="15.0" fill="rgb(0,214,48)" rx="2" ry="2" /> +<text x="613.47" y="639.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.10%)</title><rect x="284.7" y="309" width="1.3" height="15.0" fill="rgb(0,226,71)" rx="2" ry="2" /> +<text x="287.65" y="319.5" ></text> +</g> +<g > +<title>free (20,202,020 samples, 0.20%)</title><rect x="731.6" y="613" width="2.7" height="15.0" fill="rgb(0,209,162)" rx="2" ry="2" /> +<text x="734.64" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="401.8" y="741" width="2.7" height="15.0" fill="rgb(0,220,123)" rx="2" ry="2" /> +<text x="404.79" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="718.2" y="501" width="2.7" height="15.0" fill="rgb(0,215,58)" rx="2" ry="2" /> +<text x="721.18" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="969.9" y="613" width="2.7" height="15.0" fill="rgb(0,228,193)" rx="2" ry="2" /> +<text x="972.94" y="623.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="524.3" y="597" width="1.3" height="15.0" fill="rgb(0,219,67)" rx="2" ry="2" /> +<text x="527.30" y="607.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.10%)</title><rect x="1035.9" y="485" width="1.4" height="15.0" fill="rgb(0,194,114)" rx="2" ry="2" /> +<text x="1038.91" y="495.5" ></text> +</g> +<g > +<title>ext4_mb_free_metadata.isra.0 (10,101,010 samples, 0.10%)</title><rect x="840.7" y="405" width="1.3" height="15.0" fill="rgb(0,216,96)" rx="2" ry="2" /> +<text x="843.69" y="415.5" ></text> +</g> +<g > +<title>net_recv_buf (30,303,030 samples, 0.29%)</title><rect x="1367.1" y="789" width="4.1" height="15.0" fill="rgb(0,208,180)" rx="2" ry="2" /> +<text x="1370.11" y="799.5" ></text> +</g> +<g > +<title>getdents64 (10,101,010 samples, 0.10%)</title><rect x="873.0" y="597" width="1.4" height="15.0" fill="rgb(0,215,203)" rx="2" ry="2" /> +<text x="876.00" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="532.4" y="677" width="4.0" height="15.0" fill="rgb(0,190,52)" rx="2" ry="2" /> +<text x="535.38" y="687.5" ></text> +</g> +<g > +<title>git_repository_init_ext (1,444,444,430 samples, 13.95%)</title><rect x="1000.9" y="773" width="192.5" height="15.0" fill="rgb(0,210,108)" rx="2" ry="2" /> +<text x="1003.91" y="783.5" >git_repository_init_ext</text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.10%)</title><rect x="895.9" y="501" width="1.3" height="15.0" fill="rgb(0,239,167)" rx="2" ry="2" /> +<text x="898.89" y="511.5" ></text> +</g> +<g > +<title>vfs_symlink (10,101,010 samples, 0.10%)</title><rect x="1037.3" y="645" width="1.3" height="15.0" fill="rgb(0,226,56)" rx="2" ry="2" /> +<text x="1040.26" y="655.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.10%)</title><rect x="478.5" y="437" width="1.4" height="15.0" fill="rgb(0,222,204)" rx="2" ry="2" /> +<text x="481.53" y="447.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.10%)</title><rect x="541.8" y="533" width="1.4" height="15.0" fill="rgb(0,198,4)" rx="2" ry="2" /> +<text x="544.80" y="543.5" ></text> +</g> +<g > +<title>stop_this_handle (10,101,010 samples, 0.10%)</title><rect x="267.2" y="517" width="1.3" height="15.0" fill="rgb(0,224,140)" rx="2" ry="2" /> +<text x="270.15" y="527.5" ></text> +</g> +<g > +<title>xas_load (10,101,010 samples, 0.10%)</title><rect x="286.0" y="405" width="1.3" height="15.0" fill="rgb(0,216,77)" rx="2" ry="2" /> +<text x="289.00" y="415.5" ></text> +</g> +<g > +<title>__x64_sys_openat (30,303,030 samples, 0.29%)</title><rect x="1000.9" y="645" width="4.0" height="15.0" fill="rgb(0,233,185)" rx="2" ry="2" /> +<text x="1003.91" y="655.5" ></text> +</g> +<g > +<title>pthread_mutex_lock (10,101,010 samples, 0.10%)</title><rect x="878.4" y="597" width="1.3" height="15.0" fill="rgb(0,231,31)" rx="2" ry="2" /> +<text x="881.39" y="607.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (20,202,020 samples, 0.20%)</title><rect x="119.1" y="693" width="2.6" height="15.0" fill="rgb(0,194,22)" rx="2" ry="2" /> +<text x="122.05" y="703.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="564.7" y="677" width="2.7" height="15.0" fill="rgb(0,237,205)" rx="2" ry="2" /> +<text x="567.69" y="687.5" ></text> +</g> +<g > +<title>net_accept (50,505,050 samples, 0.49%)</title><rect x="86.7" y="821" width="6.8" height="15.0" fill="rgb(0,208,113)" rx="2" ry="2" /> +<text x="89.74" y="831.5" ></text> +</g> +<g > +<title>tcp_v6_syn_recv_sock (10,101,010 samples, 0.10%)</title><rect x="1377.9" y="261" width="1.3" height="15.0" fill="rgb(0,210,202)" rx="2" ry="2" /> +<text x="1380.88" y="271.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 1.17%)</title><rect x="1070.9" y="677" width="16.2" height="15.0" fill="rgb(0,236,106)" rx="2" ry="2" /> +<text x="1073.92" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="990.1" y="613" width="6.8" height="15.0" fill="rgb(0,229,87)" rx="2" ry="2" /> +<text x="993.14" y="623.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.10%)</title><rect x="998.2" y="469" width="1.4" height="15.0" fill="rgb(0,217,8)" rx="2" ry="2" /> +<text x="1001.21" y="479.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="755.9" y="341" width="1.3" height="15.0" fill="rgb(0,193,125)" rx="2" ry="2" /> +<text x="758.87" y="351.5" ></text> +</g> +<g > +<title>git_config_add_backend (30,303,030 samples, 0.29%)</title><rect x="527.0" y="757" width="4.0" height="15.0" fill="rgb(0,219,98)" rx="2" ry="2" /> +<text x="530.00" y="767.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.10%)</title><rect x="202.5" y="501" width="1.4" height="15.0" fill="rgb(0,191,123)" rx="2" ry="2" /> +<text x="205.53" y="511.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="1272.9" y="613" width="1.3" height="15.0" fill="rgb(0,197,151)" rx="2" ry="2" /> +<text x="1275.87" y="623.5" ></text> +</g> +<g > +<title>git_odb_read_header (50,505,050 samples, 0.49%)</title><rect x="983.4" y="693" width="6.7" height="15.0" fill="rgb(0,223,10)" rx="2" ry="2" /> +<text x="986.40" y="703.5" ></text> +</g> +<g > +<title>strerror_l (20,202,020 samples, 0.20%)</title><rect x="471.8" y="597" width="2.7" height="15.0" fill="rgb(0,198,90)" rx="2" ry="2" /> +<text x="474.80" y="607.5" ></text> +</g> +<g > +<title>path_put (10,101,010 samples, 0.10%)</title><rect x="475.8" y="533" width="1.4" height="15.0" fill="rgb(0,204,209)" rx="2" ry="2" /> +<text x="478.83" y="543.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.10%)</title><rect x="39.6" y="773" width="1.4" height="15.0" fill="rgb(0,215,18)" rx="2" ry="2" /> +<text x="42.62" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="473.1" y="581" width="1.4" height="15.0" fill="rgb(0,217,204)" rx="2" ry="2" /> +<text x="476.14" y="591.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="191.8" y="757" width="1.3" height="15.0" fill="rgb(0,196,107)" rx="2" ry="2" /> +<text x="194.76" y="767.5" ></text> +</g> +<g > +<title>call_rcu (10,101,010 samples, 0.10%)</title><rect x="1115.3" y="549" width="1.4" height="15.0" fill="rgb(0,237,129)" rx="2" ry="2" /> +<text x="1118.35" y="559.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (10,101,010 samples, 0.10%)</title><rect x="816.5" y="357" width="1.3" height="15.0" fill="rgb(0,199,42)" rx="2" ry="2" /> +<text x="819.46" y="367.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (10,101,010 samples, 0.10%)</title><rect x="498.7" y="581" width="1.4" height="15.0" fill="rgb(0,202,57)" rx="2" ry="2" /> +<text x="501.72" y="591.5" ></text> +</g> +<g > +<title>unlink (80,808,080 samples, 0.78%)</title><rect x="248.3" y="645" width="10.8" height="15.0" fill="rgb(0,236,9)" rx="2" ry="2" /> +<text x="251.30" y="655.5" ></text> +</g> +<g > +<title>git_reference_foreach_name (121,212,120 samples, 1.17%)</title><rect x="1205.6" y="773" width="16.1" height="15.0" fill="rgb(0,225,198)" rx="2" ry="2" /> +<text x="1208.55" y="783.5" ></text> +</g> +<g > +<title>tcp_sendmsg_locked (101,010,100 samples, 0.98%)</title><rect x="11.3" y="693" width="13.5" height="15.0" fill="rgb(0,195,123)" rx="2" ry="2" /> +<text x="14.35" y="703.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.10%)</title><rect x="214.6" y="469" width="1.4" height="15.0" fill="rgb(0,232,57)" rx="2" ry="2" /> +<text x="217.64" y="479.5" ></text> +</g> +<g > +<title>in_group_p (10,101,010 samples, 0.10%)</title><rect x="1313.3" y="677" width="1.3" height="15.0" fill="rgb(0,238,66)" rx="2" ry="2" /> +<text x="1316.26" y="687.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (40,404,040 samples, 0.39%)</title><rect x="117.7" y="789" width="5.4" height="15.0" fill="rgb(0,214,4)" rx="2" ry="2" /> +<text x="120.71" y="799.5" ></text> +</g> +<g > +<title>__netif_receive_skb (30,303,030 samples, 0.29%)</title><rect x="1328.1" y="373" width="4.0" height="15.0" fill="rgb(0,195,172)" rx="2" ry="2" /> +<text x="1331.07" y="383.5" ></text> +</g> +<g > +<title>d_alloc_parallel (30,303,030 samples, 0.29%)</title><rect x="181.0" y="773" width="4.0" height="15.0" fill="rgb(0,198,12)" rx="2" ry="2" /> +<text x="183.99" y="783.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="304.8" y="405" width="1.4" height="15.0" fill="rgb(0,192,80)" rx="2" ry="2" /> +<text x="307.85" y="415.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="597.0" y="565" width="1.4" height="15.0" fill="rgb(0,205,40)" rx="2" ry="2" /> +<text x="600.00" y="575.5" ></text> +</g> +<g > +<title>ext4_rename2 (60,606,060 samples, 0.59%)</title><rect x="842.0" y="597" width="8.1" height="15.0" fill="rgb(0,220,87)" rx="2" ry="2" /> +<text x="845.04" y="607.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="728.9" y="693" width="1.4" height="15.0" fill="rgb(0,223,145)" rx="2" ry="2" /> +<text x="731.95" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="921.5" y="693" width="2.7" height="15.0" fill="rgb(0,211,108)" rx="2" ry="2" /> +<text x="924.47" y="703.5" ></text> +</g> +<g > +<title>sysvec_reschedule_ipi (10,101,010 samples, 0.10%)</title><rect x="1167.9" y="501" width="1.3" height="15.0" fill="rgb(0,221,206)" rx="2" ry="2" /> +<text x="1170.85" y="511.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.10%)</title><rect x="1122.1" y="469" width="1.3" height="15.0" fill="rgb(0,214,160)" rx="2" ry="2" /> +<text x="1125.08" y="479.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="545.8" y="549" width="1.4" height="15.0" fill="rgb(0,190,113)" rx="2" ry="2" /> +<text x="548.84" y="559.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="877.0" y="549" width="1.4" height="15.0" fill="rgb(0,198,105)" rx="2" ry="2" /> +<text x="880.04" y="559.5" ></text> +</g> +<g > +<title>sock_alloc (10,101,010 samples, 0.10%)</title><rect x="90.8" y="693" width="1.3" height="15.0" fill="rgb(0,222,77)" rx="2" ry="2" /> +<text x="93.78" y="703.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="564.7" y="533" width="1.3" height="15.0" fill="rgb(0,239,25)" rx="2" ry="2" /> +<text x="567.69" y="543.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="890.5" y="549" width="1.4" height="15.0" fill="rgb(0,234,148)" rx="2" ry="2" /> +<text x="893.51" y="559.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="30.2" y="821" width="1.3" height="15.0" fill="rgb(0,211,118)" rx="2" ry="2" /> +<text x="33.20" y="831.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="293" width="1.4" height="15.0" fill="rgb(0,216,132)" rx="2" ry="2" /> +<text x="1376.84" y="303.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (30,303,030 samples, 0.29%)</title><rect x="16.7" y="325" width="4.1" height="15.0" fill="rgb(0,200,121)" rx="2" ry="2" /> +<text x="19.73" y="335.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (50,505,050 samples, 0.49%)</title><rect x="65.2" y="181" width="6.7" height="15.0" fill="rgb(0,195,32)" rx="2" ry="2" /> +<text x="68.20" y="191.5" ></text> +</g> +<g > +<title>security_prepare_creds (10,101,010 samples, 0.10%)</title><rect x="1192.1" y="565" width="1.3" height="15.0" fill="rgb(0,209,191)" rx="2" ry="2" /> +<text x="1195.09" y="575.5" ></text> +</g> +<g > +<title>xa_get_order (10,101,010 samples, 0.10%)</title><rect x="1099.2" y="405" width="1.3" height="15.0" fill="rgb(0,202,31)" rx="2" ry="2" /> +<text x="1102.19" y="415.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="1140.9" y="581" width="1.4" height="15.0" fill="rgb(0,202,65)" rx="2" ry="2" /> +<text x="1143.93" y="591.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.10%)</title><rect x="710.1" y="629" width="1.3" height="15.0" fill="rgb(0,221,173)" rx="2" ry="2" /> +<text x="713.10" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="112.3" y="757" width="1.4" height="15.0" fill="rgb(0,210,86)" rx="2" ry="2" /> +<text x="115.32" y="767.5" ></text> +</g> +<g > +<title>crc_pcl (10,101,010 samples, 0.10%)</title><rect x="166.2" y="677" width="1.3" height="15.0" fill="rgb(0,230,140)" rx="2" ry="2" /> +<text x="169.18" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.10%)</title><rect x="98.9" y="741" width="1.3" height="15.0" fill="rgb(0,215,93)" rx="2" ry="2" /> +<text x="101.86" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="894.5" y="661" width="1.4" height="15.0" fill="rgb(0,216,160)" rx="2" ry="2" /> +<text x="897.55" y="671.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="1139.6" y="549" width="1.3" height="15.0" fill="rgb(0,219,81)" rx="2" ry="2" /> +<text x="1142.58" y="559.5" ></text> +</g> +<g > +<title>git_config_free (10,101,010 samples, 0.10%)</title><rect x="1162.5" y="757" width="1.3" height="15.0" fill="rgb(0,235,42)" rx="2" ry="2" /> +<text x="1165.47" y="767.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="949.7" y="453" width="1.4" height="15.0" fill="rgb(0,222,36)" rx="2" ry="2" /> +<text x="952.75" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="945.7" y="597" width="1.4" height="15.0" fill="rgb(0,234,119)" rx="2" ry="2" /> +<text x="948.71" y="607.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.10%)</title><rect x="209.3" y="405" width="1.3" height="15.0" fill="rgb(0,212,186)" rx="2" ry="2" /> +<text x="212.26" y="415.5" ></text> +</g> +<g > +<title>dentry_kill (30,303,030 samples, 0.29%)</title><rect x="808.4" y="597" width="4.0" height="15.0" fill="rgb(0,190,55)" rx="2" ry="2" /> +<text x="811.38" y="607.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="644.1" y="533" width="1.4" height="15.0" fill="rgb(0,224,103)" rx="2" ry="2" /> +<text x="647.13" y="543.5" ></text> +</g> +<g > +<title>xas_start (10,101,010 samples, 0.10%)</title><rect x="234.8" y="357" width="1.4" height="15.0" fill="rgb(0,235,179)" rx="2" ry="2" /> +<text x="237.84" y="367.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="272.5" y="629" width="1.4" height="15.0" fill="rgb(0,192,16)" rx="2" ry="2" /> +<text x="275.54" y="639.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.20%)</title><rect x="621.2" y="597" width="2.7" height="15.0" fill="rgb(0,191,201)" rx="2" ry="2" /> +<text x="624.24" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="689.9" y="629" width="2.7" height="15.0" fill="rgb(0,221,49)" rx="2" ry="2" /> +<text x="692.90" y="639.5" ></text> +</g> +<g > +<title>ip_finish_output2 (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="485" width="5.4" height="15.0" fill="rgb(0,199,171)" rx="2" ry="2" /> +<text x="1331.07" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="759.9" y="517" width="1.4" height="15.0" fill="rgb(0,223,199)" rx="2" ry="2" /> +<text x="762.91" y="527.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.10%)</title><rect x="831.3" y="549" width="1.3" height="15.0" fill="rgb(0,229,89)" rx="2" ry="2" /> +<text x="834.27" y="559.5" ></text> +</g> +<g > +<title>ext4_file_getattr (10,101,010 samples, 0.10%)</title><rect x="711.4" y="549" width="1.4" height="15.0" fill="rgb(0,206,97)" rx="2" ry="2" /> +<text x="714.44" y="559.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.20%)</title><rect x="1159.8" y="757" width="2.7" height="15.0" fill="rgb(0,202,152)" rx="2" ry="2" /> +<text x="1162.78" y="767.5" ></text> +</g> +<g > +<title>prepare_creds (10,101,010 samples, 0.10%)</title><rect x="749.1" y="533" width="1.4" height="15.0" fill="rgb(0,235,36)" rx="2" ry="2" /> +<text x="752.14" y="543.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (10,101,010 samples, 0.10%)</title><rect x="384.3" y="629" width="1.3" height="15.0" fill="rgb(0,203,203)" rx="2" ry="2" /> +<text x="387.28" y="639.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.10%)</title><rect x="959.2" y="437" width="1.3" height="15.0" fill="rgb(0,202,83)" rx="2" ry="2" /> +<text x="962.17" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1243.2" y="661" width="1.4" height="15.0" fill="rgb(0,234,157)" rx="2" ry="2" /> +<text x="1246.25" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="730.3" y="661" width="4.0" height="15.0" fill="rgb(0,202,100)" rx="2" ry="2" /> +<text x="733.29" y="671.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1044.0" y="597" width="1.3" height="15.0" fill="rgb(0,202,64)" rx="2" ry="2" /> +<text x="1046.99" y="607.5" ></text> +</g> +<g > +<title>try_module_get (10,101,010 samples, 0.10%)</title><rect x="137.9" y="773" width="1.3" height="15.0" fill="rgb(0,201,16)" rx="2" ry="2" /> +<text x="140.90" y="783.5" ></text> +</g> +<g > +<title>balance_dirty_pages (10,101,010 samples, 0.10%)</title><rect x="510.8" y="517" width="1.4" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="513.84" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1239.2" y="629" width="1.4" height="15.0" fill="rgb(0,222,40)" rx="2" ry="2" /> +<text x="1242.21" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="741" width="4.0" height="15.0" fill="rgb(0,226,203)" rx="2" ry="2" /> +<text x="1255.67" y="751.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (10,101,010 samples, 0.10%)</title><rect x="1255.4" y="581" width="1.3" height="15.0" fill="rgb(0,201,10)" rx="2" ry="2" /> +<text x="1258.37" y="591.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.10%)</title><rect x="698.0" y="485" width="1.3" height="15.0" fill="rgb(0,236,142)" rx="2" ry="2" /> +<text x="700.98" y="495.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.10%)</title><rect x="807.0" y="661" width="1.4" height="15.0" fill="rgb(0,232,4)" rx="2" ry="2" /> +<text x="810.03" y="671.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="978.0" y="453" width="1.4" height="15.0" fill="rgb(0,223,156)" rx="2" ry="2" /> +<text x="981.02" y="463.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (10,101,010 samples, 0.10%)</title><rect x="1128.8" y="469" width="1.4" height="15.0" fill="rgb(0,208,131)" rx="2" ry="2" /> +<text x="1131.81" y="479.5" ></text> +</g> +<g > +<title>iput (30,303,030 samples, 0.29%)</title><rect x="436.8" y="581" width="4.0" height="15.0" fill="rgb(0,228,197)" rx="2" ry="2" /> +<text x="439.79" y="591.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="1003.6" y="485" width="1.3" height="15.0" fill="rgb(0,225,79)" rx="2" ry="2" /> +<text x="1006.60" y="495.5" ></text> +</g> +<g > +<title>__inode_attach_wb (10,101,010 samples, 0.10%)</title><rect x="677.8" y="389" width="1.3" height="15.0" fill="rgb(0,204,21)" rx="2" ry="2" /> +<text x="680.79" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="854.2" y="709" width="2.6" height="15.0" fill="rgb(0,224,129)" rx="2" ry="2" /> +<text x="857.16" y="719.5" ></text> +</g> +<g > +<title>git_config_add_backend (80,808,080 samples, 0.78%)</title><rect x="1239.2" y="725" width="10.8" height="15.0" fill="rgb(0,203,119)" rx="2" ry="2" /> +<text x="1242.21" y="735.5" ></text> +</g> +<g > +<title>ext4_match.part.0 (10,101,010 samples, 0.10%)</title><rect x="758.6" y="405" width="1.3" height="15.0" fill="rgb(0,236,168)" rx="2" ry="2" /> +<text x="761.57" y="415.5" ></text> +</g> +<g > +<title>futex_wait (20,202,020 samples, 0.20%)</title><rect x="55.8" y="725" width="2.7" height="15.0" fill="rgb(0,193,92)" rx="2" ry="2" /> +<text x="58.78" y="735.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.10%)</title><rect x="929.6" y="437" width="1.3" height="15.0" fill="rgb(0,221,34)" rx="2" ry="2" /> +<text x="932.55" y="447.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="284.7" y="501" width="1.3" height="15.0" fill="rgb(0,210,79)" rx="2" ry="2" /> +<text x="287.65" y="511.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.10%)</title><rect x="512.2" y="453" width="1.3" height="15.0" fill="rgb(0,209,131)" rx="2" ry="2" /> +<text x="515.19" y="463.5" ></text> +</g> +<g > +<title>iterate_dir (50,505,050 samples, 0.49%)</title><rect x="265.8" y="613" width="6.7" height="15.0" fill="rgb(0,239,37)" rx="2" ry="2" /> +<text x="268.80" y="623.5" ></text> +</g> +<g > +<title>path_openat (30,303,030 samples, 0.29%)</title><rect x="1213.6" y="549" width="4.1" height="15.0" fill="rgb(0,204,82)" rx="2" ry="2" /> +<text x="1216.63" y="559.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="228.1" y="453" width="1.4" height="15.0" fill="rgb(0,193,116)" rx="2" ry="2" /> +<text x="231.11" y="463.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (20,202,020 samples, 0.20%)</title><rect x="681.8" y="469" width="2.7" height="15.0" fill="rgb(0,213,44)" rx="2" ry="2" /> +<text x="684.82" y="479.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.10%)</title><rect x="338.5" y="597" width="1.4" height="15.0" fill="rgb(0,216,1)" rx="2" ry="2" /> +<text x="341.51" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (121,212,120 samples, 1.17%)</title><rect x="646.8" y="645" width="16.2" height="15.0" fill="rgb(0,234,74)" rx="2" ry="2" /> +<text x="649.82" y="655.5" ></text> +</g> +<g > +<title>ip_queue_xmit (60,606,060 samples, 0.59%)</title><rect x="1341.5" y="677" width="8.1" height="15.0" fill="rgb(0,209,44)" rx="2" ry="2" /> +<text x="1344.53" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="700.7" y="629" width="1.3" height="15.0" fill="rgb(0,201,24)" rx="2" ry="2" /> +<text x="703.67" y="639.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="1167.9" y="453" width="1.3" height="15.0" fill="rgb(0,239,17)" rx="2" ry="2" /> +<text x="1170.85" y="463.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.10%)</title><rect x="541.8" y="677" width="1.4" height="15.0" fill="rgb(0,225,140)" rx="2" ry="2" /> +<text x="544.80" y="687.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="549" width="1.4" height="15.0" fill="rgb(0,195,146)" rx="2" ry="2" /> +<text x="1379.54" y="559.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="885.1" y="661" width="1.4" height="15.0" fill="rgb(0,224,200)" rx="2" ry="2" /> +<text x="888.12" y="671.5" ></text> +</g> +<g > +<title>__strdup (10,101,010 samples, 0.10%)</title><rect x="1365.8" y="741" width="1.3" height="15.0" fill="rgb(0,209,47)" rx="2" ry="2" /> +<text x="1368.77" y="751.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="792.2" y="549" width="1.4" height="15.0" fill="rgb(0,206,149)" rx="2" ry="2" /> +<text x="795.22" y="559.5" ></text> +</g> +<g > +<title>write (30,303,030 samples, 0.29%)</title><rect x="509.5" y="693" width="4.0" height="15.0" fill="rgb(0,233,45)" rx="2" ry="2" /> +<text x="512.49" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1251.3" y="757" width="1.4" height="15.0" fill="rgb(0,235,172)" rx="2" ry="2" /> +<text x="1254.33" y="767.5" ></text> +</g> +<g > +<title>vfs_open (50,505,050 samples, 0.49%)</title><rect x="132.5" y="789" width="6.7" height="15.0" fill="rgb(0,192,165)" rx="2" ry="2" /> +<text x="135.52" y="799.5" ></text> +</g> +<g > +<title>vma_interval_tree_insert_after (10,101,010 samples, 0.10%)</title><rect x="1298.4" y="645" width="1.4" height="15.0" fill="rgb(0,203,122)" rx="2" ry="2" /> +<text x="1301.45" y="655.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.10%)</title><rect x="918.8" y="597" width="1.3" height="15.0" fill="rgb(0,205,35)" rx="2" ry="2" /> +<text x="921.78" y="607.5" ></text> +</g> +<g > +<title>nf_nat_ipv4_out (10,101,010 samples, 0.10%)</title><rect x="1348.3" y="613" width="1.3" height="15.0" fill="rgb(0,238,56)" rx="2" ry="2" /> +<text x="1351.26" y="623.5" ></text> +</g> +<g > +<title>dentry_free (10,101,010 samples, 0.10%)</title><rect x="322.4" y="517" width="1.3" height="15.0" fill="rgb(0,203,107)" rx="2" ry="2" /> +<text x="325.35" y="527.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="739.7" y="613" width="1.4" height="15.0" fill="rgb(0,195,67)" rx="2" ry="2" /> +<text x="742.72" y="623.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="346.6" y="517" width="1.3" height="15.0" fill="rgb(0,228,97)" rx="2" ry="2" /> +<text x="349.59" y="527.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="218.7" y="437" width="1.3" height="15.0" fill="rgb(0,192,14)" rx="2" ry="2" /> +<text x="221.68" y="447.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.10%)</title><rect x="1031.9" y="437" width="1.3" height="15.0" fill="rgb(0,214,116)" rx="2" ry="2" /> +<text x="1034.87" y="447.5" ></text> +</g> +<g > +<title>vfs_rename (50,505,050 samples, 0.49%)</title><rect x="815.1" y="613" width="6.7" height="15.0" fill="rgb(0,221,123)" rx="2" ry="2" /> +<text x="818.11" y="623.5" ></text> +</g> +<g > +<title>__bio_try_merge_page (10,101,010 samples, 0.10%)</title><rect x="1085.7" y="389" width="1.4" height="15.0" fill="rgb(0,194,89)" rx="2" ry="2" /> +<text x="1088.73" y="399.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.10%)</title><rect x="529.7" y="581" width="1.3" height="15.0" fill="rgb(0,200,153)" rx="2" ry="2" /> +<text x="532.69" y="591.5" ></text> +</g> +<g > +<title>__napi_poll (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="501" width="5.4" height="15.0" fill="rgb(0,192,127)" rx="2" ry="2" /> +<text x="1383.58" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_chdir (40,404,040 samples, 0.39%)</title><rect x="1313.3" y="789" width="5.3" height="15.0" fill="rgb(0,198,79)" rx="2" ry="2" /> +<text x="1316.26" y="799.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="1194.8" y="597" width="1.3" height="15.0" fill="rgb(0,237,184)" rx="2" ry="2" /> +<text x="1197.78" y="607.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (30,303,030 samples, 0.29%)</title><rect x="509.5" y="565" width="4.0" height="15.0" fill="rgb(0,215,113)" rx="2" ry="2" /> +<text x="512.49" y="575.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.10%)</title><rect x="1035.9" y="533" width="1.4" height="15.0" fill="rgb(0,230,74)" rx="2" ry="2" /> +<text x="1038.91" y="543.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.10%)</title><rect x="831.3" y="501" width="1.3" height="15.0" fill="rgb(0,191,185)" rx="2" ry="2" /> +<text x="834.27" y="511.5" ></text> +</g> +<g > +<title>__open64 (80,808,080 samples, 0.78%)</title><rect x="1009.0" y="725" width="10.8" height="15.0" fill="rgb(0,222,70)" rx="2" ry="2" /> +<text x="1011.99" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (343,434,340 samples, 3.32%)</title><rect x="1088.4" y="725" width="45.8" height="15.0" fill="rgb(0,218,123)" rx="2" ry="2" /> +<text x="1091.42" y="735.5" >[lib..</text> +</g> +<g > +<title>ext4_fc_start_update (10,101,010 samples, 0.10%)</title><rect x="509.5" y="549" width="1.3" height="15.0" fill="rgb(0,191,61)" rx="2" ry="2" /> +<text x="512.49" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1239.2" y="597" width="1.4" height="15.0" fill="rgb(0,204,18)" rx="2" ry="2" /> +<text x="1242.21" y="607.5" ></text> +</g> +<g > +<title>net_send_part (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="805" width="2.7" height="15.0" fill="rgb(0,212,188)" rx="2" ry="2" /> +<text x="1375.50" y="815.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="850.1" y="581" width="2.7" height="15.0" fill="rgb(0,218,38)" rx="2" ry="2" /> +<text x="853.12" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="1003.6" y="469" width="1.3" height="15.0" fill="rgb(0,224,85)" rx="2" ry="2" /> +<text x="1006.60" y="479.5" ></text> +</g> +<g > +<title>file_close (20,202,020 samples, 0.20%)</title><rect x="1375.2" y="853" width="2.7" height="15.0" fill="rgb(0,230,40)" rx="2" ry="2" /> +<text x="1378.19" y="863.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="864.9" y="517" width="1.4" height="15.0" fill="rgb(0,194,3)" rx="2" ry="2" /> +<text x="867.93" y="527.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="758.6" y="501" width="1.3" height="15.0" fill="rgb(0,211,155)" rx="2" ry="2" /> +<text x="761.57" y="511.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.29%)</title><rect x="276.6" y="517" width="4.0" height="15.0" fill="rgb(0,191,146)" rx="2" ry="2" /> +<text x="279.58" y="527.5" ></text> +</g> +<g > +<title>filemap_flush (50,505,050 samples, 0.49%)</title><rect x="766.6" y="517" width="6.8" height="15.0" fill="rgb(0,217,67)" rx="2" ry="2" /> +<text x="769.64" y="527.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="862.2" y="517" width="1.4" height="15.0" fill="rgb(0,195,86)" rx="2" ry="2" /> +<text x="865.23" y="527.5" ></text> +</g> +<g > +<title>__fsnotify_inode_delete (10,101,010 samples, 0.10%)</title><rect x="838.0" y="549" width="1.3" height="15.0" fill="rgb(0,202,202)" rx="2" ry="2" /> +<text x="841.00" y="559.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="298.1" y="501" width="1.4" height="15.0" fill="rgb(0,209,36)" rx="2" ry="2" /> +<text x="301.12" y="511.5" ></text> +</g> +<g > +<title>anon_inode_getfile (10,101,010 samples, 0.10%)</title><rect x="85.4" y="725" width="1.3" height="15.0" fill="rgb(0,236,46)" rx="2" ry="2" /> +<text x="88.40" y="735.5" ></text> +</g> +<g > +<title>grab_cache_page_write_begin (20,202,020 samples, 0.20%)</title><rect x="1073.6" y="453" width="2.7" height="15.0" fill="rgb(0,209,202)" rx="2" ry="2" /> +<text x="1076.61" y="463.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="479.9" y="581" width="1.3" height="15.0" fill="rgb(0,239,70)" rx="2" ry="2" /> +<text x="482.87" y="591.5" ></text> +</g> +<g > +<title>rseq_ip_fixup (10,101,010 samples, 0.10%)</title><rect x="1021.1" y="613" width="1.3" height="15.0" fill="rgb(0,202,112)" rx="2" ry="2" /> +<text x="1024.10" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="384.3" y="725" width="1.3" height="15.0" fill="rgb(0,238,62)" rx="2" ry="2" /> +<text x="387.28" y="735.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.10%)</title><rect x="642.8" y="565" width="1.3" height="15.0" fill="rgb(0,191,141)" rx="2" ry="2" /> +<text x="645.78" y="575.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.10%)</title><rect x="755.9" y="485" width="1.3" height="15.0" fill="rgb(0,236,156)" rx="2" ry="2" /> +<text x="758.87" y="495.5" ></text> +</g> +<g > +<title>__do_huge_pmd_anonymous_page (10,101,010 samples, 0.10%)</title><rect x="80.0" y="677" width="1.4" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" /> +<text x="83.01" y="687.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (20,202,020 samples, 0.20%)</title><rect x="1073.6" y="469" width="2.7" height="15.0" fill="rgb(0,192,53)" rx="2" ry="2" /> +<text x="1076.61" y="479.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="228.1" y="437" width="1.4" height="15.0" fill="rgb(0,225,62)" rx="2" ry="2" /> +<text x="231.11" y="447.5" ></text> +</g> +<g > +<title>do_unlinkat (30,303,030 samples, 0.29%)</title><rect x="203.9" y="517" width="4.0" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="206.87" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.68%)</title><rect x="926.9" y="693" width="9.4" height="15.0" fill="rgb(0,208,85)" rx="2" ry="2" /> +<text x="929.86" y="703.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="280.6" y="485" width="1.4" height="15.0" fill="rgb(0,219,20)" rx="2" ry="2" /> +<text x="283.61" y="495.5" ></text> +</g> +<g > +<title>new_inode (10,101,010 samples, 0.10%)</title><rect x="572.8" y="549" width="1.3" height="15.0" fill="rgb(0,203,169)" rx="2" ry="2" /> +<text x="575.77" y="559.5" ></text> +</g> +<g > +<title>ci_cleanup_git_repo (1,717,171,700 samples, 16.59%)</title><rect x="189.1" y="853" width="228.8" height="15.0" fill="rgb(0,227,21)" rx="2" ry="2" /> +<text x="192.06" y="863.5" >ci_cleanup_git_repo</text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="1000.9" y="661" width="4.0" height="15.0" fill="rgb(0,199,162)" rx="2" ry="2" /> +<text x="1003.91" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1069.6" y="645" width="1.3" height="15.0" fill="rgb(0,202,128)" rx="2" ry="2" /> +<text x="1072.57" y="655.5" ></text> +</g> +<g > +<title>munmap (10,101,010 samples, 0.10%)</title><rect x="54.4" y="773" width="1.4" height="15.0" fill="rgb(0,197,52)" rx="2" ry="2" /> +<text x="57.43" y="783.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.10%)</title><rect x="755.9" y="517" width="1.3" height="15.0" fill="rgb(0,230,175)" rx="2" ry="2" /> +<text x="758.87" y="527.5" ></text> +</g> +<g > +<title>alloc_empty_file (30,303,030 samples, 0.29%)</title><rect x="1213.6" y="533" width="4.1" height="15.0" fill="rgb(0,238,179)" rx="2" ry="2" /> +<text x="1216.63" y="543.5" ></text> +</g> +<g > +<title>ext4_clear_inode (10,101,010 samples, 0.10%)</title><rect x="1118.0" y="469" width="1.4" height="15.0" fill="rgb(0,207,98)" rx="2" ry="2" /> +<text x="1121.04" y="479.5" ></text> +</g> +<g > +<title>__mem_cgroup_uncharge_list (10,101,010 samples, 0.10%)</title><rect x="652.2" y="421" width="1.4" height="15.0" fill="rgb(0,238,140)" rx="2" ry="2" /> +<text x="655.20" y="431.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.10%)</title><rect x="236.2" y="501" width="1.3" height="15.0" fill="rgb(0,204,93)" rx="2" ry="2" /> +<text x="239.19" y="511.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="481.2" y="565" width="1.4" height="15.0" fill="rgb(0,224,25)" rx="2" ry="2" /> +<text x="484.22" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.78%)</title><rect x="1377.9" y="837" width="10.8" height="15.0" fill="rgb(0,198,136)" rx="2" ry="2" /> +<text x="1380.88" y="847.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (20,202,020 samples, 0.20%)</title><rect x="650.9" y="485" width="2.7" height="15.0" fill="rgb(0,209,141)" rx="2" ry="2" /> +<text x="653.86" y="495.5" ></text> +</g> +<g > +<title>vfs_rename (70,707,070 samples, 0.68%)</title><rect x="1123.4" y="597" width="9.4" height="15.0" fill="rgb(0,206,200)" rx="2" ry="2" /> +<text x="1126.42" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="945.7" y="581" width="1.4" height="15.0" fill="rgb(0,192,156)" rx="2" ry="2" /> +<text x="948.71" y="591.5" ></text> +</g> +<g > +<title>git_reference_create (313,131,310 samples, 3.02%)</title><rect x="422.0" y="805" width="41.7" height="15.0" fill="rgb(0,239,112)" rx="2" ry="2" /> +<text x="424.98" y="815.5" >git..</text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="724.9" y="629" width="1.4" height="15.0" fill="rgb(0,209,18)" rx="2" ry="2" /> +<text x="727.91" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="819.2" y="453" width="1.3" height="15.0" fill="rgb(0,224,124)" rx="2" ry="2" /> +<text x="822.15" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="1368.5" y="725" width="2.7" height="15.0" fill="rgb(0,214,153)" rx="2" ry="2" /> +<text x="1371.46" y="735.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="708.8" y="485" width="1.3" height="15.0" fill="rgb(0,200,209)" rx="2" ry="2" /> +<text x="711.75" y="495.5" ></text> +</g> +<g > +<title>ip_output (50,505,050 samples, 0.49%)</title><rect x="1380.6" y="629" width="6.7" height="15.0" fill="rgb(0,198,206)" rx="2" ry="2" /> +<text x="1383.58" y="639.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.10%)</title><rect x="209.3" y="341" width="1.3" height="15.0" fill="rgb(0,201,51)" rx="2" ry="2" /> +<text x="212.26" y="351.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.59%)</title><rect x="392.4" y="725" width="8.0" height="15.0" fill="rgb(0,228,195)" rx="2" ry="2" /> +<text x="395.36" y="735.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (20,202,020 samples, 0.20%)</title><rect x="603.7" y="613" width="2.7" height="15.0" fill="rgb(0,201,68)" rx="2" ry="2" /> +<text x="606.74" y="623.5" ></text> +</g> +<g > +<title>ip_local_deliver (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="325" width="1.4" height="15.0" fill="rgb(0,213,2)" rx="2" ry="2" /> +<text x="1376.84" y="335.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (70,707,070 samples, 0.68%)</title><rect x="597.0" y="677" width="9.4" height="15.0" fill="rgb(0,211,134)" rx="2" ry="2" /> +<text x="600.00" y="687.5" ></text> +</g> +<g > +<title>ext4_writepages (20,202,020 samples, 0.20%)</title><rect x="1084.4" y="469" width="2.7" height="15.0" fill="rgb(0,211,48)" rx="2" ry="2" /> +<text x="1087.38" y="479.5" ></text> +</g> +<g > +<title>__dentry_kill (30,303,030 samples, 0.29%)</title><rect x="808.4" y="581" width="4.0" height="15.0" fill="rgb(0,235,54)" rx="2" ry="2" /> +<text x="811.38" y="591.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (10,101,010 samples, 0.10%)</title><rect x="959.2" y="405" width="1.3" height="15.0" fill="rgb(0,192,52)" rx="2" ry="2" /> +<text x="962.17" y="415.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.10%)</title><rect x="23.5" y="565" width="1.3" height="15.0" fill="rgb(0,191,196)" rx="2" ry="2" /> +<text x="26.46" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="518.9" y="597" width="1.4" height="15.0" fill="rgb(0,198,205)" rx="2" ry="2" /> +<text x="521.92" y="607.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="782.8" y="469" width="1.3" height="15.0" fill="rgb(0,221,202)" rx="2" ry="2" /> +<text x="785.80" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1237.9" y="709" width="1.3" height="15.0" fill="rgb(0,228,5)" rx="2" ry="2" /> +<text x="1240.86" y="719.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="902.6" y="533" width="1.4" height="15.0" fill="rgb(0,217,202)" rx="2" ry="2" /> +<text x="905.62" y="543.5" ></text> +</g> +<g > +<title>worker_destroy (10,101,010 samples, 0.10%)</title><rect x="27.5" y="901" width="1.3" height="15.0" fill="rgb(0,239,29)" rx="2" ry="2" /> +<text x="30.50" y="911.5" ></text> +</g> +<g > +<title>tcp_send_ack (20,202,020 samples, 0.20%)</title><rect x="18.1" y="245" width="2.7" height="15.0" fill="rgb(0,230,38)" rx="2" ry="2" /> +<text x="21.08" y="255.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1223.1" y="725" width="4.0" height="15.0" fill="rgb(0,206,23)" rx="2" ry="2" /> +<text x="1226.05" y="735.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.10%)</title><rect x="479.9" y="565" width="1.3" height="15.0" fill="rgb(0,218,160)" rx="2" ry="2" /> +<text x="482.87" y="575.5" ></text> +</g> +<g > +<title>jsonrpc_request_create_internal (10,101,010 samples, 0.10%)</title><rect x="26.2" y="869" width="1.3" height="15.0" fill="rgb(0,222,40)" rx="2" ry="2" /> +<text x="29.16" y="879.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="711.4" y="613" width="1.4" height="15.0" fill="rgb(0,203,54)" rx="2" ry="2" /> +<text x="714.44" y="623.5" ></text> +</g> +<g > +<title>new_inode (20,202,020 samples, 0.20%)</title><rect x="1017.1" y="549" width="2.7" height="15.0" fill="rgb(0,238,79)" rx="2" ry="2" /> +<text x="1020.06" y="559.5" ></text> +</g> +<g > +<title>apparmor_socket_create (10,101,010 samples, 0.10%)</title><rect x="1349.6" y="741" width="1.4" height="15.0" fill="rgb(0,217,3)" rx="2" ry="2" /> +<text x="1352.61" y="751.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.10%)</title><rect x="766.6" y="277" width="1.4" height="15.0" fill="rgb(0,205,72)" rx="2" ry="2" /> +<text x="769.64" y="287.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="715.5" y="645" width="2.7" height="15.0" fill="rgb(0,223,103)" rx="2" ry="2" /> +<text x="718.48" y="655.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.10%)</title><rect x="980.7" y="549" width="1.4" height="15.0" fill="rgb(0,220,164)" rx="2" ry="2" /> +<text x="983.71" y="559.5" ></text> +</g> +<g > +<title>git_index_open (20,202,020 samples, 0.20%)</title><rect x="548.5" y="773" width="2.7" height="15.0" fill="rgb(0,192,93)" rx="2" ry="2" /> +<text x="551.54" y="783.5" ></text> +</g> +<g > +<title>evict (30,303,030 samples, 0.29%)</title><rect x="808.4" y="533" width="4.0" height="15.0" fill="rgb(0,236,169)" rx="2" ry="2" /> +<text x="811.38" y="543.5" ></text> +</g> +<g > +<title>blk_complete_reqs (10,101,010 samples, 0.10%)</title><rect x="213.3" y="405" width="1.3" height="15.0" fill="rgb(0,200,46)" rx="2" ry="2" /> +<text x="216.30" y="415.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.20%)</title><rect x="936.3" y="693" width="2.7" height="15.0" fill="rgb(0,234,32)" rx="2" ry="2" /> +<text x="939.28" y="703.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (10,101,010 samples, 0.10%)</title><rect x="1330.8" y="197" width="1.3" height="15.0" fill="rgb(0,227,175)" rx="2" ry="2" /> +<text x="1333.76" y="207.5" ></text> +</g> +<g > +<title>ext4_cache_extents (10,101,010 samples, 0.10%)</title><rect x="685.9" y="405" width="1.3" height="15.0" fill="rgb(0,225,101)" rx="2" ry="2" /> +<text x="688.86" y="415.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="862.2" y="629" width="1.4" height="15.0" fill="rgb(0,206,4)" rx="2" ry="2" /> +<text x="865.23" y="639.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="980.7" y="581" width="1.4" height="15.0" fill="rgb(0,237,24)" rx="2" ry="2" /> +<text x="983.71" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="421" width="1.4" height="15.0" fill="rgb(0,219,171)" rx="2" ry="2" /> +<text x="1007.95" y="431.5" ></text> +</g> +<g > +<title>ext4_rename2 (10,101,010 samples, 0.10%)</title><rect x="928.2" y="629" width="1.4" height="15.0" fill="rgb(0,217,106)" rx="2" ry="2" /> +<text x="931.20" y="639.5" ></text> +</g> +<g > +<title>iput (50,505,050 samples, 0.49%)</title><rect x="372.2" y="629" width="6.7" height="15.0" fill="rgb(0,205,75)" rx="2" ry="2" /> +<text x="375.17" y="639.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.10%)</title><rect x="773.4" y="517" width="1.3" height="15.0" fill="rgb(0,239,82)" rx="2" ry="2" /> +<text x="776.38" y="527.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="1220.4" y="597" width="1.3" height="15.0" fill="rgb(0,210,41)" rx="2" ry="2" /> +<text x="1223.36" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="708.8" y="597" width="1.3" height="15.0" fill="rgb(0,197,115)" rx="2" ry="2" /> +<text x="711.75" y="607.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.10%)</title><rect x="187.7" y="837" width="1.4" height="15.0" fill="rgb(0,219,150)" rx="2" ry="2" /> +<text x="190.72" y="847.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1171.9" y="629" width="1.3" height="15.0" fill="rgb(0,196,111)" rx="2" ry="2" /> +<text x="1174.89" y="639.5" ></text> +</g> +<g > +<title>ipv4_confirm (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="261" width="1.3" height="15.0" fill="rgb(0,199,189)" rx="2" ry="2" /> +<text x="1337.80" y="271.5" ></text> +</g> +<g > +<title>server_listen_thread (484,848,480 samples, 4.68%)</title><rect x="43.7" y="885" width="64.6" height="15.0" fill="rgb(0,235,74)" rx="2" ry="2" /> +<text x="46.66" y="895.5" >server_..</text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="1040.0" y="709" width="4.0" height="15.0" fill="rgb(0,217,56)" rx="2" ry="2" /> +<text x="1042.95" y="719.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.10%)</title><rect x="805.7" y="661" width="1.3" height="15.0" fill="rgb(0,223,174)" rx="2" ry="2" /> +<text x="808.69" y="671.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (20,202,020 samples, 0.20%)</title><rect x="986.1" y="485" width="2.7" height="15.0" fill="rgb(0,211,140)" rx="2" ry="2" /> +<text x="989.10" y="495.5" ></text> +</g> +<g > +<title>netif_skb_features (10,101,010 samples, 0.10%)</title><rect x="1332.1" y="405" width="1.4" height="15.0" fill="rgb(0,214,137)" rx="2" ry="2" /> +<text x="1335.11" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="914.7" y="709" width="4.1" height="15.0" fill="rgb(0,236,36)" rx="2" ry="2" /> +<text x="917.74" y="719.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (20,202,020 samples, 0.20%)</title><rect x="583.5" y="453" width="2.7" height="15.0" fill="rgb(0,236,147)" rx="2" ry="2" /> +<text x="586.54" y="463.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.10%)</title><rect x="1076.3" y="421" width="1.3" height="15.0" fill="rgb(0,209,201)" rx="2" ry="2" /> +<text x="1079.30" y="431.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="688.6" y="421" width="1.3" height="15.0" fill="rgb(0,207,16)" rx="2" ry="2" /> +<text x="691.56" y="431.5" ></text> +</g> +<g > +<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.10%)</title><rect x="1276.9" y="613" width="1.4" height="15.0" fill="rgb(0,190,15)" rx="2" ry="2" /> +<text x="1279.91" y="623.5" ></text> +</g> +<g > +<title>vma_do_get_file (20,202,020 samples, 0.20%)</title><rect x="1295.8" y="645" width="2.6" height="15.0" fill="rgb(0,219,98)" rx="2" ry="2" /> +<text x="1298.76" y="655.5" ></text> +</g> +<g > +<title>ext4_lookup (10,101,010 samples, 0.10%)</title><rect x="751.8" y="533" width="1.4" height="15.0" fill="rgb(0,210,34)" rx="2" ry="2" /> +<text x="754.83" y="543.5" ></text> +</g> +<g > +<title>net_send_part (50,505,050 samples, 0.49%)</title><rect x="1326.7" y="805" width="6.8" height="15.0" fill="rgb(0,239,173)" rx="2" ry="2" /> +<text x="1329.72" y="815.5" ></text> +</g> +<g > +<title>git_signature_now (10,101,010 samples, 0.10%)</title><rect x="782.8" y="693" width="1.3" height="15.0" fill="rgb(0,203,206)" rx="2" ry="2" /> +<text x="785.80" y="703.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.10%)</title><rect x="512.2" y="533" width="1.3" height="15.0" fill="rgb(0,194,76)" rx="2" ry="2" /> +<text x="515.19" y="543.5" ></text> +</g> +<g > +<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.10%)</title><rect x="959.2" y="373" width="1.3" height="15.0" fill="rgb(0,210,135)" rx="2" ry="2" /> +<text x="962.17" y="383.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (20,202,020 samples, 0.20%)</title><rect x="543.2" y="613" width="2.6" height="15.0" fill="rgb(0,207,137)" rx="2" ry="2" /> +<text x="546.15" y="623.5" ></text> +</g> +<g > +<title>git_config_add_backend (90,909,090 samples, 0.88%)</title><rect x="897.2" y="677" width="12.2" height="15.0" fill="rgb(0,239,81)" rx="2" ry="2" /> +<text x="900.24" y="687.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="202.5" y="485" width="1.4" height="15.0" fill="rgb(0,203,130)" rx="2" ry="2" /> +<text x="205.53" y="495.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="461.0" y="709" width="2.7" height="15.0" fill="rgb(0,216,10)" rx="2" ry="2" /> +<text x="464.02" y="719.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="419.3" y="645" width="1.3" height="15.0" fill="rgb(0,226,100)" rx="2" ry="2" /> +<text x="422.29" y="655.5" ></text> +</g> +<g > +<title>cubictcp_acked (10,101,010 samples, 0.10%)</title><rect x="67.9" y="117" width="1.3" height="15.0" fill="rgb(0,235,206)" rx="2" ry="2" /> +<text x="70.89" y="127.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1219.0" y="661" width="1.4" height="15.0" fill="rgb(0,239,195)" rx="2" ry="2" /> +<text x="1222.01" y="671.5" ></text> +</g> +<g > +<title>getdents64 (40,404,040 samples, 0.39%)</title><rect x="334.5" y="709" width="5.4" height="15.0" fill="rgb(0,237,107)" rx="2" ry="2" /> +<text x="337.47" y="719.5" ></text> +</g> +<g > +<title>evict (10,101,010 samples, 0.10%)</title><rect x="926.9" y="549" width="1.3" height="15.0" fill="rgb(0,231,15)" rx="2" ry="2" /> +<text x="929.86" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="730.3" y="645" width="4.0" height="15.0" fill="rgb(0,203,109)" rx="2" ry="2" /> +<text x="733.29" y="655.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="80.0" y="773" width="1.4" height="15.0" fill="rgb(0,215,209)" rx="2" ry="2" /> +<text x="83.01" y="783.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="724.9" y="517" width="1.4" height="15.0" fill="rgb(0,233,86)" rx="2" ry="2" /> +<text x="727.91" y="527.5" ></text> +</g> +<g > +<title>vfs_rename (70,707,070 samples, 0.68%)</title><rect x="653.6" y="597" width="9.4" height="15.0" fill="rgb(0,196,192)" rx="2" ry="2" /> +<text x="656.55" y="607.5" ></text> +</g> +<g > +<title>git_object_peel (60,606,060 samples, 0.59%)</title><rect x="540.5" y="805" width="8.0" height="15.0" fill="rgb(0,196,158)" rx="2" ry="2" /> +<text x="543.46" y="815.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.10%)</title><rect x="338.5" y="565" width="1.4" height="15.0" fill="rgb(0,235,136)" rx="2" ry="2" /> +<text x="341.51" y="575.5" ></text> +</g> +<g > +<title>__open64_nocancel (10,101,010 samples, 0.10%)</title><rect x="916.1" y="661" width="1.3" height="15.0" fill="rgb(0,202,77)" rx="2" ry="2" /> +<text x="919.09" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="1190.7" y="629" width="2.7" height="15.0" fill="rgb(0,191,167)" rx="2" ry="2" /> +<text x="1193.74" y="639.5" ></text> +</g> +<g > +<title>do_filp_open (30,303,030 samples, 0.29%)</title><rect x="502.8" y="661" width="4.0" height="15.0" fill="rgb(0,215,41)" rx="2" ry="2" /> +<text x="505.76" y="671.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.10%)</title><rect x="1069.6" y="677" width="1.3" height="15.0" fill="rgb(0,198,53)" rx="2" ry="2" /> +<text x="1072.57" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="221.4" y="629" width="1.3" height="15.0" fill="rgb(0,233,129)" rx="2" ry="2" /> +<text x="224.38" y="639.5" ></text> +</g> +<g > +<title>free_pages (10,101,010 samples, 0.10%)</title><rect x="1307.9" y="581" width="1.3" height="15.0" fill="rgb(0,196,200)" rx="2" ry="2" /> +<text x="1310.87" y="591.5" ></text> +</g> +<g > +<title>__napi_poll (40,404,040 samples, 0.39%)</title><rect x="15.4" y="437" width="5.4" height="15.0" fill="rgb(0,213,60)" rx="2" ry="2" /> +<text x="18.39" y="447.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="565" width="1.4" height="15.0" fill="rgb(0,235,167)" rx="2" ry="2" /> +<text x="1007.95" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="715.5" y="677" width="5.4" height="15.0" fill="rgb(0,238,24)" rx="2" ry="2" /> +<text x="718.48" y="687.5" ></text> +</g> +<g > +<title>__close_nocancel (10,101,010 samples, 0.10%)</title><rect x="220.0" y="661" width="1.4" height="15.0" fill="rgb(0,207,132)" rx="2" ry="2" /> +<text x="223.03" y="671.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="712.8" y="629" width="1.3" height="15.0" fill="rgb(0,229,185)" rx="2" ry="2" /> +<text x="715.79" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="203.9" y="565" width="4.0" height="15.0" fill="rgb(0,234,165)" rx="2" ry="2" /> +<text x="206.87" y="575.5" ></text> +</g> +<g > +<title>__sys_sendto (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="725" width="2.7" height="15.0" fill="rgb(0,194,53)" rx="2" ry="2" /> +<text x="1375.50" y="735.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="988.8" y="565" width="1.3" height="15.0" fill="rgb(0,200,89)" rx="2" ry="2" /> +<text x="991.79" y="575.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="905.3" y="533" width="1.4" height="15.0" fill="rgb(0,231,125)" rx="2" ry="2" /> +<text x="908.32" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1212.3" y="613" width="1.3" height="15.0" fill="rgb(0,205,147)" rx="2" ry="2" /> +<text x="1215.28" y="623.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.10%)</title><rect x="146.0" y="757" width="1.3" height="15.0" fill="rgb(0,211,89)" rx="2" ry="2" /> +<text x="148.98" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.78%)</title><rect x="764.0" y="645" width="10.7" height="15.0" fill="rgb(0,225,10)" rx="2" ry="2" /> +<text x="766.95" y="655.5" ></text> +</g> +<g > +<title>filldir64 (10,101,010 samples, 0.10%)</title><rect x="873.0" y="485" width="1.4" height="15.0" fill="rgb(0,196,18)" rx="2" ry="2" /> +<text x="876.00" y="495.5" ></text> +</g> +<g > +<title>git_refdb_open (20,202,020 samples, 0.20%)</title><rect x="718.2" y="661" width="2.7" height="15.0" fill="rgb(0,228,179)" rx="2" ry="2" /> +<text x="721.18" y="671.5" ></text> +</g> +<g > +<title>ext4_orphan_add (10,101,010 samples, 0.10%)</title><rect x="218.7" y="485" width="1.3" height="15.0" fill="rgb(0,213,16)" rx="2" ry="2" /> +<text x="221.68" y="495.5" ></text> +</g> +<g > +<title>security_socket_create (10,101,010 samples, 0.10%)</title><rect x="1349.6" y="757" width="1.4" height="15.0" fill="rgb(0,222,208)" rx="2" ry="2" /> +<text x="1352.61" y="767.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.10%)</title><rect x="708.8" y="469" width="1.3" height="15.0" fill="rgb(0,195,68)" rx="2" ry="2" /> +<text x="711.75" y="479.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="901.3" y="613" width="1.3" height="15.0" fill="rgb(0,206,178)" rx="2" ry="2" /> +<text x="904.28" y="623.5" ></text> +</g> +<g > +<title>open_last_lookups (20,202,020 samples, 0.20%)</title><rect x="504.1" y="629" width="2.7" height="15.0" fill="rgb(0,235,143)" rx="2" ry="2" /> +<text x="507.11" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1077.6" y="629" width="1.4" height="15.0" fill="rgb(0,231,54)" rx="2" ry="2" /> +<text x="1080.65" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_clone (333,333,330 samples, 3.22%)</title><rect x="1258.1" y="741" width="44.4" height="15.0" fill="rgb(0,199,105)" rx="2" ry="2" /> +<text x="1261.06" y="751.5" >__x6..</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="720.9" y="677" width="4.0" height="15.0" fill="rgb(0,236,208)" rx="2" ry="2" /> +<text x="723.87" y="687.5" ></text> +</g> +<g > +<title>iput (60,606,060 samples, 0.59%)</title><rect x="228.1" y="533" width="8.1" height="15.0" fill="rgb(0,229,157)" rx="2" ry="2" /> +<text x="231.11" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="877.0" y="517" width="1.4" height="15.0" fill="rgb(0,195,78)" rx="2" ry="2" /> +<text x="880.04" y="527.5" ></text> +</g> +<g > +<title>ipv4_conntrack_in (10,101,010 samples, 0.10%)</title><rect x="1379.2" y="341" width="1.4" height="15.0" fill="rgb(0,219,14)" rx="2" ry="2" /> +<text x="1382.23" y="351.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="1216.3" y="501" width="1.4" height="15.0" fill="rgb(0,227,191)" rx="2" ry="2" /> +<text x="1219.32" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="645" width="1.4" height="15.0" fill="rgb(0,216,135)" rx="2" ry="2" /> +<text x="1207.20" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (90,909,090 samples, 0.88%)</title><rect x="31.5" y="949" width="12.2" height="15.0" fill="rgb(0,228,122)" rx="2" ry="2" /> +<text x="34.54" y="959.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="100.2" y="741" width="4.0" height="15.0" fill="rgb(0,228,153)" rx="2" ry="2" /> +<text x="103.20" y="751.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="607.8" y="661" width="1.3" height="15.0" fill="rgb(0,234,47)" rx="2" ry="2" /> +<text x="610.78" y="671.5" ></text> +</g> +<g > +<title>vfs_mkdir (111,111,110 samples, 1.07%)</title><rect x="949.7" y="533" width="14.9" height="15.0" fill="rgb(0,191,207)" rx="2" ry="2" /> +<text x="952.75" y="543.5" ></text> +</g> +<g > +<title>ext4_orphan_add (40,404,040 samples, 0.39%)</title><rect x="284.7" y="533" width="5.3" height="15.0" fill="rgb(0,194,101)" rx="2" ry="2" /> +<text x="287.65" y="543.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="945.7" y="533" width="1.4" height="15.0" fill="rgb(0,232,191)" rx="2" ry="2" /> +<text x="948.71" y="543.5" ></text> +</g> +<g > +<title>__strftime_l (10,101,010 samples, 0.10%)</title><rect x="104.2" y="837" width="1.4" height="15.0" fill="rgb(0,205,84)" rx="2" ry="2" /> +<text x="107.24" y="847.5" ></text> +</g> +<g > +<title>vfs_rename (20,202,020 samples, 0.20%)</title><rect x="1084.4" y="581" width="2.7" height="15.0" fill="rgb(0,209,113)" rx="2" ry="2" /> +<text x="1087.38" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="796.3" y="597" width="1.3" height="15.0" fill="rgb(0,192,169)" rx="2" ry="2" /> +<text x="799.26" y="607.5" ></text> +</g> +<g > +<title>git_config_add_backend (40,404,040 samples, 0.39%)</title><rect x="887.8" y="709" width="5.4" height="15.0" fill="rgb(0,199,128)" rx="2" ry="2" /> +<text x="890.81" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.78%)</title><rect x="514.9" y="709" width="10.7" height="15.0" fill="rgb(0,202,20)" rx="2" ry="2" /> +<text x="517.88" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (202,020,200 samples, 1.95%)</title><rect x="563.3" y="693" width="27.0" height="15.0" fill="rgb(0,220,4)" rx="2" ry="2" /> +<text x="566.35" y="703.5" >[..</text> +</g> +<g > +<title>____fput (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="725" width="2.6" height="15.0" fill="rgb(0,228,178)" rx="2" ry="2" /> +<text x="1336.45" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="1194.8" y="645" width="2.7" height="15.0" fill="rgb(0,212,31)" rx="2" ry="2" /> +<text x="1197.78" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="855.5" y="661" width="1.3" height="15.0" fill="rgb(0,218,173)" rx="2" ry="2" /> +<text x="858.50" y="671.5" ></text> +</g> +<g > +<title>git_refdb_open (20,202,020 samples, 0.20%)</title><rect x="1202.9" y="741" width="2.7" height="15.0" fill="rgb(0,192,103)" rx="2" ry="2" /> +<text x="1205.86" y="751.5" ></text> +</g> +<g > +<title>build_open_flags (10,101,010 samples, 0.10%)</title><rect x="916.1" y="597" width="1.3" height="15.0" fill="rgb(0,200,116)" rx="2" ry="2" /> +<text x="919.09" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_openat (30,303,030 samples, 0.29%)</title><rect x="1213.6" y="597" width="4.1" height="15.0" fill="rgb(0,233,158)" rx="2" ry="2" /> +<text x="1216.63" y="607.5" ></text> +</g> +<g > +<title>ext4_writepages (40,404,040 samples, 0.39%)</title><rect x="842.0" y="501" width="5.4" height="15.0" fill="rgb(0,201,90)" rx="2" ry="2" /> +<text x="845.04" y="511.5" ></text> +</g> +<g > +<title>unlink (30,303,030 samples, 0.29%)</title><rect x="1040.0" y="725" width="4.0" height="15.0" fill="rgb(0,225,39)" rx="2" ry="2" /> +<text x="1042.95" y="735.5" ></text> +</g> +<g > +<title>git_config_snapshot (50,505,050 samples, 0.49%)</title><rect x="990.1" y="677" width="6.8" height="15.0" fill="rgb(0,221,186)" rx="2" ry="2" /> +<text x="993.14" y="687.5" ></text> +</g> +<g > +<title>ext4_mb_initialize_context (10,101,010 samples, 0.10%)</title><rect x="820.5" y="421" width="1.3" height="15.0" fill="rgb(0,199,126)" rx="2" ry="2" /> +<text x="823.50" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="759.9" y="597" width="2.7" height="15.0" fill="rgb(0,212,73)" rx="2" ry="2" /> +<text x="762.91" y="607.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.10%)</title><rect x="366.8" y="565" width="1.3" height="15.0" fill="rgb(0,201,137)" rx="2" ry="2" /> +<text x="369.78" y="575.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="170.2" y="917" width="2.7" height="15.0" fill="rgb(0,196,102)" rx="2" ry="2" /> +<text x="173.21" y="927.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.10%)</title><rect x="502.8" y="629" width="1.3" height="15.0" fill="rgb(0,237,156)" rx="2" ry="2" /> +<text x="505.76" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (191,919,190 samples, 1.85%)</title><rect x="943.0" y="629" width="25.6" height="15.0" fill="rgb(0,211,136)" rx="2" ry="2" /> +<text x="946.01" y="639.5" >[..</text> +</g> +<g > +<title>legitimize_links (10,101,010 samples, 0.10%)</title><rect x="728.9" y="517" width="1.4" height="15.0" fill="rgb(0,215,25)" rx="2" ry="2" /> +<text x="731.95" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="552.6" y="725" width="8.1" height="15.0" fill="rgb(0,231,78)" rx="2" ry="2" /> +<text x="555.58" y="735.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="327.7" y="613" width="1.4" height="15.0" fill="rgb(0,208,12)" rx="2" ry="2" /> +<text x="330.74" y="623.5" ></text> +</g> +<g > +<title>free (20,202,020 samples, 0.20%)</title><rect x="1359.0" y="757" width="2.7" height="15.0" fill="rgb(0,230,153)" rx="2" ry="2" /> +<text x="1362.03" y="767.5" ></text> +</g> +<g > +<title>__ext4_unlink (30,303,030 samples, 0.29%)</title><rect x="203.9" y="469" width="4.0" height="15.0" fill="rgb(0,200,148)" rx="2" ry="2" /> +<text x="206.87" y="479.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="541.8" y="469" width="1.4" height="15.0" fill="rgb(0,192,159)" rx="2" ry="2" /> +<text x="544.80" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="882.4" y="645" width="1.4" height="15.0" fill="rgb(0,194,170)" rx="2" ry="2" /> +<text x="885.43" y="655.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="784.1" y="597" width="1.4" height="15.0" fill="rgb(0,239,197)" rx="2" ry="2" /> +<text x="787.15" y="607.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="565" width="2.6" height="15.0" fill="rgb(0,209,16)" rx="2" ry="2" /> +<text x="1336.45" y="575.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (10,101,010 samples, 0.10%)</title><rect x="416.6" y="805" width="1.3" height="15.0" fill="rgb(0,219,150)" rx="2" ry="2" /> +<text x="419.60" y="815.5" ></text> +</g> +<g > +<title>git_reference_normalize_name (10,101,010 samples, 0.10%)</title><rect x="714.1" y="725" width="1.4" height="15.0" fill="rgb(0,199,124)" rx="2" ry="2" /> +<text x="717.14" y="735.5" ></text> +</g> +<g > +<title>ext4_mb_complex_scan_group (10,101,010 samples, 0.10%)</title><rect x="120.4" y="661" width="1.3" height="15.0" fill="rgb(0,234,158)" rx="2" ry="2" /> +<text x="123.40" y="671.5" ></text> +</g> +<g > +<title>do_unlinkat (60,606,060 samples, 0.59%)</title><rect x="392.4" y="677" width="8.0" height="15.0" fill="rgb(0,230,50)" rx="2" ry="2" /> +<text x="395.36" y="687.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (50,505,050 samples, 0.49%)</title><rect x="14.0" y="597" width="6.8" height="15.0" fill="rgb(0,192,142)" rx="2" ry="2" /> +<text x="17.04" y="607.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="346.6" y="485" width="1.3" height="15.0" fill="rgb(0,215,69)" rx="2" ry="2" /> +<text x="349.59" y="495.5" ></text> +</g> +<g > +<title>schedule_timeout (10,101,010 samples, 0.10%)</title><rect x="1368.5" y="533" width="1.3" height="15.0" fill="rgb(0,193,153)" rx="2" ry="2" /> +<text x="1371.46" y="543.5" ></text> +</g> +<g > +<title>dput (50,505,050 samples, 0.49%)</title><rect x="646.8" y="597" width="6.8" height="15.0" fill="rgb(0,216,125)" rx="2" ry="2" /> +<text x="649.82" y="607.5" ></text> +</g> +<g > +<title>ext4_getattr (10,101,010 samples, 0.10%)</title><rect x="506.8" y="629" width="1.3" height="15.0" fill="rgb(0,191,36)" rx="2" ry="2" /> +<text x="509.80" y="639.5" ></text> +</g> +<g > +<title>new_sync_write (30,303,030 samples, 0.29%)</title><rect x="509.5" y="597" width="4.0" height="15.0" fill="rgb(0,190,52)" rx="2" ry="2" /> +<text x="512.49" y="607.5" ></text> +</g> +<g > +<title>do_writepages (40,404,040 samples, 0.39%)</title><rect x="842.0" y="517" width="5.4" height="15.0" fill="rgb(0,223,125)" rx="2" ry="2" /> +<text x="845.04" y="527.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="403.1" y="645" width="1.4" height="15.0" fill="rgb(0,214,155)" rx="2" ry="2" /> +<text x="406.13" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="831.3" y="645" width="1.3" height="15.0" fill="rgb(0,193,16)" rx="2" ry="2" /> +<text x="834.27" y="655.5" ></text> +</g> +<g > +<title>security_file_alloc (10,101,010 samples, 0.10%)</title><rect x="518.9" y="501" width="1.4" height="15.0" fill="rgb(0,200,113)" rx="2" ry="2" /> +<text x="521.92" y="511.5" ></text> +</g> +<g > +<title>path_init (10,101,010 samples, 0.10%)</title><rect x="548.5" y="629" width="1.4" height="15.0" fill="rgb(0,230,0)" rx="2" ry="2" /> +<text x="551.54" y="639.5" ></text> +</g> +<g > +<title>dput (30,303,030 samples, 0.29%)</title><rect x="808.4" y="613" width="4.0" height="15.0" fill="rgb(0,193,39)" rx="2" ry="2" /> +<text x="811.38" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="902.6" y="565" width="1.4" height="15.0" fill="rgb(0,191,125)" rx="2" ry="2" /> +<text x="905.62" y="575.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1212.3" y="597" width="1.3" height="15.0" fill="rgb(0,199,92)" rx="2" ry="2" /> +<text x="1215.28" y="607.5" ></text> +</g> +<g > +<title>__wake_up (10,101,010 samples, 0.10%)</title><rect x="338.5" y="533" width="1.4" height="15.0" fill="rgb(0,238,127)" rx="2" ry="2" /> +<text x="341.51" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1110.0" y="661" width="1.3" height="15.0" fill="rgb(0,220,42)" rx="2" ry="2" /> +<text x="1112.96" y="671.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="1196.1" y="565" width="1.4" height="15.0" fill="rgb(0,213,95)" rx="2" ry="2" /> +<text x="1199.13" y="575.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="268.5" y="517" width="1.3" height="15.0" fill="rgb(0,235,209)" rx="2" ry="2" /> +<text x="271.50" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 1.17%)</title><rect x="1070.9" y="693" width="16.2" height="15.0" fill="rgb(0,225,95)" rx="2" ry="2" /> +<text x="1073.92" y="703.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="1197.5" y="613" width="1.3" height="15.0" fill="rgb(0,223,87)" rx="2" ry="2" /> +<text x="1200.47" y="623.5" ></text> +</g> +<g > +<title>opendir (30,303,030 samples, 0.29%)</title><rect x="1213.6" y="661" width="4.1" height="15.0" fill="rgb(0,225,105)" rx="2" ry="2" /> +<text x="1216.63" y="671.5" ></text> +</g> +<g > +<title>__ip_finish_output (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="501" width="1.4" height="15.0" fill="rgb(0,222,198)" rx="2" ry="2" /> +<text x="1376.84" y="511.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="570.1" y="517" width="1.3" height="15.0" fill="rgb(0,202,74)" rx="2" ry="2" /> +<text x="573.08" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="852.8" y="709" width="1.4" height="15.0" fill="rgb(0,218,131)" rx="2" ry="2" /> +<text x="855.81" y="719.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.10%)</title><rect x="548.5" y="757" width="1.4" height="15.0" fill="rgb(0,203,76)" rx="2" ry="2" /> +<text x="551.54" y="767.5" ></text> +</g> +<g > +<title>__pthread_rwlock_wrlock (10,101,010 samples, 0.10%)</title><rect x="910.7" y="661" width="1.3" height="15.0" fill="rgb(0,234,46)" rx="2" ry="2" /> +<text x="913.70" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_sendto (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="741" width="2.7" height="15.0" fill="rgb(0,220,24)" rx="2" ry="2" /> +<text x="1375.50" y="751.5" ></text> +</g> +<g > +<title>nf_conntrack_handle_packet (10,101,010 samples, 0.10%)</title><rect x="1341.5" y="565" width="1.4" height="15.0" fill="rgb(0,196,125)" rx="2" ry="2" /> +<text x="1344.53" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="1174.6" y="741" width="6.7" height="15.0" fill="rgb(0,193,166)" rx="2" ry="2" /> +<text x="1177.59" y="751.5" ></text> +</g> +<g > +<title>git_remote_download (60,606,060 samples, 0.59%)</title><rect x="912.0" y="773" width="8.1" height="15.0" fill="rgb(0,199,196)" rx="2" ry="2" /> +<text x="915.05" y="783.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.10%)</title><rect x="710.1" y="565" width="1.3" height="15.0" fill="rgb(0,215,108)" rx="2" ry="2" /> +<text x="713.10" y="575.5" ></text> +</g> +<g > +<title>ip_finish_output2 (20,202,020 samples, 0.20%)</title><rect x="1345.6" y="581" width="2.7" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" /> +<text x="1348.57" y="591.5" ></text> +</g> +<g > +<title>security_inode_need_killpriv (10,101,010 samples, 0.10%)</title><rect x="1046.7" y="549" width="1.3" height="15.0" fill="rgb(0,195,10)" rx="2" ry="2" /> +<text x="1049.68" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="1072.3" y="661" width="5.3" height="15.0" fill="rgb(0,221,116)" rx="2" ry="2" /> +<text x="1075.26" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="482.6" y="645" width="1.3" height="15.0" fill="rgb(0,235,196)" rx="2" ry="2" /> +<text x="485.57" y="655.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="905.3" y="517" width="1.4" height="15.0" fill="rgb(0,237,199)" rx="2" ry="2" /> +<text x="908.32" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="976.7" y="533" width="1.3" height="15.0" fill="rgb(0,213,131)" rx="2" ry="2" /> +<text x="979.67" y="543.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.10%)</title><rect x="1085.7" y="437" width="1.4" height="15.0" fill="rgb(0,204,107)" rx="2" ry="2" /> +<text x="1088.73" y="447.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.10%)</title><rect x="478.5" y="389" width="1.4" height="15.0" fill="rgb(0,233,193)" rx="2" ry="2" /> +<text x="481.53" y="399.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="587.6" y="597" width="1.3" height="15.0" fill="rgb(0,206,26)" rx="2" ry="2" /> +<text x="590.58" y="607.5" ></text> +</g> +<g > +<title>__wake_up (10,101,010 samples, 0.10%)</title><rect x="146.0" y="709" width="1.3" height="15.0" fill="rgb(0,207,133)" rx="2" ry="2" /> +<text x="148.98" y="719.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="198.5" y="757" width="1.3" height="15.0" fill="rgb(0,232,22)" rx="2" ry="2" /> +<text x="201.49" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="925.5" y="661" width="1.4" height="15.0" fill="rgb(0,221,154)" rx="2" ry="2" /> +<text x="928.51" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="528.3" y="661" width="1.4" height="15.0" fill="rgb(0,218,60)" rx="2" ry="2" /> +<text x="531.34" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_readlink (10,101,010 samples, 0.10%)</title><rect x="882.4" y="613" width="1.4" height="15.0" fill="rgb(0,194,64)" rx="2" ry="2" /> +<text x="885.43" y="623.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="1119.4" y="469" width="1.3" height="15.0" fill="rgb(0,227,148)" rx="2" ry="2" /> +<text x="1122.39" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="792.2" y="661" width="2.7" height="15.0" fill="rgb(0,200,33)" rx="2" ry="2" /> +<text x="795.22" y="671.5" ></text> +</g> +<g > +<title>fscrypt_file_open (10,101,010 samples, 0.10%)</title><rect x="533.7" y="453" width="1.4" height="15.0" fill="rgb(0,207,197)" rx="2" ry="2" /> +<text x="536.73" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.68%)</title><rect x="789.5" y="741" width="9.5" height="15.0" fill="rgb(0,214,158)" rx="2" ry="2" /> +<text x="792.53" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="792.2" y="645" width="2.7" height="15.0" fill="rgb(0,239,155)" rx="2" ry="2" /> +<text x="795.22" y="655.5" ></text> +</g> +<g > +<title>free_rb_tree_fname (10,101,010 samples, 0.10%)</title><rect x="1210.9" y="501" width="1.4" height="15.0" fill="rgb(0,224,116)" rx="2" ry="2" /> +<text x="1213.94" y="511.5" ></text> +</g> +<g > +<title>blk_finish_plug (30,303,030 samples, 0.29%)</title><rect x="1124.8" y="469" width="4.0" height="15.0" fill="rgb(0,209,27)" rx="2" ry="2" /> +<text x="1127.77" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="365.4" y="725" width="4.1" height="15.0" fill="rgb(0,221,44)" rx="2" ry="2" /> +<text x="368.43" y="735.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (60,606,060 samples, 0.59%)</title><rect x="65.2" y="469" width="8.1" height="15.0" fill="rgb(0,195,98)" rx="2" ry="2" /> +<text x="68.20" y="479.5" ></text> +</g> +<g > +<title>unlink_cb (10,101,010 samples, 0.10%)</title><rect x="209.3" y="629" width="1.3" height="15.0" fill="rgb(0,205,91)" rx="2" ry="2" /> +<text x="212.26" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.78%)</title><rect x="623.9" y="661" width="10.8" height="15.0" fill="rgb(0,238,54)" rx="2" ry="2" /> +<text x="626.93" y="671.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.10%)</title><rect x="799.0" y="725" width="1.3" height="15.0" fill="rgb(0,210,122)" rx="2" ry="2" /> +<text x="801.96" y="735.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.10%)</title><rect x="784.1" y="613" width="1.4" height="15.0" fill="rgb(0,229,143)" rx="2" ry="2" /> +<text x="787.15" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1019.8" y="709" width="1.3" height="15.0" fill="rgb(0,201,107)" rx="2" ry="2" /> +<text x="1022.76" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="516.2" y="613" width="1.4" height="15.0" fill="rgb(0,217,87)" rx="2" ry="2" /> +<text x="519.22" y="623.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="1336.1" y="629" width="1.4" height="15.0" fill="rgb(0,235,15)" rx="2" ry="2" /> +<text x="1339.15" y="639.5" ></text> +</g> +<g > +<title>git_worktree_list (20,202,020 samples, 0.20%)</title><rect x="750.5" y="709" width="2.7" height="15.0" fill="rgb(0,194,78)" rx="2" ry="2" /> +<text x="753.49" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1189.4" y="613" width="1.3" height="15.0" fill="rgb(0,198,163)" rx="2" ry="2" /> +<text x="1192.40" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="909.4" y="709" width="1.3" height="15.0" fill="rgb(0,215,5)" rx="2" ry="2" /> +<text x="912.36" y="719.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="629" width="1.3" height="15.0" fill="rgb(0,237,191)" rx="2" ry="2" /> +<text x="1029.49" y="639.5" ></text> +</g> +<g > +<title>evict (60,606,060 samples, 0.59%)</title><rect x="228.1" y="517" width="8.1" height="15.0" fill="rgb(0,197,28)" rx="2" ry="2" /> +<text x="231.11" y="527.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="345.2" y="565" width="2.7" height="15.0" fill="rgb(0,191,82)" rx="2" ry="2" /> +<text x="348.24" y="575.5" ></text> +</g> +<g > +<title>__dquot_initialize (10,101,010 samples, 0.10%)</title><rect x="502.8" y="565" width="1.3" height="15.0" fill="rgb(0,233,10)" rx="2" ry="2" /> +<text x="505.76" y="575.5" ></text> +</g> +<g > +<title>jbd2__journal_start (10,101,010 samples, 0.10%)</title><rect x="982.1" y="517" width="1.3" height="15.0" fill="rgb(0,195,28)" rx="2" ry="2" /> +<text x="985.06" y="527.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.10%)</title><rect x="242.9" y="501" width="1.4" height="15.0" fill="rgb(0,239,14)" rx="2" ry="2" /> +<text x="245.92" y="511.5" ></text> +</g> +<g > +<title>submit_bio (10,101,010 samples, 0.10%)</title><rect x="817.8" y="469" width="1.4" height="15.0" fill="rgb(0,220,119)" rx="2" ry="2" /> +<text x="820.80" y="479.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.10%)</title><rect x="388.3" y="725" width="1.4" height="15.0" fill="rgb(0,203,118)" rx="2" ry="2" /> +<text x="391.32" y="735.5" ></text> +</g> +<g > +<title>net_rx_action (20,202,020 samples, 0.20%)</title><rect x="1345.6" y="517" width="2.7" height="15.0" fill="rgb(0,219,170)" rx="2" ry="2" /> +<text x="1348.57" y="527.5" ></text> +</g> +<g > +<title>crc_37 (10,101,010 samples, 0.10%)</title><rect x="358.7" y="421" width="1.3" height="15.0" fill="rgb(0,192,87)" rx="2" ry="2" /> +<text x="361.70" y="431.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="728.9" y="565" width="1.4" height="15.0" fill="rgb(0,236,169)" rx="2" ry="2" /> +<text x="731.95" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="482.6" y="661" width="1.3" height="15.0" fill="rgb(0,225,19)" rx="2" ry="2" /> +<text x="485.57" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="746.4" y="549" width="1.4" height="15.0" fill="rgb(0,191,152)" rx="2" ry="2" /> +<text x="749.45" y="559.5" ></text> +</g> +<g > +<title>__anon_inode_getfile (10,101,010 samples, 0.10%)</title><rect x="85.4" y="709" width="1.3" height="15.0" fill="rgb(0,205,67)" rx="2" ry="2" /> +<text x="88.40" y="719.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="296.8" y="437" width="1.3" height="15.0" fill="rgb(0,190,14)" rx="2" ry="2" /> +<text x="299.77" y="447.5" ></text> +</g> +<g > +<title>do_linkat (10,101,010 samples, 0.10%)</title><rect x="1079.0" y="597" width="1.3" height="15.0" fill="rgb(0,196,8)" rx="2" ry="2" /> +<text x="1082.00" y="607.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.10%)</title><rect x="735.7" y="581" width="1.3" height="15.0" fill="rgb(0,236,8)" rx="2" ry="2" /> +<text x="738.68" y="591.5" ></text> +</g> +<g > +<title>__strdup (10,101,010 samples, 0.10%)</title><rect x="891.9" y="645" width="1.3" height="15.0" fill="rgb(0,219,190)" rx="2" ry="2" /> +<text x="894.85" y="655.5" ></text> +</g> +<g > +<title>submit_bio_noacct (10,101,010 samples, 0.10%)</title><rect x="842.0" y="453" width="1.4" height="15.0" fill="rgb(0,193,46)" rx="2" ry="2" /> +<text x="845.04" y="463.5" ></text> +</g> +<g > +<title>__ext4fs_dirhash (10,101,010 samples, 0.10%)</title><rect x="265.8" y="517" width="1.4" height="15.0" fill="rgb(0,202,108)" rx="2" ry="2" /> +<text x="268.80" y="527.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="905.3" y="549" width="1.4" height="15.0" fill="rgb(0,213,10)" rx="2" ry="2" /> +<text x="908.32" y="559.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="834.0" y="629" width="2.7" height="15.0" fill="rgb(0,206,123)" rx="2" ry="2" /> +<text x="836.96" y="639.5" ></text> +</g> +<g > +<title>do_softirq (40,404,040 samples, 0.39%)</title><rect x="15.4" y="485" width="5.4" height="15.0" fill="rgb(0,199,202)" rx="2" ry="2" /> +<text x="18.39" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="724.9" y="677" width="4.0" height="15.0" fill="rgb(0,238,148)" rx="2" ry="2" /> +<text x="727.91" y="687.5" ></text> +</g> +<g > +<title>git_remote_is_valid_name (10,101,010 samples, 0.10%)</title><rect x="824.5" y="741" width="1.4" height="15.0" fill="rgb(0,238,76)" rx="2" ry="2" /> +<text x="827.54" y="751.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.10%)</title><rect x="366.8" y="581" width="1.3" height="15.0" fill="rgb(0,228,143)" rx="2" ry="2" /> +<text x="369.78" y="591.5" ></text> +</g> +<g > +<title>tcp_sendmsg (101,010,100 samples, 0.98%)</title><rect x="11.3" y="709" width="13.5" height="15.0" fill="rgb(0,190,49)" rx="2" ry="2" /> +<text x="14.35" y="719.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.10%)</title><rect x="850.1" y="469" width="1.4" height="15.0" fill="rgb(0,196,44)" rx="2" ry="2" /> +<text x="853.12" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.68%)</title><rect x="741.1" y="629" width="9.4" height="15.0" fill="rgb(0,197,8)" rx="2" ry="2" /> +<text x="744.06" y="639.5" ></text> +</g> +<g > +<title>cmd_dispatcher_handle_conn_internal (101,010,100 samples, 0.98%)</title><rect x="1357.7" y="837" width="13.5" height="15.0" fill="rgb(0,218,87)" rx="2" ry="2" /> +<text x="1360.69" y="847.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (30,303,030 samples, 0.29%)</title><rect x="1153.0" y="613" width="4.1" height="15.0" fill="rgb(0,233,47)" rx="2" ry="2" /> +<text x="1156.04" y="623.5" ></text> +</g> +<g > +<title>getname (10,101,010 samples, 0.10%)</title><rect x="1101.9" y="581" width="1.3" height="15.0" fill="rgb(0,209,84)" rx="2" ry="2" /> +<text x="1104.88" y="591.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="90.8" y="629" width="1.3" height="15.0" fill="rgb(0,203,48)" rx="2" ry="2" /> +<text x="93.78" y="639.5" ></text> +</g> +<g > +<title>get_obj_cgroup_from_current (10,101,010 samples, 0.10%)</title><rect x="175.6" y="821" width="1.3" height="15.0" fill="rgb(0,193,48)" rx="2" ry="2" /> +<text x="178.60" y="831.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1201.5" y="661" width="1.4" height="15.0" fill="rgb(0,209,87)" rx="2" ry="2" /> +<text x="1204.51" y="671.5" ></text> +</g> +<g > +<title>ext4_add_nondir (80,808,080 samples, 0.78%)</title><rect x="158.1" y="757" width="10.8" height="15.0" fill="rgb(0,224,85)" rx="2" ry="2" /> +<text x="161.10" y="767.5" ></text> +</g> +<g > +<title>vfs_read (20,202,020 samples, 0.20%)</title><rect x="698.0" y="533" width="2.7" height="15.0" fill="rgb(0,205,31)" rx="2" ry="2" /> +<text x="700.98" y="543.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="883.8" y="629" width="1.3" height="15.0" fill="rgb(0,221,183)" rx="2" ry="2" /> +<text x="886.78" y="639.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.10%)</title><rect x="1241.9" y="533" width="1.3" height="15.0" fill="rgb(0,228,20)" rx="2" ry="2" /> +<text x="1244.90" y="543.5" ></text> +</g> +<g > +<title>git_repository_free (30,303,030 samples, 0.29%)</title><rect x="720.9" y="709" width="4.0" height="15.0" fill="rgb(0,213,61)" rx="2" ry="2" /> +<text x="723.87" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="913.4" y="741" width="6.7" height="15.0" fill="rgb(0,210,83)" rx="2" ry="2" /> +<text x="916.40" y="751.5" ></text> +</g> +<g > +<title>net_send (50,505,050 samples, 0.49%)</title><rect x="1326.7" y="821" width="6.8" height="15.0" fill="rgb(0,194,203)" rx="2" ry="2" /> +<text x="1329.72" y="831.5" ></text> +</g> +<g > +<title>new_sync_read (10,101,010 samples, 0.10%)</title><rect x="698.0" y="517" width="1.3" height="15.0" fill="rgb(0,207,90)" rx="2" ry="2" /> +<text x="700.98" y="527.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="1302.5" y="709" width="1.3" height="15.0" fill="rgb(0,196,66)" rx="2" ry="2" /> +<text x="1305.49" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1065.5" y="709" width="1.4" height="15.0" fill="rgb(0,228,4)" rx="2" ry="2" /> +<text x="1068.53" y="719.5" ></text> +</g> +<g > +<title>process_backlog (20,202,020 samples, 0.20%)</title><rect x="1345.6" y="485" width="2.7" height="15.0" fill="rgb(0,205,51)" rx="2" ry="2" /> +<text x="1348.57" y="495.5" ></text> +</g> +<g > +<title>skb_network_protocol (10,101,010 samples, 0.10%)</title><rect x="1332.1" y="389" width="1.4" height="15.0" fill="rgb(0,195,3)" rx="2" ry="2" /> +<text x="1335.11" y="399.5" ></text> +</g> +<g > +<title>ext4_evict_inode (202,020,200 samples, 1.95%)</title><rect x="294.1" y="533" width="26.9" height="15.0" fill="rgb(0,231,180)" rx="2" ry="2" /> +<text x="297.08" y="543.5" >e..</text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="403.1" y="693" width="1.4" height="15.0" fill="rgb(0,229,66)" rx="2" ry="2" /> +<text x="406.13" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="998.2" y="629" width="1.4" height="15.0" fill="rgb(0,237,108)" rx="2" ry="2" /> +<text x="1001.21" y="639.5" ></text> +</g> +<g > +<title>unlink_cb (181,818,180 samples, 1.76%)</title><rect x="339.9" y="725" width="24.2" height="15.0" fill="rgb(0,204,139)" rx="2" ry="2" /> +<text x="342.85" y="735.5" >u..</text> +</g> +<g > +<title>__tcp_push_pending_frames (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="597" width="2.6" height="15.0" fill="rgb(0,213,174)" rx="2" ry="2" /> +<text x="1336.45" y="607.5" ></text> +</g> +<g > +<title>access (111,111,110 samples, 1.07%)</title><rect x="174.3" y="933" width="14.8" height="15.0" fill="rgb(0,221,202)" rx="2" ry="2" /> +<text x="177.25" y="943.5" ></text> +</g> +<g > +<title>ci_prepare_git_repo (6,292,929,230 samples, 60.78%)</title><rect x="417.9" y="853" width="838.8" height="15.0" fill="rgb(0,224,154)" rx="2" ry="2" /> +<text x="420.94" y="863.5" >ci_prepare_git_repo</text> +</g> +<g > +<title>xas_find (10,101,010 samples, 0.10%)</title><rect x="1122.1" y="453" width="1.3" height="15.0" fill="rgb(0,235,19)" rx="2" ry="2" /> +<text x="1125.08" y="463.5" ></text> +</g> +<g > +<title>ext4_delete_entry (20,202,020 samples, 0.20%)</title><rect x="216.0" y="485" width="2.7" height="15.0" fill="rgb(0,198,208)" rx="2" ry="2" /> +<text x="218.99" y="495.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="399.1" y="597" width="1.3" height="15.0" fill="rgb(0,196,5)" rx="2" ry="2" /> +<text x="402.09" y="607.5" ></text> +</g> +<g > +<title>ext4_evict_inode (10,101,010 samples, 0.10%)</title><rect x="926.9" y="533" width="1.3" height="15.0" fill="rgb(0,224,109)" rx="2" ry="2" /> +<text x="929.86" y="543.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="708.8" y="533" width="1.3" height="15.0" fill="rgb(0,207,79)" rx="2" ry="2" /> +<text x="711.75" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="667.0" y="693" width="4.1" height="15.0" fill="rgb(0,227,132)" rx="2" ry="2" /> +<text x="670.01" y="703.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.10%)</title><rect x="202.5" y="517" width="1.4" height="15.0" fill="rgb(0,221,30)" rx="2" ry="2" /> +<text x="205.53" y="527.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="669.7" y="581" width="1.4" height="15.0" fill="rgb(0,220,151)" rx="2" ry="2" /> +<text x="672.71" y="591.5" ></text> +</g> +<g > +<title>memcmp (10,101,010 samples, 0.10%)</title><rect x="758.6" y="389" width="1.3" height="15.0" fill="rgb(0,238,19)" rx="2" ry="2" /> +<text x="761.57" y="399.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="901.3" y="581" width="1.3" height="15.0" fill="rgb(0,225,51)" rx="2" ry="2" /> +<text x="904.28" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="850.1" y="613" width="2.7" height="15.0" fill="rgb(0,211,117)" rx="2" ry="2" /> +<text x="853.12" y="623.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.10%)</title><rect x="478.5" y="501" width="1.4" height="15.0" fill="rgb(0,224,191)" rx="2" ry="2" /> +<text x="481.53" y="511.5" ></text> +</g> +<g > +<title>__pthread_rwlock_rdlock (10,101,010 samples, 0.10%)</title><rect x="473.1" y="565" width="1.4" height="15.0" fill="rgb(0,239,67)" rx="2" ry="2" /> +<text x="476.14" y="575.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="158.1" y="741" width="1.3" height="15.0" fill="rgb(0,230,84)" rx="2" ry="2" /> +<text x="161.10" y="751.5" ></text> +</g> +<g > +<title>grab_cache_page_write_begin (10,101,010 samples, 0.10%)</title><rect x="687.2" y="469" width="1.4" height="15.0" fill="rgb(0,218,49)" rx="2" ry="2" /> +<text x="690.21" y="479.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="575.5" y="485" width="1.3" height="15.0" fill="rgb(0,200,53)" rx="2" ry="2" /> +<text x="578.46" y="495.5" ></text> +</g> +<g > +<title>__blk_mq_alloc_request (10,101,010 samples, 0.10%)</title><rect x="657.6" y="389" width="1.3" height="15.0" fill="rgb(0,218,83)" rx="2" ry="2" /> +<text x="660.59" y="399.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="1080.3" y="421" width="1.4" height="15.0" fill="rgb(0,223,59)" rx="2" ry="2" /> +<text x="1083.34" y="431.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="839.3" y="405" width="1.4" height="15.0" fill="rgb(0,230,166)" rx="2" ry="2" /> +<text x="842.35" y="415.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="918.8" y="661" width="1.3" height="15.0" fill="rgb(0,224,5)" rx="2" ry="2" /> +<text x="921.78" y="671.5" ></text> +</g> +<g > +<title>pthread_cond_wait (20,202,020 samples, 0.20%)</title><rect x="28.8" y="885" width="2.7" height="15.0" fill="rgb(0,222,197)" rx="2" ry="2" /> +<text x="31.85" y="895.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="595.7" y="597" width="1.3" height="15.0" fill="rgb(0,200,145)" rx="2" ry="2" /> +<text x="598.66" y="607.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="362.7" y="645" width="1.4" height="15.0" fill="rgb(0,190,84)" rx="2" ry="2" /> +<text x="365.74" y="655.5" ></text> +</g> +<g > +<title>copy_user_enhanced_fast_string (10,101,010 samples, 0.10%)</title><rect x="210.6" y="549" width="1.4" height="15.0" fill="rgb(0,227,16)" rx="2" ry="2" /> +<text x="213.60" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="850.1" y="629" width="2.7" height="15.0" fill="rgb(0,235,202)" rx="2" ry="2" /> +<text x="853.12" y="639.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.20%)</title><rect x="906.7" y="645" width="2.7" height="15.0" fill="rgb(0,207,196)" rx="2" ry="2" /> +<text x="909.66" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_socket (10,101,010 samples, 0.10%)</title><rect x="1349.6" y="805" width="1.4" height="15.0" fill="rgb(0,234,157)" rx="2" ry="2" /> +<text x="1352.61" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="525.6" y="661" width="1.4" height="15.0" fill="rgb(0,212,124)" rx="2" ry="2" /> +<text x="528.65" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="850.1" y="693" width="2.7" height="15.0" fill="rgb(0,211,170)" rx="2" ry="2" /> +<text x="853.12" y="703.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="693" width="1.4" height="15.0" fill="rgb(0,235,34)" rx="2" ry="2" /> +<text x="1007.95" y="703.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="597" width="4.0" height="15.0" fill="rgb(0,201,12)" rx="2" ry="2" /> +<text x="1255.67" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="898.6" y="613" width="2.7" height="15.0" fill="rgb(0,192,19)" rx="2" ry="2" /> +<text x="901.59" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (393,939,390 samples, 3.80%)</title><rect x="856.8" y="757" width="52.6" height="15.0" fill="rgb(0,226,54)" rx="2" ry="2" /> +<text x="859.85" y="767.5" >[libg..</text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="93.5" y="821" width="1.3" height="15.0" fill="rgb(0,199,111)" rx="2" ry="2" /> +<text x="96.47" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (40,404,040 samples, 0.39%)</title><rect x="407.2" y="709" width="5.4" height="15.0" fill="rgb(0,233,54)" rx="2" ry="2" /> +<text x="410.17" y="719.5" ></text> +</g> +<g > +<title>read (20,202,020 samples, 0.20%)</title><rect x="698.0" y="613" width="2.7" height="15.0" fill="rgb(0,219,12)" rx="2" ry="2" /> +<text x="700.98" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1091.1" y="629" width="1.4" height="15.0" fill="rgb(0,202,92)" rx="2" ry="2" /> +<text x="1094.11" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="839.3" y="421" width="1.4" height="15.0" fill="rgb(0,210,62)" rx="2" ry="2" /> +<text x="842.35" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.88%)</title><rect x="897.2" y="661" width="12.2" height="15.0" fill="rgb(0,208,207)" rx="2" ry="2" /> +<text x="900.24" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="471.8" y="677" width="8.1" height="15.0" fill="rgb(0,201,135)" rx="2" ry="2" /> +<text x="474.80" y="687.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.20%)</title><rect x="621.2" y="613" width="2.7" height="15.0" fill="rgb(0,224,70)" rx="2" ry="2" /> +<text x="624.24" y="623.5" ></text> +</g> +<g > +<title>rb_first_postorder (10,101,010 samples, 0.10%)</title><rect x="400.4" y="629" width="1.4" height="15.0" fill="rgb(0,225,142)" rx="2" ry="2" /> +<text x="403.44" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="384.3" y="709" width="1.3" height="15.0" fill="rgb(0,203,208)" rx="2" ry="2" /> +<text x="387.28" y="719.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (20,202,020 samples, 0.20%)</title><rect x="819.2" y="485" width="2.6" height="15.0" fill="rgb(0,191,177)" rx="2" ry="2" /> +<text x="822.15" y="495.5" ></text> +</g> +<g > +<title>ext4_clear_inode (10,101,010 samples, 0.10%)</title><rect x="926.9" y="501" width="1.3" height="15.0" fill="rgb(0,224,96)" rx="2" ry="2" /> +<text x="929.86" y="511.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="870.3" y="549" width="1.4" height="15.0" fill="rgb(0,234,200)" rx="2" ry="2" /> +<text x="873.31" y="559.5" ></text> +</g> +<g > +<title>_IO_default_xsputn (10,101,010 samples, 0.10%)</title><rect x="1311.9" y="757" width="1.4" height="15.0" fill="rgb(0,217,197)" rx="2" ry="2" /> +<text x="1314.91" y="767.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="533" width="1.3" height="15.0" fill="rgb(0,225,66)" rx="2" ry="2" /> +<text x="1182.97" y="543.5" ></text> +</g> +<g > +<title>do_filp_open (70,707,070 samples, 0.68%)</title><rect x="1010.3" y="645" width="9.5" height="15.0" fill="rgb(0,239,77)" rx="2" ry="2" /> +<text x="1013.33" y="655.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.20%)</title><rect x="552.6" y="565" width="2.7" height="15.0" fill="rgb(0,191,23)" rx="2" ry="2" /> +<text x="555.58" y="575.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.10%)</title><rect x="1040.0" y="597" width="1.3" height="15.0" fill="rgb(0,200,120)" rx="2" ry="2" /> +<text x="1042.95" y="607.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.10%)</title><rect x="431.4" y="581" width="1.4" height="15.0" fill="rgb(0,190,61)" rx="2" ry="2" /> +<text x="434.40" y="591.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.29%)</title><rect x="968.6" y="629" width="4.0" height="15.0" fill="rgb(0,220,91)" rx="2" ry="2" /> +<text x="971.60" y="639.5" ></text> +</g> +<g > +<title>ext4_mkdir (20,202,020 samples, 0.20%)</title><rect x="1034.6" y="629" width="2.7" height="15.0" fill="rgb(0,238,115)" rx="2" ry="2" /> +<text x="1037.57" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="969.9" y="597" width="2.7" height="15.0" fill="rgb(0,239,179)" rx="2" ry="2" /> +<text x="972.94" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="755.9" y="597" width="1.3" height="15.0" fill="rgb(0,236,188)" rx="2" ry="2" /> +<text x="758.87" y="607.5" ></text> +</g> +<g > +<title>__dentry_kill (60,606,060 samples, 0.59%)</title><rect x="1115.3" y="565" width="8.1" height="15.0" fill="rgb(0,229,152)" rx="2" ry="2" /> +<text x="1118.35" y="575.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (20,202,020 samples, 0.20%)</title><rect x="677.8" y="437" width="2.7" height="15.0" fill="rgb(0,220,182)" rx="2" ry="2" /> +<text x="680.79" y="447.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (50,505,050 samples, 0.49%)</title><rect x="65.2" y="213" width="6.7" height="15.0" fill="rgb(0,208,129)" rx="2" ry="2" /> +<text x="68.20" y="223.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.10%)</title><rect x="504.1" y="597" width="1.4" height="15.0" fill="rgb(0,200,205)" rx="2" ry="2" /> +<text x="507.11" y="607.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (60,606,060 samples, 0.59%)</title><rect x="1166.5" y="741" width="8.1" height="15.0" fill="rgb(0,216,109)" rx="2" ry="2" /> +<text x="1169.51" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="454.3" y="597" width="2.7" height="15.0" fill="rgb(0,195,59)" rx="2" ry="2" /> +<text x="457.29" y="607.5" ></text> +</g> +<g > +<title>ip_local_out (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="549" width="5.4" height="15.0" fill="rgb(0,214,88)" rx="2" ry="2" /> +<text x="1331.07" y="559.5" ></text> +</g> +<g > +<title>file_modified (20,202,020 samples, 0.20%)</title><rect x="1045.3" y="581" width="2.7" height="15.0" fill="rgb(0,225,90)" rx="2" ry="2" /> +<text x="1048.34" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="218.7" y="421" width="1.3" height="15.0" fill="rgb(0,232,53)" rx="2" ry="2" /> +<text x="221.68" y="431.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="1077.6" y="597" width="1.4" height="15.0" fill="rgb(0,204,173)" rx="2" ry="2" /> +<text x="1080.65" y="607.5" ></text> +</g> +<g > +<title>tcp_set_state (10,101,010 samples, 0.10%)</title><rect x="69.2" y="69" width="1.4" height="15.0" fill="rgb(0,205,31)" rx="2" ry="2" /> +<text x="72.24" y="79.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="1139.6" y="565" width="1.3" height="15.0" fill="rgb(0,200,156)" rx="2" ry="2" /> +<text x="1142.58" y="575.5" ></text> +</g> +<g > +<title>storvsc_queuecommand (10,101,010 samples, 0.10%)</title><rect x="440.8" y="293" width="1.4" height="15.0" fill="rgb(0,234,9)" rx="2" ry="2" /> +<text x="443.83" y="303.5" ></text> +</g> +<g > +<title>ext4_read_inode_bitmap (10,101,010 samples, 0.10%)</title><rect x="373.5" y="565" width="1.4" height="15.0" fill="rgb(0,197,73)" rx="2" ry="2" /> +<text x="376.51" y="575.5" ></text> +</g> +<g > +<title>ext4_fc_init_inode (20,202,020 samples, 0.20%)</title><rect x="154.1" y="693" width="2.7" height="15.0" fill="rgb(0,198,99)" rx="2" ry="2" /> +<text x="157.06" y="703.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="908.0" y="549" width="1.4" height="15.0" fill="rgb(0,205,145)" rx="2" ry="2" /> +<text x="911.01" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="481.2" y="629" width="1.4" height="15.0" fill="rgb(0,231,115)" rx="2" ry="2" /> +<text x="484.22" y="639.5" ></text> +</g> +<g > +<title>fsnotify_grab_connector (10,101,010 samples, 0.10%)</title><rect x="838.0" y="517" width="1.3" height="15.0" fill="rgb(0,209,79)" rx="2" ry="2" /> +<text x="841.00" y="527.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.20%)</title><rect x="216.0" y="469" width="2.7" height="15.0" fill="rgb(0,222,196)" rx="2" ry="2" /> +<text x="218.99" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="703.4" y="613" width="1.3" height="15.0" fill="rgb(0,222,116)" rx="2" ry="2" /> +<text x="706.37" y="623.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.10%)</title><rect x="807.0" y="581" width="1.4" height="15.0" fill="rgb(0,206,98)" rx="2" ry="2" /> +<text x="810.03" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="625.3" y="645" width="1.3" height="15.0" fill="rgb(0,229,202)" rx="2" ry="2" /> +<text x="628.28" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="629" width="1.4" height="15.0" fill="rgb(0,190,87)" rx="2" ry="2" /> +<text x="1207.20" y="639.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.10%)</title><rect x="553.9" y="549" width="1.4" height="15.0" fill="rgb(0,219,115)" rx="2" ry="2" /> +<text x="556.92" y="559.5" ></text> +</g> +<g > +<title>aa_sk_perm (10,101,010 samples, 0.10%)</title><rect x="89.4" y="677" width="1.4" height="15.0" fill="rgb(0,236,35)" rx="2" ry="2" /> +<text x="92.43" y="687.5" ></text> +</g> +<g > +<title>__get_user_8 (10,101,010 samples, 0.10%)</title><rect x="1021.1" y="597" width="1.3" height="15.0" fill="rgb(0,212,181)" rx="2" ry="2" /> +<text x="1024.10" y="607.5" ></text> +</g> +<g > +<title>do_rmdir (20,202,020 samples, 0.20%)</title><rect x="385.6" y="661" width="2.7" height="15.0" fill="rgb(0,221,160)" rx="2" ry="2" /> +<text x="388.63" y="671.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="298.1" y="485" width="1.4" height="15.0" fill="rgb(0,222,125)" rx="2" ry="2" /> +<text x="301.12" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="877.0" y="533" width="1.4" height="15.0" fill="rgb(0,204,97)" rx="2" ry="2" /> +<text x="880.04" y="543.5" ></text> +</g> +<g > +<title>iput (70,707,070 samples, 0.68%)</title><rect x="350.6" y="597" width="9.4" height="15.0" fill="rgb(0,230,126)" rx="2" ry="2" /> +<text x="353.62" y="607.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.10%)</title><rect x="1035.9" y="581" width="1.4" height="15.0" fill="rgb(0,217,106)" rx="2" ry="2" /> +<text x="1038.91" y="591.5" ></text> +</g> +<g > +<title>ext4_evict_inode (70,707,070 samples, 0.68%)</title><rect x="350.6" y="565" width="9.4" height="15.0" fill="rgb(0,207,143)" rx="2" ry="2" /> +<text x="353.62" y="575.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="1196.1" y="581" width="1.4" height="15.0" fill="rgb(0,233,21)" rx="2" ry="2" /> +<text x="1199.13" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.78%)</title><rect x="62.5" y="773" width="10.8" height="15.0" fill="rgb(0,211,120)" rx="2" ry="2" /> +<text x="65.51" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (343,434,340 samples, 3.32%)</title><rect x="1088.4" y="709" width="45.8" height="15.0" fill="rgb(0,226,170)" rx="2" ry="2" /> +<text x="1091.42" y="719.5" >[lib..</text> +</g> +<g > +<title>tcp_check_req (10,101,010 samples, 0.10%)</title><rect x="1377.9" y="277" width="1.3" height="15.0" fill="rgb(0,224,97)" rx="2" ry="2" /> +<text x="1380.88" y="287.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.20%)</title><rect x="689.9" y="565" width="2.7" height="15.0" fill="rgb(0,226,143)" rx="2" ry="2" /> +<text x="692.90" y="575.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.10%)</title><rect x="691.2" y="485" width="1.4" height="15.0" fill="rgb(0,204,19)" rx="2" ry="2" /> +<text x="694.25" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="1194.8" y="741" width="8.1" height="15.0" fill="rgb(0,220,92)" rx="2" ry="2" /> +<text x="1197.78" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="417.9" y="725" width="2.7" height="15.0" fill="rgb(0,205,194)" rx="2" ry="2" /> +<text x="420.94" y="735.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="314.3" y="325" width="1.3" height="15.0" fill="rgb(0,214,124)" rx="2" ry="2" /> +<text x="317.27" y="335.5" ></text> +</g> +<g > +<title>rename (131,313,130 samples, 1.27%)</title><rect x="645.5" y="677" width="17.5" height="15.0" fill="rgb(0,203,199)" rx="2" ry="2" /> +<text x="648.47" y="687.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="373" width="2.7" height="15.0" fill="rgb(0,233,131)" rx="2" ry="2" /> +<text x="1341.84" y="383.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="1316.0" y="725" width="1.3" height="15.0" fill="rgb(0,204,62)" rx="2" ry="2" /> +<text x="1318.95" y="735.5" ></text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.10%)</title><rect x="330.4" y="613" width="1.4" height="15.0" fill="rgb(0,198,102)" rx="2" ry="2" /> +<text x="333.43" y="623.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="883.8" y="565" width="1.3" height="15.0" fill="rgb(0,222,184)" rx="2" ry="2" /> +<text x="886.78" y="575.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.20%)</title><rect x="203.9" y="421" width="2.7" height="15.0" fill="rgb(0,210,57)" rx="2" ry="2" /> +<text x="206.87" y="431.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="220.0" y="597" width="1.4" height="15.0" fill="rgb(0,202,67)" rx="2" ry="2" /> +<text x="223.03" y="607.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (10,101,010 samples, 0.10%)</title><rect x="1338.8" y="293" width="1.4" height="15.0" fill="rgb(0,219,26)" rx="2" ry="2" /> +<text x="1341.84" y="303.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.10%)</title><rect x="922.8" y="469" width="1.4" height="15.0" fill="rgb(0,200,16)" rx="2" ry="2" /> +<text x="925.82" y="479.5" ></text> +</g> +<g > +<title>jbd2_journal_get_create_access (20,202,020 samples, 0.20%)</title><rect x="579.5" y="485" width="2.7" height="15.0" fill="rgb(0,203,50)" rx="2" ry="2" /> +<text x="582.50" y="495.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.10%)</title><rect x="936.3" y="597" width="1.3" height="15.0" fill="rgb(0,229,173)" rx="2" ry="2" /> +<text x="939.28" y="607.5" ></text> +</g> +<g > +<title>crc_96 (10,101,010 samples, 0.10%)</title><rect x="217.3" y="437" width="1.4" height="15.0" fill="rgb(0,210,30)" rx="2" ry="2" /> +<text x="220.34" y="447.5" ></text> +</g> +<g > +<title>git_config_add_backend (50,505,050 samples, 0.49%)</title><rect x="990.1" y="661" width="6.8" height="15.0" fill="rgb(0,202,26)" rx="2" ry="2" /> +<text x="993.14" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="789.5" y="661" width="1.4" height="15.0" fill="rgb(0,200,67)" rx="2" ry="2" /> +<text x="792.53" y="671.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="945.7" y="549" width="1.4" height="15.0" fill="rgb(0,227,58)" rx="2" ry="2" /> +<text x="948.71" y="559.5" ></text> +</g> +<g > +<title>git_reference_name_to_id (20,202,020 samples, 0.20%)</title><rect x="976.7" y="645" width="2.7" height="15.0" fill="rgb(0,228,127)" rx="2" ry="2" /> +<text x="979.67" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1189.4" y="629" width="1.3" height="15.0" fill="rgb(0,227,114)" rx="2" ry="2" /> +<text x="1192.40" y="639.5" ></text> +</g> +<g > +<title>path_openat (70,707,070 samples, 0.68%)</title><rect x="1010.3" y="629" width="9.5" height="15.0" fill="rgb(0,201,74)" rx="2" ry="2" /> +<text x="1013.33" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="209.3" y="565" width="1.3" height="15.0" fill="rgb(0,194,3)" rx="2" ry="2" /> +<text x="212.26" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="887.8" y="677" width="5.4" height="15.0" fill="rgb(0,211,55)" rx="2" ry="2" /> +<text x="890.81" y="687.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="597" width="5.4" height="15.0" fill="rgb(0,220,91)" rx="2" ry="2" /> +<text x="1331.07" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="427.4" y="645" width="1.3" height="15.0" fill="rgb(0,236,27)" rx="2" ry="2" /> +<text x="430.37" y="655.5" ></text> +</g> +<g > +<title>apparmor_file_alloc_security (10,101,010 samples, 0.10%)</title><rect x="479.9" y="517" width="1.3" height="15.0" fill="rgb(0,230,195)" rx="2" ry="2" /> +<text x="482.87" y="527.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="518.9" y="581" width="1.4" height="15.0" fill="rgb(0,206,194)" rx="2" ry="2" /> +<text x="521.92" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="718.2" y="517" width="2.7" height="15.0" fill="rgb(0,222,88)" rx="2" ry="2" /> +<text x="721.18" y="527.5" ></text> +</g> +<g > +<title>filemap_flush (40,404,040 samples, 0.39%)</title><rect x="929.6" y="565" width="5.3" height="15.0" fill="rgb(0,219,91)" rx="2" ry="2" /> +<text x="932.55" y="575.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.10%)</title><rect x="1105.9" y="613" width="1.4" height="15.0" fill="rgb(0,214,165)" rx="2" ry="2" /> +<text x="1108.92" y="623.5" ></text> +</g> +<g > +<title>do_softirq (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="469" width="2.7" height="15.0" fill="rgb(0,239,163)" rx="2" ry="2" /> +<text x="1341.84" y="479.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="665.7" y="693" width="1.3" height="15.0" fill="rgb(0,215,29)" rx="2" ry="2" /> +<text x="668.67" y="703.5" ></text> +</g> +<g > +<title>mb_find_order_for_block (10,101,010 samples, 0.10%)</title><rect x="959.2" y="309" width="1.3" height="15.0" fill="rgb(0,239,32)" rx="2" ry="2" /> +<text x="962.17" y="319.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.10%)</title><rect x="945.7" y="501" width="1.4" height="15.0" fill="rgb(0,235,125)" rx="2" ry="2" /> +<text x="948.71" y="511.5" ></text> +</g> +<g > +<title>client_create (80,808,080 samples, 0.78%)</title><rect x="76.0" y="821" width="10.7" height="15.0" fill="rgb(0,200,160)" rx="2" ry="2" /> +<text x="78.97" y="831.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (50,505,050 samples, 0.49%)</title><rect x="65.2" y="197" width="6.7" height="15.0" fill="rgb(0,238,45)" rx="2" ry="2" /> +<text x="68.20" y="207.5" ></text> +</g> +<g > +<title>mutex_lock (10,101,010 samples, 0.10%)</title><rect x="848.8" y="549" width="1.3" height="15.0" fill="rgb(0,230,178)" rx="2" ry="2" /> +<text x="851.77" y="559.5" ></text> +</g> +<g > +<title>__libc_calloc (20,202,020 samples, 0.20%)</title><rect x="1235.2" y="693" width="2.7" height="15.0" fill="rgb(0,197,138)" rx="2" ry="2" /> +<text x="1238.17" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1167.9" y="549" width="1.3" height="15.0" fill="rgb(0,202,111)" rx="2" ry="2" /> +<text x="1170.85" y="559.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (20,202,020 samples, 0.20%)</title><rect x="357.4" y="517" width="2.6" height="15.0" fill="rgb(0,224,163)" rx="2" ry="2" /> +<text x="360.36" y="527.5" ></text> +</g> +<g > +<title>git_config_snapshot (20,202,020 samples, 0.20%)</title><rect x="854.2" y="741" width="2.6" height="15.0" fill="rgb(0,200,52)" rx="2" ry="2" /> +<text x="857.16" y="751.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.10%)</title><rect x="478.5" y="597" width="1.4" height="15.0" fill="rgb(0,225,156)" rx="2" ry="2" /> +<text x="481.53" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="799.0" y="773" width="1.3" height="15.0" fill="rgb(0,237,28)" rx="2" ry="2" /> +<text x="801.96" y="783.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.10%)</title><rect x="179.6" y="789" width="1.4" height="15.0" fill="rgb(0,194,145)" rx="2" ry="2" /> +<text x="182.64" y="799.5" ></text> +</g> +<g > +<title>json_has (10,101,010 samples, 0.10%)</title><rect x="1321.3" y="821" width="1.4" height="15.0" fill="rgb(0,191,24)" rx="2" ry="2" /> +<text x="1324.34" y="831.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.10%)</title><rect x="735.7" y="549" width="1.3" height="15.0" fill="rgb(0,234,138)" rx="2" ry="2" /> +<text x="738.68" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.68%)</title><rect x="514.9" y="693" width="9.4" height="15.0" fill="rgb(0,192,111)" rx="2" ry="2" /> +<text x="517.88" y="703.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.10%)</title><rect x="792.2" y="501" width="1.4" height="15.0" fill="rgb(0,213,109)" rx="2" ry="2" /> +<text x="795.22" y="511.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.10%)</title><rect x="633.4" y="517" width="1.3" height="15.0" fill="rgb(0,196,104)" rx="2" ry="2" /> +<text x="636.36" y="527.5" ></text> +</g> +<g > +<title>git_oid_tostr (10,101,010 samples, 0.10%)</title><rect x="428.7" y="693" width="1.4" height="15.0" fill="rgb(0,228,84)" rx="2" ry="2" /> +<text x="431.71" y="703.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="102.9" y="725" width="1.3" height="15.0" fill="rgb(0,223,31)" rx="2" ry="2" /> +<text x="105.90" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="645" width="1.4" height="15.0" fill="rgb(0,212,98)" rx="2" ry="2" /> +<text x="1007.95" y="655.5" ></text> +</g> +<g > +<title>d_delete (10,101,010 samples, 0.10%)</title><rect x="213.3" y="517" width="1.3" height="15.0" fill="rgb(0,193,101)" rx="2" ry="2" /> +<text x="216.30" y="527.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (50,505,050 samples, 0.49%)</title><rect x="815.1" y="565" width="6.7" height="15.0" fill="rgb(0,204,208)" rx="2" ry="2" /> +<text x="818.11" y="575.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="905.3" y="453" width="1.4" height="15.0" fill="rgb(0,207,11)" rx="2" ry="2" /> +<text x="908.32" y="463.5" ></text> +</g> +<g > +<title>process_backlog (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="405" width="2.7" height="15.0" fill="rgb(0,230,30)" rx="2" ry="2" /> +<text x="1341.84" y="415.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="88.1" y="661" width="1.3" height="15.0" fill="rgb(0,230,67)" rx="2" ry="2" /> +<text x="91.09" y="671.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.10%)</title><rect x="249.6" y="533" width="1.4" height="15.0" fill="rgb(0,228,199)" rx="2" ry="2" /> +<text x="252.65" y="543.5" ></text> +</g> +<g > +<title>nf_nat_ipv4_local_fn (10,101,010 samples, 0.10%)</title><rect x="18.1" y="117" width="1.3" height="15.0" fill="rgb(0,236,139)" rx="2" ry="2" /> +<text x="21.08" y="127.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="453" width="2.7" height="15.0" fill="rgb(0,193,155)" rx="2" ry="2" /> +<text x="1380.88" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (161,616,160 samples, 1.56%)</title><rect x="10.0" y="949" width="21.5" height="15.0" fill="rgb(0,200,202)" rx="2" ry="2" /> +<text x="13.00" y="959.5" >[..</text> +</g> +<g > +<title>git_repository_config_snapshot (121,212,120 samples, 1.17%)</title><rect x="734.3" y="693" width="16.2" height="15.0" fill="rgb(0,207,203)" rx="2" ry="2" /> +<text x="737.33" y="703.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (10,101,010 samples, 0.10%)</title><rect x="1338.8" y="261" width="1.4" height="15.0" fill="rgb(0,217,73)" rx="2" ry="2" /> +<text x="1341.84" y="271.5" ></text> +</g> +<g > +<title>mb_update_avg_fragment_size.isra.0 (10,101,010 samples, 0.10%)</title><rect x="583.5" y="389" width="1.4" height="15.0" fill="rgb(0,212,142)" rx="2" ry="2" /> +<text x="586.54" y="399.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.10%)</title><rect x="1083.0" y="421" width="1.4" height="15.0" fill="rgb(0,232,28)" rx="2" ry="2" /> +<text x="1086.03" y="431.5" ></text> +</g> +<g > +<title>free (20,202,020 samples, 0.20%)</title><rect x="774.7" y="629" width="2.7" height="15.0" fill="rgb(0,193,142)" rx="2" ry="2" /> +<text x="777.72" y="639.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1197.5" y="581" width="1.3" height="15.0" fill="rgb(0,229,180)" rx="2" ry="2" /> +<text x="1200.47" y="591.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.10%)</title><rect x="512.2" y="469" width="1.3" height="15.0" fill="rgb(0,237,147)" rx="2" ry="2" /> +<text x="515.19" y="479.5" ></text> +</g> +<g > +<title>tcp_make_synack (20,202,020 samples, 0.20%)</title><rect x="1381.9" y="261" width="2.7" height="15.0" fill="rgb(0,216,22)" rx="2" ry="2" /> +<text x="1384.92" y="271.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="794.9" y="677" width="1.4" height="15.0" fill="rgb(0,194,134)" rx="2" ry="2" /> +<text x="797.92" y="687.5" ></text> +</g> +<g > +<title>__lookup_mnt (10,101,010 samples, 0.10%)</title><rect x="1245.9" y="517" width="1.4" height="15.0" fill="rgb(0,202,13)" rx="2" ry="2" /> +<text x="1248.94" y="527.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="688.6" y="373" width="1.3" height="15.0" fill="rgb(0,217,128)" rx="2" ry="2" /> +<text x="691.56" y="383.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.10%)</title><rect x="633.4" y="469" width="1.3" height="15.0" fill="rgb(0,227,51)" rx="2" ry="2" /> +<text x="636.36" y="479.5" ></text> +</g> +<g > +<title>ext4_writepages (10,101,010 samples, 0.10%)</title><rect x="440.8" y="533" width="1.4" height="15.0" fill="rgb(0,199,15)" rx="2" ry="2" /> +<text x="443.83" y="543.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="839.3" y="389" width="1.4" height="15.0" fill="rgb(0,232,95)" rx="2" ry="2" /> +<text x="842.35" y="399.5" ></text> +</g> +<g > +<title>new_sync_read (20,202,020 samples, 0.20%)</title><rect x="1368.5" y="661" width="2.7" height="15.0" fill="rgb(0,218,128)" rx="2" ry="2" /> +<text x="1371.46" y="671.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.10%)</title><rect x="117.7" y="677" width="1.4" height="15.0" fill="rgb(0,224,92)" rx="2" ry="2" /> +<text x="120.71" y="687.5" ></text> +</g> +<g > +<title>do_open (20,202,020 samples, 0.20%)</title><rect x="1000.9" y="581" width="2.7" height="15.0" fill="rgb(0,224,76)" rx="2" ry="2" /> +<text x="1003.91" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="917.4" y="533" width="1.4" height="15.0" fill="rgb(0,212,136)" rx="2" ry="2" /> +<text x="920.43" y="543.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="969.9" y="485" width="1.4" height="15.0" fill="rgb(0,194,110)" rx="2" ry="2" /> +<text x="972.94" y="495.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.10%)</title><rect x="172.9" y="773" width="1.4" height="15.0" fill="rgb(0,190,189)" rx="2" ry="2" /> +<text x="175.91" y="783.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="870.3" y="469" width="1.4" height="15.0" fill="rgb(0,218,181)" rx="2" ry="2" /> +<text x="873.31" y="479.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="855.5" y="629" width="1.3" height="15.0" fill="rgb(0,213,3)" rx="2" ry="2" /> +<text x="858.50" y="639.5" ></text> +</g> +<g > +<title>scsi_alloc_sgtables (10,101,010 samples, 0.10%)</title><rect x="766.6" y="197" width="1.4" height="15.0" fill="rgb(0,201,34)" rx="2" ry="2" /> +<text x="769.64" y="207.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="220.0" y="645" width="1.4" height="15.0" fill="rgb(0,212,176)" rx="2" ry="2" /> +<text x="223.03" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.88%)</title><rect x="672.4" y="645" width="12.1" height="15.0" fill="rgb(0,225,192)" rx="2" ry="2" /> +<text x="675.40" y="655.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="461.0" y="677" width="1.4" height="15.0" fill="rgb(0,238,183)" rx="2" ry="2" /> +<text x="464.02" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="992.8" y="533" width="1.4" height="15.0" fill="rgb(0,226,153)" rx="2" ry="2" /> +<text x="995.83" y="543.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.20%)</title><rect x="972.6" y="533" width="2.7" height="15.0" fill="rgb(0,194,165)" rx="2" ry="2" /> +<text x="975.63" y="543.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="535.1" y="581" width="1.3" height="15.0" fill="rgb(0,237,58)" rx="2" ry="2" /> +<text x="538.07" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="692.6" y="661" width="1.3" height="15.0" fill="rgb(0,211,203)" rx="2" ry="2" /> +<text x="695.60" y="671.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="286.0" y="485" width="1.3" height="15.0" fill="rgb(0,223,48)" rx="2" ry="2" /> +<text x="289.00" y="495.5" ></text> +</g> +<g > +<title>cubictcp_cong_avoid (10,101,010 samples, 0.10%)</title><rect x="62.5" y="501" width="1.4" height="15.0" fill="rgb(0,219,106)" rx="2" ry="2" /> +<text x="65.51" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="435.4" y="661" width="1.4" height="15.0" fill="rgb(0,202,102)" rx="2" ry="2" /> +<text x="438.44" y="671.5" ></text> +</g> +<g > +<title>ext4_readdir (30,303,030 samples, 0.29%)</title><rect x="334.5" y="629" width="4.0" height="15.0" fill="rgb(0,236,190)" rx="2" ry="2" /> +<text x="337.47" y="639.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (30,303,030 samples, 0.29%)</title><rect x="960.5" y="485" width="4.1" height="15.0" fill="rgb(0,223,170)" rx="2" ry="2" /> +<text x="963.52" y="495.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.10%)</title><rect x="553.9" y="533" width="1.4" height="15.0" fill="rgb(0,197,74)" rx="2" ry="2" /> +<text x="556.92" y="543.5" ></text> +</g> +<g > +<title>git_reference_create_matching (313,131,310 samples, 3.02%)</title><rect x="422.0" y="789" width="41.7" height="15.0" fill="rgb(0,197,132)" rx="2" ry="2" /> +<text x="424.98" y="799.5" >git..</text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="437" width="1.4" height="15.0" fill="rgb(0,198,11)" rx="2" ry="2" /> +<text x="1007.95" y="447.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (20,202,020 samples, 0.20%)</title><rect x="543.2" y="645" width="2.6" height="15.0" fill="rgb(0,231,193)" rx="2" ry="2" /> +<text x="546.15" y="655.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.10%)</title><rect x="850.1" y="485" width="1.4" height="15.0" fill="rgb(0,197,126)" rx="2" ry="2" /> +<text x="853.12" y="495.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="397.7" y="597" width="1.4" height="15.0" fill="rgb(0,237,173)" rx="2" ry="2" /> +<text x="400.75" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="700.7" y="613" width="1.3" height="15.0" fill="rgb(0,228,1)" rx="2" ry="2" /> +<text x="703.67" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="667.0" y="677" width="4.1" height="15.0" fill="rgb(0,203,179)" rx="2" ry="2" /> +<text x="670.01" y="687.5" ></text> +</g> +<g > +<title>send (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="789" width="2.7" height="15.0" fill="rgb(0,191,161)" rx="2" ry="2" /> +<text x="1375.50" y="799.5" ></text> +</g> +<g > +<title>ext4_ext_get_access (10,101,010 samples, 0.10%)</title><rect x="1081.7" y="421" width="1.3" height="15.0" fill="rgb(0,221,83)" rx="2" ry="2" /> +<text x="1084.69" y="431.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (121,212,120 samples, 1.17%)</title><rect x="304.8" y="501" width="16.2" height="15.0" fill="rgb(0,234,136)" rx="2" ry="2" /> +<text x="307.85" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="871.7" y="565" width="1.3" height="15.0" fill="rgb(0,219,119)" rx="2" ry="2" /> +<text x="874.66" y="575.5" ></text> +</g> +<g > +<title>__sys_sendto (101,010,100 samples, 0.98%)</title><rect x="11.3" y="757" width="13.5" height="15.0" fill="rgb(0,198,178)" rx="2" ry="2" /> +<text x="14.35" y="767.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="187.7" y="821" width="1.4" height="15.0" fill="rgb(0,211,43)" rx="2" ry="2" /> +<text x="190.72" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (50,505,050 samples, 0.49%)</title><rect x="265.8" y="629" width="6.7" height="15.0" fill="rgb(0,226,97)" rx="2" ry="2" /> +<text x="268.80" y="639.5" ></text> +</g> +<g > +<title>server_main_thread (161,616,160 samples, 1.56%)</title><rect x="10.0" y="933" width="21.5" height="15.0" fill="rgb(0,208,118)" rx="2" ry="2" /> +<text x="13.00" y="943.5" >s..</text> +</g> +<g > +<title>ip_local_deliver_finish (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="309" width="1.4" height="15.0" fill="rgb(0,234,67)" rx="2" ry="2" /> +<text x="1376.84" y="319.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.10%)</title><rect x="242.9" y="533" width="1.4" height="15.0" fill="rgb(0,204,96)" rx="2" ry="2" /> +<text x="245.92" y="543.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="895.9" y="581" width="1.3" height="15.0" fill="rgb(0,196,194)" rx="2" ry="2" /> +<text x="898.89" y="591.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.10%)</title><rect x="400.4" y="661" width="1.4" height="15.0" fill="rgb(0,193,63)" rx="2" ry="2" /> +<text x="403.44" y="671.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="816.5" y="229" width="1.3" height="15.0" fill="rgb(0,195,167)" rx="2" ry="2" /> +<text x="819.46" y="239.5" ></text> +</g> +<g > +<title>__napi_poll (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="421" width="2.7" height="15.0" fill="rgb(0,208,142)" rx="2" ry="2" /> +<text x="1380.88" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1091.1" y="645" width="1.4" height="15.0" fill="rgb(0,199,98)" rx="2" ry="2" /> +<text x="1094.11" y="655.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.10%)</title><rect x="1368.5" y="517" width="1.3" height="15.0" fill="rgb(0,229,128)" rx="2" ry="2" /> +<text x="1371.46" y="527.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="236.2" y="549" width="1.3" height="15.0" fill="rgb(0,238,64)" rx="2" ry="2" /> +<text x="239.19" y="559.5" ></text> +</g> +<g > +<title>current_time (10,101,010 samples, 0.10%)</title><rect x="710.1" y="437" width="1.3" height="15.0" fill="rgb(0,190,164)" rx="2" ry="2" /> +<text x="713.10" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="1163.8" y="709" width="2.7" height="15.0" fill="rgb(0,190,153)" rx="2" ry="2" /> +<text x="1166.81" y="719.5" ></text> +</g> +<g > +<title>wait_on_page_bit (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="421" width="1.4" height="15.0" fill="rgb(0,228,150)" rx="2" ry="2" /> +<text x="1030.83" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (111,111,110 samples, 1.07%)</title><rect x="623.9" y="677" width="14.8" height="15.0" fill="rgb(0,209,138)" rx="2" ry="2" /> +<text x="626.93" y="687.5" ></text> +</g> +<g > +<title>exc_page_fault (30,303,030 samples, 0.29%)</title><rect x="1103.2" y="645" width="4.1" height="15.0" fill="rgb(0,220,175)" rx="2" ry="2" /> +<text x="1106.23" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="858.2" y="613" width="1.3" height="15.0" fill="rgb(0,223,157)" rx="2" ry="2" /> +<text x="861.20" y="623.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.10%)</title><rect x="710.1" y="501" width="1.3" height="15.0" fill="rgb(0,208,43)" rx="2" ry="2" /> +<text x="713.10" y="511.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="949.7" y="485" width="1.4" height="15.0" fill="rgb(0,239,125)" rx="2" ry="2" /> +<text x="952.75" y="495.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.10%)</title><rect x="284.7" y="389" width="1.3" height="15.0" fill="rgb(0,212,18)" rx="2" ry="2" /> +<text x="287.65" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="910.7" y="677" width="1.3" height="15.0" fill="rgb(0,192,92)" rx="2" ry="2" /> +<text x="913.70" y="687.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="175.6" y="837" width="1.3" height="15.0" fill="rgb(0,234,70)" rx="2" ry="2" /> +<text x="178.60" y="847.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="909.4" y="741" width="1.3" height="15.0" fill="rgb(0,190,160)" rx="2" ry="2" /> +<text x="912.36" y="751.5" ></text> +</g> +<g > +<title>mnt_want_write (10,101,010 samples, 0.10%)</title><rect x="794.9" y="613" width="1.4" height="15.0" fill="rgb(0,215,30)" rx="2" ry="2" /> +<text x="797.92" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (80,808,080 samples, 0.78%)</title><rect x="248.3" y="613" width="10.8" height="15.0" fill="rgb(0,228,10)" rx="2" ry="2" /> +<text x="251.30" y="623.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.10%)</title><rect x="415.2" y="757" width="1.4" height="15.0" fill="rgb(0,223,22)" rx="2" ry="2" /> +<text x="418.25" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="883.8" y="693" width="1.3" height="15.0" fill="rgb(0,213,17)" rx="2" ry="2" /> +<text x="886.78" y="703.5" ></text> +</g> +<g > +<title>__ip_finish_output (60,606,060 samples, 0.59%)</title><rect x="65.2" y="405" width="8.1" height="15.0" fill="rgb(0,235,59)" rx="2" ry="2" /> +<text x="68.20" y="415.5" ></text> +</g> +<g > +<title>do_unlinkat (50,505,050 samples, 0.49%)</title><rect x="213.3" y="549" width="6.7" height="15.0" fill="rgb(0,198,17)" rx="2" ry="2" /> +<text x="216.30" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (141,414,140 samples, 1.37%)</title><rect x="1088.4" y="677" width="18.9" height="15.0" fill="rgb(0,198,143)" rx="2" ry="2" /> +<text x="1091.42" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="886.5" y="709" width="1.3" height="15.0" fill="rgb(0,196,35)" rx="2" ry="2" /> +<text x="889.47" y="719.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (10,101,010 samples, 0.10%)</title><rect x="1120.7" y="453" width="1.4" height="15.0" fill="rgb(0,226,45)" rx="2" ry="2" /> +<text x="1123.73" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="715.5" y="549" width="1.3" height="15.0" fill="rgb(0,194,90)" rx="2" ry="2" /> +<text x="718.48" y="559.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="1175.9" y="645" width="2.7" height="15.0" fill="rgb(0,221,31)" rx="2" ry="2" /> +<text x="1178.93" y="655.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (20,202,020 samples, 0.20%)</title><rect x="335.8" y="597" width="2.7" height="15.0" fill="rgb(0,210,70)" rx="2" ry="2" /> +<text x="338.81" y="607.5" ></text> +</g> +<g > +<title>do_mkdirat (60,606,060 samples, 0.59%)</title><rect x="115.0" y="837" width="8.1" height="15.0" fill="rgb(0,220,86)" rx="2" ry="2" /> +<text x="118.01" y="847.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="481.2" y="581" width="1.4" height="15.0" fill="rgb(0,226,190)" rx="2" ry="2" /> +<text x="484.22" y="591.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.29%)</title><rect x="294.1" y="485" width="4.0" height="15.0" fill="rgb(0,195,21)" rx="2" ry="2" /> +<text x="297.08" y="495.5" ></text> +</g> +<g > +<title>ext4_rename_delete (10,101,010 samples, 0.10%)</title><rect x="773.4" y="533" width="1.3" height="15.0" fill="rgb(0,207,152)" rx="2" ry="2" /> +<text x="776.38" y="543.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="545.8" y="501" width="1.4" height="15.0" fill="rgb(0,211,146)" rx="2" ry="2" /> +<text x="548.84" y="511.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (10,101,010 samples, 0.10%)</title><rect x="766.6" y="389" width="1.4" height="15.0" fill="rgb(0,211,156)" rx="2" ry="2" /> +<text x="769.64" y="399.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="702.0" y="677" width="1.4" height="15.0" fill="rgb(0,192,186)" rx="2" ry="2" /> +<text x="705.02" y="687.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="191.8" y="773" width="1.3" height="15.0" fill="rgb(0,231,169)" rx="2" ry="2" /> +<text x="194.76" y="783.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.20%)</title><rect x="381.6" y="549" width="2.7" height="15.0" fill="rgb(0,217,193)" rx="2" ry="2" /> +<text x="384.59" y="559.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (60,606,060 samples, 0.59%)</title><rect x="579.5" y="565" width="8.1" height="15.0" fill="rgb(0,219,23)" rx="2" ry="2" /> +<text x="582.50" y="575.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="545.8" y="533" width="1.4" height="15.0" fill="rgb(0,199,169)" rx="2" ry="2" /> +<text x="548.84" y="543.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="111.0" y="773" width="1.3" height="15.0" fill="rgb(0,211,81)" rx="2" ry="2" /> +<text x="113.98" y="783.5" ></text> +</g> +<g > +<title>rcu_all_qs (10,101,010 samples, 0.10%)</title><rect x="607.8" y="565" width="1.3" height="15.0" fill="rgb(0,225,183)" rx="2" ry="2" /> +<text x="610.78" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="709" width="1.3" height="15.0" fill="rgb(0,227,44)" rx="2" ry="2" /> +<text x="1182.97" y="719.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="261.8" y="645" width="2.7" height="15.0" fill="rgb(0,215,180)" rx="2" ry="2" /> +<text x="264.77" y="655.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.10%)</title><rect x="518.9" y="517" width="1.4" height="15.0" fill="rgb(0,205,186)" rx="2" ry="2" /> +<text x="521.92" y="527.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.20%)</title><rect x="681.8" y="549" width="2.7" height="15.0" fill="rgb(0,229,88)" rx="2" ry="2" /> +<text x="684.82" y="559.5" ></text> +</g> +<g > +<title>inflate (20,202,020 samples, 0.20%)</title><rect x="667.0" y="645" width="2.7" height="15.0" fill="rgb(0,218,155)" rx="2" ry="2" /> +<text x="670.01" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="898.6" y="597" width="2.7" height="15.0" fill="rgb(0,203,14)" rx="2" ry="2" /> +<text x="901.59" y="607.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.10%)</title><rect x="265.8" y="549" width="1.4" height="15.0" fill="rgb(0,212,99)" rx="2" ry="2" /> +<text x="268.80" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,494,949,480 samples, 14.44%)</title><rect x="201.2" y="789" width="199.2" height="15.0" fill="rgb(0,197,155)" rx="2" ry="2" /> +<text x="204.18" y="799.5" >[libc.so.6]</text> +</g> +<g > +<title>d_delete (10,101,010 samples, 0.10%)</title><rect x="343.9" y="597" width="1.3" height="15.0" fill="rgb(0,193,145)" rx="2" ry="2" /> +<text x="346.89" y="607.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="533" width="1.3" height="15.0" fill="rgb(0,209,154)" rx="2" ry="2" /> +<text x="1029.49" y="543.5" ></text> +</g> +<g > +<title>start_request_create (10,101,010 samples, 0.10%)</title><rect x="26.2" y="901" width="1.3" height="15.0" fill="rgb(0,207,36)" rx="2" ry="2" /> +<text x="29.16" y="911.5" ></text> +</g> +<g > +<title>ext4_rename (20,202,020 samples, 0.20%)</title><rect x="1084.4" y="549" width="2.7" height="15.0" fill="rgb(0,214,30)" rx="2" ry="2" /> +<text x="1087.38" y="559.5" ></text> +</g> +<g > +<title>do_sys_openat2 (30,303,030 samples, 0.29%)</title><rect x="502.8" y="677" width="4.0" height="15.0" fill="rgb(0,204,155)" rx="2" ry="2" /> +<text x="505.76" y="687.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (30,303,030 samples, 0.29%)</title><rect x="224.1" y="549" width="4.0" height="15.0" fill="rgb(0,228,20)" rx="2" ry="2" /> +<text x="227.07" y="559.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="252.3" y="453" width="1.4" height="15.0" fill="rgb(0,191,151)" rx="2" ry="2" /> +<text x="255.34" y="463.5" ></text> +</g> +<g > +<title>open_last_lookups (20,202,020 samples, 0.20%)</title><rect x="936.3" y="629" width="2.7" height="15.0" fill="rgb(0,221,106)" rx="2" ry="2" /> +<text x="939.28" y="639.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="245.6" y="565" width="1.4" height="15.0" fill="rgb(0,219,65)" rx="2" ry="2" /> +<text x="248.61" y="575.5" ></text> +</g> +<g > +<title>asm_sysvec_reschedule_ipi (10,101,010 samples, 0.10%)</title><rect x="1167.9" y="517" width="1.3" height="15.0" fill="rgb(0,230,158)" rx="2" ry="2" /> +<text x="1170.85" y="527.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="587.6" y="613" width="1.3" height="15.0" fill="rgb(0,222,20)" rx="2" ry="2" /> +<text x="590.58" y="623.5" ></text> +</g> +<g > +<title>unlink (111,111,110 samples, 1.07%)</title><rect x="369.5" y="709" width="14.8" height="15.0" fill="rgb(0,206,48)" rx="2" ry="2" /> +<text x="372.47" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1303.8" y="789" width="1.4" height="15.0" fill="rgb(0,200,163)" rx="2" ry="2" /> +<text x="1306.83" y="799.5" ></text> +</g> +<g > +<title>iput (20,202,020 samples, 0.20%)</title><rect x="1041.3" y="645" width="2.7" height="15.0" fill="rgb(0,193,157)" rx="2" ry="2" /> +<text x="1044.30" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.10%)</title><rect x="735.7" y="597" width="1.3" height="15.0" fill="rgb(0,231,209)" rx="2" ry="2" /> +<text x="738.68" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="490.6" y="645" width="6.8" height="15.0" fill="rgb(0,230,195)" rx="2" ry="2" /> +<text x="493.64" y="655.5" ></text> +</g> +<g > +<title>ext4_getattr (10,101,010 samples, 0.10%)</title><rect x="864.9" y="469" width="1.4" height="15.0" fill="rgb(0,229,52)" rx="2" ry="2" /> +<text x="867.93" y="479.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="908.0" y="565" width="1.4" height="15.0" fill="rgb(0,229,160)" rx="2" ry="2" /> +<text x="911.01" y="575.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.10%)</title><rect x="505.5" y="517" width="1.3" height="15.0" fill="rgb(0,197,24)" rx="2" ry="2" /> +<text x="508.45" y="527.5" ></text> +</g> +<g > +<title>inet_csk_destroy_sock (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="133" width="1.4" height="15.0" fill="rgb(0,200,134)" rx="2" ry="2" /> +<text x="1379.54" y="143.5" ></text> +</g> +<g > +<title>vfs_statx (30,303,030 samples, 0.29%)</title><rect x="474.5" y="549" width="4.0" height="15.0" fill="rgb(0,205,16)" rx="2" ry="2" /> +<text x="477.49" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="693" width="1.3" height="15.0" fill="rgb(0,219,192)" rx="2" ry="2" /> +<text x="1182.97" y="703.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="1162.5" y="661" width="1.3" height="15.0" fill="rgb(0,234,118)" rx="2" ry="2" /> +<text x="1165.47" y="671.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="517" width="1.3" height="15.0" fill="rgb(0,200,120)" rx="2" ry="2" /> +<text x="1029.49" y="527.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.10%)</title><rect x="237.5" y="549" width="1.4" height="15.0" fill="rgb(0,219,179)" rx="2" ry="2" /> +<text x="240.53" y="559.5" ></text> +</g> +<g > +<title>git_object_lookup_prefix (40,404,040 samples, 0.39%)</title><rect x="667.0" y="757" width="5.4" height="15.0" fill="rgb(0,224,90)" rx="2" ry="2" /> +<text x="670.01" y="767.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.10%)</title><rect x="1275.6" y="613" width="1.3" height="15.0" fill="rgb(0,192,90)" rx="2" ry="2" /> +<text x="1278.56" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="1182.7" y="709" width="5.3" height="15.0" fill="rgb(0,223,60)" rx="2" ry="2" /> +<text x="1185.66" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_read (20,202,020 samples, 0.20%)</title><rect x="986.1" y="549" width="2.7" height="15.0" fill="rgb(0,215,81)" rx="2" ry="2" /> +<text x="989.10" y="559.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="327.7" y="581" width="1.4" height="15.0" fill="rgb(0,205,80)" rx="2" ry="2" /> +<text x="330.74" y="591.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="644.1" y="581" width="1.4" height="15.0" fill="rgb(0,205,156)" rx="2" ry="2" /> +<text x="647.13" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="913.4" y="693" width="1.3" height="15.0" fill="rgb(0,206,98)" rx="2" ry="2" /> +<text x="916.40" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (1,191,919,180 samples, 11.51%)</title><rect x="1000.9" y="757" width="158.9" height="15.0" fill="rgb(0,204,11)" rx="2" ry="2" /> +<text x="1003.91" y="767.5" >[libgit2.so.1.1.0]</text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.10%)</title><rect x="528.3" y="645" width="1.4" height="15.0" fill="rgb(0,218,99)" rx="2" ry="2" /> +<text x="531.34" y="655.5" ></text> +</g> +<g > +<title>pick_file (10,101,010 samples, 0.10%)</title><rect x="746.4" y="501" width="1.4" height="15.0" fill="rgb(0,237,25)" rx="2" ry="2" /> +<text x="749.45" y="511.5" ></text> +</g> +<g > +<title>nf_conntrack_in (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="69" width="1.4" height="15.0" fill="rgb(0,221,20)" rx="2" ry="2" /> +<text x="1376.84" y="79.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="1247.3" y="597" width="1.3" height="15.0" fill="rgb(0,222,68)" rx="2" ry="2" /> +<text x="1250.29" y="607.5" ></text> +</g> +<g > +<title>git_config_add_backend (30,303,030 samples, 0.29%)</title><rect x="1189.4" y="693" width="4.0" height="15.0" fill="rgb(0,219,162)" rx="2" ry="2" /> +<text x="1192.40" y="703.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="1175.9" y="597" width="1.4" height="15.0" fill="rgb(0,223,188)" rx="2" ry="2" /> +<text x="1178.93" y="607.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (10,101,010 samples, 0.10%)</title><rect x="374.9" y="565" width="1.3" height="15.0" fill="rgb(0,202,163)" rx="2" ry="2" /> +<text x="377.86" y="575.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="564.7" y="597" width="1.3" height="15.0" fill="rgb(0,196,131)" rx="2" ry="2" /> +<text x="567.69" y="607.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.10%)</title><rect x="225.4" y="485" width="1.4" height="15.0" fill="rgb(0,216,1)" rx="2" ry="2" /> +<text x="228.41" y="495.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.29%)</title><rect x="832.6" y="693" width="4.1" height="15.0" fill="rgb(0,193,65)" rx="2" ry="2" /> +<text x="835.61" y="703.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="160.8" y="709" width="1.3" height="15.0" fill="rgb(0,203,72)" rx="2" ry="2" /> +<text x="163.79" y="719.5" ></text> +</g> +<g > +<title>ext4_match.part.0 (10,101,010 samples, 0.10%)</title><rect x="163.5" y="693" width="1.3" height="15.0" fill="rgb(0,218,146)" rx="2" ry="2" /> +<text x="166.48" y="703.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="917.4" y="485" width="1.4" height="15.0" fill="rgb(0,214,68)" rx="2" ry="2" /> +<text x="920.43" y="495.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="533" width="1.3" height="15.0" fill="rgb(0,202,55)" rx="2" ry="2" /> +<text x="1032.18" y="543.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="824.5" y="709" width="1.4" height="15.0" fill="rgb(0,205,68)" rx="2" ry="2" /> +<text x="827.54" y="719.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.10%)</title><rect x="477.2" y="517" width="1.3" height="15.0" fill="rgb(0,238,45)" rx="2" ry="2" /> +<text x="480.18" y="527.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.10%)</title><rect x="843.4" y="357" width="1.3" height="15.0" fill="rgb(0,198,141)" rx="2" ry="2" /> +<text x="846.39" y="367.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="314.3" y="357" width="1.3" height="15.0" fill="rgb(0,213,177)" rx="2" ry="2" /> +<text x="317.27" y="367.5" ></text> +</g> +<g > +<title>ip_local_deliver (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="293" width="1.4" height="15.0" fill="rgb(0,198,99)" rx="2" ry="2" /> +<text x="1379.54" y="303.5" ></text> +</g> +<g > +<title>do_softirq (50,505,050 samples, 0.49%)</title><rect x="65.2" y="357" width="6.7" height="15.0" fill="rgb(0,223,192)" rx="2" ry="2" /> +<text x="68.20" y="367.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="726.3" y="645" width="2.6" height="15.0" fill="rgb(0,227,40)" rx="2" ry="2" /> +<text x="729.25" y="655.5" ></text> +</g> +<g > +<title>ext4_writepages (50,505,050 samples, 0.49%)</title><rect x="815.1" y="501" width="6.7" height="15.0" fill="rgb(0,207,112)" rx="2" ry="2" /> +<text x="818.11" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="443.5" y="645" width="1.4" height="15.0" fill="rgb(0,231,127)" rx="2" ry="2" /> +<text x="446.52" y="655.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="630.7" y="549" width="1.3" height="15.0" fill="rgb(0,230,11)" rx="2" ry="2" /> +<text x="633.66" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="493.3" y="565" width="1.4" height="15.0" fill="rgb(0,196,139)" rx="2" ry="2" /> +<text x="496.34" y="575.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (30,303,030 samples, 0.29%)</title><rect x="1103.2" y="661" width="4.1" height="15.0" fill="rgb(0,221,124)" rx="2" ry="2" /> +<text x="1106.23" y="671.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.10%)</title><rect x="951.1" y="437" width="1.3" height="15.0" fill="rgb(0,197,154)" rx="2" ry="2" /> +<text x="954.09" y="447.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="693" width="1.4" height="15.0" fill="rgb(0,227,92)" rx="2" ry="2" /> +<text x="1312.22" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.10%)</title><rect x="361.4" y="645" width="1.3" height="15.0" fill="rgb(0,224,92)" rx="2" ry="2" /> +<text x="364.40" y="655.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.10%)</title><rect x="953.8" y="389" width="1.3" height="15.0" fill="rgb(0,236,85)" rx="2" ry="2" /> +<text x="956.79" y="399.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="1006.3" y="693" width="2.7" height="15.0" fill="rgb(0,199,150)" rx="2" ry="2" /> +<text x="1009.29" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="789.5" y="709" width="6.8" height="15.0" fill="rgb(0,218,3)" rx="2" ry="2" /> +<text x="792.53" y="719.5" ></text> +</g> +<g > +<title>ext4_create (20,202,020 samples, 0.20%)</title><rect x="672.4" y="485" width="2.7" height="15.0" fill="rgb(0,227,94)" rx="2" ry="2" /> +<text x="675.40" y="495.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="373" width="5.4" height="15.0" fill="rgb(0,205,80)" rx="2" ry="2" /> +<text x="1383.58" y="383.5" ></text> +</g> +<g > +<title>__tcp_ack_snd_check (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="229" width="1.4" height="15.0" fill="rgb(0,194,130)" rx="2" ry="2" /> +<text x="1376.84" y="239.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="399.1" y="581" width="1.3" height="15.0" fill="rgb(0,239,16)" rx="2" ry="2" /> +<text x="402.09" y="591.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (20,202,020 samples, 0.20%)</title><rect x="277.9" y="437" width="2.7" height="15.0" fill="rgb(0,217,188)" rx="2" ry="2" /> +<text x="280.92" y="447.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="127.1" y="869" width="1.4" height="15.0" fill="rgb(0,200,127)" rx="2" ry="2" /> +<text x="130.13" y="879.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="929.6" y="405" width="1.3" height="15.0" fill="rgb(0,218,75)" rx="2" ry="2" /> +<text x="932.55" y="415.5" ></text> +</g> +<g > +<title>d_instantiate_new (10,101,010 samples, 0.10%)</title><rect x="159.4" y="741" width="1.4" height="15.0" fill="rgb(0,235,54)" rx="2" ry="2" /> +<text x="162.44" y="751.5" ></text> +</g> +<g > +<title>scsi_queue_rq (30,303,030 samples, 0.29%)</title><rect x="1124.8" y="277" width="4.0" height="15.0" fill="rgb(0,192,139)" rx="2" ry="2" /> +<text x="1127.77" y="287.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (30,303,030 samples, 0.29%)</title><rect x="509.5" y="581" width="4.0" height="15.0" fill="rgb(0,226,11)" rx="2" ry="2" /> +<text x="512.49" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="202.5" y="597" width="1.4" height="15.0" fill="rgb(0,216,10)" rx="2" ry="2" /> +<text x="205.53" y="607.5" ></text> +</g> +<g > +<title>ip_output (30,303,030 samples, 0.29%)</title><rect x="1345.6" y="629" width="4.0" height="15.0" fill="rgb(0,226,69)" rx="2" ry="2" /> +<text x="1348.57" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.10%)</title><rect x="516.2" y="581" width="1.4" height="15.0" fill="rgb(0,214,151)" rx="2" ry="2" /> +<text x="519.22" y="591.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="1212.3" y="565" width="1.3" height="15.0" fill="rgb(0,234,76)" rx="2" ry="2" /> +<text x="1215.28" y="575.5" ></text> +</g> +<g > +<title>do_sys_openat2 (70,707,070 samples, 0.68%)</title><rect x="1010.3" y="661" width="9.5" height="15.0" fill="rgb(0,229,62)" rx="2" ry="2" /> +<text x="1013.33" y="671.5" ></text> +</g> +<g > +<title>ip_finish_output2 (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="453" width="1.3" height="15.0" fill="rgb(0,191,141)" rx="2" ry="2" /> +<text x="1337.80" y="463.5" ></text> +</g> +<g > +<title>__close_nocancel (20,202,020 samples, 0.20%)</title><rect x="259.1" y="693" width="2.7" height="15.0" fill="rgb(0,191,124)" rx="2" ry="2" /> +<text x="262.07" y="703.5" ></text> +</g> +<g > +<title>ext4_readdir (10,101,010 samples, 0.10%)</title><rect x="873.0" y="517" width="1.4" height="15.0" fill="rgb(0,207,188)" rx="2" ry="2" /> +<text x="876.00" y="527.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.10%)</title><rect x="1033.2" y="437" width="1.4" height="15.0" fill="rgb(0,218,55)" rx="2" ry="2" /> +<text x="1036.22" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="481.2" y="661" width="1.4" height="15.0" fill="rgb(0,191,47)" rx="2" ry="2" /> +<text x="484.22" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="1224.4" y="661" width="2.7" height="15.0" fill="rgb(0,190,164)" rx="2" ry="2" /> +<text x="1227.40" y="671.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.10%)</title><rect x="922.8" y="565" width="1.4" height="15.0" fill="rgb(0,201,61)" rx="2" ry="2" /> +<text x="925.82" y="575.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="150.0" y="629" width="1.4" height="15.0" fill="rgb(0,198,47)" rx="2" ry="2" /> +<text x="153.02" y="639.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.10%)</title><rect x="80.0" y="741" width="1.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="83.01" y="751.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="1171.9" y="565" width="1.3" height="15.0" fill="rgb(0,220,72)" rx="2" ry="2" /> +<text x="1174.89" y="575.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="437" width="1.4" height="15.0" fill="rgb(0,228,75)" rx="2" ry="2" /> +<text x="1376.84" y="447.5" ></text> +</g> +<g > +<title>git_remote_update_tips (595,959,590 samples, 5.76%)</title><rect x="920.1" y="773" width="79.5" height="15.0" fill="rgb(0,197,68)" rx="2" ry="2" /> +<text x="923.13" y="783.5" >git_remot..</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="850.1" y="709" width="2.7" height="15.0" fill="rgb(0,196,186)" rx="2" ry="2" /> +<text x="853.12" y="719.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="477.2" y="501" width="1.3" height="15.0" fill="rgb(0,224,163)" rx="2" ry="2" /> +<text x="480.18" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,606,060,590 samples, 15.51%)</title><rect x="201.2" y="821" width="214.0" height="15.0" fill="rgb(0,226,35)" rx="2" ry="2" /> +<text x="204.18" y="831.5" >[libc.so.6]</text> +</g> +<g > +<title>dget_parent (10,101,010 samples, 0.10%)</title><rect x="1002.3" y="517" width="1.3" height="15.0" fill="rgb(0,195,183)" rx="2" ry="2" /> +<text x="1005.25" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.98%)</title><rect x="109.6" y="917" width="13.5" height="15.0" fill="rgb(0,209,34)" rx="2" ry="2" /> +<text x="112.63" y="927.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="198.5" y="741" width="1.3" height="15.0" fill="rgb(0,198,31)" rx="2" ry="2" /> +<text x="201.49" y="751.5" ></text> +</g> +<g > +<title>skb_copy_datagram_iter (10,101,010 samples, 0.10%)</title><rect x="1369.8" y="565" width="1.4" height="15.0" fill="rgb(0,193,92)" rx="2" ry="2" /> +<text x="1372.80" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.10%)</title><rect x="325.0" y="613" width="1.4" height="15.0" fill="rgb(0,202,155)" rx="2" ry="2" /> +<text x="328.04" y="623.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.10%)</title><rect x="834.0" y="597" width="1.3" height="15.0" fill="rgb(0,239,178)" rx="2" ry="2" /> +<text x="836.96" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="742.4" y="533" width="1.4" height="15.0" fill="rgb(0,203,86)" rx="2" ry="2" /> +<text x="745.41" y="543.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.10%)</title><rect x="1224.4" y="533" width="1.3" height="15.0" fill="rgb(0,209,9)" rx="2" ry="2" /> +<text x="1227.40" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1188.0" y="677" width="1.4" height="15.0" fill="rgb(0,239,78)" rx="2" ry="2" /> +<text x="1191.05" y="687.5" ></text> +</g> +<g > +<title>ext4_mb_use_best_found (10,101,010 samples, 0.10%)</title><rect x="1149.0" y="469" width="1.4" height="15.0" fill="rgb(0,210,162)" rx="2" ry="2" /> +<text x="1152.00" y="479.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="405" width="5.4" height="15.0" fill="rgb(0,227,201)" rx="2" ry="2" /> +<text x="1383.58" y="415.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.10%)</title><rect x="242.9" y="517" width="1.4" height="15.0" fill="rgb(0,214,170)" rx="2" ry="2" /> +<text x="245.92" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="969.9" y="581" width="1.4" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" /> +<text x="972.94" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="374.9" y="517" width="1.3" height="15.0" fill="rgb(0,239,35)" rx="2" ry="2" /> +<text x="377.86" y="527.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="1042.6" y="597" width="1.4" height="15.0" fill="rgb(0,211,17)" rx="2" ry="2" /> +<text x="1045.64" y="607.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.10%)</title><rect x="327.7" y="549" width="1.4" height="15.0" fill="rgb(0,229,100)" rx="2" ry="2" /> +<text x="330.74" y="559.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="73.3" y="853" width="1.3" height="15.0" fill="rgb(0,227,130)" rx="2" ry="2" /> +<text x="76.28" y="863.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.59%)</title><rect x="228.1" y="613" width="8.1" height="15.0" fill="rgb(0,239,15)" rx="2" ry="2" /> +<text x="231.11" y="623.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.10%)</title><rect x="405.8" y="709" width="1.4" height="15.0" fill="rgb(0,230,9)" rx="2" ry="2" /> +<text x="408.82" y="719.5" ></text> +</g> +<g > +<title>ext4_rename2 (60,606,060 samples, 0.59%)</title><rect x="653.6" y="581" width="8.0" height="15.0" fill="rgb(0,206,34)" rx="2" ry="2" /> +<text x="656.55" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="601.0" y="565" width="2.7" height="15.0" fill="rgb(0,214,11)" rx="2" ry="2" /> +<text x="604.04" y="575.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="469" width="1.3" height="15.0" fill="rgb(0,223,192)" rx="2" ry="2" /> +<text x="1032.18" y="479.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1044.0" y="581" width="1.3" height="15.0" fill="rgb(0,217,2)" rx="2" ry="2" /> +<text x="1046.99" y="591.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.10%)</title><rect x="552.6" y="533" width="1.3" height="15.0" fill="rgb(0,206,148)" rx="2" ry="2" /> +<text x="555.58" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="897.2" y="629" width="6.8" height="15.0" fill="rgb(0,223,19)" rx="2" ry="2" /> +<text x="900.24" y="639.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="1112.7" y="581" width="1.3" height="15.0" fill="rgb(0,214,76)" rx="2" ry="2" /> +<text x="1115.65" y="591.5" ></text> +</g> +<g > +<title>do_linkat (20,202,020 samples, 0.20%)</title><rect x="1111.3" y="613" width="2.7" height="15.0" fill="rgb(0,211,71)" rx="2" ry="2" /> +<text x="1114.31" y="623.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.10%)</title><rect x="115.0" y="789" width="1.4" height="15.0" fill="rgb(0,230,181)" rx="2" ry="2" /> +<text x="118.01" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="417.9" y="709" width="1.4" height="15.0" fill="rgb(0,208,175)" rx="2" ry="2" /> +<text x="420.94" y="719.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="988.8" y="549" width="1.3" height="15.0" fill="rgb(0,219,172)" rx="2" ry="2" /> +<text x="991.79" y="559.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="566.0" y="629" width="1.4" height="15.0" fill="rgb(0,239,10)" rx="2" ry="2" /> +<text x="569.04" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="720.9" y="661" width="2.7" height="15.0" fill="rgb(0,210,152)" rx="2" ry="2" /> +<text x="723.87" y="671.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="693.9" y="565" width="1.4" height="15.0" fill="rgb(0,208,11)" rx="2" ry="2" /> +<text x="696.94" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.78%)</title><rect x="1091.1" y="661" width="10.8" height="15.0" fill="rgb(0,211,209)" rx="2" ry="2" /> +<text x="1094.11" y="671.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="545.8" y="629" width="2.7" height="15.0" fill="rgb(0,209,179)" rx="2" ry="2" /> +<text x="548.84" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_read (20,202,020 samples, 0.20%)</title><rect x="1368.5" y="709" width="2.7" height="15.0" fill="rgb(0,222,73)" rx="2" ry="2" /> +<text x="1371.46" y="719.5" ></text> +</g> +<g > +<title>ext4_evict_inode (60,606,060 samples, 0.59%)</title><rect x="228.1" y="501" width="8.1" height="15.0" fill="rgb(0,221,5)" rx="2" ry="2" /> +<text x="231.11" y="511.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="1056.1" y="661" width="1.4" height="15.0" fill="rgb(0,209,181)" rx="2" ry="2" /> +<text x="1059.11" y="671.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="1210.9" y="597" width="1.4" height="15.0" fill="rgb(0,211,42)" rx="2" ry="2" /> +<text x="1213.94" y="607.5" ></text> +</g> +<g > +<title>sk_clone_lock (10,101,010 samples, 0.10%)</title><rect x="1377.9" y="197" width="1.3" height="15.0" fill="rgb(0,221,61)" rx="2" ry="2" /> +<text x="1380.88" y="207.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="1163.8" y="741" width="2.7" height="15.0" fill="rgb(0,228,105)" rx="2" ry="2" /> +<text x="1166.81" y="751.5" ></text> +</g> +<g > +<title>ext4_da_release_space (10,101,010 samples, 0.10%)</title><rect x="926.9" y="485" width="1.3" height="15.0" fill="rgb(0,216,191)" rx="2" ry="2" /> +<text x="929.86" y="495.5" ></text> +</g> +<g > +<title>__release_sock (40,404,040 samples, 0.39%)</title><rect x="1336.1" y="709" width="5.4" height="15.0" fill="rgb(0,224,151)" rx="2" ry="2" /> +<text x="1339.15" y="719.5" ></text> +</g> +<g > +<title>schedule_hrtimeout_range (40,404,040 samples, 0.39%)</title><rect x="1352.3" y="757" width="5.4" height="15.0" fill="rgb(0,203,63)" rx="2" ry="2" /> +<text x="1355.30" y="767.5" ></text> +</g> +<g > +<title>file_free_rcu (10,101,010 samples, 0.10%)</title><rect x="284.7" y="341" width="1.3" height="15.0" fill="rgb(0,195,57)" rx="2" ry="2" /> +<text x="287.65" y="351.5" ></text> +</g> +<g > +<title>git_reference_name_to_id (20,202,020 samples, 0.20%)</title><rect x="759.9" y="645" width="2.7" height="15.0" fill="rgb(0,192,85)" rx="2" ry="2" /> +<text x="762.91" y="655.5" ></text> +</g> +<g > +<title>path_lookupat (70,707,070 samples, 0.68%)</title><rect x="178.3" y="821" width="9.4" height="15.0" fill="rgb(0,237,53)" rx="2" ry="2" /> +<text x="181.29" y="831.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.10%)</title><rect x="571.4" y="469" width="1.4" height="15.0" fill="rgb(0,194,0)" rx="2" ry="2" /> +<text x="574.42" y="479.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="469.1" y="709" width="1.3" height="15.0" fill="rgb(0,193,69)" rx="2" ry="2" /> +<text x="472.10" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="541.8" y="693" width="1.4" height="15.0" fill="rgb(0,190,207)" rx="2" ry="2" /> +<text x="544.80" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (70,707,070 samples, 0.68%)</title><rect x="926.9" y="677" width="9.4" height="15.0" fill="rgb(0,218,63)" rx="2" ry="2" /> +<text x="929.86" y="687.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (20,202,020 samples, 0.20%)</title><rect x="164.8" y="709" width="2.7" height="15.0" fill="rgb(0,232,171)" rx="2" ry="2" /> +<text x="167.83" y="719.5" ></text> +</g> +<g > +<title>tcp_write_xmit (80,808,080 samples, 0.78%)</title><rect x="14.0" y="645" width="10.8" height="15.0" fill="rgb(0,226,139)" rx="2" ry="2" /> +<text x="17.04" y="655.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.10%)</title><rect x="327.7" y="565" width="1.4" height="15.0" fill="rgb(0,200,145)" rx="2" ry="2" /> +<text x="330.74" y="575.5" ></text> +</g> +<g > +<title>readdir64 (10,101,010 samples, 0.10%)</title><rect x="405.8" y="789" width="1.4" height="15.0" fill="rgb(0,192,194)" rx="2" ry="2" /> +<text x="408.82" y="799.5" ></text> +</g> +<g > +<title>git_index_add (40,404,040 samples, 0.39%)</title><rect x="531.0" y="773" width="5.4" height="15.0" fill="rgb(0,220,78)" rx="2" ry="2" /> +<text x="534.03" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="665.7" y="709" width="1.3" height="15.0" fill="rgb(0,227,72)" rx="2" ry="2" /> +<text x="668.67" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="27.5" y="821" width="1.3" height="15.0" fill="rgb(0,221,152)" rx="2" ry="2" /> +<text x="30.50" y="831.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="570.1" y="469" width="1.3" height="15.0" fill="rgb(0,202,45)" rx="2" ry="2" /> +<text x="573.08" y="479.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="277" width="1.3" height="15.0" fill="rgb(0,205,83)" rx="2" ry="2" /> +<text x="1337.80" y="287.5" ></text> +</g> +<g > +<title>jsonrpc_request_destroy (20,202,020 samples, 0.20%)</title><rect x="1359.0" y="821" width="2.7" height="15.0" fill="rgb(0,238,193)" rx="2" ry="2" /> +<text x="1362.03" y="831.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.10%)</title><rect x="229.5" y="485" width="1.3" height="15.0" fill="rgb(0,228,196)" rx="2" ry="2" /> +<text x="232.45" y="495.5" ></text> +</g> +<g > +<title>__mnt_want_write (10,101,010 samples, 0.10%)</title><rect x="132.5" y="757" width="1.4" height="15.0" fill="rgb(0,236,113)" rx="2" ry="2" /> +<text x="135.52" y="767.5" ></text> +</g> +<g > +<title>remove (60,606,060 samples, 0.59%)</title><rect x="212.0" y="629" width="8.0" height="15.0" fill="rgb(0,220,52)" rx="2" ry="2" /> +<text x="214.95" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (141,414,140 samples, 1.37%)</title><rect x="342.5" y="677" width="18.9" height="15.0" fill="rgb(0,225,112)" rx="2" ry="2" /> +<text x="345.55" y="687.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="1101.9" y="549" width="1.3" height="15.0" fill="rgb(0,215,207)" rx="2" ry="2" /> +<text x="1104.88" y="559.5" ></text> +</g> +<g > +<title>lookup_fast (20,202,020 samples, 0.20%)</title><rect x="185.0" y="789" width="2.7" height="15.0" fill="rgb(0,209,203)" rx="2" ry="2" /> +<text x="188.02" y="799.5" ></text> +</g> +<g > +<title>ip_rcv (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="309" width="1.4" height="15.0" fill="rgb(0,218,150)" rx="2" ry="2" /> +<text x="1379.54" y="319.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (20,202,020 samples, 0.20%)</title><rect x="1329.4" y="293" width="2.7" height="15.0" fill="rgb(0,238,12)" rx="2" ry="2" /> +<text x="1332.41" y="303.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.10%)</title><rect x="27.5" y="757" width="1.3" height="15.0" fill="rgb(0,237,168)" rx="2" ry="2" /> +<text x="30.50" y="767.5" ></text> +</g> +<g > +<title>iput (20,202,020 samples, 0.20%)</title><rect x="393.7" y="661" width="2.7" height="15.0" fill="rgb(0,217,77)" rx="2" ry="2" /> +<text x="396.71" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="1175.9" y="677" width="2.7" height="15.0" fill="rgb(0,193,56)" rx="2" ry="2" /> +<text x="1178.93" y="687.5" ></text> +</g> +<g > +<title>tcp_push (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="645" width="2.7" height="15.0" fill="rgb(0,210,174)" rx="2" ry="2" /> +<text x="1375.50" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="218.7" y="453" width="1.3" height="15.0" fill="rgb(0,215,149)" rx="2" ry="2" /> +<text x="221.68" y="463.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="782.8" y="453" width="1.3" height="15.0" fill="rgb(0,214,171)" rx="2" ry="2" /> +<text x="785.80" y="463.5" ></text> +</g> +<g > +<title>__open64_nocancel (10,101,010 samples, 0.10%)</title><rect x="784.1" y="741" width="1.4" height="15.0" fill="rgb(0,231,124)" rx="2" ry="2" /> +<text x="787.15" y="751.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.10%)</title><rect x="214.6" y="485" width="1.4" height="15.0" fill="rgb(0,200,8)" rx="2" ry="2" /> +<text x="217.64" y="495.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (50,505,050 samples, 0.49%)</title><rect x="1124.8" y="549" width="6.7" height="15.0" fill="rgb(0,223,206)" rx="2" ry="2" /> +<text x="1127.77" y="559.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.10%)</title><rect x="354.7" y="533" width="1.3" height="15.0" fill="rgb(0,237,144)" rx="2" ry="2" /> +<text x="357.66" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1056.1" y="709" width="1.4" height="15.0" fill="rgb(0,225,123)" rx="2" ry="2" /> +<text x="1059.11" y="719.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="755.9" y="389" width="1.3" height="15.0" fill="rgb(0,202,19)" rx="2" ry="2" /> +<text x="758.87" y="399.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="870.3" y="501" width="1.4" height="15.0" fill="rgb(0,222,77)" rx="2" ry="2" /> +<text x="873.31" y="511.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="870.3" y="533" width="1.4" height="15.0" fill="rgb(0,199,58)" rx="2" ry="2" /> +<text x="873.31" y="543.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="735.7" y="565" width="1.3" height="15.0" fill="rgb(0,200,164)" rx="2" ry="2" /> +<text x="738.68" y="575.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum (10,101,010 samples, 0.10%)</title><rect x="229.5" y="453" width="1.3" height="15.0" fill="rgb(0,200,79)" rx="2" ry="2" /> +<text x="232.45" y="463.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="882.4" y="533" width="1.4" height="15.0" fill="rgb(0,224,109)" rx="2" ry="2" /> +<text x="885.43" y="543.5" ></text> +</g> +<g > +<title>readdir64 (10,101,010 samples, 0.10%)</title><rect x="498.7" y="709" width="1.4" height="15.0" fill="rgb(0,192,151)" rx="2" ry="2" /> +<text x="501.72" y="719.5" ></text> +</g> +<g > +<title>__d_alloc (10,101,010 samples, 0.10%)</title><rect x="691.2" y="453" width="1.4" height="15.0" fill="rgb(0,239,110)" rx="2" ry="2" /> +<text x="694.25" y="463.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="902.6" y="613" width="1.4" height="15.0" fill="rgb(0,191,126)" rx="2" ry="2" /> +<text x="905.62" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="789.5" y="645" width="1.4" height="15.0" fill="rgb(0,213,75)" rx="2" ry="2" /> +<text x="792.53" y="655.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="427.4" y="549" width="1.3" height="15.0" fill="rgb(0,193,185)" rx="2" ry="2" /> +<text x="430.37" y="559.5" ></text> +</g> +<g > +<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.10%)</title><rect x="276.6" y="469" width="1.3" height="15.0" fill="rgb(0,191,95)" rx="2" ry="2" /> +<text x="279.58" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="361.4" y="677" width="2.7" height="15.0" fill="rgb(0,212,82)" rx="2" ry="2" /> +<text x="364.40" y="687.5" ></text> +</g> +<g > +<title>alloc_inode (10,101,010 samples, 0.10%)</title><rect x="90.8" y="661" width="1.3" height="15.0" fill="rgb(0,229,196)" rx="2" ry="2" /> +<text x="93.78" y="671.5" ></text> +</g> +<g > +<title>dma_direct_map_sg (10,101,010 samples, 0.10%)</title><rect x="440.8" y="229" width="1.4" height="15.0" fill="rgb(0,196,190)" rx="2" ry="2" /> +<text x="443.83" y="239.5" ></text> +</g> +<g > +<title>git_reference_symbolic_create (70,707,070 samples, 0.68%)</title><rect x="789.5" y="773" width="9.5" height="15.0" fill="rgb(0,200,187)" rx="2" ry="2" /> +<text x="792.53" y="783.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="518.9" y="565" width="1.4" height="15.0" fill="rgb(0,193,89)" rx="2" ry="2" /> +<text x="521.92" y="575.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (50,505,050 samples, 0.49%)</title><rect x="766.6" y="533" width="6.8" height="15.0" fill="rgb(0,214,188)" rx="2" ry="2" /> +<text x="769.64" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (111,111,110 samples, 1.07%)</title><rect x="422.0" y="725" width="14.8" height="15.0" fill="rgb(0,232,175)" rx="2" ry="2" /> +<text x="424.98" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="672.4" y="613" width="2.7" height="15.0" fill="rgb(0,200,106)" rx="2" ry="2" /> +<text x="675.40" y="623.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (20,202,020 samples, 0.20%)</title><rect x="570.1" y="549" width="2.7" height="15.0" fill="rgb(0,226,164)" rx="2" ry="2" /> +<text x="573.08" y="559.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="998.2" y="501" width="1.4" height="15.0" fill="rgb(0,191,112)" rx="2" ry="2" /> +<text x="1001.21" y="511.5" ></text> +</g> +<g > +<title>lookup_dcache (10,101,010 samples, 0.10%)</title><rect x="1111.3" y="565" width="1.4" height="15.0" fill="rgb(0,234,38)" rx="2" ry="2" /> +<text x="1114.31" y="575.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="792.2" y="677" width="2.7" height="15.0" fill="rgb(0,213,94)" rx="2" ry="2" /> +<text x="795.22" y="687.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.10%)</title><rect x="325.0" y="517" width="1.4" height="15.0" fill="rgb(0,239,63)" rx="2" ry="2" /> +<text x="328.04" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_access (111,111,110 samples, 1.07%)</title><rect x="174.3" y="885" width="14.8" height="15.0" fill="rgb(0,229,184)" rx="2" ry="2" /> +<text x="177.25" y="895.5" ></text> +</g> +<g > +<title>do_rmdir (40,404,040 samples, 0.39%)</title><rect x="407.2" y="693" width="5.4" height="15.0" fill="rgb(0,208,93)" rx="2" ry="2" /> +<text x="410.17" y="703.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.10%)</title><rect x="597.0" y="613" width="1.4" height="15.0" fill="rgb(0,195,198)" rx="2" ry="2" /> +<text x="600.00" y="623.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.10%)</title><rect x="574.1" y="501" width="1.4" height="15.0" fill="rgb(0,197,154)" rx="2" ry="2" /> +<text x="577.12" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="774.7" y="613" width="2.7" height="15.0" fill="rgb(0,235,38)" rx="2" ry="2" /> +<text x="777.72" y="623.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.10%)</title><rect x="1035.9" y="549" width="1.4" height="15.0" fill="rgb(0,194,85)" rx="2" ry="2" /> +<text x="1038.91" y="559.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.10%)</title><rect x="1140.9" y="629" width="1.4" height="15.0" fill="rgb(0,208,195)" rx="2" ry="2" /> +<text x="1143.93" y="639.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.29%)</title><rect x="474.5" y="629" width="4.0" height="15.0" fill="rgb(0,217,110)" rx="2" ry="2" /> +<text x="477.49" y="639.5" ></text> +</g> +<g > +<title>__netif_receive_skb (30,303,030 samples, 0.29%)</title><rect x="16.7" y="405" width="4.1" height="15.0" fill="rgb(0,222,175)" rx="2" ry="2" /> +<text x="19.73" y="415.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="42.3" y="773" width="1.4" height="15.0" fill="rgb(0,216,124)" rx="2" ry="2" /> +<text x="45.31" y="783.5" ></text> +</g> +<g > +<title>crc_27 (10,101,010 samples, 0.10%)</title><rect x="1154.4" y="581" width="1.3" height="15.0" fill="rgb(0,222,175)" rx="2" ry="2" /> +<text x="1157.39" y="591.5" ></text> +</g> +<g > +<title>do_unlinkat (30,303,030 samples, 0.29%)</title><rect x="1040.0" y="661" width="4.0" height="15.0" fill="rgb(0,199,72)" rx="2" ry="2" /> +<text x="1042.95" y="671.5" ></text> +</g> +<g > +<title>file_close (80,808,080 samples, 0.78%)</title><rect x="62.5" y="805" width="10.8" height="15.0" fill="rgb(0,234,121)" rx="2" ry="2" /> +<text x="65.51" y="815.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.10%)</title><rect x="1264.8" y="629" width="1.3" height="15.0" fill="rgb(0,224,112)" rx="2" ry="2" /> +<text x="1267.79" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (151,515,150 samples, 1.46%)</title><rect x="801.6" y="709" width="20.2" height="15.0" fill="rgb(0,227,107)" rx="2" ry="2" /> +<text x="804.65" y="719.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="1030.5" y="437" width="1.4" height="15.0" fill="rgb(0,226,53)" rx="2" ry="2" /> +<text x="1033.53" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.98%)</title><rect x="863.6" y="661" width="13.4" height="15.0" fill="rgb(0,199,145)" rx="2" ry="2" /> +<text x="866.58" y="671.5" ></text> +</g> +<g > +<title>copy_page_to_iter (10,101,010 samples, 0.10%)</title><rect x="632.0" y="485" width="1.4" height="15.0" fill="rgb(0,190,182)" rx="2" ry="2" /> +<text x="635.01" y="495.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="115.0" y="773" width="1.4" height="15.0" fill="rgb(0,209,61)" rx="2" ry="2" /> +<text x="118.01" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="55.8" y="789" width="2.7" height="15.0" fill="rgb(0,218,98)" rx="2" ry="2" /> +<text x="58.78" y="799.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="427.4" y="613" width="1.3" height="15.0" fill="rgb(0,221,58)" rx="2" ry="2" /> +<text x="430.37" y="623.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.10%)</title><rect x="934.9" y="565" width="1.4" height="15.0" fill="rgb(0,218,146)" rx="2" ry="2" /> +<text x="937.94" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (262,626,260 samples, 2.54%)</title><rect x="202.5" y="677" width="35.0" height="15.0" fill="rgb(0,201,147)" rx="2" ry="2" /> +<text x="205.53" y="687.5" >[l..</text> +</g> +<g > +<title>write (30,303,030 samples, 0.29%)</title><rect x="1073.6" y="629" width="4.0" height="15.0" fill="rgb(0,200,9)" rx="2" ry="2" /> +<text x="1076.61" y="639.5" ></text> +</g> +<g > +<title>ext4_create (40,404,040 samples, 0.39%)</title><rect x="1014.4" y="581" width="5.4" height="15.0" fill="rgb(0,202,194)" rx="2" ry="2" /> +<text x="1017.37" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (303,030,300 samples, 2.93%)</title><rect x="623.9" y="725" width="40.4" height="15.0" fill="rgb(0,192,98)" rx="2" ry="2" /> +<text x="626.93" y="735.5" >[li..</text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="607.8" y="645" width="1.3" height="15.0" fill="rgb(0,221,65)" rx="2" ry="2" /> +<text x="610.78" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="497.4" y="677" width="1.3" height="15.0" fill="rgb(0,192,60)" rx="2" ry="2" /> +<text x="500.38" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1101.9" y="645" width="1.3" height="15.0" fill="rgb(0,191,34)" rx="2" ry="2" /> +<text x="1104.88" y="655.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.10%)</title><rect x="676.4" y="517" width="1.4" height="15.0" fill="rgb(0,230,25)" rx="2" ry="2" /> +<text x="679.44" y="527.5" ></text> +</g> +<g > +<title>ext4_release_file (10,101,010 samples, 0.10%)</title><rect x="1056.1" y="597" width="1.4" height="15.0" fill="rgb(0,202,4)" rx="2" ry="2" /> +<text x="1059.11" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="788.2" y="725" width="1.3" height="15.0" fill="rgb(0,199,56)" rx="2" ry="2" /> +<text x="791.19" y="735.5" ></text> +</g> +<g > +<title>do_softirq (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="421" width="1.3" height="15.0" fill="rgb(0,227,160)" rx="2" ry="2" /> +<text x="1337.80" y="431.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="229" width="1.4" height="15.0" fill="rgb(0,217,143)" rx="2" ry="2" /> +<text x="1379.54" y="239.5" ></text> +</g> +<g > +<title>__blk_mq_run_hw_queue (10,101,010 samples, 0.10%)</title><rect x="440.8" y="421" width="1.4" height="15.0" fill="rgb(0,199,202)" rx="2" ry="2" /> +<text x="443.83" y="431.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.10%)</title><rect x="755.9" y="629" width="1.3" height="15.0" fill="rgb(0,198,184)" rx="2" ry="2" /> +<text x="758.87" y="639.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="30.2" y="789" width="1.3" height="15.0" fill="rgb(0,236,88)" rx="2" ry="2" /> +<text x="33.20" y="799.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.10%)</title><rect x="894.5" y="629" width="1.4" height="15.0" fill="rgb(0,192,96)" rx="2" ry="2" /> +<text x="897.55" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="778.8" y="613" width="4.0" height="15.0" fill="rgb(0,236,155)" rx="2" ry="2" /> +<text x="781.76" y="623.5" ></text> +</g> +<g > +<title>crypto_shash_update (30,303,030 samples, 0.29%)</title><rect x="960.5" y="469" width="4.1" height="15.0" fill="rgb(0,228,6)" rx="2" ry="2" /> +<text x="963.52" y="479.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="883.8" y="597" width="1.3" height="15.0" fill="rgb(0,222,110)" rx="2" ry="2" /> +<text x="886.78" y="607.5" ></text> +</g> +<g > +<title>less_than_24 (10,101,010 samples, 0.10%)</title><rect x="1145.0" y="469" width="1.3" height="15.0" fill="rgb(0,232,75)" rx="2" ry="2" /> +<text x="1147.97" y="479.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.10%)</title><rect x="1224.4" y="549" width="1.3" height="15.0" fill="rgb(0,194,179)" rx="2" ry="2" /> +<text x="1227.40" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="741.1" y="613" width="6.7" height="15.0" fill="rgb(0,195,23)" rx="2" ry="2" /> +<text x="744.06" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.10%)</title><rect x="1188.0" y="645" width="1.4" height="15.0" fill="rgb(0,206,41)" rx="2" ry="2" /> +<text x="1191.05" y="655.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (40,404,040 samples, 0.39%)</title><rect x="1014.4" y="597" width="5.4" height="15.0" fill="rgb(0,198,29)" rx="2" ry="2" /> +<text x="1017.37" y="607.5" ></text> +</g> +<g > +<title>readlink (20,202,020 samples, 0.20%)</title><rect x="1157.1" y="709" width="2.7" height="15.0" fill="rgb(0,217,80)" rx="2" ry="2" /> +<text x="1160.08" y="719.5" ></text> +</g> +<g > +<title>__ip_local_out (20,202,020 samples, 0.20%)</title><rect x="18.1" y="149" width="2.7" height="15.0" fill="rgb(0,202,132)" rx="2" ry="2" /> +<text x="21.08" y="159.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="434.1" y="485" width="1.3" height="15.0" fill="rgb(0,200,115)" rx="2" ry="2" /> +<text x="437.10" y="495.5" ></text> +</g> +<g > +<title>map_id_range_down (10,101,010 samples, 0.10%)</title><rect x="747.8" y="517" width="1.3" height="15.0" fill="rgb(0,209,122)" rx="2" ry="2" /> +<text x="750.80" y="527.5" ></text> +</g> +<g > +<title>chmod_common (10,101,010 samples, 0.10%)</title><rect x="1006.3" y="629" width="1.3" height="15.0" fill="rgb(0,197,111)" rx="2" ry="2" /> +<text x="1009.29" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="976.7" y="613" width="2.7" height="15.0" fill="rgb(0,213,127)" rx="2" ry="2" /> +<text x="979.67" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.10%)</title><rect x="831.3" y="613" width="1.3" height="15.0" fill="rgb(0,216,166)" rx="2" ry="2" /> +<text x="834.27" y="623.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="839.3" y="373" width="1.4" height="15.0" fill="rgb(0,196,20)" rx="2" ry="2" /> +<text x="842.35" y="383.5" ></text> +</g> +<g > +<title>__x64_sys_openat (313,131,310 samples, 3.02%)</title><rect x="128.5" y="869" width="41.7" height="15.0" fill="rgb(0,200,112)" rx="2" ry="2" /> +<text x="131.48" y="879.5" >__x..</text> +</g> +<g > +<title>rename (50,505,050 samples, 0.49%)</title><rect x="436.8" y="725" width="6.7" height="15.0" fill="rgb(0,208,112)" rx="2" ry="2" /> +<text x="439.79" y="735.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.10%)</title><rect x="298.1" y="453" width="1.4" height="15.0" fill="rgb(0,222,26)" rx="2" ry="2" /> +<text x="301.12" y="463.5" ></text> +</g> +<g > +<title>git_config_free (10,101,010 samples, 0.10%)</title><rect x="723.6" y="661" width="1.3" height="15.0" fill="rgb(0,228,152)" rx="2" ry="2" /> +<text x="726.56" y="671.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.20%)</title><rect x="350.6" y="533" width="2.7" height="15.0" fill="rgb(0,227,100)" rx="2" ry="2" /> +<text x="353.62" y="543.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.20%)</title><rect x="1245.9" y="613" width="2.7" height="15.0" fill="rgb(0,193,97)" rx="2" ry="2" /> +<text x="1248.94" y="623.5" ></text> +</g> +<g > +<title>dentry_kill (10,101,010 samples, 0.10%)</title><rect x="926.9" y="613" width="1.3" height="15.0" fill="rgb(0,210,157)" rx="2" ry="2" /> +<text x="929.86" y="623.5" ></text> +</g> +<g > +<title>git_reference_lookup (10,101,010 samples, 0.10%)</title><rect x="463.7" y="805" width="1.4" height="15.0" fill="rgb(0,206,115)" rx="2" ry="2" /> +<text x="466.72" y="815.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="541.8" y="453" width="1.4" height="15.0" fill="rgb(0,198,160)" rx="2" ry="2" /> +<text x="544.80" y="463.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="693.9" y="533" width="1.4" height="15.0" fill="rgb(0,214,138)" rx="2" ry="2" /> +<text x="696.94" y="543.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.10%)</title><rect x="552.6" y="549" width="1.3" height="15.0" fill="rgb(0,217,117)" rx="2" ry="2" /> +<text x="555.58" y="559.5" ></text> +</g> +<g > +<title>readdir64 (10,101,010 samples, 0.10%)</title><rect x="788.2" y="757" width="1.3" height="15.0" fill="rgb(0,223,193)" rx="2" ry="2" /> +<text x="791.19" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_access (20,202,020 samples, 0.20%)</title><rect x="446.2" y="645" width="2.7" height="15.0" fill="rgb(0,195,101)" rx="2" ry="2" /> +<text x="449.21" y="655.5" ></text> +</g> +<g > +<title>inflate (20,202,020 samples, 0.20%)</title><rect x="520.3" y="645" width="2.7" height="15.0" fill="rgb(0,206,87)" rx="2" ry="2" /> +<text x="523.26" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="365.4" y="693" width="2.7" height="15.0" fill="rgb(0,217,118)" rx="2" ry="2" /> +<text x="368.43" y="703.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="518.9" y="549" width="1.4" height="15.0" fill="rgb(0,208,72)" rx="2" ry="2" /> +<text x="521.92" y="559.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="978.0" y="469" width="1.4" height="15.0" fill="rgb(0,237,85)" rx="2" ry="2" /> +<text x="981.02" y="479.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.20%)</title><rect x="972.6" y="501" width="2.7" height="15.0" fill="rgb(0,190,116)" rx="2" ry="2" /> +<text x="975.63" y="511.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.10%)</title><rect x="846.1" y="437" width="1.3" height="15.0" fill="rgb(0,221,208)" rx="2" ry="2" /> +<text x="849.08" y="447.5" ></text> +</g> +<g > +<title>event_loop_run (141,414,140 samples, 1.37%)</title><rect x="1352.3" y="869" width="18.9" height="15.0" fill="rgb(0,203,28)" rx="2" ry="2" /> +<text x="1355.30" y="879.5" ></text> +</g> +<g > +<title>pipe_read (30,303,030 samples, 0.29%)</title><rect x="1305.2" y="677" width="4.0" height="15.0" fill="rgb(0,208,152)" rx="2" ry="2" /> +<text x="1308.18" y="687.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (40,404,040 samples, 0.39%)</title><rect x="959.2" y="501" width="5.4" height="15.0" fill="rgb(0,197,167)" rx="2" ry="2" /> +<text x="962.17" y="511.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (10,101,010 samples, 0.10%)</title><rect x="766.6" y="421" width="1.4" height="15.0" fill="rgb(0,218,66)" rx="2" ry="2" /> +<text x="769.64" y="431.5" ></text> +</g> +<g > +<title>ext4_truncate (131,313,130 samples, 1.27%)</title><rect x="303.5" y="517" width="17.5" height="15.0" fill="rgb(0,217,209)" rx="2" ry="2" /> +<text x="306.50" y="527.5" ></text> +</g> +<g > +<title>call_rcu (10,101,010 samples, 0.10%)</title><rect x="322.4" y="501" width="1.3" height="15.0" fill="rgb(0,200,9)" rx="2" ry="2" /> +<text x="325.35" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="581" width="1.3" height="15.0" fill="rgb(0,228,110)" rx="2" ry="2" /> +<text x="1029.49" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="451.6" y="629" width="1.3" height="15.0" fill="rgb(0,218,152)" rx="2" ry="2" /> +<text x="454.60" y="639.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (30,303,030 samples, 0.29%)</title><rect x="1124.8" y="405" width="4.0" height="15.0" fill="rgb(0,206,46)" rx="2" ry="2" /> +<text x="1127.77" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.98%)</title><rect x="863.6" y="677" width="13.4" height="15.0" fill="rgb(0,222,45)" rx="2" ry="2" /> +<text x="866.58" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.39%)</title><rect x="98.9" y="757" width="5.3" height="15.0" fill="rgb(0,222,68)" rx="2" ry="2" /> +<text x="101.86" y="767.5" ></text> +</g> +<g > +<title>do_open (60,606,060 samples, 0.59%)</title><rect x="131.2" y="805" width="8.0" height="15.0" fill="rgb(0,239,133)" rx="2" ry="2" /> +<text x="134.17" y="815.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="385.6" y="693" width="2.7" height="15.0" fill="rgb(0,211,97)" rx="2" ry="2" /> +<text x="388.63" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="54.4" y="757" width="1.4" height="15.0" fill="rgb(0,199,80)" rx="2" ry="2" /> +<text x="57.43" y="767.5" ></text> +</g> +<g > +<title>fsnotify_grab_connector (10,101,010 samples, 0.10%)</title><rect x="343.9" y="533" width="1.3" height="15.0" fill="rgb(0,191,39)" rx="2" ry="2" /> +<text x="346.89" y="543.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="304.8" y="453" width="1.4" height="15.0" fill="rgb(0,226,142)" rx="2" ry="2" /> +<text x="307.85" y="463.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="1220.4" y="581" width="1.3" height="15.0" fill="rgb(0,238,94)" rx="2" ry="2" /> +<text x="1223.36" y="591.5" ></text> +</g> +<g > +<title>do_readlinkat (10,101,010 samples, 0.10%)</title><rect x="882.4" y="597" width="1.4" height="15.0" fill="rgb(0,228,131)" rx="2" ry="2" /> +<text x="885.43" y="607.5" ></text> +</g> +<g > +<title>rename (141,414,140 samples, 1.37%)</title><rect x="1115.3" y="677" width="18.9" height="15.0" fill="rgb(0,237,24)" rx="2" ry="2" /> +<text x="1118.35" y="687.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="816.5" y="197" width="1.3" height="15.0" fill="rgb(0,217,69)" rx="2" ry="2" /> +<text x="819.46" y="207.5" ></text> +</g> +<g > +<title>apparmor_path_rename (10,101,010 samples, 0.10%)</title><rect x="813.8" y="597" width="1.3" height="15.0" fill="rgb(0,239,115)" rx="2" ry="2" /> +<text x="816.77" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="855.5" y="645" width="1.3" height="15.0" fill="rgb(0,209,71)" rx="2" ry="2" /> +<text x="858.50" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="1240.6" y="629" width="2.6" height="15.0" fill="rgb(0,190,38)" rx="2" ry="2" /> +<text x="1243.56" y="639.5" ></text> +</g> +<g > +<title>log_prefix_thread_id (10,101,010 samples, 0.10%)</title><rect x="1311.9" y="821" width="1.4" height="15.0" fill="rgb(0,214,34)" rx="2" ry="2" /> +<text x="1314.91" y="831.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="1235.2" y="677" width="2.7" height="15.0" fill="rgb(0,229,115)" rx="2" ry="2" /> +<text x="1238.17" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="1375.2" y="805" width="2.7" height="15.0" fill="rgb(0,235,159)" rx="2" ry="2" /> +<text x="1378.19" y="815.5" ></text> +</g> +<g > +<title>opendir (30,303,030 samples, 0.29%)</title><rect x="784.1" y="757" width="4.1" height="15.0" fill="rgb(0,200,136)" rx="2" ry="2" /> +<text x="787.15" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="917.4" y="645" width="1.4" height="15.0" fill="rgb(0,194,86)" rx="2" ry="2" /> +<text x="920.43" y="655.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.10%)</title><rect x="766.6" y="341" width="1.4" height="15.0" fill="rgb(0,194,208)" rx="2" ry="2" /> +<text x="769.64" y="351.5" ></text> +</g> +<g > +<title>crc_32 (10,101,010 samples, 0.10%)</title><rect x="961.9" y="453" width="1.3" height="15.0" fill="rgb(0,229,195)" rx="2" ry="2" /> +<text x="964.86" y="463.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="642.8" y="613" width="2.7" height="15.0" fill="rgb(0,190,179)" rx="2" ry="2" /> +<text x="645.78" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="492.0" y="581" width="1.3" height="15.0" fill="rgb(0,200,138)" rx="2" ry="2" /> +<text x="494.99" y="591.5" ></text> +</g> +<g > +<title>__page_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="512.2" y="485" width="1.3" height="15.0" fill="rgb(0,211,124)" rx="2" ry="2" /> +<text x="515.19" y="495.5" ></text> +</g> +<g > +<title>git_config_add_backend (20,202,020 samples, 0.20%)</title><rect x="850.1" y="741" width="2.7" height="15.0" fill="rgb(0,190,76)" rx="2" ry="2" /> +<text x="853.12" y="751.5" ></text> +</g> +<g > +<title>git_object_typeisloose (10,101,010 samples, 0.10%)</title><rect x="523.0" y="677" width="1.3" height="15.0" fill="rgb(0,215,100)" rx="2" ry="2" /> +<text x="525.96" y="687.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="1131.5" y="501" width="1.3" height="15.0" fill="rgb(0,195,182)" rx="2" ry="2" /> +<text x="1134.50" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (555,555,550 samples, 5.37%)</title><rect x="466.4" y="805" width="74.1" height="15.0" fill="rgb(0,210,42)" rx="2" ry="2" /> +<text x="469.41" y="815.5" >[libgit2..</text> +</g> +<g > +<title>ext4_mb_new_blocks (70,707,070 samples, 0.68%)</title><rect x="1143.6" y="533" width="9.4" height="15.0" fill="rgb(0,200,106)" rx="2" ry="2" /> +<text x="1146.62" y="543.5" ></text> +</g> +<g > +<title>security_file_alloc (10,101,010 samples, 0.10%)</title><rect x="419.3" y="565" width="1.3" height="15.0" fill="rgb(0,203,111)" rx="2" ry="2" /> +<text x="422.29" y="575.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="843.4" y="373" width="1.3" height="15.0" fill="rgb(0,233,207)" rx="2" ry="2" /> +<text x="846.39" y="383.5" ></text> +</g> +<g > +<title>__dentry_kill (10,101,010 samples, 0.10%)</title><rect x="411.2" y="629" width="1.4" height="15.0" fill="rgb(0,235,144)" rx="2" ry="2" /> +<text x="414.21" y="639.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="1041.3" y="549" width="1.3" height="15.0" fill="rgb(0,200,207)" rx="2" ry="2" /> +<text x="1044.30" y="559.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.10%)</title><rect x="199.8" y="693" width="1.4" height="15.0" fill="rgb(0,202,126)" rx="2" ry="2" /> +<text x="202.83" y="703.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.10%)</title><rect x="55.8" y="693" width="1.3" height="15.0" fill="rgb(0,194,34)" rx="2" ry="2" /> +<text x="58.78" y="703.5" ></text> +</g> +<g > +<title>rcu_cblist_dequeue (10,101,010 samples, 0.10%)</title><rect x="42.3" y="709" width="1.4" height="15.0" fill="rgb(0,203,15)" rx="2" ry="2" /> +<text x="45.31" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="996.9" y="725" width="2.7" height="15.0" fill="rgb(0,201,146)" rx="2" ry="2" /> +<text x="999.87" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="607.8" y="693" width="1.3" height="15.0" fill="rgb(0,222,1)" rx="2" ry="2" /> +<text x="610.78" y="703.5" ></text> +</g> +<g > +<title>realpath (20,202,020 samples, 0.20%)</title><rect x="726.3" y="661" width="2.6" height="15.0" fill="rgb(0,215,80)" rx="2" ry="2" /> +<text x="729.25" y="671.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="494.7" y="629" width="1.3" height="15.0" fill="rgb(0,216,2)" rx="2" ry="2" /> +<text x="497.68" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="535.1" y="597" width="1.3" height="15.0" fill="rgb(0,231,16)" rx="2" ry="2" /> +<text x="538.07" y="607.5" ></text> +</g> +<g > +<title>ip_finish_output2 (60,606,060 samples, 0.59%)</title><rect x="65.2" y="389" width="8.1" height="15.0" fill="rgb(0,239,199)" rx="2" ry="2" /> +<text x="68.20" y="399.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="630.7" y="613" width="1.3" height="15.0" fill="rgb(0,197,130)" rx="2" ry="2" /> +<text x="633.66" y="623.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="437" width="1.3" height="15.0" fill="rgb(0,195,74)" rx="2" ry="2" /> +<text x="1029.49" y="447.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="485" width="1.4" height="15.0" fill="rgb(0,235,79)" rx="2" ry="2" /> +<text x="1007.95" y="495.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="799.0" y="677" width="1.3" height="15.0" fill="rgb(0,210,46)" rx="2" ry="2" /> +<text x="801.96" y="687.5" ></text> +</g> +<g > +<title>wb_get_lookup.part.0 (10,101,010 samples, 0.10%)</title><rect x="677.8" y="357" width="1.3" height="15.0" fill="rgb(0,224,43)" rx="2" ry="2" /> +<text x="680.79" y="367.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="601.0" y="517" width="1.4" height="15.0" fill="rgb(0,202,108)" rx="2" ry="2" /> +<text x="604.04" y="527.5" ></text> +</g> +<g > +<title>mb_mark_used (10,101,010 samples, 0.10%)</title><rect x="1149.0" y="453" width="1.4" height="15.0" fill="rgb(0,225,84)" rx="2" ry="2" /> +<text x="1152.00" y="463.5" ></text> +</g> +<g > +<title>__ext4_journal_get_create_access (20,202,020 samples, 0.20%)</title><rect x="579.5" y="501" width="2.7" height="15.0" fill="rgb(0,223,91)" rx="2" ry="2" /> +<text x="582.50" y="511.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="501" width="1.4" height="15.0" fill="rgb(0,198,168)" rx="2" ry="2" /> +<text x="1007.95" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.10%)</title><rect x="1303.8" y="757" width="1.4" height="15.0" fill="rgb(0,239,149)" rx="2" ry="2" /> +<text x="1306.83" y="767.5" ></text> +</g> +<g > +<title>ext4_fname_setup_filename (10,101,010 samples, 0.10%)</title><rect x="847.4" y="549" width="1.4" height="15.0" fill="rgb(0,225,102)" rx="2" ry="2" /> +<text x="850.42" y="559.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="453" width="1.4" height="15.0" fill="rgb(0,206,150)" rx="2" ry="2" /> +<text x="1207.20" y="463.5" ></text> +</g> +<g > +<title>__open64 (20,202,020 samples, 0.20%)</title><rect x="517.6" y="645" width="2.7" height="15.0" fill="rgb(0,217,67)" rx="2" ry="2" /> +<text x="520.57" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_access (20,202,020 samples, 0.20%)</title><rect x="1190.7" y="613" width="2.7" height="15.0" fill="rgb(0,194,71)" rx="2" ry="2" /> +<text x="1193.74" y="623.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.29%)</title><rect x="590.3" y="693" width="4.0" height="15.0" fill="rgb(0,204,83)" rx="2" ry="2" /> +<text x="593.27" y="703.5" ></text> +</g> +<g > +<title>kfree_skbmem (10,101,010 samples, 0.10%)</title><rect x="1336.1" y="645" width="1.4" height="15.0" fill="rgb(0,212,41)" rx="2" ry="2" /> +<text x="1339.15" y="655.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="821" width="1.4" height="15.0" fill="rgb(0,227,151)" rx="2" ry="2" /> +<text x="1312.22" y="831.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.10%)</title><rect x="698.0" y="501" width="1.3" height="15.0" fill="rgb(0,225,168)" rx="2" ry="2" /> +<text x="700.98" y="511.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="229.5" y="421" width="1.3" height="15.0" fill="rgb(0,226,144)" rx="2" ry="2" /> +<text x="232.45" y="431.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="1034.6" y="709" width="2.7" height="15.0" fill="rgb(0,203,158)" rx="2" ry="2" /> +<text x="1037.57" y="719.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (20,202,020 samples, 0.20%)</title><rect x="277.9" y="485" width="2.7" height="15.0" fill="rgb(0,238,0)" rx="2" ry="2" /> +<text x="280.92" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="621.2" y="693" width="2.7" height="15.0" fill="rgb(0,225,17)" rx="2" ry="2" /> +<text x="624.24" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="870.3" y="597" width="1.4" height="15.0" fill="rgb(0,197,143)" rx="2" ry="2" /> +<text x="873.31" y="607.5" ></text> +</g> +<g > +<title>close (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="837" width="2.6" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="1336.45" y="847.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="552.6" y="629" width="4.0" height="15.0" fill="rgb(0,192,23)" rx="2" ry="2" /> +<text x="555.58" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="724.9" y="613" width="1.4" height="15.0" fill="rgb(0,205,137)" rx="2" ry="2" /> +<text x="727.91" y="623.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (30,303,030 samples, 0.29%)</title><rect x="1328.1" y="469" width="4.0" height="15.0" fill="rgb(0,223,33)" rx="2" ry="2" /> +<text x="1331.07" y="479.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="485" width="1.3" height="15.0" fill="rgb(0,206,205)" rx="2" ry="2" /> +<text x="1032.18" y="495.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="352.0" y="485" width="1.3" height="15.0" fill="rgb(0,208,6)" rx="2" ry="2" /> +<text x="354.97" y="495.5" ></text> +</g> +<g > +<title>mkdir (70,707,070 samples, 0.68%)</title><rect x="113.7" y="901" width="9.4" height="15.0" fill="rgb(0,211,172)" rx="2" ry="2" /> +<text x="116.67" y="911.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.10%)</title><rect x="816.5" y="325" width="1.3" height="15.0" fill="rgb(0,235,140)" rx="2" ry="2" /> +<text x="819.46" y="335.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.10%)</title><rect x="922.8" y="549" width="1.4" height="15.0" fill="rgb(0,221,206)" rx="2" ry="2" /> +<text x="925.82" y="559.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="1003.6" y="517" width="1.3" height="15.0" fill="rgb(0,225,207)" rx="2" ry="2" /> +<text x="1006.60" y="527.5" ></text> +</g> +<g > +<title>__call_rcu (10,101,010 samples, 0.10%)</title><rect x="322.4" y="485" width="1.3" height="15.0" fill="rgb(0,201,191)" rx="2" ry="2" /> +<text x="325.35" y="495.5" ></text> +</g> +<g > +<title>__d_rehash (10,101,010 samples, 0.10%)</title><rect x="1061.5" y="501" width="1.3" height="15.0" fill="rgb(0,215,187)" rx="2" ry="2" /> +<text x="1064.49" y="511.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.10%)</title><rect x="921.5" y="549" width="1.3" height="15.0" fill="rgb(0,218,152)" rx="2" ry="2" /> +<text x="924.47" y="559.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="948.4" y="405" width="1.3" height="15.0" fill="rgb(0,210,159)" rx="2" ry="2" /> +<text x="951.40" y="415.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="483.9" y="549" width="1.4" height="15.0" fill="rgb(0,191,31)" rx="2" ry="2" /> +<text x="486.91" y="559.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="724.9" y="597" width="1.4" height="15.0" fill="rgb(0,198,125)" rx="2" ry="2" /> +<text x="727.91" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_rename (40,404,040 samples, 0.39%)</title><rect x="436.8" y="677" width="5.4" height="15.0" fill="rgb(0,204,42)" rx="2" ry="2" /> +<text x="439.79" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="708.8" y="613" width="1.3" height="15.0" fill="rgb(0,231,162)" rx="2" ry="2" /> +<text x="711.75" y="623.5" ></text> +</g> +<g > +<title>git_reference_iterator_new (111,111,110 samples, 1.07%)</title><rect x="1206.9" y="757" width="14.8" height="15.0" fill="rgb(0,213,134)" rx="2" ry="2" /> +<text x="1209.90" y="767.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="971.3" y="581" width="1.3" height="15.0" fill="rgb(0,221,51)" rx="2" ry="2" /> +<text x="974.29" y="591.5" ></text> +</g> +<g > +<title>ext4_create (10,101,010 samples, 0.10%)</title><rect x="140.6" y="789" width="1.3" height="15.0" fill="rgb(0,201,141)" rx="2" ry="2" /> +<text x="143.60" y="799.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (20,202,020 samples, 0.20%)</title><rect x="1050.7" y="533" width="2.7" height="15.0" fill="rgb(0,206,38)" rx="2" ry="2" /> +<text x="1053.72" y="543.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="918.8" y="613" width="1.3" height="15.0" fill="rgb(0,191,102)" rx="2" ry="2" /> +<text x="921.78" y="623.5" ></text> +</g> +<g > +<title>__vmalloc_area_node.constprop.0 (20,202,020 samples, 0.20%)</title><rect x="38.3" y="805" width="2.7" height="15.0" fill="rgb(0,200,209)" rx="2" ry="2" /> +<text x="41.27" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="593.0" y="677" width="1.3" height="15.0" fill="rgb(0,234,27)" rx="2" ry="2" /> +<text x="595.97" y="687.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="782.8" y="421" width="1.3" height="15.0" fill="rgb(0,205,119)" rx="2" ry="2" /> +<text x="785.80" y="431.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.10%)</title><rect x="326.4" y="613" width="1.3" height="15.0" fill="rgb(0,215,208)" rx="2" ry="2" /> +<text x="329.39" y="623.5" ></text> +</g> +<g > +<title>remove (30,303,030 samples, 0.29%)</title><rect x="203.9" y="597" width="4.0" height="15.0" fill="rgb(0,223,71)" rx="2" ry="2" /> +<text x="206.87" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.10%)</title><rect x="524.3" y="645" width="1.3" height="15.0" fill="rgb(0,195,77)" rx="2" ry="2" /> +<text x="527.30" y="655.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="757.2" y="485" width="1.4" height="15.0" fill="rgb(0,200,152)" rx="2" ry="2" /> +<text x="760.22" y="495.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1318.6" y="773" width="1.4" height="15.0" fill="rgb(0,233,63)" rx="2" ry="2" /> +<text x="1321.64" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="789.5" y="693" width="5.4" height="15.0" fill="rgb(0,191,3)" rx="2" ry="2" /> +<text x="792.53" y="703.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (10,101,010 samples, 0.10%)</title><rect x="343.9" y="581" width="1.3" height="15.0" fill="rgb(0,192,10)" rx="2" ry="2" /> +<text x="346.89" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="910.7" y="709" width="1.3" height="15.0" fill="rgb(0,196,141)" rx="2" ry="2" /> +<text x="913.70" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_write (50,505,050 samples, 0.49%)</title><rect x="1093.8" y="597" width="6.7" height="15.0" fill="rgb(0,211,38)" rx="2" ry="2" /> +<text x="1096.80" y="607.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.10%)</title><rect x="644.1" y="501" width="1.4" height="15.0" fill="rgb(0,220,78)" rx="2" ry="2" /> +<text x="647.13" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (30,303,030 samples, 0.29%)</title><rect x="203.9" y="533" width="4.0" height="15.0" fill="rgb(0,224,118)" rx="2" ry="2" /> +<text x="206.87" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="111.0" y="869" width="2.7" height="15.0" fill="rgb(0,191,8)" rx="2" ry="2" /> +<text x="113.98" y="879.5" ></text> +</g> +<g > +<title>process_backlog (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="405" width="2.7" height="15.0" fill="rgb(0,208,56)" rx="2" ry="2" /> +<text x="1380.88" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="1167.9" y="677" width="5.3" height="15.0" fill="rgb(0,194,101)" rx="2" ry="2" /> +<text x="1170.85" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_openat (30,303,030 samples, 0.29%)</title><rect x="552.6" y="613" width="4.0" height="15.0" fill="rgb(0,213,179)" rx="2" ry="2" /> +<text x="555.58" y="623.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (10,101,010 samples, 0.10%)</title><rect x="1371.2" y="757" width="1.3" height="15.0" fill="rgb(0,200,35)" rx="2" ry="2" /> +<text x="1374.15" y="767.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="629.3" y="613" width="1.4" height="15.0" fill="rgb(0,236,20)" rx="2" ry="2" /> +<text x="632.32" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (444,444,440 samples, 4.29%)</title><rect x="467.8" y="773" width="59.2" height="15.0" fill="rgb(0,198,116)" rx="2" ry="2" /> +<text x="470.76" y="783.5" >[libgi..</text> +</g> +<g > +<title>_start (9,010,100,920 samples, 87.02%)</title><rect x="189.1" y="965" width="1200.9" height="15.0" fill="rgb(0,207,165)" rx="2" ry="2" /> +<text x="192.06" y="975.5" >_start</text> +</g> +<g > +<title>process_backlog (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="357" width="1.4" height="15.0" fill="rgb(0,215,47)" rx="2" ry="2" /> +<text x="1379.54" y="367.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.10%)</title><rect x="815.1" y="485" width="1.4" height="15.0" fill="rgb(0,203,179)" rx="2" ry="2" /> +<text x="818.11" y="495.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="1030.5" y="485" width="1.4" height="15.0" fill="rgb(0,223,16)" rx="2" ry="2" /> +<text x="1033.53" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="972.6" y="613" width="4.1" height="15.0" fill="rgb(0,226,45)" rx="2" ry="2" /> +<text x="975.63" y="623.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="1318.6" y="789" width="1.4" height="15.0" fill="rgb(0,211,84)" rx="2" ry="2" /> +<text x="1321.64" y="799.5" ></text> +</g> +<g > +<title>git_filter_list_stream_blob (50,505,050 samples, 0.49%)</title><rect x="508.1" y="757" width="6.8" height="15.0" fill="rgb(0,198,50)" rx="2" ry="2" /> +<text x="511.15" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (141,414,140 samples, 1.37%)</title><rect x="1115.3" y="645" width="18.9" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1118.35" y="655.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.10%)</title><rect x="199.8" y="677" width="1.4" height="15.0" fill="rgb(0,219,138)" rx="2" ry="2" /> +<text x="202.83" y="687.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="1056.1" y="677" width="1.4" height="15.0" fill="rgb(0,199,204)" rx="2" ry="2" /> +<text x="1059.11" y="687.5" ></text> +</g> +<g > +<title>__page_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="431.4" y="485" width="1.4" height="15.0" fill="rgb(0,236,74)" rx="2" ry="2" /> +<text x="434.40" y="495.5" ></text> +</g> +<g > +<title>new_sync_read (10,101,010 samples, 0.10%)</title><rect x="632.0" y="549" width="1.4" height="15.0" fill="rgb(0,217,76)" rx="2" ry="2" /> +<text x="635.01" y="559.5" ></text> +</g> +<g > +<title>do_huge_pmd_anonymous_page (10,101,010 samples, 0.10%)</title><rect x="80.0" y="693" width="1.4" height="15.0" fill="rgb(0,235,90)" rx="2" ry="2" /> +<text x="83.01" y="703.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="232.1" y="437" width="1.4" height="15.0" fill="rgb(0,236,62)" rx="2" ry="2" /> +<text x="235.15" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="873.0" y="581" width="1.4" height="15.0" fill="rgb(0,237,146)" rx="2" ry="2" /> +<text x="876.00" y="591.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="1030.5" y="533" width="1.4" height="15.0" fill="rgb(0,237,108)" rx="2" ry="2" /> +<text x="1033.53" y="543.5" ></text> +</g> +<g > +<title>tcp_sendmsg (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="677" width="2.7" height="15.0" fill="rgb(0,197,108)" rx="2" ry="2" /> +<text x="1375.50" y="687.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (20,202,020 samples, 0.20%)</title><rect x="18.1" y="213" width="2.7" height="15.0" fill="rgb(0,218,140)" rx="2" ry="2" /> +<text x="21.08" y="223.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.10%)</title><rect x="326.4" y="597" width="1.3" height="15.0" fill="rgb(0,231,32)" rx="2" ry="2" /> +<text x="329.39" y="607.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="228.1" y="485" width="1.4" height="15.0" fill="rgb(0,205,159)" rx="2" ry="2" /> +<text x="231.11" y="495.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="357" width="1.3" height="15.0" fill="rgb(0,212,77)" rx="2" ry="2" /> +<text x="1032.18" y="367.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.56%)</title><rect x="828.6" y="725" width="21.5" height="15.0" fill="rgb(0,196,192)" rx="2" ry="2" /> +<text x="831.58" y="735.5" >[..</text> +</g> +<g > +<title>__fget_light (10,101,010 samples, 0.10%)</title><rect x="365.4" y="581" width="1.4" height="15.0" fill="rgb(0,196,78)" rx="2" ry="2" /> +<text x="368.43" y="591.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.20%)</title><rect x="672.4" y="405" width="2.7" height="15.0" fill="rgb(0,207,15)" rx="2" ry="2" /> +<text x="675.40" y="415.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="547.2" y="581" width="1.3" height="15.0" fill="rgb(0,217,195)" rx="2" ry="2" /> +<text x="550.19" y="591.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.10%)</title><rect x="146.0" y="693" width="1.3" height="15.0" fill="rgb(0,231,184)" rx="2" ry="2" /> +<text x="148.98" y="703.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="1245.9" y="565" width="1.4" height="15.0" fill="rgb(0,224,130)" rx="2" ry="2" /> +<text x="1248.94" y="575.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="545.8" y="581" width="1.4" height="15.0" fill="rgb(0,230,194)" rx="2" ry="2" /> +<text x="548.84" y="591.5" ></text> +</g> +<g > +<title>log_entry_start (20,202,020 samples, 0.20%)</title><rect x="415.2" y="821" width="2.7" height="15.0" fill="rgb(0,197,123)" rx="2" ry="2" /> +<text x="418.25" y="831.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.20%)</title><rect x="345.2" y="549" width="2.7" height="15.0" fill="rgb(0,197,40)" rx="2" ry="2" /> +<text x="348.24" y="559.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.10%)</title><rect x="755.9" y="501" width="1.3" height="15.0" fill="rgb(0,234,5)" rx="2" ry="2" /> +<text x="758.87" y="511.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="696.6" y="565" width="1.4" height="15.0" fill="rgb(0,231,55)" rx="2" ry="2" /> +<text x="699.63" y="575.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="700.7" y="565" width="1.3" height="15.0" fill="rgb(0,236,57)" rx="2" ry="2" /> +<text x="703.67" y="575.5" ></text> +</g> +<g > +<title>__ext4_new_inode (70,707,070 samples, 0.68%)</title><rect x="147.3" y="757" width="9.5" height="15.0" fill="rgb(0,214,189)" rx="2" ry="2" /> +<text x="150.33" y="767.5" ></text> +</g> +<g > +<title>json_send (70,707,070 samples, 0.68%)</title><rect x="1324.0" y="853" width="9.5" height="15.0" fill="rgb(0,239,11)" rx="2" ry="2" /> +<text x="1327.03" y="863.5" ></text> +</g> +<g > +<title>scsi_queue_rq (10,101,010 samples, 0.10%)</title><rect x="766.6" y="261" width="1.4" height="15.0" fill="rgb(0,191,81)" rx="2" ry="2" /> +<text x="769.64" y="271.5" ></text> +</g> +<g > +<title>__x64_sys_link (10,101,010 samples, 0.10%)</title><rect x="692.6" y="629" width="1.3" height="15.0" fill="rgb(0,234,136)" rx="2" ry="2" /> +<text x="695.60" y="639.5" ></text> +</g> +<g > +<title>json_send (101,010,100 samples, 0.98%)</title><rect x="11.3" y="885" width="13.5" height="15.0" fill="rgb(0,190,150)" rx="2" ry="2" /> +<text x="14.35" y="895.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.88%)</title><rect x="514.9" y="725" width="12.1" height="15.0" fill="rgb(0,208,49)" rx="2" ry="2" /> +<text x="517.88" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1239.2" y="613" width="1.4" height="15.0" fill="rgb(0,215,55)" rx="2" ry="2" /> +<text x="1242.21" y="623.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="541.8" y="485" width="1.4" height="15.0" fill="rgb(0,195,34)" rx="2" ry="2" /> +<text x="544.80" y="495.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.10%)</title><rect x="358.7" y="501" width="1.3" height="15.0" fill="rgb(0,205,127)" rx="2" ry="2" /> +<text x="361.70" y="511.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="393.7" y="581" width="1.4" height="15.0" fill="rgb(0,215,188)" rx="2" ry="2" /> +<text x="396.71" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="626.6" y="629" width="4.1" height="15.0" fill="rgb(0,224,67)" rx="2" ry="2" /> +<text x="629.62" y="639.5" ></text> +</g> +<g > +<title>ext4_bread (20,202,020 samples, 0.20%)</title><rect x="677.8" y="485" width="2.7" height="15.0" fill="rgb(0,227,46)" rx="2" ry="2" /> +<text x="680.79" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="385.6" y="709" width="2.7" height="15.0" fill="rgb(0,235,80)" rx="2" ry="2" /> +<text x="388.63" y="719.5" ></text> +</g> +<g > +<title>git_odb_read_header (40,404,040 samples, 0.39%)</title><rect x="696.6" y="709" width="5.4" height="15.0" fill="rgb(0,194,2)" rx="2" ry="2" /> +<text x="699.63" y="719.5" ></text> +</g> +<g > +<title>call_rcu (10,101,010 samples, 0.10%)</title><rect x="411.2" y="613" width="1.4" height="15.0" fill="rgb(0,239,32)" rx="2" ry="2" /> +<text x="414.21" y="623.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (20,202,020 samples, 0.20%)</title><rect x="18.1" y="293" width="2.7" height="15.0" fill="rgb(0,203,12)" rx="2" ry="2" /> +<text x="21.08" y="303.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.20%)</title><rect x="689.9" y="533" width="2.7" height="15.0" fill="rgb(0,191,126)" rx="2" ry="2" /> +<text x="692.90" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="109.6" y="901" width="1.4" height="15.0" fill="rgb(0,195,119)" rx="2" ry="2" /> +<text x="112.63" y="911.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.10%)</title><rect x="400.4" y="693" width="1.4" height="15.0" fill="rgb(0,205,192)" rx="2" ry="2" /> +<text x="403.44" y="703.5" ></text> +</g> +<g > +<title>run_create (10,101,010 samples, 0.10%)</title><rect x="1357.7" y="773" width="1.3" height="15.0" fill="rgb(0,223,11)" rx="2" ry="2" /> +<text x="1360.69" y="783.5" ></text> +</g> +<g > +<title>ip_local_out (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="565" width="2.7" height="15.0" fill="rgb(0,231,19)" rx="2" ry="2" /> +<text x="1341.84" y="575.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.10%)</title><rect x="1031.9" y="421" width="1.3" height="15.0" fill="rgb(0,232,106)" rx="2" ry="2" /> +<text x="1034.87" y="431.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="405.8" y="741" width="1.4" height="15.0" fill="rgb(0,192,52)" rx="2" ry="2" /> +<text x="408.82" y="751.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="1163.8" y="597" width="1.4" height="15.0" fill="rgb(0,233,83)" rx="2" ry="2" /> +<text x="1166.81" y="607.5" ></text> +</g> +<g > +<title>tzset (10,101,010 samples, 0.10%)</title><rect x="782.8" y="661" width="1.3" height="15.0" fill="rgb(0,229,172)" rx="2" ry="2" /> +<text x="785.80" y="671.5" ></text> +</g> +<g > +<title>account_kernel_stack.isra.0 (10,101,010 samples, 0.10%)</title><rect x="36.9" y="837" width="1.4" height="15.0" fill="rgb(0,219,72)" rx="2" ry="2" /> +<text x="39.93" y="847.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="471.8" y="613" width="2.7" height="15.0" fill="rgb(0,227,157)" rx="2" ry="2" /> +<text x="474.80" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="735.7" y="629" width="2.7" height="15.0" fill="rgb(0,206,38)" rx="2" ry="2" /> +<text x="738.68" y="639.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.10%)</title><rect x="385.6" y="517" width="1.4" height="15.0" fill="rgb(0,219,15)" rx="2" ry="2" /> +<text x="388.63" y="527.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="757.2" y="501" width="1.4" height="15.0" fill="rgb(0,207,7)" rx="2" ry="2" /> +<text x="760.22" y="511.5" ></text> +</g> +<g > +<title>rmdir (20,202,020 samples, 0.20%)</title><rect x="385.6" y="725" width="2.7" height="15.0" fill="rgb(0,224,125)" rx="2" ry="2" /> +<text x="388.63" y="735.5" ></text> +</g> +<g > +<title>rmdir (161,616,160 samples, 1.56%)</title><rect x="339.9" y="693" width="21.5" height="15.0" fill="rgb(0,209,5)" rx="2" ry="2" /> +<text x="342.85" y="703.5" >r..</text> +</g> +<g > +<title>ext4_file_open (20,202,020 samples, 0.20%)</title><rect x="133.9" y="757" width="2.7" height="15.0" fill="rgb(0,230,150)" rx="2" ry="2" /> +<text x="136.86" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1194.8" y="677" width="4.0" height="15.0" fill="rgb(0,194,7)" rx="2" ry="2" /> +<text x="1197.78" y="687.5" ></text> +</g> +<g > +<title>gettid (10,101,010 samples, 0.10%)</title><rect x="24.8" y="869" width="1.4" height="15.0" fill="rgb(0,193,186)" rx="2" ry="2" /> +<text x="27.81" y="879.5" ></text> +</g> +<g > +<title>remove (40,404,040 samples, 0.39%)</title><rect x="407.2" y="773" width="5.4" height="15.0" fill="rgb(0,235,197)" rx="2" ry="2" /> +<text x="410.17" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (131,313,130 samples, 1.27%)</title><rect x="863.6" y="693" width="17.5" height="15.0" fill="rgb(0,208,49)" rx="2" ry="2" /> +<text x="866.58" y="703.5" ></text> +</g> +<g > +<title>evict (50,505,050 samples, 0.49%)</title><rect x="1116.7" y="517" width="6.7" height="15.0" fill="rgb(0,225,129)" rx="2" ry="2" /> +<text x="1119.69" y="527.5" ></text> +</g> +<g > +<title>ext4_evict_inode (40,404,040 samples, 0.39%)</title><rect x="648.2" y="501" width="5.4" height="15.0" fill="rgb(0,232,204)" rx="2" ry="2" /> +<text x="651.17" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="685.9" y="629" width="4.0" height="15.0" fill="rgb(0,231,72)" rx="2" ry="2" /> +<text x="688.86" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="1167.9" y="693" width="5.3" height="15.0" fill="rgb(0,206,180)" rx="2" ry="2" /> +<text x="1170.85" y="703.5" ></text> +</g> +<g > +<title>stop_this_handle (10,101,010 samples, 0.10%)</title><rect x="478.5" y="421" width="1.4" height="15.0" fill="rgb(0,217,67)" rx="2" ry="2" /> +<text x="481.53" y="431.5" ></text> +</g> +<g > +<title>__libc_start_main (484,848,480 samples, 4.68%)</title><rect x="43.7" y="949" width="64.6" height="15.0" fill="rgb(0,230,122)" rx="2" ry="2" /> +<text x="46.66" y="959.5" >__libc_..</text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="498.7" y="661" width="1.4" height="15.0" fill="rgb(0,228,56)" rx="2" ry="2" /> +<text x="501.72" y="671.5" ></text> +</g> +<g > +<title>write (30,303,030 samples, 0.29%)</title><rect x="685.9" y="645" width="4.0" height="15.0" fill="rgb(0,227,156)" rx="2" ry="2" /> +<text x="688.86" y="655.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="908.0" y="533" width="1.4" height="15.0" fill="rgb(0,192,11)" rx="2" ry="2" /> +<text x="911.01" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (151,515,150 samples, 1.46%)</title><rect x="672.4" y="677" width="20.2" height="15.0" fill="rgb(0,208,43)" rx="2" ry="2" /> +<text x="675.40" y="687.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.10%)</title><rect x="751.8" y="485" width="1.4" height="15.0" fill="rgb(0,204,137)" rx="2" ry="2" /> +<text x="754.83" y="495.5" ></text> +</g> +<g > +<title>ip_finish_output2 (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="581" width="5.4" height="15.0" fill="rgb(0,194,46)" rx="2" ry="2" /> +<text x="1383.58" y="591.5" ></text> +</g> +<g > +<title>inet_accept (10,101,010 samples, 0.10%)</title><rect x="92.1" y="709" width="1.4" height="15.0" fill="rgb(0,197,73)" rx="2" ry="2" /> +<text x="95.13" y="719.5" ></text> +</g> +<g > +<title>putname (10,101,010 samples, 0.10%)</title><rect x="1112.7" y="597" width="1.3" height="15.0" fill="rgb(0,232,100)" rx="2" ry="2" /> +<text x="1115.65" y="607.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="909.4" y="549" width="1.3" height="15.0" fill="rgb(0,220,170)" rx="2" ry="2" /> +<text x="912.36" y="559.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="851.5" y="501" width="1.3" height="15.0" fill="rgb(0,198,59)" rx="2" ry="2" /> +<text x="854.46" y="511.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (80,808,080 samples, 0.78%)</title><rect x="1045.3" y="597" width="10.8" height="15.0" fill="rgb(0,199,194)" rx="2" ry="2" /> +<text x="1048.34" y="607.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="158.1" y="693" width="1.3" height="15.0" fill="rgb(0,202,152)" rx="2" ry="2" /> +<text x="161.10" y="703.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.10%)</title><rect x="237.5" y="565" width="1.4" height="15.0" fill="rgb(0,210,124)" rx="2" ry="2" /> +<text x="240.53" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="979.4" y="629" width="1.3" height="15.0" fill="rgb(0,195,102)" rx="2" ry="2" /> +<text x="982.37" y="639.5" ></text> +</g> +<g > +<title>__rseq_handle_notify_resume (10,101,010 samples, 0.10%)</title><rect x="1021.1" y="629" width="1.3" height="15.0" fill="rgb(0,236,78)" rx="2" ry="2" /> +<text x="1024.10" y="639.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.10%)</title><rect x="1282.3" y="581" width="1.3" height="15.0" fill="rgb(0,219,90)" rx="2" ry="2" /> +<text x="1285.29" y="591.5" ></text> +</g> +<g > +<title>ext4_append (30,303,030 samples, 0.29%)</title><rect x="117.7" y="773" width="4.0" height="15.0" fill="rgb(0,211,150)" rx="2" ry="2" /> +<text x="120.71" y="783.5" ></text> +</g> +<g > +<title>git_signature_default (50,505,050 samples, 0.49%)</title><rect x="990.1" y="693" width="6.8" height="15.0" fill="rgb(0,222,152)" rx="2" ry="2" /> +<text x="993.14" y="703.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (10,101,010 samples, 0.10%)</title><rect x="1085.7" y="453" width="1.4" height="15.0" fill="rgb(0,226,156)" rx="2" ry="2" /> +<text x="1088.73" y="463.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="397.7" y="613" width="1.4" height="15.0" fill="rgb(0,230,111)" rx="2" ry="2" /> +<text x="400.75" y="623.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1215.0" y="453" width="1.3" height="15.0" fill="rgb(0,235,50)" rx="2" ry="2" /> +<text x="1217.98" y="463.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="610.5" y="597" width="1.3" height="15.0" fill="rgb(0,230,136)" rx="2" ry="2" /> +<text x="613.47" y="607.5" ></text> +</g> +<g > +<title>__tcp_ack_snd_check (20,202,020 samples, 0.20%)</title><rect x="18.1" y="261" width="2.7" height="15.0" fill="rgb(0,221,2)" rx="2" ry="2" /> +<text x="21.08" y="271.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.20%)</title><rect x="1190.7" y="661" width="2.7" height="15.0" fill="rgb(0,212,13)" rx="2" ry="2" /> +<text x="1193.74" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="634.7" y="645" width="2.7" height="15.0" fill="rgb(0,238,194)" rx="2" ry="2" /> +<text x="637.70" y="655.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (10,101,010 samples, 0.10%)</title><rect x="1361.7" y="757" width="1.4" height="15.0" fill="rgb(0,222,129)" rx="2" ry="2" /> +<text x="1364.73" y="767.5" ></text> +</g> +<g > +<title>do_renameat2 (80,808,080 samples, 0.78%)</title><rect x="764.0" y="597" width="10.7" height="15.0" fill="rgb(0,191,20)" rx="2" ry="2" /> +<text x="766.95" y="607.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.10%)</title><rect x="959.2" y="421" width="1.3" height="15.0" fill="rgb(0,205,171)" rx="2" ry="2" /> +<text x="962.17" y="431.5" ></text> +</g> +<g > +<title>remove (70,707,070 samples, 0.68%)</title><rect x="228.1" y="645" width="9.4" height="15.0" fill="rgb(0,236,131)" rx="2" ry="2" /> +<text x="231.11" y="655.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="209.3" y="309" width="1.3" height="15.0" fill="rgb(0,217,138)" rx="2" ry="2" /> +<text x="212.26" y="319.5" ></text> +</g> +<g > +<title>__indirect_thunk_start (10,101,010 samples, 0.10%)</title><rect x="1084.4" y="293" width="1.3" height="15.0" fill="rgb(0,205,78)" rx="2" ry="2" /> +<text x="1087.38" y="303.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (30,303,030 samples, 0.29%)</title><rect x="276.6" y="501" width="4.0" height="15.0" fill="rgb(0,225,36)" rx="2" ry="2" /> +<text x="279.58" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="742.4" y="549" width="1.4" height="15.0" fill="rgb(0,230,164)" rx="2" ry="2" /> +<text x="745.41" y="559.5" ></text> +</g> +<g > +<title>ip_finish_output2 (40,404,040 samples, 0.39%)</title><rect x="15.4" y="517" width="5.4" height="15.0" fill="rgb(0,190,124)" rx="2" ry="2" /> +<text x="18.39" y="527.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="1161.1" y="629" width="1.4" height="15.0" fill="rgb(0,230,142)" rx="2" ry="2" /> +<text x="1164.12" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (20,202,020 samples, 0.20%)</title><rect x="1034.6" y="677" width="2.7" height="15.0" fill="rgb(0,222,187)" rx="2" ry="2" /> +<text x="1037.57" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="990.1" y="645" width="6.8" height="15.0" fill="rgb(0,227,152)" rx="2" ry="2" /> +<text x="993.14" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="541.8" y="661" width="1.4" height="15.0" fill="rgb(0,218,40)" rx="2" ry="2" /> +<text x="544.80" y="671.5" ></text> +</g> +<g > +<title>signal_set_mask (10,101,010 samples, 0.10%)</title><rect x="84.0" y="789" width="1.4" height="15.0" fill="rgb(0,194,9)" rx="2" ry="2" /> +<text x="87.05" y="799.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (30,303,030 samples, 0.29%)</title><rect x="1040.0" y="677" width="4.0" height="15.0" fill="rgb(0,226,29)" rx="2" ry="2" /> +<text x="1042.95" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="532.4" y="661" width="4.0" height="15.0" fill="rgb(0,226,65)" rx="2" ry="2" /> +<text x="535.38" y="671.5" ></text> +</g> +<g > +<title>__rseq_handle_notify_resume (10,101,010 samples, 0.10%)</title><rect x="30.2" y="773" width="1.3" height="15.0" fill="rgb(0,214,194)" rx="2" ry="2" /> +<text x="33.20" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="714.1" y="709" width="1.4" height="15.0" fill="rgb(0,192,183)" rx="2" ry="2" /> +<text x="717.14" y="719.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted.part.0 (10,101,010 samples, 0.10%)</title><rect x="284.7" y="485" width="1.3" height="15.0" fill="rgb(0,225,154)" rx="2" ry="2" /> +<text x="287.65" y="495.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="1185.4" y="629" width="1.3" height="15.0" fill="rgb(0,225,178)" rx="2" ry="2" /> +<text x="1188.36" y="639.5" ></text> +</g> +<g > +<title>git_reference__alloc_symbolic (10,101,010 samples, 0.10%)</title><rect x="712.8" y="677" width="1.3" height="15.0" fill="rgb(0,199,142)" rx="2" ry="2" /> +<text x="715.79" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="860.9" y="677" width="2.7" height="15.0" fill="rgb(0,193,172)" rx="2" ry="2" /> +<text x="863.89" y="687.5" ></text> +</g> +<g > +<title>git_config_new (10,101,010 samples, 0.10%)</title><rect x="497.4" y="693" width="1.3" height="15.0" fill="rgb(0,207,102)" rx="2" ry="2" /> +<text x="500.38" y="703.5" ></text> +</g> +<g > +<title>ext4_find_entry (10,101,010 samples, 0.10%)</title><rect x="349.3" y="565" width="1.3" height="15.0" fill="rgb(0,221,53)" rx="2" ry="2" /> +<text x="352.28" y="575.5" ></text> +</g> +<g > +<title>read_hv_clock_tsc (10,101,010 samples, 0.10%)</title><rect x="842.0" y="389" width="1.4" height="15.0" fill="rgb(0,194,131)" rx="2" ry="2" /> +<text x="845.04" y="399.5" ></text> +</g> +<g > +<title>do_eventfd (10,101,010 samples, 0.10%)</title><rect x="85.4" y="741" width="1.3" height="15.0" fill="rgb(0,224,165)" rx="2" ry="2" /> +<text x="88.40" y="751.5" ></text> +</g> +<g > +<title>d_walk (10,101,010 samples, 0.10%)</title><rect x="360.0" y="581" width="1.4" height="15.0" fill="rgb(0,213,7)" rx="2" ry="2" /> +<text x="363.05" y="591.5" ></text> +</g> +<g > +<title>__ext4_check_dir_entry (10,101,010 samples, 0.10%)</title><rect x="335.8" y="565" width="1.4" height="15.0" fill="rgb(0,196,75)" rx="2" ry="2" /> +<text x="338.81" y="575.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.10%)</title><rect x="972.6" y="485" width="1.4" height="15.0" fill="rgb(0,230,64)" rx="2" ry="2" /> +<text x="975.63" y="495.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="602.4" y="501" width="1.3" height="15.0" fill="rgb(0,198,22)" rx="2" ry="2" /> +<text x="605.39" y="511.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="1077.6" y="613" width="1.4" height="15.0" fill="rgb(0,218,121)" rx="2" ry="2" /> +<text x="1080.65" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="739.7" y="581" width="1.4" height="15.0" fill="rgb(0,192,53)" rx="2" ry="2" /> +<text x="742.72" y="591.5" ></text> +</g> +<g > +<title>__put_task_struct (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="389" width="1.3" height="15.0" fill="rgb(0,217,194)" rx="2" ry="2" /> +<text x="1032.18" y="399.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.10%)</title><rect x="700.7" y="645" width="1.3" height="15.0" fill="rgb(0,217,125)" rx="2" ry="2" /> +<text x="703.67" y="655.5" ></text> +</g> +<g > +<title>__call_rcu (10,101,010 samples, 0.10%)</title><rect x="988.8" y="453" width="1.3" height="15.0" fill="rgb(0,216,51)" rx="2" ry="2" /> +<text x="991.79" y="463.5" ></text> +</g> +<g > +<title>blk_mq_start_request (10,101,010 samples, 0.10%)</title><rect x="816.5" y="277" width="1.3" height="15.0" fill="rgb(0,226,52)" rx="2" ry="2" /> +<text x="819.46" y="287.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.10%)</title><rect x="982.1" y="661" width="1.3" height="15.0" fill="rgb(0,214,73)" rx="2" ry="2" /> +<text x="985.06" y="671.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="952.4" y="469" width="2.7" height="15.0" fill="rgb(0,228,181)" rx="2" ry="2" /> +<text x="955.44" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="917.4" y="629" width="1.4" height="15.0" fill="rgb(0,190,94)" rx="2" ry="2" /> +<text x="920.43" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="434.1" y="677" width="1.3" height="15.0" fill="rgb(0,216,189)" rx="2" ry="2" /> +<text x="437.10" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="564.7" y="645" width="2.7" height="15.0" fill="rgb(0,206,161)" rx="2" ry="2" /> +<text x="567.69" y="655.5" ></text> +</g> +<g > +<title>link (90,909,090 samples, 0.88%)</title><rect x="594.3" y="693" width="12.1" height="15.0" fill="rgb(0,216,114)" rx="2" ry="2" /> +<text x="597.31" y="703.5" ></text> +</g> +<g > +<title>eventfd (10,101,010 samples, 0.10%)</title><rect x="85.4" y="805" width="1.3" height="15.0" fill="rgb(0,215,105)" rx="2" ry="2" /> +<text x="88.40" y="815.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="570.1" y="533" width="2.7" height="15.0" fill="rgb(0,228,153)" rx="2" ry="2" /> +<text x="573.08" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="712.8" y="661" width="1.3" height="15.0" fill="rgb(0,205,29)" rx="2" ry="2" /> +<text x="715.79" y="671.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="545.8" y="613" width="2.7" height="15.0" fill="rgb(0,217,64)" rx="2" ry="2" /> +<text x="548.84" y="623.5" ></text> +</g> +<g > +<title>__open64 (30,303,030 samples, 0.29%)</title><rect x="552.6" y="661" width="4.0" height="15.0" fill="rgb(0,202,116)" rx="2" ry="2" /> +<text x="555.58" y="671.5" ></text> +</g> +<g > +<title>__open64 (20,202,020 samples, 0.20%)</title><rect x="1240.6" y="645" width="2.6" height="15.0" fill="rgb(0,224,72)" rx="2" ry="2" /> +<text x="1243.56" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="536.4" y="709" width="4.1" height="15.0" fill="rgb(0,207,145)" rx="2" ry="2" /> +<text x="539.42" y="719.5" ></text> +</g> +<g > +<title>memcmp (10,101,010 samples, 0.10%)</title><rect x="576.8" y="501" width="1.4" height="15.0" fill="rgb(0,227,0)" rx="2" ry="2" /> +<text x="579.81" y="511.5" ></text> +</g> +<g > +<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.10%)</title><rect x="1255.4" y="549" width="1.3" height="15.0" fill="rgb(0,190,189)" rx="2" ry="2" /> +<text x="1258.37" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="913.4" y="757" width="6.7" height="15.0" fill="rgb(0,233,66)" rx="2" ry="2" /> +<text x="916.40" y="767.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="891.9" y="629" width="1.3" height="15.0" fill="rgb(0,196,4)" rx="2" ry="2" /> +<text x="894.85" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="327.7" y="693" width="2.7" height="15.0" fill="rgb(0,210,132)" rx="2" ry="2" /> +<text x="330.74" y="703.5" ></text> +</g> +<g > +<title>__sys_connect (80,808,080 samples, 0.78%)</title><rect x="1377.9" y="789" width="10.8" height="15.0" fill="rgb(0,223,26)" rx="2" ry="2" /> +<text x="1380.88" y="799.5" ></text> +</g> +<g > +<title>[libc.so.6] (70,707,070 samples, 0.68%)</title><rect x="94.8" y="821" width="9.4" height="15.0" fill="rgb(0,211,56)" rx="2" ry="2" /> +<text x="97.82" y="831.5" ></text> +</g> +<g > +<title>unlink (60,606,060 samples, 0.59%)</title><rect x="392.4" y="741" width="8.0" height="15.0" fill="rgb(0,194,147)" rx="2" ry="2" /> +<text x="395.36" y="751.5" ></text> +</g> +<g > +<title>git_config_add_backend (50,505,050 samples, 0.49%)</title><rect x="1231.1" y="757" width="6.8" height="15.0" fill="rgb(0,208,136)" rx="2" ry="2" /> +<text x="1234.13" y="767.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.10%)</title><rect x="807.0" y="533" width="1.4" height="15.0" fill="rgb(0,212,2)" rx="2" ry="2" /> +<text x="810.03" y="543.5" ></text> +</g> +<g > +<title>new_sync_read (20,202,020 samples, 0.20%)</title><rect x="986.1" y="501" width="2.7" height="15.0" fill="rgb(0,192,27)" rx="2" ry="2" /> +<text x="989.10" y="511.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.10%)</title><rect x="194.4" y="693" width="1.4" height="15.0" fill="rgb(0,231,41)" rx="2" ry="2" /> +<text x="197.45" y="703.5" ></text> +</g> +<g > +<title>ksys_read (20,202,020 samples, 0.20%)</title><rect x="1368.5" y="693" width="2.7" height="15.0" fill="rgb(0,221,115)" rx="2" ry="2" /> +<text x="1371.46" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="1232.5" y="677" width="2.7" height="15.0" fill="rgb(0,224,125)" rx="2" ry="2" /> +<text x="1235.48" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (242,424,240 samples, 2.34%)</title><rect x="467.8" y="725" width="32.3" height="15.0" fill="rgb(0,203,130)" rx="2" ry="2" /> +<text x="470.76" y="735.5" >[l..</text> +</g> +<g > +<title>vfs_rename (70,707,070 samples, 0.68%)</title><rect x="765.3" y="581" width="9.4" height="15.0" fill="rgb(0,198,2)" rx="2" ry="2" /> +<text x="768.30" y="591.5" ></text> +</g> +<g > +<title>malloc (20,202,020 samples, 0.20%)</title><rect x="412.6" y="805" width="2.6" height="15.0" fill="rgb(0,238,51)" rx="2" ry="2" /> +<text x="415.56" y="815.5" ></text> +</g> +<g > +<title>read (30,303,030 samples, 0.29%)</title><rect x="1305.2" y="789" width="4.0" height="15.0" fill="rgb(0,237,185)" rx="2" ry="2" /> +<text x="1308.18" y="799.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (20,202,020 samples, 0.20%)</title><rect x="1050.7" y="517" width="2.7" height="15.0" fill="rgb(0,192,69)" rx="2" ry="2" /> +<text x="1053.72" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="883.8" y="677" width="1.3" height="15.0" fill="rgb(0,215,125)" rx="2" ry="2" /> +<text x="886.78" y="687.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.10%)</title><rect x="1145.0" y="517" width="1.3" height="15.0" fill="rgb(0,203,171)" rx="2" ry="2" /> +<text x="1147.97" y="527.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.10%)</title><rect x="948.4" y="421" width="1.3" height="15.0" fill="rgb(0,234,67)" rx="2" ry="2" /> +<text x="951.40" y="431.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.10%)</title><rect x="172.9" y="789" width="1.4" height="15.0" fill="rgb(0,206,69)" rx="2" ry="2" /> +<text x="175.91" y="799.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="564.7" y="581" width="1.3" height="15.0" fill="rgb(0,200,16)" rx="2" ry="2" /> +<text x="567.69" y="591.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.10%)</title><rect x="502.8" y="597" width="1.3" height="15.0" fill="rgb(0,215,25)" rx="2" ry="2" /> +<text x="505.76" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (131,313,130 samples, 1.27%)</title><rect x="949.7" y="565" width="17.5" height="15.0" fill="rgb(0,231,60)" rx="2" ry="2" /> +<text x="952.75" y="575.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="877.0" y="485" width="1.4" height="15.0" fill="rgb(0,191,67)" rx="2" ry="2" /> +<text x="880.04" y="495.5" ></text> +</g> +<g > +<title>__d_add (10,101,010 samples, 0.10%)</title><rect x="1061.5" y="517" width="1.3" height="15.0" fill="rgb(0,208,15)" rx="2" ry="2" /> +<text x="1064.49" y="527.5" ></text> +</g> +<g > +<title>readlink (10,101,010 samples, 0.10%)</title><rect x="727.6" y="629" width="1.3" height="15.0" fill="rgb(0,208,82)" rx="2" ry="2" /> +<text x="730.60" y="639.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="461.0" y="581" width="1.4" height="15.0" fill="rgb(0,211,130)" rx="2" ry="2" /> +<text x="464.02" y="591.5" ></text> +</g> +<g > +<title>security_file_permission (10,101,010 samples, 0.10%)</title><rect x="699.3" y="501" width="1.4" height="15.0" fill="rgb(0,201,97)" rx="2" ry="2" /> +<text x="702.33" y="511.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="998.2" y="485" width="1.4" height="15.0" fill="rgb(0,210,48)" rx="2" ry="2" /> +<text x="1001.21" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="1000.9" y="677" width="4.0" height="15.0" fill="rgb(0,237,39)" rx="2" ry="2" /> +<text x="1003.91" y="687.5" ></text> +</g> +<g > +<title>ksys_write (30,303,030 samples, 0.29%)</title><rect x="1073.6" y="565" width="4.0" height="15.0" fill="rgb(0,217,47)" rx="2" ry="2" /> +<text x="1076.61" y="575.5" ></text> +</g> +<g > +<title>mutex_lock (10,101,010 samples, 0.10%)</title><rect x="820.5" y="405" width="1.3" height="15.0" fill="rgb(0,217,60)" rx="2" ry="2" /> +<text x="823.50" y="415.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="789" width="2.6" height="15.0" fill="rgb(0,190,195)" rx="2" ry="2" /> +<text x="1336.45" y="799.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="1076.3" y="389" width="1.3" height="15.0" fill="rgb(0,190,142)" rx="2" ry="2" /> +<text x="1079.30" y="399.5" ></text> +</g> +<g > +<title>vfs_mkdir (20,202,020 samples, 0.20%)</title><rect x="1034.6" y="645" width="2.7" height="15.0" fill="rgb(0,224,179)" rx="2" ry="2" /> +<text x="1037.57" y="655.5" ></text> +</g> +<g > +<title>ip_output (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="549" width="2.7" height="15.0" fill="rgb(0,215,183)" rx="2" ry="2" /> +<text x="1341.84" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (111,111,110 samples, 1.07%)</title><rect x="1206.9" y="709" width="14.8" height="15.0" fill="rgb(0,211,204)" rx="2" ry="2" /> +<text x="1209.90" y="719.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="751.8" y="565" width="1.4" height="15.0" fill="rgb(0,193,30)" rx="2" ry="2" /> +<text x="754.83" y="575.5" ></text> +</g> +<g > +<title>generic_write_end (10,101,010 samples, 0.10%)</title><rect x="755.9" y="453" width="1.3" height="15.0" fill="rgb(0,204,3)" rx="2" ry="2" /> +<text x="758.87" y="463.5" ></text> +</g> +<g > +<title>ip_queue_xmit (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="597" width="2.7" height="15.0" fill="rgb(0,201,41)" rx="2" ry="2" /> +<text x="1341.84" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="913.4" y="677" width="1.3" height="15.0" fill="rgb(0,218,36)" rx="2" ry="2" /> +<text x="916.40" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="677" width="1.3" height="15.0" fill="rgb(0,197,165)" rx="2" ry="2" /> +<text x="1182.97" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="400.4" y="757" width="1.4" height="15.0" fill="rgb(0,190,188)" rx="2" ry="2" /> +<text x="403.44" y="767.5" ></text> +</g> +<g > +<title>ext4_get_group_desc (10,101,010 samples, 0.10%)</title><rect x="287.3" y="485" width="1.4" height="15.0" fill="rgb(0,208,46)" rx="2" ry="2" /> +<text x="290.35" y="495.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="364.1" y="661" width="1.3" height="15.0" fill="rgb(0,210,102)" rx="2" ry="2" /> +<text x="367.09" y="671.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.10%)</title><rect x="478.5" y="533" width="1.4" height="15.0" fill="rgb(0,238,73)" rx="2" ry="2" /> +<text x="481.53" y="543.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (60,606,060 samples, 0.59%)</title><rect x="46.4" y="693" width="8.0" height="15.0" fill="rgb(0,218,161)" rx="2" ry="2" /> +<text x="49.35" y="703.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="757.2" y="645" width="2.7" height="15.0" fill="rgb(0,226,178)" rx="2" ry="2" /> +<text x="760.22" y="655.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="629" width="1.3" height="15.0" fill="rgb(0,193,50)" rx="2" ry="2" /> +<text x="1182.97" y="639.5" ></text> +</g> +<g > +<title>nft_do_chain_ipv4 (10,101,010 samples, 0.10%)</title><rect x="19.4" y="133" width="1.4" height="15.0" fill="rgb(0,191,182)" rx="2" ry="2" /> +<text x="22.42" y="143.5" ></text> +</g> +<g > +<title>dput (40,404,040 samples, 0.39%)</title><rect x="836.7" y="613" width="5.3" height="15.0" fill="rgb(0,210,16)" rx="2" ry="2" /> +<text x="839.65" y="623.5" ></text> +</g> +<g > +<title>security_path_rename (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="581" width="1.3" height="15.0" fill="rgb(0,236,132)" rx="2" ry="2" /> +<text x="1032.18" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="458.3" y="629" width="1.4" height="15.0" fill="rgb(0,238,22)" rx="2" ry="2" /> +<text x="461.33" y="639.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="629" width="5.4" height="15.0" fill="rgb(0,214,2)" rx="2" ry="2" /> +<text x="1331.07" y="639.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="1212.3" y="517" width="1.3" height="15.0" fill="rgb(0,207,201)" rx="2" ry="2" /> +<text x="1215.28" y="527.5" ></text> +</g> +<g > +<title>ext4_symlink (10,101,010 samples, 0.10%)</title><rect x="1037.3" y="629" width="1.3" height="15.0" fill="rgb(0,229,170)" rx="2" ry="2" /> +<text x="1040.26" y="639.5" ></text> +</g> +<g > +<title>ext4_rename2 (10,101,010 samples, 0.10%)</title><rect x="440.8" y="629" width="1.4" height="15.0" fill="rgb(0,192,152)" rx="2" ry="2" /> +<text x="443.83" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="1363.1" y="725" width="2.7" height="15.0" fill="rgb(0,207,38)" rx="2" ry="2" /> +<text x="1366.07" y="735.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (30,303,030 samples, 0.29%)</title><rect x="1274.2" y="629" width="4.1" height="15.0" fill="rgb(0,203,59)" rx="2" ry="2" /> +<text x="1277.21" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="1110.0" y="597" width="1.3" height="15.0" fill="rgb(0,198,145)" rx="2" ry="2" /> +<text x="1112.96" y="607.5" ></text> +</g> +<g > +<title>ext4_rmdir.part.0 (10,101,010 samples, 0.10%)</title><rect x="385.6" y="613" width="1.4" height="15.0" fill="rgb(0,192,61)" rx="2" ry="2" /> +<text x="388.63" y="623.5" ></text> +</g> +<g > +<title>getdents64 (10,101,010 samples, 0.10%)</title><rect x="405.8" y="773" width="1.4" height="15.0" fill="rgb(0,228,19)" rx="2" ry="2" /> +<text x="408.82" y="783.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="749.1" y="517" width="1.4" height="15.0" fill="rgb(0,206,100)" rx="2" ry="2" /> +<text x="752.14" y="527.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.10%)</title><rect x="676.4" y="485" width="1.4" height="15.0" fill="rgb(0,224,56)" rx="2" ry="2" /> +<text x="679.44" y="495.5" ></text> +</g> +<g > +<title>ip_finish_output (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="485" width="1.4" height="15.0" fill="rgb(0,207,68)" rx="2" ry="2" /> +<text x="1379.54" y="495.5" ></text> +</g> +<g > +<title>mb_find_order_for_block (10,101,010 samples, 0.10%)</title><rect x="1149.0" y="437" width="1.4" height="15.0" fill="rgb(0,229,166)" rx="2" ry="2" /> +<text x="1152.00" y="447.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="101" width="1.4" height="15.0" fill="rgb(0,231,92)" rx="2" ry="2" /> +<text x="1376.84" y="111.5" ></text> +</g> +<g > +<title>evict (20,202,020 samples, 0.20%)</title><rect x="393.7" y="645" width="2.7" height="15.0" fill="rgb(0,207,115)" rx="2" ry="2" /> +<text x="396.71" y="655.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.10%)</title><rect x="873.0" y="533" width="1.4" height="15.0" fill="rgb(0,222,88)" rx="2" ry="2" /> +<text x="876.00" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="517.6" y="613" width="1.3" height="15.0" fill="rgb(0,192,2)" rx="2" ry="2" /> +<text x="520.57" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="890.5" y="565" width="1.4" height="15.0" fill="rgb(0,222,76)" rx="2" ry="2" /> +<text x="893.51" y="575.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="268.5" y="533" width="1.3" height="15.0" fill="rgb(0,214,177)" rx="2" ry="2" /> +<text x="271.50" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="709" width="1.4" height="15.0" fill="rgb(0,234,114)" rx="2" ry="2" /> +<text x="1207.20" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="899.9" y="565" width="1.4" height="15.0" fill="rgb(0,204,172)" rx="2" ry="2" /> +<text x="902.93" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="1111.3" y="661" width="4.0" height="15.0" fill="rgb(0,192,48)" rx="2" ry="2" /> +<text x="1114.31" y="671.5" ></text> +</g> +<g > +<title>send (50,505,050 samples, 0.49%)</title><rect x="1326.7" y="789" width="6.8" height="15.0" fill="rgb(0,225,11)" rx="2" ry="2" /> +<text x="1329.72" y="799.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="890.5" y="517" width="1.4" height="15.0" fill="rgb(0,236,179)" rx="2" ry="2" /> +<text x="893.51" y="527.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="871.7" y="485" width="1.3" height="15.0" fill="rgb(0,224,191)" rx="2" ry="2" /> +<text x="874.66" y="495.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1371.2" y="709" width="1.3" height="15.0" fill="rgb(0,191,175)" rx="2" ry="2" /> +<text x="1374.15" y="719.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.10%)</title><rect x="384.3" y="677" width="1.3" height="15.0" fill="rgb(0,218,27)" rx="2" ry="2" /> +<text x="387.28" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="999.6" y="773" width="1.3" height="15.0" fill="rgb(0,236,168)" rx="2" ry="2" /> +<text x="1002.56" y="783.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="978.0" y="517" width="1.4" height="15.0" fill="rgb(0,237,70)" rx="2" ry="2" /> +<text x="981.02" y="527.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (30,303,030 samples, 0.29%)</title><rect x="1124.8" y="293" width="4.0" height="15.0" fill="rgb(0,201,78)" rx="2" ry="2" /> +<text x="1127.77" y="303.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="858.2" y="549" width="1.3" height="15.0" fill="rgb(0,229,146)" rx="2" ry="2" /> +<text x="861.20" y="559.5" ></text> +</g> +<g > +<title>memcmp (10,101,010 samples, 0.10%)</title><rect x="934.9" y="517" width="1.4" height="15.0" fill="rgb(0,213,2)" rx="2" ry="2" /> +<text x="937.94" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="805" width="1.4" height="15.0" fill="rgb(0,230,39)" rx="2" ry="2" /> +<text x="1312.22" y="815.5" ></text> +</g> +<g > +<title>iterate_dir (40,404,040 samples, 0.39%)</title><rect x="334.5" y="645" width="5.4" height="15.0" fill="rgb(0,191,46)" rx="2" ry="2" /> +<text x="337.47" y="655.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="1215.0" y="437" width="1.3" height="15.0" fill="rgb(0,210,107)" rx="2" ry="2" /> +<text x="1217.98" y="447.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.10%)</title><rect x="770.7" y="389" width="1.3" height="15.0" fill="rgb(0,207,66)" rx="2" ry="2" /> +<text x="773.68" y="399.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="469" width="1.4" height="15.0" fill="rgb(0,193,57)" rx="2" ry="2" /> +<text x="1207.20" y="479.5" ></text> +</g> +<g > +<title>inet_sendmsg (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="693" width="2.7" height="15.0" fill="rgb(0,227,70)" rx="2" ry="2" /> +<text x="1375.50" y="703.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="890.5" y="501" width="1.4" height="15.0" fill="rgb(0,206,159)" rx="2" ry="2" /> +<text x="893.51" y="511.5" ></text> +</g> +<g > +<title>sock_close (80,808,080 samples, 0.78%)</title><rect x="62.5" y="645" width="10.8" height="15.0" fill="rgb(0,232,142)" rx="2" ry="2" /> +<text x="65.51" y="655.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="879.7" y="629" width="1.4" height="15.0" fill="rgb(0,208,201)" rx="2" ry="2" /> +<text x="882.74" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="825.9" y="741" width="1.3" height="15.0" fill="rgb(0,239,126)" rx="2" ry="2" /> +<text x="828.88" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_rename (141,414,140 samples, 1.37%)</title><rect x="1115.3" y="629" width="18.9" height="15.0" fill="rgb(0,221,55)" rx="2" ry="2" /> +<text x="1118.35" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (10,101,010 samples, 0.10%)</title><rect x="498.7" y="645" width="1.4" height="15.0" fill="rgb(0,209,145)" rx="2" ry="2" /> +<text x="501.72" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="877.0" y="597" width="1.4" height="15.0" fill="rgb(0,236,51)" rx="2" ry="2" /> +<text x="880.04" y="607.5" ></text> +</g> +<g > +<title>git_config_iterator_glob_new (10,101,010 samples, 0.10%)</title><rect x="823.2" y="741" width="1.3" height="15.0" fill="rgb(0,196,162)" rx="2" ry="2" /> +<text x="826.19" y="751.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="618.5" y="645" width="1.4" height="15.0" fill="rgb(0,238,152)" rx="2" ry="2" /> +<text x="621.55" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="82.7" y="725" width="1.3" height="15.0" fill="rgb(0,221,123)" rx="2" ry="2" /> +<text x="85.70" y="735.5" ></text> +</g> +<g > +<title>git_config_set_string (131,313,130 samples, 1.27%)</title><rect x="1070.9" y="725" width="17.5" height="15.0" fill="rgb(0,229,33)" rx="2" ry="2" /> +<text x="1073.92" y="735.5" ></text> +</g> +<g > +<title>jsonrpc_request_create_internal (20,202,020 samples, 0.20%)</title><rect x="1318.6" y="837" width="2.7" height="15.0" fill="rgb(0,203,2)" rx="2" ry="2" /> +<text x="1321.64" y="847.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="801.6" y="677" width="6.8" height="15.0" fill="rgb(0,234,68)" rx="2" ry="2" /> +<text x="804.65" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1025.1" y="597" width="1.4" height="15.0" fill="rgb(0,221,77)" rx="2" ry="2" /> +<text x="1028.14" y="607.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (40,404,040 samples, 0.39%)</title><rect x="66.5" y="149" width="5.4" height="15.0" fill="rgb(0,210,92)" rx="2" ry="2" /> +<text x="69.55" y="159.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.20%)</title><rect x="365.4" y="645" width="2.7" height="15.0" fill="rgb(0,193,98)" rx="2" ry="2" /> +<text x="368.43" y="655.5" ></text> +</g> +<g > +<title>ext4_rmdir.part.0 (101,010,100 samples, 0.98%)</title><rect x="276.6" y="549" width="13.4" height="15.0" fill="rgb(0,212,103)" rx="2" ry="2" /> +<text x="279.58" y="559.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="541.8" y="613" width="1.4" height="15.0" fill="rgb(0,232,42)" rx="2" ry="2" /> +<text x="544.80" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="551.2" y="677" width="1.4" height="15.0" fill="rgb(0,223,21)" rx="2" ry="2" /> +<text x="554.23" y="687.5" ></text> +</g> +<g > +<title>lh_table_lookup_entry (10,101,010 samples, 0.10%)</title><rect x="1321.3" y="789" width="1.4" height="15.0" fill="rgb(0,195,13)" rx="2" ry="2" /> +<text x="1324.34" y="799.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.10%)</title><rect x="417.9" y="693" width="1.4" height="15.0" fill="rgb(0,206,66)" rx="2" ry="2" /> +<text x="420.94" y="703.5" ></text> +</g> +<g > +<title>ext4_mkdir (40,404,040 samples, 0.39%)</title><rect x="676.4" y="533" width="5.4" height="15.0" fill="rgb(0,232,201)" rx="2" ry="2" /> +<text x="679.44" y="543.5" ></text> +</g> +<g > +<title>__d_lookup (10,101,010 samples, 0.10%)</title><rect x="1111.3" y="533" width="1.4" height="15.0" fill="rgb(0,205,97)" rx="2" ry="2" /> +<text x="1114.31" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="597" width="1.3" height="15.0" fill="rgb(0,235,179)" rx="2" ry="2" /> +<text x="1029.49" y="607.5" ></text> +</g> +<g > +<title>__check_heap_object (10,101,010 samples, 0.10%)</title><rect x="245.6" y="485" width="1.4" height="15.0" fill="rgb(0,198,180)" rx="2" ry="2" /> +<text x="248.61" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="788.2" y="709" width="1.3" height="15.0" fill="rgb(0,192,174)" rx="2" ry="2" /> +<text x="791.19" y="719.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="595.7" y="613" width="1.3" height="15.0" fill="rgb(0,228,127)" rx="2" ry="2" /> +<text x="598.66" y="623.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="240.2" y="645" width="1.4" height="15.0" fill="rgb(0,193,195)" rx="2" ry="2" /> +<text x="243.22" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="859.5" y="725" width="1.4" height="15.0" fill="rgb(0,215,89)" rx="2" ry="2" /> +<text x="862.54" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.10%)</title><rect x="751.8" y="645" width="1.4" height="15.0" fill="rgb(0,207,50)" rx="2" ry="2" /> +<text x="754.83" y="655.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="549" width="1.4" height="15.0" fill="rgb(0,214,141)" rx="2" ry="2" /> +<text x="1007.95" y="559.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.20%)</title><rect x="552.6" y="581" width="2.7" height="15.0" fill="rgb(0,230,160)" rx="2" ry="2" /> +<text x="555.58" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="109.6" y="885" width="1.4" height="15.0" fill="rgb(0,220,72)" rx="2" ry="2" /> +<text x="112.63" y="895.5" ></text> +</g> +<g > +<title>[libc.so.6] (484,848,480 samples, 4.68%)</title><rect x="43.7" y="933" width="64.6" height="15.0" fill="rgb(0,239,126)" rx="2" ry="2" /> +<text x="46.66" y="943.5" >[libc.s..</text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="1140.9" y="533" width="1.4" height="15.0" fill="rgb(0,192,37)" rx="2" ry="2" /> +<text x="1143.93" y="543.5" ></text> +</g> +<g > +<title>filemap_read (20,202,020 samples, 0.20%)</title><rect x="986.1" y="453" width="2.7" height="15.0" fill="rgb(0,227,113)" rx="2" ry="2" /> +<text x="989.10" y="463.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.20%)</title><rect x="601.0" y="533" width="2.7" height="15.0" fill="rgb(0,235,157)" rx="2" ry="2" /> +<text x="604.04" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1303.8" y="773" width="1.4" height="15.0" fill="rgb(0,226,194)" rx="2" ry="2" /> +<text x="1306.83" y="783.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="178.3" y="805" width="1.3" height="15.0" fill="rgb(0,229,35)" rx="2" ry="2" /> +<text x="181.29" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="988.8" y="597" width="1.3" height="15.0" fill="rgb(0,220,30)" rx="2" ry="2" /> +<text x="991.79" y="607.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="541.8" y="597" width="1.4" height="15.0" fill="rgb(0,208,170)" rx="2" ry="2" /> +<text x="544.80" y="607.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.10%)</title><rect x="1002.3" y="549" width="1.3" height="15.0" fill="rgb(0,203,93)" rx="2" ry="2" /> +<text x="1005.25" y="559.5" ></text> +</g> +<g > +<title>make_pollfds (10,101,010 samples, 0.10%)</title><rect x="74.6" y="853" width="1.4" height="15.0" fill="rgb(0,213,1)" rx="2" ry="2" /> +<text x="77.62" y="863.5" ></text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.10%)</title><rect x="982.1" y="597" width="1.3" height="15.0" fill="rgb(0,199,175)" rx="2" ry="2" /> +<text x="985.06" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.68%)</title><rect x="704.7" y="725" width="9.4" height="15.0" fill="rgb(0,204,52)" rx="2" ry="2" /> +<text x="707.71" y="735.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="228.1" y="421" width="1.4" height="15.0" fill="rgb(0,236,90)" rx="2" ry="2" /> +<text x="231.11" y="431.5" ></text> +</g> +<g > +<title>mb_find_extent (20,202,020 samples, 0.20%)</title><rect x="1150.4" y="485" width="2.6" height="15.0" fill="rgb(0,212,147)" rx="2" ry="2" /> +<text x="1153.35" y="495.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="1087.1" y="693" width="1.3" height="15.0" fill="rgb(0,222,209)" rx="2" ry="2" /> +<text x="1090.07" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (303,030,300 samples, 2.93%)</title><rect x="623.9" y="709" width="40.4" height="15.0" fill="rgb(0,199,126)" rx="2" ry="2" /> +<text x="626.93" y="719.5" >[li..</text> +</g> +<g > +<title>json_object_put (10,101,010 samples, 0.10%)</title><rect x="1322.7" y="853" width="1.3" height="15.0" fill="rgb(0,233,8)" rx="2" ry="2" /> +<text x="1325.68" y="863.5" ></text> +</g> +<g > +<title>unlink_cb (393,939,390 samples, 3.80%)</title><rect x="273.9" y="693" width="52.5" height="15.0" fill="rgb(0,217,57)" rx="2" ry="2" /> +<text x="276.88" y="703.5" >unlin..</text> +</g> +<g > +<title>tcp_event_new_data_sent (20,202,020 samples, 0.20%)</title><rect x="22.1" y="629" width="2.7" height="15.0" fill="rgb(0,213,182)" rx="2" ry="2" /> +<text x="25.12" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="532.4" y="613" width="2.7" height="15.0" fill="rgb(0,203,55)" rx="2" ry="2" /> +<text x="535.38" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="698.0" y="597" width="2.7" height="15.0" fill="rgb(0,213,130)" rx="2" ry="2" /> +<text x="700.98" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="991.5" y="581" width="5.4" height="15.0" fill="rgb(0,237,82)" rx="2" ry="2" /> +<text x="994.48" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (141,414,140 samples, 1.37%)</title><rect x="1115.3" y="661" width="18.9" height="15.0" fill="rgb(0,222,195)" rx="2" ry="2" /> +<text x="1118.35" y="671.5" ></text> +</g> +<g > +<title>ip_local_deliver (30,303,030 samples, 0.29%)</title><rect x="16.7" y="357" width="4.1" height="15.0" fill="rgb(0,229,35)" rx="2" ry="2" /> +<text x="19.73" y="367.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.10%)</title><rect x="633.4" y="533" width="1.3" height="15.0" fill="rgb(0,196,156)" rx="2" ry="2" /> +<text x="636.36" y="543.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.10%)</title><rect x="680.5" y="469" width="1.3" height="15.0" fill="rgb(0,233,146)" rx="2" ry="2" /> +<text x="683.48" y="479.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.10%)</title><rect x="353.3" y="549" width="1.4" height="15.0" fill="rgb(0,229,67)" rx="2" ry="2" /> +<text x="356.32" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.20%)</title><rect x="681.8" y="581" width="2.7" height="15.0" fill="rgb(0,226,161)" rx="2" ry="2" /> +<text x="684.82" y="591.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="1357.7" y="757" width="1.3" height="15.0" fill="rgb(0,191,43)" rx="2" ry="2" /> +<text x="1360.69" y="767.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="461.0" y="693" width="1.4" height="15.0" fill="rgb(0,231,105)" rx="2" ry="2" /> +<text x="464.02" y="703.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.20%)</title><rect x="601.0" y="549" width="2.7" height="15.0" fill="rgb(0,197,21)" rx="2" ry="2" /> +<text x="604.04" y="559.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="189.1" y="741" width="1.3" height="15.0" fill="rgb(0,207,192)" rx="2" ry="2" /> +<text x="192.06" y="751.5" ></text> +</g> +<g > +<title>ext4_alloc_inode (10,101,010 samples, 0.10%)</title><rect x="1018.4" y="533" width="1.4" height="15.0" fill="rgb(0,209,183)" rx="2" ry="2" /> +<text x="1021.41" y="543.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.10%)</title><rect x="419.3" y="597" width="1.3" height="15.0" fill="rgb(0,223,23)" rx="2" ry="2" /> +<text x="422.29" y="607.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="424.7" y="661" width="1.3" height="15.0" fill="rgb(0,221,4)" rx="2" ry="2" /> +<text x="427.67" y="671.5" ></text> +</g> +<g > +<title>do_writepages (50,505,050 samples, 0.49%)</title><rect x="653.6" y="501" width="6.7" height="15.0" fill="rgb(0,205,194)" rx="2" ry="2" /> +<text x="656.55" y="511.5" ></text> +</g> +<g > +<title>json_object_put (20,202,020 samples, 0.20%)</title><rect x="1359.0" y="805" width="2.7" height="15.0" fill="rgb(0,224,102)" rx="2" ry="2" /> +<text x="1362.03" y="815.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="1248.6" y="693" width="1.4" height="15.0" fill="rgb(0,190,85)" rx="2" ry="2" /> +<text x="1251.63" y="703.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="567.4" y="661" width="1.3" height="15.0" fill="rgb(0,192,81)" rx="2" ry="2" /> +<text x="570.39" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="221.4" y="613" width="1.3" height="15.0" fill="rgb(0,201,17)" rx="2" ry="2" /> +<text x="224.38" y="623.5" ></text> +</g> +<g > +<title>do_get_write_access (10,101,010 samples, 0.10%)</title><rect x="269.8" y="485" width="1.4" height="15.0" fill="rgb(0,215,205)" rx="2" ry="2" /> +<text x="272.84" y="495.5" ></text> +</g> +<g > +<title>ext4_end_bio (10,101,010 samples, 0.10%)</title><rect x="213.3" y="293" width="1.3" height="15.0" fill="rgb(0,230,101)" rx="2" ry="2" /> +<text x="216.30" y="303.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (141,414,140 samples, 1.37%)</title><rect x="949.7" y="597" width="18.9" height="15.0" fill="rgb(0,225,146)" rx="2" ry="2" /> +<text x="952.75" y="607.5" ></text> +</g> +<g > +<title>user_path_at_empty (80,808,080 samples, 0.78%)</title><rect x="178.3" y="853" width="10.8" height="15.0" fill="rgb(0,237,131)" rx="2" ry="2" /> +<text x="181.29" y="863.5" ></text> +</g> +<g > +<title>tcp_send_fin (70,707,070 samples, 0.68%)</title><rect x="63.9" y="549" width="9.4" height="15.0" fill="rgb(0,231,76)" rx="2" ry="2" /> +<text x="66.85" y="559.5" ></text> +</g> +<g > +<title>vfs_mkdir (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="709" width="4.0" height="15.0" fill="rgb(0,221,60)" rx="2" ry="2" /> +<text x="1255.67" y="719.5" ></text> +</g> +<g > +<title>ext4_readdir (10,101,010 samples, 0.10%)</title><rect x="265.8" y="597" width="1.4" height="15.0" fill="rgb(0,207,190)" rx="2" ry="2" /> +<text x="268.80" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="739.7" y="629" width="1.4" height="15.0" fill="rgb(0,226,167)" rx="2" ry="2" /> +<text x="742.72" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,373,737,360 samples, 13.27%)</title><rect x="201.2" y="757" width="183.1" height="15.0" fill="rgb(0,197,156)" rx="2" ry="2" /> +<text x="204.18" y="767.5" >[libc.so.6]</text> +</g> +<g > +<title>do_fchmodat (20,202,020 samples, 0.20%)</title><rect x="1006.3" y="645" width="2.7" height="15.0" fill="rgb(0,208,203)" rx="2" ry="2" /> +<text x="1009.29" y="655.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.10%)</title><rect x="788.2" y="677" width="1.3" height="15.0" fill="rgb(0,223,36)" rx="2" ry="2" /> +<text x="791.19" y="687.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.20%)</title><rect x="735.7" y="645" width="2.7" height="15.0" fill="rgb(0,222,101)" rx="2" ry="2" /> +<text x="738.68" y="655.5" ></text> +</g> +<g > +<title>__slab_free (10,101,010 samples, 0.10%)</title><rect x="393.7" y="565" width="1.4" height="15.0" fill="rgb(0,216,6)" rx="2" ry="2" /> +<text x="396.71" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="754.5" y="597" width="1.4" height="15.0" fill="rgb(0,195,59)" rx="2" ry="2" /> +<text x="757.53" y="607.5" ></text> +</g> +<g > +<title>git_config_snapshot (20,202,020 samples, 0.20%)</title><rect x="796.3" y="709" width="2.7" height="15.0" fill="rgb(0,218,41)" rx="2" ry="2" /> +<text x="799.26" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="400.4" y="773" width="1.4" height="15.0" fill="rgb(0,214,69)" rx="2" ry="2" /> +<text x="403.44" y="783.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="691.2" y="517" width="1.4" height="15.0" fill="rgb(0,198,182)" rx="2" ry="2" /> +<text x="694.25" y="527.5" ></text> +</g> +<g > +<title>ipv6_sock_mc_close (10,101,010 samples, 0.10%)</title><rect x="27.5" y="677" width="1.3" height="15.0" fill="rgb(0,206,45)" rx="2" ry="2" /> +<text x="30.50" y="687.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="700.7" y="533" width="1.3" height="15.0" fill="rgb(0,236,167)" rx="2" ry="2" /> +<text x="703.67" y="543.5" ></text> +</g> +<g > +<title>git_config_add_backend (40,404,040 samples, 0.39%)</title><rect x="1182.7" y="725" width="5.3" height="15.0" fill="rgb(0,205,176)" rx="2" ry="2" /> +<text x="1185.66" y="735.5" ></text> +</g> +<g > +<title>str2hashbuf_signed (10,101,010 samples, 0.10%)</title><rect x="265.8" y="501" width="1.4" height="15.0" fill="rgb(0,233,53)" rx="2" ry="2" /> +<text x="268.80" y="511.5" ></text> +</g> +<g > +<title>copy_pte_range (40,404,040 samples, 0.39%)</title><rect x="1283.6" y="613" width="5.4" height="15.0" fill="rgb(0,193,66)" rx="2" ry="2" /> +<text x="1286.64" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="434.1" y="549" width="1.3" height="15.0" fill="rgb(0,236,64)" rx="2" ry="2" /> +<text x="437.10" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="874.4" y="597" width="1.3" height="15.0" fill="rgb(0,204,115)" rx="2" ry="2" /> +<text x="877.35" y="607.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="883.8" y="613" width="1.3" height="15.0" fill="rgb(0,227,97)" rx="2" ry="2" /> +<text x="886.78" y="623.5" ></text> +</g> +<g > +<title>tcp_rcv_established (10,101,010 samples, 0.10%)</title><rect x="1330.8" y="245" width="1.3" height="15.0" fill="rgb(0,216,135)" rx="2" ry="2" /> +<text x="1333.76" y="255.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="887.8" y="597" width="1.4" height="15.0" fill="rgb(0,216,169)" rx="2" ry="2" /> +<text x="890.81" y="607.5" ></text> +</g> +<g > +<title>ima_file_check (10,101,010 samples, 0.10%)</title><rect x="1000.9" y="565" width="1.4" height="15.0" fill="rgb(0,229,140)" rx="2" ry="2" /> +<text x="1003.91" y="575.5" ></text> +</g> +<g > +<title>sd_init_command (10,101,010 samples, 0.10%)</title><rect x="766.6" y="229" width="1.4" height="15.0" fill="rgb(0,236,68)" rx="2" ry="2" /> +<text x="769.64" y="239.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.10%)</title><rect x="198.5" y="725" width="1.3" height="15.0" fill="rgb(0,195,66)" rx="2" ry="2" /> +<text x="201.49" y="735.5" ></text> +</g> +<g > +<title>write (60,606,060 samples, 0.59%)</title><rect x="96.2" y="773" width="8.0" height="15.0" fill="rgb(0,234,91)" rx="2" ry="2" /> +<text x="99.17" y="783.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="895.9" y="597" width="1.3" height="15.0" fill="rgb(0,205,10)" rx="2" ry="2" /> +<text x="898.89" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="778.8" y="517" width="1.3" height="15.0" fill="rgb(0,210,208)" rx="2" ry="2" /> +<text x="781.76" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="562.0" y="709" width="1.3" height="15.0" fill="rgb(0,196,31)" rx="2" ry="2" /> +<text x="565.00" y="719.5" ></text> +</g> +<g > +<title>ext4_unlink (10,101,010 samples, 0.10%)</title><rect x="982.1" y="565" width="1.3" height="15.0" fill="rgb(0,214,177)" rx="2" ry="2" /> +<text x="985.06" y="575.5" ></text> +</g> +<g > +<title>__rseq_handle_notify_resume (10,101,010 samples, 0.10%)</title><rect x="1302.5" y="693" width="1.3" height="15.0" fill="rgb(0,191,201)" rx="2" ry="2" /> +<text x="1305.49" y="703.5" ></text> +</g> +<g > +<title>tcp_v4_conn_request (20,202,020 samples, 0.20%)</title><rect x="1381.9" y="309" width="2.7" height="15.0" fill="rgb(0,213,106)" rx="2" ry="2" /> +<text x="1384.92" y="319.5" ></text> +</g> +<g > +<title>__ext4_new_inode (40,404,040 samples, 0.39%)</title><rect x="952.4" y="501" width="5.4" height="15.0" fill="rgb(0,230,28)" rx="2" ry="2" /> +<text x="955.44" y="511.5" ></text> +</g> +<g > +<title>__fsnotify_inode_delete (10,101,010 samples, 0.10%)</title><rect x="343.9" y="565" width="1.3" height="15.0" fill="rgb(0,220,93)" rx="2" ry="2" /> +<text x="346.89" y="575.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="998.2" y="517" width="1.4" height="15.0" fill="rgb(0,215,52)" rx="2" ry="2" /> +<text x="1001.21" y="527.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.10%)</title><rect x="807.0" y="597" width="1.4" height="15.0" fill="rgb(0,221,26)" rx="2" ry="2" /> +<text x="810.03" y="607.5" ></text> +</g> +<g > +<title>blk_mq_run_hw_queue (10,101,010 samples, 0.10%)</title><rect x="816.5" y="421" width="1.3" height="15.0" fill="rgb(0,228,88)" rx="2" ry="2" /> +<text x="819.46" y="431.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="693.9" y="661" width="2.7" height="15.0" fill="rgb(0,222,148)" rx="2" ry="2" /> +<text x="696.94" y="671.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="917.4" y="437" width="1.4" height="15.0" fill="rgb(0,231,99)" rx="2" ry="2" /> +<text x="920.43" y="447.5" ></text> +</g> +<g > +<title>ksys_write (50,505,050 samples, 0.49%)</title><rect x="1093.8" y="581" width="6.7" height="15.0" fill="rgb(0,207,91)" rx="2" ry="2" /> +<text x="1096.80" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="976.7" y="629" width="2.7" height="15.0" fill="rgb(0,226,35)" rx="2" ry="2" /> +<text x="979.67" y="639.5" ></text> +</g> +<g > +<title>fsnotify (10,101,010 samples, 0.10%)</title><rect x="237.5" y="501" width="1.4" height="15.0" fill="rgb(0,218,207)" rx="2" ry="2" /> +<text x="240.53" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="834.0" y="645" width="2.7" height="15.0" fill="rgb(0,198,169)" rx="2" ry="2" /> +<text x="836.96" y="655.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.10%)</title><rect x="805.7" y="597" width="1.3" height="15.0" fill="rgb(0,198,205)" rx="2" ry="2" /> +<text x="808.69" y="607.5" ></text> +</g> +<g > +<title>do_renameat2 (40,404,040 samples, 0.39%)</title><rect x="436.8" y="661" width="5.4" height="15.0" fill="rgb(0,209,209)" rx="2" ry="2" /> +<text x="439.79" y="671.5" ></text> +</g> +<g > +<title>ktime_get (10,101,010 samples, 0.10%)</title><rect x="842.0" y="405" width="1.4" height="15.0" fill="rgb(0,234,176)" rx="2" ry="2" /> +<text x="845.04" y="415.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="483.9" y="533" width="1.4" height="15.0" fill="rgb(0,192,160)" rx="2" ry="2" /> +<text x="486.91" y="543.5" ></text> +</g> +<g > +<title>__netif_receive_skb (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="373" width="1.4" height="15.0" fill="rgb(0,194,53)" rx="2" ry="2" /> +<text x="1376.84" y="383.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.78%)</title><rect x="450.3" y="677" width="10.7" height="15.0" fill="rgb(0,233,97)" rx="2" ry="2" /> +<text x="453.25" y="687.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="404.5" y="773" width="1.3" height="15.0" fill="rgb(0,210,137)" rx="2" ry="2" /> +<text x="407.48" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="540.5" y="741" width="8.0" height="15.0" fill="rgb(0,198,61)" rx="2" ry="2" /> +<text x="543.46" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="443.5" y="725" width="5.4" height="15.0" fill="rgb(0,213,196)" rx="2" ry="2" /> +<text x="446.52" y="735.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="722.2" y="629" width="1.4" height="15.0" fill="rgb(0,224,6)" rx="2" ry="2" /> +<text x="725.21" y="639.5" ></text> +</g> +<g > +<title>rename (90,909,090 samples, 0.88%)</title><rect x="762.6" y="661" width="12.1" height="15.0" fill="rgb(0,214,191)" rx="2" ry="2" /> +<text x="765.60" y="671.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (30,303,030 samples, 0.29%)</title><rect x="294.1" y="501" width="4.0" height="15.0" fill="rgb(0,216,140)" rx="2" ry="2" /> +<text x="297.08" y="511.5" ></text> +</g> +<g > +<title>git_config_free (20,202,020 samples, 0.20%)</title><rect x="825.9" y="757" width="2.7" height="15.0" fill="rgb(0,238,34)" rx="2" ry="2" /> +<text x="828.88" y="767.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="1212.3" y="533" width="1.3" height="15.0" fill="rgb(0,212,2)" rx="2" ry="2" /> +<text x="1215.28" y="543.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (40,404,040 samples, 0.39%)</title><rect x="1336.1" y="693" width="5.4" height="15.0" fill="rgb(0,217,163)" rx="2" ry="2" /> +<text x="1339.15" y="703.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.10%)</title><rect x="431.4" y="597" width="1.4" height="15.0" fill="rgb(0,191,142)" rx="2" ry="2" /> +<text x="434.40" y="607.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.10%)</title><rect x="548.5" y="693" width="1.4" height="15.0" fill="rgb(0,221,145)" rx="2" ry="2" /> +<text x="551.54" y="703.5" ></text> +</g> +<g > +<title>from_kgid (10,101,010 samples, 0.10%)</title><rect x="230.8" y="421" width="1.3" height="15.0" fill="rgb(0,228,196)" rx="2" ry="2" /> +<text x="233.80" y="431.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.10%)</title><rect x="220.0" y="565" width="1.4" height="15.0" fill="rgb(0,205,35)" rx="2" ry="2" /> +<text x="223.03" y="575.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="361.4" y="597" width="1.3" height="15.0" fill="rgb(0,235,205)" rx="2" ry="2" /> +<text x="364.40" y="607.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="613" width="1.4" height="15.0" fill="rgb(0,211,179)" rx="2" ry="2" /> +<text x="1007.95" y="623.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="1015.7" y="533" width="1.4" height="15.0" fill="rgb(0,224,187)" rx="2" ry="2" /> +<text x="1018.72" y="543.5" ></text> +</g> +<g > +<title>user_path_at_empty (30,303,030 samples, 0.29%)</title><rect x="242.9" y="581" width="4.1" height="15.0" fill="rgb(0,222,44)" rx="2" ry="2" /> +<text x="245.92" y="591.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="112.3" y="789" width="1.4" height="15.0" fill="rgb(0,239,125)" rx="2" ry="2" /> +<text x="115.32" y="799.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="1243.2" y="677" width="1.4" height="15.0" fill="rgb(0,194,121)" rx="2" ry="2" /> +<text x="1246.25" y="687.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="1210.9" y="613" width="1.4" height="15.0" fill="rgb(0,213,16)" rx="2" ry="2" /> +<text x="1213.94" y="623.5" ></text> +</g> +<g > +<title>readdir64 (10,101,010 samples, 0.10%)</title><rect x="207.9" y="629" width="1.4" height="15.0" fill="rgb(0,205,208)" rx="2" ry="2" /> +<text x="210.91" y="639.5" ></text> +</g> +<g > +<title>jsonrpc_request_create_params (10,101,010 samples, 0.10%)</title><rect x="1321.3" y="837" width="1.4" height="15.0" fill="rgb(0,202,16)" rx="2" ry="2" /> +<text x="1324.34" y="847.5" ></text> +</g> +<g > +<title>d_lru_del (10,101,010 samples, 0.10%)</title><rect x="360.0" y="549" width="1.4" height="15.0" fill="rgb(0,220,164)" rx="2" ry="2" /> +<text x="363.05" y="559.5" ></text> +</g> +<g > +<title>json_object_to_json_string_length (10,101,010 samples, 0.10%)</title><rect x="1371.2" y="821" width="1.3" height="15.0" fill="rgb(0,227,202)" rx="2" ry="2" /> +<text x="1374.15" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="909.4" y="693" width="1.3" height="15.0" fill="rgb(0,213,124)" rx="2" ry="2" /> +<text x="912.36" y="703.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (30,303,030 samples, 0.29%)</title><rect x="769.3" y="453" width="4.1" height="15.0" fill="rgb(0,236,122)" rx="2" ry="2" /> +<text x="772.34" y="463.5" ></text> +</g> +<g > +<title>do_renameat2 (50,505,050 samples, 0.49%)</title><rect x="1027.8" y="597" width="6.8" height="15.0" fill="rgb(0,217,167)" rx="2" ry="2" /> +<text x="1030.83" y="607.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="218.7" y="405" width="1.3" height="15.0" fill="rgb(0,238,15)" rx="2" ry="2" /> +<text x="221.68" y="415.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="280.6" y="501" width="1.4" height="15.0" fill="rgb(0,213,94)" rx="2" ry="2" /> +<text x="283.61" y="511.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="949.7" y="469" width="1.4" height="15.0" fill="rgb(0,201,114)" rx="2" ry="2" /> +<text x="952.75" y="479.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="621.2" y="661" width="2.7" height="15.0" fill="rgb(0,217,59)" rx="2" ry="2" /> +<text x="624.24" y="671.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="129.8" y="773" width="1.4" height="15.0" fill="rgb(0,191,3)" rx="2" ry="2" /> +<text x="132.82" y="783.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.10%)</title><rect x="284.7" y="373" width="1.3" height="15.0" fill="rgb(0,203,31)" rx="2" ry="2" /> +<text x="287.65" y="383.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="693.9" y="549" width="1.4" height="15.0" fill="rgb(0,191,123)" rx="2" ry="2" /> +<text x="696.94" y="559.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (10,101,010 samples, 0.10%)</title><rect x="1325.4" y="757" width="1.3" height="15.0" fill="rgb(0,207,46)" rx="2" ry="2" /> +<text x="1328.38" y="767.5" ></text> +</g> +<g > +<title>apparmor_file_alloc_security (10,101,010 samples, 0.10%)</title><rect x="128.5" y="773" width="1.3" height="15.0" fill="rgb(0,226,94)" rx="2" ry="2" /> +<text x="131.48" y="783.5" ></text> +</g> +<g > +<title>vfs_unlink (30,303,030 samples, 0.29%)</title><rect x="396.4" y="661" width="4.0" height="15.0" fill="rgb(0,237,50)" rx="2" ry="2" /> +<text x="399.40" y="671.5" ></text> +</g> +<g > +<title>file_close (10,101,010 samples, 0.10%)</title><rect x="27.5" y="869" width="1.3" height="15.0" fill="rgb(0,235,75)" rx="2" ry="2" /> +<text x="30.50" y="879.5" ></text> +</g> +<g > +<title>apparmor_path_link (10,101,010 samples, 0.10%)</title><rect x="692.6" y="597" width="1.3" height="15.0" fill="rgb(0,229,108)" rx="2" ry="2" /> +<text x="695.60" y="607.5" ></text> +</g> +<g > +<title>do_unlinkat (70,707,070 samples, 0.68%)</title><rect x="248.3" y="581" width="9.4" height="15.0" fill="rgb(0,214,118)" rx="2" ry="2" /> +<text x="251.30" y="591.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (30,303,030 samples, 0.29%)</title><rect x="1124.8" y="309" width="4.0" height="15.0" fill="rgb(0,229,59)" rx="2" ry="2" /> +<text x="1127.77" y="319.5" ></text> +</g> +<g > +<title>create_empty_buffers (10,101,010 samples, 0.10%)</title><rect x="681.8" y="437" width="1.4" height="15.0" fill="rgb(0,230,10)" rx="2" ry="2" /> +<text x="684.82" y="447.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="356.0" y="517" width="1.4" height="15.0" fill="rgb(0,237,101)" rx="2" ry="2" /> +<text x="359.01" y="527.5" ></text> +</g> +<g > +<title>sd_init_command (10,101,010 samples, 0.10%)</title><rect x="1127.5" y="261" width="1.3" height="15.0" fill="rgb(0,227,4)" rx="2" ry="2" /> +<text x="1130.46" y="271.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="481.2" y="677" width="1.4" height="15.0" fill="rgb(0,192,159)" rx="2" ry="2" /> +<text x="484.22" y="687.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="245.6" y="549" width="1.4" height="15.0" fill="rgb(0,213,88)" rx="2" ry="2" /> +<text x="248.61" y="559.5" ></text> +</g> +<g > +<title>rmdir (60,606,060 samples, 0.59%)</title><rect x="228.1" y="629" width="8.1" height="15.0" fill="rgb(0,230,162)" rx="2" ry="2" /> +<text x="231.11" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.68%)</title><rect x="1221.7" y="773" width="9.4" height="15.0" fill="rgb(0,217,152)" rx="2" ry="2" /> +<text x="1224.71" y="783.5" ></text> +</g> +<g > +<title>evict (20,202,020 samples, 0.20%)</title><rect x="1041.3" y="629" width="2.7" height="15.0" fill="rgb(0,216,140)" rx="2" ry="2" /> +<text x="1044.30" y="639.5" ></text> +</g> +<g > +<title>ext4_orphan_del (10,101,010 samples, 0.10%)</title><rect x="1119.4" y="485" width="1.3" height="15.0" fill="rgb(0,225,91)" rx="2" ry="2" /> +<text x="1122.39" y="495.5" ></text> +</g> +<g > +<title>new_slab (10,101,010 samples, 0.10%)</title><rect x="326.4" y="549" width="1.3" height="15.0" fill="rgb(0,225,79)" rx="2" ry="2" /> +<text x="329.39" y="559.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="718.2" y="405" width="1.3" height="15.0" fill="rgb(0,235,128)" rx="2" ry="2" /> +<text x="721.18" y="415.5" ></text> +</g> +<g > +<title>tcp_write_xmit (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="613" width="5.4" height="15.0" fill="rgb(0,223,117)" rx="2" ry="2" /> +<text x="1331.07" y="623.5" ></text> +</g> +<g > +<title>__pagevec_release (10,101,010 samples, 0.10%)</title><rect x="846.1" y="469" width="1.3" height="15.0" fill="rgb(0,199,66)" rx="2" ry="2" /> +<text x="849.08" y="479.5" ></text> +</g> +<g > +<title>__dentry_kill (30,303,030 samples, 0.29%)</title><rect x="838.0" y="581" width="4.0" height="15.0" fill="rgb(0,210,0)" rx="2" ry="2" /> +<text x="841.00" y="591.5" ></text> +</g> +<g > +<title>ext4_writepages (50,505,050 samples, 0.49%)</title><rect x="653.6" y="485" width="6.7" height="15.0" fill="rgb(0,212,41)" rx="2" ry="2" /> +<text x="656.55" y="495.5" ></text> +</g> +<g > +<title>git_remote_fetch (1,070,707,060 samples, 10.34%)</title><rect x="856.8" y="789" width="142.8" height="15.0" fill="rgb(0,236,124)" rx="2" ry="2" /> +<text x="859.85" y="799.5" >git_remote_fetch</text> +</g> +<g > +<title>fstatat (50,505,050 samples, 0.49%)</title><rect x="241.6" y="677" width="6.7" height="15.0" fill="rgb(0,209,16)" rx="2" ry="2" /> +<text x="244.57" y="687.5" ></text> +</g> +<g > +<title>rcu_read_unlock_strict (10,101,010 samples, 0.10%)</title><rect x="921.5" y="453" width="1.3" height="15.0" fill="rgb(0,225,38)" rx="2" ry="2" /> +<text x="924.47" y="463.5" ></text> +</g> +<g > +<title>git_odb_backend_pack (40,404,040 samples, 0.39%)</title><rect x="914.7" y="725" width="5.4" height="15.0" fill="rgb(0,237,143)" rx="2" ry="2" /> +<text x="917.74" y="735.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (10,101,010 samples, 0.10%)</title><rect x="809.7" y="485" width="1.4" height="15.0" fill="rgb(0,216,154)" rx="2" ry="2" /> +<text x="812.73" y="495.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.10%)</title><rect x="1122.1" y="485" width="1.3" height="15.0" fill="rgb(0,231,207)" rx="2" ry="2" /> +<text x="1125.08" y="495.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.10%)</title><rect x="691.2" y="501" width="1.4" height="15.0" fill="rgb(0,200,92)" rx="2" ry="2" /> +<text x="694.25" y="511.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (30,303,030 samples, 0.29%)</title><rect x="16.7" y="341" width="4.1" height="15.0" fill="rgb(0,207,163)" rx="2" ry="2" /> +<text x="19.73" y="351.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="575.5" y="469" width="1.3" height="15.0" fill="rgb(0,195,200)" rx="2" ry="2" /> +<text x="578.46" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.49%)</title><rect x="1080.3" y="629" width="6.8" height="15.0" fill="rgb(0,226,47)" rx="2" ry="2" /> +<text x="1083.34" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="715.5" y="709" width="5.4" height="15.0" fill="rgb(0,201,62)" rx="2" ry="2" /> +<text x="718.48" y="719.5" ></text> +</g> +<g > +<title>sock_recvmsg (20,202,020 samples, 0.20%)</title><rect x="1368.5" y="629" width="2.7" height="15.0" fill="rgb(0,234,181)" rx="2" ry="2" /> +<text x="1371.46" y="639.5" ></text> +</g> +<g > +<title>xas_load (10,101,010 samples, 0.10%)</title><rect x="1083.0" y="341" width="1.4" height="15.0" fill="rgb(0,201,49)" rx="2" ry="2" /> +<text x="1086.03" y="351.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="413.9" y="789" width="1.3" height="15.0" fill="rgb(0,220,2)" rx="2" ry="2" /> +<text x="416.90" y="799.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="1220.4" y="533" width="1.3" height="15.0" fill="rgb(0,215,9)" rx="2" ry="2" /> +<text x="1223.36" y="543.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="715.5" y="485" width="1.3" height="15.0" fill="rgb(0,209,125)" rx="2" ry="2" /> +<text x="718.48" y="495.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (20,202,020 samples, 0.20%)</title><rect x="376.2" y="581" width="2.7" height="15.0" fill="rgb(0,216,198)" rx="2" ry="2" /> +<text x="379.20" y="591.5" ></text> +</g> +<g > +<title>filemap_flush (50,505,050 samples, 0.49%)</title><rect x="653.6" y="533" width="6.7" height="15.0" fill="rgb(0,214,190)" rx="2" ry="2" /> +<text x="656.55" y="543.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="905.3" y="565" width="1.4" height="15.0" fill="rgb(0,203,108)" rx="2" ry="2" /> +<text x="908.32" y="575.5" ></text> +</g> +<g > +<title>__libc_start_main (9,010,100,920 samples, 87.02%)</title><rect x="189.1" y="949" width="1200.9" height="15.0" fill="rgb(0,233,72)" rx="2" ry="2" /> +<text x="192.06" y="959.5" >__libc_start_main</text> +</g> +<g > +<title>vfs_read (20,202,020 samples, 0.20%)</title><rect x="1368.5" y="677" width="2.7" height="15.0" fill="rgb(0,211,68)" rx="2" ry="2" /> +<text x="1371.46" y="687.5" ></text> +</g> +<g > +<title>signal_block_all (20,202,020 samples, 0.20%)</title><rect x="81.4" y="789" width="2.6" height="15.0" fill="rgb(0,206,97)" rx="2" ry="2" /> +<text x="84.36" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="856.8" y="677" width="2.7" height="15.0" fill="rgb(0,209,171)" rx="2" ry="2" /> +<text x="859.85" y="687.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="1201.5" y="645" width="1.4" height="15.0" fill="rgb(0,236,183)" rx="2" ry="2" /> +<text x="1204.51" y="655.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="261" width="1.4" height="15.0" fill="rgb(0,211,77)" rx="2" ry="2" /> +<text x="1379.54" y="271.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="160.8" y="629" width="1.3" height="15.0" fill="rgb(0,206,15)" rx="2" ry="2" /> +<text x="163.79" y="639.5" ></text> +</g> +<g > +<title>lh_table_lookup_ex (10,101,010 samples, 0.10%)</title><rect x="1321.3" y="805" width="1.4" height="15.0" fill="rgb(0,204,121)" rx="2" ry="2" /> +<text x="1324.34" y="815.5" ></text> +</g> +<g > +<title>strerror_l (10,101,010 samples, 0.10%)</title><rect x="761.3" y="517" width="1.3" height="15.0" fill="rgb(0,195,198)" rx="2" ry="2" /> +<text x="764.26" y="527.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="746.4" y="485" width="1.4" height="15.0" fill="rgb(0,191,177)" rx="2" ry="2" /> +<text x="749.45" y="495.5" ></text> +</g> +<g > +<title>blk_mq_submit_bio (10,101,010 samples, 0.10%)</title><rect x="817.8" y="421" width="1.4" height="15.0" fill="rgb(0,198,32)" rx="2" ry="2" /> +<text x="820.80" y="431.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="663.0" y="677" width="1.3" height="15.0" fill="rgb(0,220,63)" rx="2" ry="2" /> +<text x="665.98" y="687.5" ></text> +</g> +<g > +<title>evict (70,707,070 samples, 0.68%)</title><rect x="350.6" y="581" width="9.4" height="15.0" fill="rgb(0,191,189)" rx="2" ry="2" /> +<text x="353.62" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="541.8" y="645" width="1.4" height="15.0" fill="rgb(0,222,184)" rx="2" ry="2" /> +<text x="544.80" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_write (30,303,030 samples, 0.29%)</title><rect x="685.9" y="597" width="4.0" height="15.0" fill="rgb(0,204,150)" rx="2" ry="2" /> +<text x="688.86" y="607.5" ></text> +</g> +<g > +<title>ext4_fc_track_template (10,101,010 samples, 0.10%)</title><rect x="253.7" y="485" width="1.3" height="15.0" fill="rgb(0,224,187)" rx="2" ry="2" /> +<text x="256.69" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="111.0" y="853" width="2.7" height="15.0" fill="rgb(0,195,138)" rx="2" ry="2" /> +<text x="113.98" y="863.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="1209.6" y="597" width="1.3" height="15.0" fill="rgb(0,190,4)" rx="2" ry="2" /> +<text x="1212.59" y="607.5" ></text> +</g> +<g > +<title>git_odb_read (60,606,060 samples, 0.59%)</title><rect x="540.5" y="773" width="8.0" height="15.0" fill="rgb(0,227,206)" rx="2" ry="2" /> +<text x="543.46" y="783.5" ></text> +</g> +<g > +<title>__skb_datagram_iter (10,101,010 samples, 0.10%)</title><rect x="1369.8" y="549" width="1.4" height="15.0" fill="rgb(0,215,131)" rx="2" ry="2" /> +<text x="1372.80" y="559.5" ></text> +</g> +<g > +<title>do_poll.constprop.0 (40,404,040 samples, 0.39%)</title><rect x="1352.3" y="773" width="5.4" height="15.0" fill="rgb(0,196,174)" rx="2" ry="2" /> +<text x="1355.30" y="783.5" ></text> +</g> +<g > +<title>ip_finish_output2 (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="501" width="2.7" height="15.0" fill="rgb(0,217,74)" rx="2" ry="2" /> +<text x="1341.84" y="511.5" ></text> +</g> +<g > +<title>security_inode_permission (10,101,010 samples, 0.10%)</title><rect x="718.2" y="373" width="1.3" height="15.0" fill="rgb(0,215,61)" rx="2" ry="2" /> +<text x="721.18" y="383.5" ></text> +</g> +<g > +<title>git_signature_now (20,202,020 samples, 0.20%)</title><rect x="461.0" y="757" width="2.7" height="15.0" fill="rgb(0,203,36)" rx="2" ry="2" /> +<text x="464.02" y="767.5" ></text> +</g> +<g > +<title>new_inode (20,202,020 samples, 0.20%)</title><rect x="154.1" y="741" width="2.7" height="15.0" fill="rgb(0,223,119)" rx="2" ry="2" /> +<text x="157.06" y="751.5" ></text> +</g> +<g > +<title>ext4_getblk (50,505,050 samples, 0.49%)</title><rect x="579.5" y="517" width="6.7" height="15.0" fill="rgb(0,228,197)" rx="2" ry="2" /> +<text x="582.50" y="527.5" ></text> +</g> +<g > +<title>blk_flush_plug_list (10,101,010 samples, 0.10%)</title><rect x="816.5" y="469" width="1.3" height="15.0" fill="rgb(0,218,122)" rx="2" ry="2" /> +<text x="819.46" y="479.5" ></text> +</g> +<g > +<title>ip_rcv (30,303,030 samples, 0.29%)</title><rect x="1328.1" y="341" width="4.0" height="15.0" fill="rgb(0,239,155)" rx="2" ry="2" /> +<text x="1331.07" y="351.5" ></text> +</g> +<g > +<title>net_close (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="869" width="2.6" height="15.0" fill="rgb(0,196,183)" rx="2" ry="2" /> +<text x="1336.45" y="879.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.10%)</title><rect x="687.2" y="405" width="1.4" height="15.0" fill="rgb(0,226,3)" rx="2" ry="2" /> +<text x="690.21" y="415.5" ></text> +</g> +<g > +<title>init_conntrack.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="1344.2" y="549" width="1.4" height="15.0" fill="rgb(0,222,137)" rx="2" ry="2" /> +<text x="1347.22" y="559.5" ></text> +</g> +<g > +<title>__alloc_file (30,303,030 samples, 0.29%)</title><rect x="1213.6" y="517" width="4.1" height="15.0" fill="rgb(0,212,94)" rx="2" ry="2" /> +<text x="1216.63" y="527.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="1021.1" y="645" width="1.3" height="15.0" fill="rgb(0,235,46)" rx="2" ry="2" /> +<text x="1024.10" y="655.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="485" width="1.3" height="15.0" fill="rgb(0,232,195)" rx="2" ry="2" /> +<text x="1029.49" y="495.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="373" width="1.4" height="15.0" fill="rgb(0,226,44)" rx="2" ry="2" /> +<text x="1007.95" y="383.5" ></text> +</g> +<g > +<title>sk_prot_alloc (10,101,010 samples, 0.10%)</title><rect x="1377.9" y="181" width="1.3" height="15.0" fill="rgb(0,217,54)" rx="2" ry="2" /> +<text x="1380.88" y="191.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1188.0" y="709" width="1.4" height="15.0" fill="rgb(0,238,124)" rx="2" ry="2" /> +<text x="1191.05" y="719.5" ></text> +</g> +<g > +<title>close_fd (10,101,010 samples, 0.10%)</title><rect x="746.4" y="517" width="1.4" height="15.0" fill="rgb(0,239,108)" rx="2" ry="2" /> +<text x="749.45" y="527.5" ></text> +</g> +<g > +<title>dentry_kill (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="565" width="1.4" height="15.0" fill="rgb(0,210,24)" rx="2" ry="2" /> +<text x="1030.83" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="434.1" y="645" width="1.3" height="15.0" fill="rgb(0,238,1)" rx="2" ry="2" /> +<text x="437.10" y="655.5" ></text> +</g> +<g > +<title>__fput (20,202,020 samples, 0.20%)</title><rect x="1375.2" y="709" width="2.7" height="15.0" fill="rgb(0,215,159)" rx="2" ry="2" /> +<text x="1378.19" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1243.2" y="645" width="1.4" height="15.0" fill="rgb(0,232,67)" rx="2" ry="2" /> +<text x="1246.25" y="655.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (30,303,030 samples, 0.29%)</title><rect x="436.8" y="597" width="4.0" height="15.0" fill="rgb(0,204,164)" rx="2" ry="2" /> +<text x="439.79" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="984.8" y="629" width="5.3" height="15.0" fill="rgb(0,210,9)" rx="2" ry="2" /> +<text x="987.75" y="639.5" ></text> +</g> +<g > +<title>all (10,353,535,250 samples, 100%)</title><rect x="10.0" y="997" width="1380.0" height="15.0" fill="rgb(0,200,49)" rx="2" ry="2" /> +<text x="13.00" y="1007.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="350.6" y="549" width="2.7" height="15.0" fill="rgb(0,203,159)" rx="2" ry="2" /> +<text x="353.62" y="559.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="366.8" y="629" width="1.3" height="15.0" fill="rgb(0,199,145)" rx="2" ry="2" /> +<text x="369.78" y="639.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="571.4" y="517" width="1.4" height="15.0" fill="rgb(0,231,53)" rx="2" ry="2" /> +<text x="574.42" y="527.5" ></text> +</g> +<g > +<title>filename_lookup (70,707,070 samples, 0.68%)</title><rect x="178.3" y="837" width="9.4" height="15.0" fill="rgb(0,211,139)" rx="2" ry="2" /> +<text x="181.29" y="847.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="1317.3" y="725" width="1.3" height="15.0" fill="rgb(0,191,13)" rx="2" ry="2" /> +<text x="1320.30" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_symlink (20,202,020 samples, 0.20%)</title><rect x="1037.3" y="677" width="2.7" height="15.0" fill="rgb(0,204,127)" rx="2" ry="2" /> +<text x="1040.26" y="687.5" ></text> +</g> +<g > +<title>cap_inode_need_killpriv (10,101,010 samples, 0.10%)</title><rect x="1045.3" y="549" width="1.4" height="15.0" fill="rgb(0,192,142)" rx="2" ry="2" /> +<text x="1048.34" y="559.5" ></text> +</g> +<g > +<title>fdopendir (20,202,020 samples, 0.20%)</title><rect x="261.8" y="693" width="2.7" height="15.0" fill="rgb(0,236,40)" rx="2" ry="2" /> +<text x="264.77" y="703.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted.part.0 (10,101,010 samples, 0.10%)</title><rect x="688.6" y="357" width="1.3" height="15.0" fill="rgb(0,208,153)" rx="2" ry="2" /> +<text x="691.56" y="367.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="565" width="1.4" height="15.0" fill="rgb(0,228,148)" rx="2" ry="2" /> +<text x="1376.84" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="364.1" y="709" width="1.3" height="15.0" fill="rgb(0,214,167)" rx="2" ry="2" /> +<text x="367.09" y="719.5" ></text> +</g> +<g > +<title>vfs_rmdir (60,606,060 samples, 0.59%)</title><rect x="228.1" y="549" width="8.1" height="15.0" fill="rgb(0,233,14)" rx="2" ry="2" /> +<text x="231.11" y="559.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="257.7" y="597" width="1.4" height="15.0" fill="rgb(0,231,5)" rx="2" ry="2" /> +<text x="260.73" y="607.5" ></text> +</g> +<g > +<title>ext4_alloc_io_end_vec (10,101,010 samples, 0.10%)</title><rect x="819.2" y="469" width="1.3" height="15.0" fill="rgb(0,200,163)" rx="2" ry="2" /> +<text x="822.15" y="479.5" ></text> +</g> +<g > +<title>ext4_generic_delete_entry (20,202,020 samples, 0.20%)</title><rect x="255.0" y="501" width="2.7" height="15.0" fill="rgb(0,219,67)" rx="2" ry="2" /> +<text x="258.03" y="511.5" ></text> +</g> +<g > +<title>current_time (10,101,010 samples, 0.10%)</title><rect x="987.4" y="405" width="1.4" height="15.0" fill="rgb(0,228,62)" rx="2" ry="2" /> +<text x="990.44" y="415.5" ></text> +</g> +<g > +<title>do_syscall_64 (171,717,170 samples, 1.66%)</title><rect x="1134.2" y="709" width="22.9" height="15.0" fill="rgb(0,229,4)" rx="2" ry="2" /> +<text x="1137.20" y="719.5" >d..</text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.20%)</title><rect x="1313.3" y="725" width="2.7" height="15.0" fill="rgb(0,236,45)" rx="2" ry="2" /> +<text x="1316.26" y="735.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="700.7" y="485" width="1.3" height="15.0" fill="rgb(0,232,204)" rx="2" ry="2" /> +<text x="703.67" y="495.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="784.1" y="677" width="1.4" height="15.0" fill="rgb(0,207,129)" rx="2" ry="2" /> +<text x="787.15" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="856.8" y="709" width="2.7" height="15.0" fill="rgb(0,233,118)" rx="2" ry="2" /> +<text x="859.85" y="719.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="709" width="1.4" height="15.0" fill="rgb(0,220,166)" rx="2" ry="2" /> +<text x="1312.22" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.78%)</title><rect x="471.8" y="693" width="10.8" height="15.0" fill="rgb(0,196,167)" rx="2" ry="2" /> +<text x="474.80" y="703.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="1019.8" y="629" width="1.3" height="15.0" fill="rgb(0,213,183)" rx="2" ry="2" /> +<text x="1022.76" y="639.5" ></text> +</g> +<g > +<title>blk_finish_plug (10,101,010 samples, 0.10%)</title><rect x="1084.4" y="453" width="1.3" height="15.0" fill="rgb(0,223,49)" rx="2" ry="2" /> +<text x="1087.38" y="463.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.10%)</title><rect x="1241.9" y="517" width="1.3" height="15.0" fill="rgb(0,197,62)" rx="2" ry="2" /> +<text x="1244.90" y="527.5" ></text> +</g> +<g > +<title>remove (393,939,390 samples, 3.80%)</title><rect x="273.9" y="677" width="52.5" height="15.0" fill="rgb(0,230,191)" rx="2" ry="2" /> +<text x="276.88" y="687.5" >remove</text> +</g> +<g > +<title>kernel_clone (333,333,330 samples, 3.22%)</title><rect x="1258.1" y="709" width="44.4" height="15.0" fill="rgb(0,207,12)" rx="2" ry="2" /> +<text x="1261.06" y="719.5" >kern..</text> +</g> +<g > +<title>__close_nocancel (10,101,010 samples, 0.10%)</title><rect x="869.0" y="613" width="1.3" height="15.0" fill="rgb(0,212,65)" rx="2" ry="2" /> +<text x="871.97" y="623.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="213.3" y="469" width="1.3" height="15.0" fill="rgb(0,202,176)" rx="2" ry="2" /> +<text x="216.30" y="479.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.10%)</title><rect x="443.5" y="661" width="1.4" height="15.0" fill="rgb(0,208,138)" rx="2" ry="2" /> +<text x="446.52" y="671.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="117" width="1.4" height="15.0" fill="rgb(0,239,53)" rx="2" ry="2" /> +<text x="1376.84" y="127.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="365.4" y="629" width="1.4" height="15.0" fill="rgb(0,217,162)" rx="2" ry="2" /> +<text x="368.43" y="639.5" ></text> +</g> +<g > +<title>__napi_poll (50,505,050 samples, 0.49%)</title><rect x="65.2" y="309" width="6.7" height="15.0" fill="rgb(0,212,71)" rx="2" ry="2" /> +<text x="68.20" y="319.5" ></text> +</g> +<g > +<title>net_close (10,101,010 samples, 0.10%)</title><rect x="27.5" y="885" width="1.3" height="15.0" fill="rgb(0,203,84)" rx="2" ry="2" /> +<text x="30.50" y="895.5" ></text> +</g> +<g > +<title>git_revparse_ext (60,606,060 samples, 0.59%)</title><rect x="552.6" y="805" width="8.1" height="15.0" fill="rgb(0,193,180)" rx="2" ry="2" /> +<text x="555.58" y="815.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="524.3" y="581" width="1.3" height="15.0" fill="rgb(0,203,182)" rx="2" ry="2" /> +<text x="527.30" y="591.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.10%)</title><rect x="284.7" y="469" width="1.3" height="15.0" fill="rgb(0,224,120)" rx="2" ry="2" /> +<text x="287.65" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="730.3" y="549" width="1.3" height="15.0" fill="rgb(0,204,107)" rx="2" ry="2" /> +<text x="733.29" y="559.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="165" width="1.4" height="15.0" fill="rgb(0,197,209)" rx="2" ry="2" /> +<text x="1376.84" y="175.5" ></text> +</g> +<g > +<title>tcp_write_xmit (70,707,070 samples, 0.68%)</title><rect x="63.9" y="517" width="9.4" height="15.0" fill="rgb(0,212,7)" rx="2" ry="2" /> +<text x="66.85" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="757.2" y="613" width="2.7" height="15.0" fill="rgb(0,220,163)" rx="2" ry="2" /> +<text x="760.22" y="623.5" ></text> +</g> +<g > +<title>ext4_readdir (10,101,010 samples, 0.10%)</title><rect x="384.3" y="661" width="1.3" height="15.0" fill="rgb(0,218,57)" rx="2" ry="2" /> +<text x="387.28" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="564.7" y="629" width="1.3" height="15.0" fill="rgb(0,236,136)" rx="2" ry="2" /> +<text x="567.69" y="639.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="1245.9" y="597" width="1.4" height="15.0" fill="rgb(0,234,61)" rx="2" ry="2" /> +<text x="1248.94" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="796.3" y="677" width="2.7" height="15.0" fill="rgb(0,209,173)" rx="2" ry="2" /> +<text x="799.26" y="687.5" ></text> +</g> +<g > +<title>file_remove_privs (20,202,020 samples, 0.20%)</title><rect x="1045.3" y="565" width="2.7" height="15.0" fill="rgb(0,238,112)" rx="2" ry="2" /> +<text x="1048.34" y="575.5" ></text> +</g> +<g > +<title>__vm_munmap (10,101,010 samples, 0.10%)</title><rect x="54.4" y="709" width="1.4" height="15.0" fill="rgb(0,206,181)" rx="2" ry="2" /> +<text x="57.43" y="719.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="859.5" y="741" width="1.4" height="15.0" fill="rgb(0,232,38)" rx="2" ry="2" /> +<text x="862.54" y="751.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="1101.9" y="597" width="1.3" height="15.0" fill="rgb(0,202,71)" rx="2" ry="2" /> +<text x="1104.88" y="607.5" ></text> +</g> +<g > +<title>do_dentry_open (40,404,040 samples, 0.39%)</title><rect x="132.5" y="773" width="5.4" height="15.0" fill="rgb(0,220,121)" rx="2" ry="2" /> +<text x="135.52" y="783.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.10%)</title><rect x="770.7" y="325" width="1.3" height="15.0" fill="rgb(0,196,115)" rx="2" ry="2" /> +<text x="773.68" y="335.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="372.2" y="501" width="1.3" height="15.0" fill="rgb(0,195,5)" rx="2" ry="2" /> +<text x="375.17" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="193.1" y="757" width="2.7" height="15.0" fill="rgb(0,209,121)" rx="2" ry="2" /> +<text x="196.10" y="767.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.10%)</title><rect x="1287.7" y="565" width="1.3" height="15.0" fill="rgb(0,205,196)" rx="2" ry="2" /> +<text x="1290.68" y="575.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (10,101,010 samples, 0.10%)</title><rect x="1371.2" y="805" width="1.3" height="15.0" fill="rgb(0,224,98)" rx="2" ry="2" /> +<text x="1374.15" y="815.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="451.6" y="613" width="1.3" height="15.0" fill="rgb(0,216,27)" rx="2" ry="2" /> +<text x="454.60" y="623.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="870.3" y="437" width="1.4" height="15.0" fill="rgb(0,224,21)" rx="2" ry="2" /> +<text x="873.31" y="447.5" ></text> +</g> +<g > +<title>realpath (20,202,020 samples, 0.20%)</title><rect x="1227.1" y="741" width="2.7" height="15.0" fill="rgb(0,212,141)" rx="2" ry="2" /> +<text x="1230.09" y="751.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.10%)</title><rect x="808.4" y="501" width="1.3" height="15.0" fill="rgb(0,230,34)" rx="2" ry="2" /> +<text x="811.38" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1194.8" y="613" width="1.3" height="15.0" fill="rgb(0,217,4)" rx="2" ry="2" /> +<text x="1197.78" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="549" width="1.4" height="15.0" fill="rgb(0,192,25)" rx="2" ry="2" /> +<text x="1207.20" y="559.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="597" width="1.4" height="15.0" fill="rgb(0,212,18)" rx="2" ry="2" /> +<text x="1376.84" y="607.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.20%)</title><rect x="252.3" y="501" width="2.7" height="15.0" fill="rgb(0,215,84)" rx="2" ry="2" /> +<text x="255.34" y="511.5" ></text> +</g> +<g > +<title>readdir64 (10,101,010 samples, 0.10%)</title><rect x="873.0" y="613" width="1.4" height="15.0" fill="rgb(0,202,126)" rx="2" ry="2" /> +<text x="876.00" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="723.6" y="645" width="1.3" height="15.0" fill="rgb(0,213,151)" rx="2" ry="2" /> +<text x="726.56" y="655.5" ></text> +</g> +<g > +<title>getdents64 (10,101,010 samples, 0.10%)</title><rect x="384.3" y="741" width="1.3" height="15.0" fill="rgb(0,219,89)" rx="2" ry="2" /> +<text x="387.28" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="1224.4" y="693" width="2.7" height="15.0" fill="rgb(0,232,84)" rx="2" ry="2" /> +<text x="1227.40" y="703.5" ></text> +</g> +<g > +<title>tlb_remove_table_rcu (10,101,010 samples, 0.10%)</title><rect x="921.5" y="517" width="1.3" height="15.0" fill="rgb(0,214,116)" rx="2" ry="2" /> +<text x="924.47" y="527.5" ></text> +</g> +<g > +<title>lh_table_free (20,202,020 samples, 0.20%)</title><rect x="1359.0" y="789" width="2.7" height="15.0" fill="rgb(0,236,122)" rx="2" ry="2" /> +<text x="1362.03" y="799.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="245.6" y="533" width="1.4" height="15.0" fill="rgb(0,218,124)" rx="2" ry="2" /> +<text x="248.61" y="543.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="111.0" y="757" width="1.3" height="15.0" fill="rgb(0,224,159)" rx="2" ry="2" /> +<text x="113.98" y="767.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (70,707,070 samples, 0.68%)</title><rect x="1143.6" y="549" width="9.4" height="15.0" fill="rgb(0,225,68)" rx="2" ry="2" /> +<text x="1146.62" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="525.6" y="693" width="1.4" height="15.0" fill="rgb(0,236,53)" rx="2" ry="2" /> +<text x="528.65" y="703.5" ></text> +</g> +<g > +<title>fscrypt_prepare_new_inode (10,101,010 samples, 0.10%)</title><rect x="151.4" y="741" width="1.3" height="15.0" fill="rgb(0,197,207)" rx="2" ry="2" /> +<text x="154.37" y="751.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1041.3" y="517" width="1.3" height="15.0" fill="rgb(0,237,47)" rx="2" ry="2" /> +<text x="1044.30" y="527.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.10%)</title><rect x="27.5" y="741" width="1.3" height="15.0" fill="rgb(0,210,25)" rx="2" ry="2" /> +<text x="30.50" y="751.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="613" width="2.7" height="15.0" fill="rgb(0,221,102)" rx="2" ry="2" /> +<text x="1341.84" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_access (20,202,020 samples, 0.20%)</title><rect x="747.8" y="565" width="2.7" height="15.0" fill="rgb(0,224,143)" rx="2" ry="2" /> +<text x="750.80" y="575.5" ></text> +</g> +<g > +<title>crc_113 (10,101,010 samples, 0.10%)</title><rect x="1255.4" y="517" width="1.3" height="15.0" fill="rgb(0,225,12)" rx="2" ry="2" /> +<text x="1258.37" y="527.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.10%)</title><rect x="1210.9" y="549" width="1.4" height="15.0" fill="rgb(0,224,153)" rx="2" ry="2" /> +<text x="1213.94" y="559.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.10%)</title><rect x="595.7" y="581" width="1.3" height="15.0" fill="rgb(0,196,167)" rx="2" ry="2" /> +<text x="598.66" y="591.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.10%)</title><rect x="364.1" y="629" width="1.3" height="15.0" fill="rgb(0,216,6)" rx="2" ry="2" /> +<text x="367.09" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,222,222,210 samples, 11.80%)</title><rect x="201.2" y="741" width="162.9" height="15.0" fill="rgb(0,191,17)" rx="2" ry="2" /> +<text x="204.18" y="751.5" >[libc.so.6]</text> +</g> +<g > +<title>ext4_match.part.0 (10,101,010 samples, 0.10%)</title><rect x="576.8" y="517" width="1.4" height="15.0" fill="rgb(0,219,143)" rx="2" ry="2" /> +<text x="579.81" y="527.5" ></text> +</g> +<g > +<title>path_put (10,101,010 samples, 0.10%)</title><rect x="1007.6" y="629" width="1.4" height="15.0" fill="rgb(0,227,203)" rx="2" ry="2" /> +<text x="1010.64" y="639.5" ></text> +</g> +<g > +<title>d_lookup (20,202,020 samples, 0.20%)</title><rect x="143.3" y="773" width="2.7" height="15.0" fill="rgb(0,201,105)" rx="2" ry="2" /> +<text x="146.29" y="783.5" ></text> +</g> +<g > +<title>crc_50 (10,101,010 samples, 0.10%)</title><rect x="695.3" y="501" width="1.3" height="15.0" fill="rgb(0,236,165)" rx="2" ry="2" /> +<text x="698.29" y="511.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="599.7" y="613" width="1.3" height="15.0" fill="rgb(0,228,137)" rx="2" ry="2" /> +<text x="602.70" y="623.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="218.7" y="389" width="1.3" height="15.0" fill="rgb(0,220,145)" rx="2" ry="2" /> +<text x="221.68" y="399.5" ></text> +</g> +<g > +<title>open_last_lookups (20,202,020 samples, 0.20%)</title><rect x="672.4" y="517" width="2.7" height="15.0" fill="rgb(0,193,36)" rx="2" ry="2" /> +<text x="675.40" y="527.5" ></text> +</g> +<g > +<title>git_odb_read (90,909,090 samples, 0.88%)</title><rect x="514.9" y="741" width="12.1" height="15.0" fill="rgb(0,224,163)" rx="2" ry="2" /> +<text x="517.88" y="751.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.10%)</title><rect x="571.4" y="453" width="1.4" height="15.0" fill="rgb(0,224,62)" rx="2" ry="2" /> +<text x="574.42" y="463.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="630.7" y="581" width="1.3" height="15.0" fill="rgb(0,225,56)" rx="2" ry="2" /> +<text x="633.66" y="591.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.10%)</title><rect x="929.6" y="485" width="1.3" height="15.0" fill="rgb(0,225,72)" rx="2" ry="2" /> +<text x="932.55" y="495.5" ></text> +</g> +<g > +<title>dentry_kill (30,303,030 samples, 0.29%)</title><rect x="436.8" y="629" width="4.0" height="15.0" fill="rgb(0,239,40)" rx="2" ry="2" /> +<text x="439.79" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1223.1" y="741" width="4.0" height="15.0" fill="rgb(0,211,136)" rx="2" ry="2" /> +<text x="1226.05" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="805" width="2.6" height="15.0" fill="rgb(0,234,171)" rx="2" ry="2" /> +<text x="1336.45" y="815.5" ></text> +</g> +<g > +<title>generic_file_read_iter (20,202,020 samples, 0.20%)</title><rect x="986.1" y="469" width="2.7" height="15.0" fill="rgb(0,204,17)" rx="2" ry="2" /> +<text x="989.10" y="479.5" ></text> +</g> +<g > +<title>vfs_write (50,505,050 samples, 0.49%)</title><rect x="1093.8" y="565" width="6.7" height="15.0" fill="rgb(0,206,72)" rx="2" ry="2" /> +<text x="1096.80" y="575.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="755.9" y="405" width="1.3" height="15.0" fill="rgb(0,206,171)" rx="2" ry="2" /> +<text x="758.87" y="415.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="533" width="5.4" height="15.0" fill="rgb(0,213,195)" rx="2" ry="2" /> +<text x="1383.58" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (101,010,100 samples, 0.98%)</title><rect x="808.4" y="661" width="13.4" height="15.0" fill="rgb(0,197,93)" rx="2" ry="2" /> +<text x="811.38" y="671.5" ></text> +</g> +<g > +<title>blk_done_softirq (10,101,010 samples, 0.10%)</title><rect x="213.3" y="421" width="1.3" height="15.0" fill="rgb(0,212,47)" rx="2" ry="2" /> +<text x="216.30" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="863.6" y="613" width="5.4" height="15.0" fill="rgb(0,224,161)" rx="2" ry="2" /> +<text x="866.58" y="623.5" ></text> +</g> +<g > +<title>_raw_read_lock (10,101,010 samples, 0.10%)</title><rect x="982.1" y="501" width="1.3" height="15.0" fill="rgb(0,193,101)" rx="2" ry="2" /> +<text x="985.06" y="511.5" ></text> +</g> +<g > +<title>__sys_connect_file (101,010,100 samples, 0.98%)</title><rect x="1336.1" y="773" width="13.5" height="15.0" fill="rgb(0,207,12)" rx="2" ry="2" /> +<text x="1339.15" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (373,737,370 samples, 3.61%)</title><rect x="275.2" y="613" width="49.8" height="15.0" fill="rgb(0,232,198)" rx="2" ry="2" /> +<text x="278.23" y="623.5" >__x64..</text> +</g> +<g > +<title>ext4_find_entry (10,101,010 samples, 0.10%)</title><rect x="847.4" y="565" width="1.4" height="15.0" fill="rgb(0,210,75)" rx="2" ry="2" /> +<text x="850.42" y="575.5" ></text> +</g> +<g > +<title>__handle_mm_fault (10,101,010 samples, 0.10%)</title><rect x="80.0" y="709" width="1.4" height="15.0" fill="rgb(0,198,167)" rx="2" ry="2" /> +<text x="83.01" y="719.5" ></text> +</g> +<g > +<title>ext4_map_blocks (30,303,030 samples, 0.29%)</title><rect x="117.7" y="725" width="4.0" height="15.0" fill="rgb(0,201,208)" rx="2" ry="2" /> +<text x="120.71" y="735.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="969.9" y="549" width="1.4" height="15.0" fill="rgb(0,207,34)" rx="2" ry="2" /> +<text x="972.94" y="559.5" ></text> +</g> +<g > +<title>tcp_time_wait (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="165" width="1.4" height="15.0" fill="rgb(0,219,129)" rx="2" ry="2" /> +<text x="1379.54" y="175.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="461.0" y="645" width="1.4" height="15.0" fill="rgb(0,221,207)" rx="2" ry="2" /> +<text x="464.02" y="655.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="597" width="1.4" height="15.0" fill="rgb(0,237,23)" rx="2" ry="2" /> +<text x="1312.22" y="607.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.10%)</title><rect x="778.8" y="549" width="1.3" height="15.0" fill="rgb(0,239,105)" rx="2" ry="2" /> +<text x="781.76" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_write (30,303,030 samples, 0.29%)</title><rect x="1073.6" y="581" width="4.0" height="15.0" fill="rgb(0,208,111)" rx="2" ry="2" /> +<text x="1076.61" y="591.5" ></text> +</g> +<g > +<title>_IO_fprintf (10,101,010 samples, 0.10%)</title><rect x="1250.0" y="773" width="1.3" height="15.0" fill="rgb(0,199,59)" rx="2" ry="2" /> +<text x="1252.98" y="783.5" ></text> +</g> +<g > +<title>json_object_to_json_string_length (20,202,020 samples, 0.20%)</title><rect x="1324.0" y="821" width="2.7" height="15.0" fill="rgb(0,224,192)" rx="2" ry="2" /> +<text x="1327.03" y="831.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="816.5" y="165" width="1.3" height="15.0" fill="rgb(0,229,7)" rx="2" ry="2" /> +<text x="819.46" y="175.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.10%)</title><rect x="1002.3" y="565" width="1.3" height="15.0" fill="rgb(0,228,141)" rx="2" ry="2" /> +<text x="1005.25" y="575.5" ></text> +</g> +<g > +<title>net_rx_action (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="437" width="2.7" height="15.0" fill="rgb(0,236,126)" rx="2" ry="2" /> +<text x="1341.84" y="447.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.10%)</title><rect x="326.4" y="565" width="1.3" height="15.0" fill="rgb(0,203,52)" rx="2" ry="2" /> +<text x="329.39" y="575.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="669.7" y="661" width="1.4" height="15.0" fill="rgb(0,239,105)" rx="2" ry="2" /> +<text x="672.71" y="671.5" ></text> +</g> +<g > +<title>iput (10,101,010 samples, 0.10%)</title><rect x="409.9" y="661" width="1.3" height="15.0" fill="rgb(0,201,112)" rx="2" ry="2" /> +<text x="412.86" y="671.5" ></text> +</g> +<g > +<title>lockref_put_return (10,101,010 samples, 0.10%)</title><rect x="1007.6" y="613" width="1.4" height="15.0" fill="rgb(0,211,192)" rx="2" ry="2" /> +<text x="1010.64" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="850.1" y="677" width="2.7" height="15.0" fill="rgb(0,230,112)" rx="2" ry="2" /> +<text x="853.12" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="709" width="1.4" height="15.0" fill="rgb(0,235,117)" rx="2" ry="2" /> +<text x="1007.95" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (161,616,160 samples, 1.56%)</title><rect x="568.7" y="661" width="21.6" height="15.0" fill="rgb(0,202,160)" rx="2" ry="2" /> +<text x="571.73" y="671.5" >e..</text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.10%)</title><rect x="55.8" y="661" width="1.3" height="15.0" fill="rgb(0,210,196)" rx="2" ry="2" /> +<text x="58.78" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="979.4" y="645" width="1.3" height="15.0" fill="rgb(0,204,92)" rx="2" ry="2" /> +<text x="982.37" y="655.5" ></text> +</g> +<g > +<title>shrink_dcache_parent (10,101,010 samples, 0.10%)</title><rect x="411.2" y="661" width="1.4" height="15.0" fill="rgb(0,209,89)" rx="2" ry="2" /> +<text x="414.21" y="671.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="885.1" y="613" width="1.4" height="15.0" fill="rgb(0,191,102)" rx="2" ry="2" /> +<text x="888.12" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="990.1" y="597" width="6.8" height="15.0" fill="rgb(0,211,12)" rx="2" ry="2" /> +<text x="993.14" y="607.5" ></text> +</g> +<g > +<title>touch_atime (30,303,030 samples, 0.29%)</title><rect x="224.1" y="565" width="4.0" height="15.0" fill="rgb(0,218,100)" rx="2" ry="2" /> +<text x="227.07" y="575.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="482.6" y="597" width="1.3" height="15.0" fill="rgb(0,197,50)" rx="2" ry="2" /> +<text x="485.57" y="607.5" ></text> +</g> +<g > +<title>__napi_poll (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="405" width="1.4" height="15.0" fill="rgb(0,207,152)" rx="2" ry="2" /> +<text x="1376.84" y="415.5" ></text> +</g> +<g > +<title>git_config_add_backend (80,808,080 samples, 0.78%)</title><rect x="450.3" y="725" width="10.7" height="15.0" fill="rgb(0,193,7)" rx="2" ry="2" /> +<text x="453.25" y="735.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (20,202,020 samples, 0.20%)</title><rect x="839.3" y="485" width="2.7" height="15.0" fill="rgb(0,224,146)" rx="2" ry="2" /> +<text x="842.35" y="495.5" ></text> +</g> +<g > +<title>submit_bio (30,303,030 samples, 0.29%)</title><rect x="656.2" y="453" width="4.1" height="15.0" fill="rgb(0,198,12)" rx="2" ry="2" /> +<text x="659.24" y="463.5" ></text> +</g> +<g > +<title>grab_cache_page_write_begin (10,101,010 samples, 0.10%)</title><rect x="512.2" y="517" width="1.3" height="15.0" fill="rgb(0,207,42)" rx="2" ry="2" /> +<text x="515.19" y="527.5" ></text> +</g> +<g > +<title>new_sync_read (10,101,010 samples, 0.10%)</title><rect x="478.5" y="565" width="1.4" height="15.0" fill="rgb(0,202,209)" rx="2" ry="2" /> +<text x="481.53" y="575.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (40,404,040 samples, 0.39%)</title><rect x="1147.7" y="517" width="5.3" height="15.0" fill="rgb(0,223,52)" rx="2" ry="2" /> +<text x="1150.66" y="527.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.10%)</title><rect x="42.3" y="821" width="1.4" height="15.0" fill="rgb(0,235,14)" rx="2" ry="2" /> +<text x="45.31" y="831.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="1220.4" y="549" width="1.3" height="15.0" fill="rgb(0,226,23)" rx="2" ry="2" /> +<text x="1223.36" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="552.6" y="693" width="8.1" height="15.0" fill="rgb(0,229,99)" rx="2" ry="2" /> +<text x="555.58" y="703.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="524.3" y="613" width="1.3" height="15.0" fill="rgb(0,237,18)" rx="2" ry="2" /> +<text x="527.30" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (232,323,230 samples, 2.24%)</title><rect x="753.2" y="709" width="30.9" height="15.0" fill="rgb(0,195,15)" rx="2" ry="2" /> +<text x="756.18" y="719.5" >[l..</text> +</g> +<g > +<title>ext4_rmdir (20,202,020 samples, 0.20%)</title><rect x="407.2" y="661" width="2.7" height="15.0" fill="rgb(0,237,15)" rx="2" ry="2" /> +<text x="410.17" y="671.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="969.9" y="533" width="1.4" height="15.0" fill="rgb(0,220,54)" rx="2" ry="2" /> +<text x="972.94" y="543.5" ></text> +</g> +<g > +<title>ip_rcv (20,202,020 samples, 0.20%)</title><rect x="1345.6" y="437" width="2.7" height="15.0" fill="rgb(0,220,116)" rx="2" ry="2" /> +<text x="1348.57" y="447.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="372.2" y="517" width="1.3" height="15.0" fill="rgb(0,204,49)" rx="2" ry="2" /> +<text x="375.17" y="527.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="613" width="1.3" height="15.0" fill="rgb(0,236,179)" rx="2" ry="2" /> +<text x="1182.97" y="623.5" ></text> +</g> +<g > +<title>ext4_mb_initialize_context (10,101,010 samples, 0.10%)</title><rect x="1143.6" y="517" width="1.4" height="15.0" fill="rgb(0,200,151)" rx="2" ry="2" /> +<text x="1146.62" y="527.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.10%)</title><rect x="790.9" y="597" width="1.3" height="15.0" fill="rgb(0,190,162)" rx="2" ry="2" /> +<text x="793.88" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="326.4" y="693" width="1.3" height="15.0" fill="rgb(0,232,84)" rx="2" ry="2" /> +<text x="329.39" y="703.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="482.6" y="549" width="1.3" height="15.0" fill="rgb(0,217,77)" rx="2" ry="2" /> +<text x="485.57" y="559.5" ></text> +</g> +<g > +<title>iput (30,303,030 samples, 0.29%)</title><rect x="808.4" y="549" width="4.0" height="15.0" fill="rgb(0,236,172)" rx="2" ry="2" /> +<text x="811.38" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="28.8" y="837" width="2.7" height="15.0" fill="rgb(0,205,1)" rx="2" ry="2" /> +<text x="31.85" y="847.5" ></text> +</g> +<g > +<title>vfs_getattr_nosec (10,101,010 samples, 0.10%)</title><rect x="711.4" y="565" width="1.4" height="15.0" fill="rgb(0,191,86)" rx="2" ry="2" /> +<text x="714.44" y="575.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (20,202,020 samples, 0.20%)</title><rect x="1375.2" y="773" width="2.7" height="15.0" fill="rgb(0,203,121)" rx="2" ry="2" /> +<text x="1378.19" y="783.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.20%)</title><rect x="947.1" y="485" width="2.6" height="15.0" fill="rgb(0,209,153)" rx="2" ry="2" /> +<text x="950.05" y="495.5" ></text> +</g> +<g > +<title>vfs_write (90,909,090 samples, 0.88%)</title><rect x="1044.0" y="645" width="12.1" height="15.0" fill="rgb(0,213,3)" rx="2" ry="2" /> +<text x="1046.99" y="655.5" ></text> +</g> +<g > +<title>ext4_clear_inode (10,101,010 samples, 0.10%)</title><rect x="648.2" y="469" width="1.3" height="15.0" fill="rgb(0,205,44)" rx="2" ry="2" /> +<text x="651.17" y="479.5" ></text> +</g> +<g > +<title>security_file_open (10,101,010 samples, 0.10%)</title><rect x="237.5" y="533" width="1.4" height="15.0" fill="rgb(0,231,133)" rx="2" ry="2" /> +<text x="240.53" y="543.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="202.5" y="549" width="1.4" height="15.0" fill="rgb(0,218,79)" rx="2" ry="2" /> +<text x="205.53" y="559.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (20,202,020 samples, 0.20%)</title><rect x="148.7" y="741" width="2.7" height="15.0" fill="rgb(0,234,174)" rx="2" ry="2" /> +<text x="151.67" y="751.5" ></text> +</g> +<g > +<title>blk_finish_plug (10,101,010 samples, 0.10%)</title><rect x="766.6" y="453" width="1.4" height="15.0" fill="rgb(0,221,48)" rx="2" ry="2" /> +<text x="769.64" y="463.5" ></text> +</g> +<g > +<title>git_reference_foreach_name (151,515,150 samples, 1.46%)</title><rect x="860.9" y="725" width="20.2" height="15.0" fill="rgb(0,206,60)" rx="2" ry="2" /> +<text x="863.89" y="735.5" ></text> +</g> +<g > +<title>wake_up_bit (10,101,010 samples, 0.10%)</title><rect x="159.4" y="725" width="1.4" height="15.0" fill="rgb(0,213,88)" rx="2" ry="2" /> +<text x="162.44" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (606,060,600 samples, 5.85%)</title><rect x="108.3" y="949" width="80.8" height="15.0" fill="rgb(0,211,181)" rx="2" ry="2" /> +<text x="111.28" y="959.5" >[libgit2...</text> +</g> +<g > +<title>truncate_exceptional_pvec_entries.part.0 (10,101,010 samples, 0.10%)</title><rect x="650.9" y="469" width="1.3" height="15.0" fill="rgb(0,197,104)" rx="2" ry="2" /> +<text x="653.86" y="479.5" ></text> +</g> +<g > +<title>scsi_queue_rq (10,101,010 samples, 0.10%)</title><rect x="816.5" y="293" width="1.3" height="15.0" fill="rgb(0,229,105)" rx="2" ry="2" /> +<text x="819.46" y="303.5" ></text> +</g> +<g > +<title>clear_page_dirty_for_io (10,101,010 samples, 0.10%)</title><rect x="772.0" y="405" width="1.4" height="15.0" fill="rgb(0,194,48)" rx="2" ry="2" /> +<text x="775.03" y="415.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.10%)</title><rect x="439.5" y="469" width="1.3" height="15.0" fill="rgb(0,223,58)" rx="2" ry="2" /> +<text x="442.48" y="479.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="364.1" y="677" width="1.3" height="15.0" fill="rgb(0,219,199)" rx="2" ry="2" /> +<text x="367.09" y="687.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.10%)</title><rect x="12.7" y="661" width="1.3" height="15.0" fill="rgb(0,217,169)" rx="2" ry="2" /> +<text x="15.69" y="671.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.10%)</title><rect x="708.8" y="453" width="1.3" height="15.0" fill="rgb(0,208,193)" rx="2" ry="2" /> +<text x="711.75" y="463.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="1170.5" y="629" width="1.4" height="15.0" fill="rgb(0,229,86)" rx="2" ry="2" /> +<text x="1173.55" y="639.5" ></text> +</g> +<g > +<title>do_rmdir (10,101,010 samples, 0.10%)</title><rect x="209.3" y="533" width="1.3" height="15.0" fill="rgb(0,219,200)" rx="2" ry="2" /> +<text x="212.26" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="73.3" y="837" width="1.3" height="15.0" fill="rgb(0,223,121)" rx="2" ry="2" /> +<text x="76.28" y="847.5" ></text> +</g> +<g > +<title>__sys_accept4_file (50,505,050 samples, 0.49%)</title><rect x="86.7" y="725" width="6.8" height="15.0" fill="rgb(0,225,132)" rx="2" ry="2" /> +<text x="89.74" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="498.7" y="677" width="1.4" height="15.0" fill="rgb(0,216,181)" rx="2" ry="2" /> +<text x="501.72" y="687.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="304.8" y="437" width="1.4" height="15.0" fill="rgb(0,213,110)" rx="2" ry="2" /> +<text x="307.85" y="447.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (464,646,460 samples, 4.49%)</title><rect x="562.0" y="741" width="61.9" height="15.0" fill="rgb(0,233,67)" rx="2" ry="2" /> +<text x="565.00" y="751.5" >[libgi..</text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="54.4" y="629" width="1.4" height="15.0" fill="rgb(0,198,15)" rx="2" ry="2" /> +<text x="57.43" y="639.5" ></text> +</g> +<g > +<title>worker_main (9,010,100,920 samples, 87.02%)</title><rect x="189.1" y="901" width="1200.9" height="15.0" fill="rgb(0,235,174)" rx="2" ry="2" /> +<text x="192.06" y="911.5" >worker_main</text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.10%)</title><rect x="245.6" y="517" width="1.4" height="15.0" fill="rgb(0,215,11)" rx="2" ry="2" /> +<text x="248.61" y="527.5" ></text> +</g> +<g > +<title>mnt_want_write (10,101,010 samples, 0.10%)</title><rect x="1079.0" y="565" width="1.3" height="15.0" fill="rgb(0,222,108)" rx="2" ry="2" /> +<text x="1082.00" y="575.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="160.8" y="693" width="1.3" height="15.0" fill="rgb(0,190,94)" rx="2" ry="2" /> +<text x="163.79" y="703.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.10%)</title><rect x="405.8" y="661" width="1.4" height="15.0" fill="rgb(0,233,0)" rx="2" ry="2" /> +<text x="408.82" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="419.3" y="693" width="1.3" height="15.0" fill="rgb(0,238,191)" rx="2" ry="2" /> +<text x="422.29" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_link (20,202,020 samples, 0.20%)</title><rect x="1111.3" y="629" width="2.7" height="15.0" fill="rgb(0,206,11)" rx="2" ry="2" /> +<text x="1114.31" y="639.5" ></text> +</g> +<g > +<title>json_to_string (10,101,010 samples, 0.10%)</title><rect x="1371.2" y="837" width="1.3" height="15.0" fill="rgb(0,237,88)" rx="2" ry="2" /> +<text x="1374.15" y="847.5" ></text> +</g> +<g > +<title>git_oid_nfmt (10,101,010 samples, 0.10%)</title><rect x="428.7" y="677" width="1.4" height="15.0" fill="rgb(0,190,198)" rx="2" ry="2" /> +<text x="431.71" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (292,929,290 samples, 2.83%)</title><rect x="467.8" y="757" width="39.0" height="15.0" fill="rgb(0,221,27)" rx="2" ry="2" /> +<text x="470.76" y="767.5" >[li..</text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="711.4" y="629" width="1.4" height="15.0" fill="rgb(0,238,167)" rx="2" ry="2" /> +<text x="714.44" y="639.5" ></text> +</g> +<g > +<title>ext4_bread_batch (10,101,010 samples, 0.10%)</title><rect x="385.6" y="565" width="1.4" height="15.0" fill="rgb(0,227,204)" rx="2" ry="2" /> +<text x="388.63" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="446.2" y="661" width="2.7" height="15.0" fill="rgb(0,214,118)" rx="2" ry="2" /> +<text x="449.21" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="610.5" y="661" width="1.3" height="15.0" fill="rgb(0,224,156)" rx="2" ry="2" /> +<text x="613.47" y="671.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="365.4" y="677" width="2.7" height="15.0" fill="rgb(0,219,187)" rx="2" ry="2" /> +<text x="368.43" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="730.3" y="629" width="4.0" height="15.0" fill="rgb(0,227,58)" rx="2" ry="2" /> +<text x="733.29" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="148.7" y="725" width="2.7" height="15.0" fill="rgb(0,191,180)" rx="2" ry="2" /> +<text x="151.67" y="735.5" ></text> +</g> +<g > +<title>git_reference_name_to_id (20,202,020 samples, 0.20%)</title><rect x="996.9" y="741" width="2.7" height="15.0" fill="rgb(0,210,161)" rx="2" ry="2" /> +<text x="999.87" y="751.5" ></text> +</g> +<g > +<title>ext4_file_open (10,101,010 samples, 0.10%)</title><rect x="502.8" y="581" width="1.3" height="15.0" fill="rgb(0,217,10)" rx="2" ry="2" /> +<text x="505.76" y="591.5" ></text> +</g> +<g > +<title>ext4_unlink (30,303,030 samples, 0.29%)</title><rect x="396.4" y="645" width="4.0" height="15.0" fill="rgb(0,205,87)" rx="2" ry="2" /> +<text x="399.40" y="655.5" ></text> +</g> +<g > +<title>ext4_truncate (10,101,010 samples, 0.10%)</title><rect x="439.5" y="533" width="1.3" height="15.0" fill="rgb(0,209,144)" rx="2" ry="2" /> +<text x="442.48" y="543.5" ></text> +</g> +<g > +<title>git_buf_grow (10,101,010 samples, 0.10%)</title><rect x="637.4" y="661" width="1.3" height="15.0" fill="rgb(0,215,94)" rx="2" ry="2" /> +<text x="640.40" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="773" width="5.4" height="15.0" fill="rgb(0,220,103)" rx="2" ry="2" /> +<text x="1331.07" y="783.5" ></text> +</g> +<g > +<title>__ext4_new_inode (40,404,040 samples, 0.39%)</title><rect x="1014.4" y="565" width="5.4" height="15.0" fill="rgb(0,200,190)" rx="2" ry="2" /> +<text x="1017.37" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="800.3" y="693" width="1.3" height="15.0" fill="rgb(0,212,38)" rx="2" ry="2" /> +<text x="803.30" y="703.5" ></text> +</g> +<g > +<title>path_openat (30,303,030 samples, 0.29%)</title><rect x="502.8" y="645" width="4.0" height="15.0" fill="rgb(0,204,154)" rx="2" ry="2" /> +<text x="505.76" y="655.5" ></text> +</g> +<g > +<title>__d_instantiate (10,101,010 samples, 0.10%)</title><rect x="85.4" y="661" width="1.3" height="15.0" fill="rgb(0,191,25)" rx="2" ry="2" /> +<text x="88.40" y="671.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (10,101,010 samples, 0.10%)</title><rect x="677.8" y="421" width="1.3" height="15.0" fill="rgb(0,203,70)" rx="2" ry="2" /> +<text x="680.79" y="431.5" ></text> +</g> +<g > +<title>ip_local_deliver (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="293" width="1.3" height="15.0" fill="rgb(0,234,123)" rx="2" ry="2" /> +<text x="1337.80" y="303.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.98%)</title><rect x="11.3" y="805" width="13.5" height="15.0" fill="rgb(0,195,59)" rx="2" ry="2" /> +<text x="14.35" y="815.5" ></text> +</g> +<g > +<title>ext4_file_open (10,101,010 samples, 0.10%)</title><rect x="533.7" y="469" width="1.4" height="15.0" fill="rgb(0,219,8)" rx="2" ry="2" /> +<text x="536.73" y="479.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.10%)</title><rect x="1077.6" y="549" width="1.4" height="15.0" fill="rgb(0,220,179)" rx="2" ry="2" /> +<text x="1080.65" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="667.0" y="725" width="5.4" height="15.0" fill="rgb(0,206,115)" rx="2" ry="2" /> +<text x="670.01" y="735.5" ></text> +</g> +<g > +<title>mktime (10,101,010 samples, 0.10%)</title><rect x="782.8" y="677" width="1.3" height="15.0" fill="rgb(0,223,121)" rx="2" ry="2" /> +<text x="785.80" y="687.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.10%)</title><rect x="172.9" y="853" width="1.4" height="15.0" fill="rgb(0,236,71)" rx="2" ry="2" /> +<text x="175.91" y="863.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="751.8" y="581" width="1.4" height="15.0" fill="rgb(0,216,119)" rx="2" ry="2" /> +<text x="754.83" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="675.1" y="613" width="1.3" height="15.0" fill="rgb(0,236,81)" rx="2" ry="2" /> +<text x="678.09" y="623.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.10%)</title><rect x="1386.0" y="613" width="1.3" height="15.0" fill="rgb(0,205,182)" rx="2" ry="2" /> +<text x="1388.96" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="781.5" y="501" width="1.3" height="15.0" fill="rgb(0,228,124)" rx="2" ry="2" /> +<text x="784.45" y="511.5" ></text> +</g> +<g > +<title>readdir64 (40,404,040 samples, 0.39%)</title><rect x="334.5" y="725" width="5.4" height="15.0" fill="rgb(0,194,133)" rx="2" ry="2" /> +<text x="337.47" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1167.9" y="645" width="4.0" height="15.0" fill="rgb(0,237,125)" rx="2" ry="2" /> +<text x="1170.85" y="655.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.10%)</title><rect x="1196.1" y="629" width="1.4" height="15.0" fill="rgb(0,198,187)" rx="2" ry="2" /> +<text x="1199.13" y="639.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="773" width="2.6" height="15.0" fill="rgb(0,210,159)" rx="2" ry="2" /> +<text x="1336.45" y="783.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (50,505,050 samples, 0.49%)</title><rect x="653.6" y="517" width="6.7" height="15.0" fill="rgb(0,201,141)" rx="2" ry="2" /> +<text x="656.55" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="669.7" y="629" width="1.4" height="15.0" fill="rgb(0,220,177)" rx="2" ry="2" /> +<text x="672.71" y="639.5" ></text> +</g> +<g > +<title>scsi_complete (10,101,010 samples, 0.10%)</title><rect x="213.3" y="389" width="1.3" height="15.0" fill="rgb(0,213,109)" rx="2" ry="2" /> +<text x="216.30" y="399.5" ></text> +</g> +<g > +<title>check_stack_object (10,101,010 samples, 0.10%)</title><rect x="862.2" y="485" width="1.4" height="15.0" fill="rgb(0,208,88)" rx="2" ry="2" /> +<text x="865.23" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (181,818,180 samples, 1.76%)</title><rect x="672.4" y="709" width="24.2" height="15.0" fill="rgb(0,206,142)" rx="2" ry="2" /> +<text x="675.40" y="719.5" >[..</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (232,323,230 samples, 2.24%)</title><rect x="941.7" y="645" width="30.9" height="15.0" fill="rgb(0,203,50)" rx="2" ry="2" /> +<text x="944.67" y="655.5" >[l..</text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="555.3" y="565" width="1.3" height="15.0" fill="rgb(0,228,114)" rx="2" ry="2" /> +<text x="558.27" y="575.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="353.3" y="501" width="1.4" height="15.0" fill="rgb(0,208,63)" rx="2" ry="2" /> +<text x="356.32" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="502.8" y="709" width="4.0" height="15.0" fill="rgb(0,238,189)" rx="2" ry="2" /> +<text x="505.76" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="703.4" y="661" width="1.3" height="15.0" fill="rgb(0,208,88)" rx="2" ry="2" /> +<text x="706.37" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_poll (40,404,040 samples, 0.39%)</title><rect x="1352.3" y="805" width="5.4" height="15.0" fill="rgb(0,233,160)" rx="2" ry="2" /> +<text x="1355.30" y="815.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.10%)</title><rect x="831.3" y="485" width="1.3" height="15.0" fill="rgb(0,219,98)" rx="2" ry="2" /> +<text x="834.27" y="495.5" ></text> +</g> +<g > +<title>server_wait (20,202,020 samples, 0.20%)</title><rect x="28.8" y="901" width="2.7" height="15.0" fill="rgb(0,238,45)" rx="2" ry="2" /> +<text x="31.85" y="911.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.10%)</title><rect x="835.3" y="581" width="1.4" height="15.0" fill="rgb(0,214,173)" rx="2" ry="2" /> +<text x="838.31" y="591.5" ></text> +</g> +<g > +<title>libgit_clone (5,191,919,140 samples, 50.15%)</title><rect x="560.7" y="821" width="692.0" height="15.0" fill="rgb(0,206,22)" rx="2" ry="2" /> +<text x="563.65" y="831.5" >libgit_clone</text> +</g> +<g > +<title>copy_user_enhanced_fast_string (10,101,010 samples, 0.10%)</title><rect x="986.1" y="437" width="1.3" height="15.0" fill="rgb(0,191,206)" rx="2" ry="2" /> +<text x="989.10" y="447.5" ></text> +</g> +<g > +<title>alloc_inode (10,101,010 samples, 0.10%)</title><rect x="956.5" y="469" width="1.3" height="15.0" fill="rgb(0,210,164)" rx="2" ry="2" /> +<text x="959.48" y="479.5" ></text> +</g> +<g > +<title>git_signature_default (20,202,020 samples, 0.20%)</title><rect x="702.0" y="709" width="2.7" height="15.0" fill="rgb(0,207,146)" rx="2" ry="2" /> +<text x="705.02" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="863.6" y="597" width="1.3" height="15.0" fill="rgb(0,228,120)" rx="2" ry="2" /> +<text x="866.58" y="607.5" ></text> +</g> +<g > +<title>ci_run (424,242,420 samples, 4.10%)</title><rect x="1256.7" y="853" width="56.6" height="15.0" fill="rgb(0,190,111)" rx="2" ry="2" /> +<text x="1259.71" y="863.5" >ci_run</text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="482.6" y="533" width="1.3" height="15.0" fill="rgb(0,216,60)" rx="2" ry="2" /> +<text x="485.57" y="543.5" ></text> +</g> +<g > +<title>inflateInit2_ (10,101,010 samples, 0.10%)</title><rect x="696.6" y="613" width="1.4" height="15.0" fill="rgb(0,228,206)" rx="2" ry="2" /> +<text x="699.63" y="623.5" ></text> +</g> +<g > +<title>begin_current_label_crit_section (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="549" width="1.3" height="15.0" fill="rgb(0,226,44)" rx="2" ry="2" /> +<text x="1032.18" y="559.5" ></text> +</g> +<g > +<title>task_work_add (10,101,010 samples, 0.10%)</title><rect x="1219.0" y="565" width="1.4" height="15.0" fill="rgb(0,213,132)" rx="2" ry="2" /> +<text x="1222.01" y="575.5" ></text> +</g> +<g > +<title>storvsc_on_io_completion (10,101,010 samples, 0.10%)</title><rect x="1215.0" y="357" width="1.3" height="15.0" fill="rgb(0,218,57)" rx="2" ry="2" /> +<text x="1217.98" y="367.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="437" width="1.4" height="15.0" fill="rgb(0,216,192)" rx="2" ry="2" /> +<text x="1379.54" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="672.4" y="597" width="2.7" height="15.0" fill="rgb(0,214,192)" rx="2" ry="2" /> +<text x="675.40" y="607.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="885.1" y="581" width="1.4" height="15.0" fill="rgb(0,209,76)" rx="2" ry="2" /> +<text x="888.12" y="591.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="862.2" y="565" width="1.4" height="15.0" fill="rgb(0,203,92)" rx="2" ry="2" /> +<text x="865.23" y="575.5" ></text> +</g> +<g > +<title>do_softirq (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="453" width="1.4" height="15.0" fill="rgb(0,209,38)" rx="2" ry="2" /> +<text x="1376.84" y="463.5" ></text> +</g> +<g > +<title>git_reference_name_to_id (20,202,020 samples, 0.20%)</title><rect x="434.1" y="709" width="2.7" height="15.0" fill="rgb(0,194,162)" rx="2" ry="2" /> +<text x="437.10" y="719.5" ></text> +</g> +<g > +<title>vfs_unlink (50,505,050 samples, 0.49%)</title><rect x="213.3" y="533" width="6.7" height="15.0" fill="rgb(0,210,91)" rx="2" ry="2" /> +<text x="216.30" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="976.7" y="565" width="2.7" height="15.0" fill="rgb(0,211,194)" rx="2" ry="2" /> +<text x="979.67" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="109.6" y="853" width="1.4" height="15.0" fill="rgb(0,211,103)" rx="2" ry="2" /> +<text x="112.63" y="863.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="773" width="1.4" height="15.0" fill="rgb(0,196,141)" rx="2" ry="2" /> +<text x="1312.22" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (40,404,040 samples, 0.39%)</title><rect x="613.2" y="645" width="5.3" height="15.0" fill="rgb(0,219,67)" rx="2" ry="2" /> +<text x="616.16" y="655.5" ></text> +</g> +<g > +<title>do_mkdirat (40,404,040 samples, 0.39%)</title><rect x="676.4" y="565" width="5.4" height="15.0" fill="rgb(0,194,185)" rx="2" ry="2" /> +<text x="679.44" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_rename (121,212,120 samples, 1.17%)</title><rect x="646.8" y="629" width="16.2" height="15.0" fill="rgb(0,214,124)" rx="2" ry="2" /> +<text x="649.82" y="639.5" ></text> +</g> +<g > +<title>ext4_rmdir (10,101,010 samples, 0.10%)</title><rect x="385.6" y="629" width="1.4" height="15.0" fill="rgb(0,233,116)" rx="2" ry="2" /> +<text x="388.63" y="639.5" ></text> +</g> +<g > +<title>alloc_pages (20,202,020 samples, 0.20%)</title><rect x="1073.6" y="405" width="2.7" height="15.0" fill="rgb(0,198,13)" rx="2" ry="2" /> +<text x="1076.61" y="415.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.10%)</title><rect x="676.4" y="501" width="1.4" height="15.0" fill="rgb(0,236,54)" rx="2" ry="2" /> +<text x="679.44" y="511.5" ></text> +</g> +<g > +<title>ext4_rename (50,505,050 samples, 0.49%)</title><rect x="929.6" y="597" width="6.7" height="15.0" fill="rgb(0,219,131)" rx="2" ry="2" /> +<text x="932.55" y="607.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="994.2" y="549" width="1.3" height="15.0" fill="rgb(0,239,40)" rx="2" ry="2" /> +<text x="997.18" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (10,101,010 samples, 0.10%)</title><rect x="207.9" y="565" width="1.4" height="15.0" fill="rgb(0,214,145)" rx="2" ry="2" /> +<text x="210.91" y="575.5" ></text> +</g> +<g > +<title>ext4_append (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="661" width="4.0" height="15.0" fill="rgb(0,202,205)" rx="2" ry="2" /> +<text x="1255.67" y="671.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="677.8" y="405" width="1.3" height="15.0" fill="rgb(0,202,106)" rx="2" ry="2" /> +<text x="680.79" y="415.5" ></text> +</g> +<g > +<title>ext4_mb_release_context.isra.0 (10,101,010 samples, 0.10%)</title><rect x="844.7" y="437" width="1.4" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="847.73" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="325.0" y="629" width="1.4" height="15.0" fill="rgb(0,203,185)" rx="2" ry="2" /> +<text x="328.04" y="639.5" ></text> +</g> +<g > +<title>blk_mq_sched_insert_requests (30,303,030 samples, 0.29%)</title><rect x="1124.8" y="421" width="4.0" height="15.0" fill="rgb(0,223,155)" rx="2" ry="2" /> +<text x="1127.77" y="431.5" ></text> +</g> +<g > +<title>malloc (20,202,020 samples, 0.20%)</title><rect x="866.3" y="581" width="2.7" height="15.0" fill="rgb(0,237,107)" rx="2" ry="2" /> +<text x="869.27" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (161,616,160 samples, 1.56%)</title><rect x="568.7" y="645" width="21.6" height="15.0" fill="rgb(0,235,85)" rx="2" ry="2" /> +<text x="571.73" y="655.5" >d..</text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.10%)</title><rect x="831.3" y="517" width="1.3" height="15.0" fill="rgb(0,202,60)" rx="2" ry="2" /> +<text x="834.27" y="527.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.10%)</title><rect x="988.8" y="485" width="1.3" height="15.0" fill="rgb(0,229,156)" rx="2" ry="2" /> +<text x="991.79" y="495.5" ></text> +</g> +<g > +<title>do_sys_openat2 (30,303,030 samples, 0.29%)</title><rect x="1000.9" y="629" width="4.0" height="15.0" fill="rgb(0,200,141)" rx="2" ry="2" /> +<text x="1003.91" y="639.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.20%)</title><rect x="757.2" y="549" width="2.7" height="15.0" fill="rgb(0,213,182)" rx="2" ry="2" /> +<text x="760.22" y="559.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="501" width="1.3" height="15.0" fill="rgb(0,212,16)" rx="2" ry="2" /> +<text x="1032.18" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="1245.9" y="677" width="2.7" height="15.0" fill="rgb(0,226,1)" rx="2" ry="2" /> +<text x="1248.94" y="687.5" ></text> +</g> +<g > +<title>ext4_file_open (10,101,010 samples, 0.10%)</title><rect x="541.8" y="517" width="1.4" height="15.0" fill="rgb(0,222,115)" rx="2" ry="2" /> +<text x="544.80" y="527.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.10%)</title><rect x="1077.6" y="565" width="1.4" height="15.0" fill="rgb(0,194,168)" rx="2" ry="2" /> +<text x="1080.65" y="575.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="754.5" y="517" width="1.4" height="15.0" fill="rgb(0,222,47)" rx="2" ry="2" /> +<text x="757.53" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="712.8" y="645" width="1.3" height="15.0" fill="rgb(0,228,4)" rx="2" ry="2" /> +<text x="715.79" y="655.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="1062.8" y="581" width="1.4" height="15.0" fill="rgb(0,194,183)" rx="2" ry="2" /> +<text x="1065.84" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="759.9" y="581" width="2.7" height="15.0" fill="rgb(0,190,59)" rx="2" ry="2" /> +<text x="762.91" y="591.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="427.4" y="517" width="1.3" height="15.0" fill="rgb(0,210,63)" rx="2" ry="2" /> +<text x="430.37" y="527.5" ></text> +</g> +<g > +<title>pagecache_get_page (20,202,020 samples, 0.20%)</title><rect x="1053.4" y="533" width="2.7" height="15.0" fill="rgb(0,212,7)" rx="2" ry="2" /> +<text x="1056.41" y="543.5" ></text> +</g> +<g > +<title>schedule (40,404,040 samples, 0.39%)</title><rect x="1352.3" y="725" width="5.4" height="15.0" fill="rgb(0,238,110)" rx="2" ry="2" /> +<text x="1355.30" y="735.5" ></text> +</g> +<g > +<title>new_sync_read (30,303,030 samples, 0.29%)</title><rect x="1305.2" y="693" width="4.0" height="15.0" fill="rgb(0,203,87)" rx="2" ry="2" /> +<text x="1308.18" y="703.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="607.8" y="629" width="1.3" height="15.0" fill="rgb(0,219,57)" rx="2" ry="2" /> +<text x="610.78" y="639.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.10%)</title><rect x="440.8" y="341" width="1.4" height="15.0" fill="rgb(0,219,41)" rx="2" ry="2" /> +<text x="443.83" y="351.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1162.5" y="693" width="1.3" height="15.0" fill="rgb(0,200,143)" rx="2" ry="2" /> +<text x="1165.47" y="703.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="913.4" y="629" width="1.3" height="15.0" fill="rgb(0,231,42)" rx="2" ry="2" /> +<text x="916.40" y="639.5" ></text> +</g> +<g > +<title>do_renameat2 (101,010,100 samples, 0.98%)</title><rect x="836.7" y="629" width="13.4" height="15.0" fill="rgb(0,239,138)" rx="2" ry="2" /> +<text x="839.65" y="639.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="1158.4" y="613" width="1.4" height="15.0" fill="rgb(0,239,188)" rx="2" ry="2" /> +<text x="1161.43" y="623.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (20,202,020 samples, 0.20%)</title><rect x="1081.7" y="437" width="2.7" height="15.0" fill="rgb(0,213,64)" rx="2" ry="2" /> +<text x="1084.69" y="447.5" ></text> +</g> +<g > +<title>__blk_mq_sched_dispatch_requests (30,303,030 samples, 0.29%)</title><rect x="1124.8" y="341" width="4.0" height="15.0" fill="rgb(0,198,126)" rx="2" ry="2" /> +<text x="1127.77" y="351.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="681.8" y="613" width="2.7" height="15.0" fill="rgb(0,202,83)" rx="2" ry="2" /> +<text x="684.82" y="623.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="453" width="5.4" height="15.0" fill="rgb(0,211,49)" rx="2" ry="2" /> +<text x="1383.58" y="463.5" ></text> +</g> +<g > +<title>sock_alloc (10,101,010 samples, 0.10%)</title><rect x="1388.7" y="757" width="1.3" height="15.0" fill="rgb(0,235,167)" rx="2" ry="2" /> +<text x="1391.65" y="767.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.10%)</title><rect x="929.6" y="469" width="1.3" height="15.0" fill="rgb(0,230,151)" rx="2" ry="2" /> +<text x="932.55" y="479.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="998.2" y="533" width="1.4" height="15.0" fill="rgb(0,204,111)" rx="2" ry="2" /> +<text x="1001.21" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="804.3" y="629" width="1.4" height="15.0" fill="rgb(0,238,67)" rx="2" ry="2" /> +<text x="807.34" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (101,010,100 samples, 0.98%)</title><rect x="836.7" y="661" width="13.4" height="15.0" fill="rgb(0,195,100)" rx="2" ry="2" /> +<text x="839.65" y="671.5" ></text> +</g> +<g > +<title>filename_create (10,101,010 samples, 0.10%)</title><rect x="1111.3" y="597" width="1.4" height="15.0" fill="rgb(0,219,64)" rx="2" ry="2" /> +<text x="1114.31" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="1227.1" y="725" width="2.7" height="15.0" fill="rgb(0,212,111)" rx="2" ry="2" /> +<text x="1230.09" y="735.5" ></text> +</g> +<g > +<title>__tcp_close (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="629" width="1.4" height="15.0" fill="rgb(0,236,136)" rx="2" ry="2" /> +<text x="1379.54" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="741.1" y="565" width="2.7" height="15.0" fill="rgb(0,227,54)" rx="2" ry="2" /> +<text x="744.06" y="575.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.10%)</title><rect x="858.2" y="485" width="1.3" height="15.0" fill="rgb(0,225,42)" rx="2" ry="2" /> +<text x="861.20" y="495.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="737.0" y="597" width="1.4" height="15.0" fill="rgb(0,191,204)" rx="2" ry="2" /> +<text x="740.02" y="607.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="581" width="1.4" height="15.0" fill="rgb(0,193,10)" rx="2" ry="2" /> +<text x="1030.83" y="591.5" ></text> +</g> +<g > +<title>ext4_map_blocks (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="613" width="4.0" height="15.0" fill="rgb(0,216,70)" rx="2" ry="2" /> +<text x="1255.67" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="669.7" y="645" width="1.4" height="15.0" fill="rgb(0,235,85)" rx="2" ry="2" /> +<text x="672.71" y="655.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.10%)</title><rect x="54.4" y="613" width="1.4" height="15.0" fill="rgb(0,220,173)" rx="2" ry="2" /> +<text x="57.43" y="623.5" ></text> +</g> +<g > +<title>try_to_unlazy (10,101,010 samples, 0.10%)</title><rect x="325.0" y="533" width="1.4" height="15.0" fill="rgb(0,231,109)" rx="2" ry="2" /> +<text x="328.04" y="543.5" ></text> +</g> +<g > +<title>ip_local_out (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="133" width="1.4" height="15.0" fill="rgb(0,220,184)" rx="2" ry="2" /> +<text x="1376.84" y="143.5" ></text> +</g> +<g > +<title>__open64 (353,535,350 samples, 3.41%)</title><rect x="123.1" y="917" width="47.1" height="15.0" fill="rgb(0,192,154)" rx="2" ry="2" /> +<text x="126.09" y="927.5" >__op..</text> +</g> +<g > +<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.10%)</title><rect x="1333.5" y="421" width="1.3" height="15.0" fill="rgb(0,196,203)" rx="2" ry="2" /> +<text x="1336.45" y="431.5" ></text> +</g> +<g > +<title>git_config_add_backend (30,303,030 samples, 0.29%)</title><rect x="1066.9" y="709" width="4.0" height="15.0" fill="rgb(0,199,60)" rx="2" ry="2" /> +<text x="1069.88" y="719.5" ></text> +</g> +<g > +<title>ext4_create (10,101,010 samples, 0.10%)</title><rect x="937.6" y="597" width="1.4" height="15.0" fill="rgb(0,213,12)" rx="2" ry="2" /> +<text x="940.63" y="607.5" ></text> +</g> +<g > +<title>ktime_get_coarse_real_ts64 (10,101,010 samples, 0.10%)</title><rect x="271.2" y="549" width="1.3" height="15.0" fill="rgb(0,218,178)" rx="2" ry="2" /> +<text x="274.19" y="559.5" ></text> +</g> +<g > +<title>pgd_free (10,101,010 samples, 0.10%)</title><rect x="1307.9" y="597" width="1.3" height="15.0" fill="rgb(0,203,176)" rx="2" ry="2" /> +<text x="1310.87" y="607.5" ></text> +</g> +<g > +<title>git_config_add_backend (30,303,030 samples, 0.29%)</title><rect x="778.8" y="661" width="4.0" height="15.0" fill="rgb(0,228,68)" rx="2" ry="2" /> +<text x="781.76" y="671.5" ></text> +</g> +<g > +<title>common_perm_cond (10,101,010 samples, 0.10%)</title><rect x="642.8" y="549" width="1.3" height="15.0" fill="rgb(0,199,101)" rx="2" ry="2" /> +<text x="645.78" y="559.5" ></text> +</g> +<g > +<title>getenv (10,101,010 samples, 0.10%)</title><rect x="462.4" y="693" width="1.3" height="15.0" fill="rgb(0,225,92)" rx="2" ry="2" /> +<text x="465.37" y="703.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="792.2" y="581" width="1.4" height="15.0" fill="rgb(0,206,2)" rx="2" ry="2" /> +<text x="795.22" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (90,909,090 samples, 0.88%)</title><rect x="31.5" y="933" width="12.2" height="15.0" fill="rgb(0,204,173)" rx="2" ry="2" /> +<text x="34.54" y="943.5" ></text> +</g> +<g > +<title>__x64_sys_accept4 (50,505,050 samples, 0.49%)</title><rect x="86.7" y="757" width="6.8" height="15.0" fill="rgb(0,234,61)" rx="2" ry="2" /> +<text x="89.74" y="767.5" ></text> +</g> +<g > +<title>ext4_es_lookup_extent (10,101,010 samples, 0.10%)</title><rect x="831.3" y="437" width="1.3" height="15.0" fill="rgb(0,216,76)" rx="2" ry="2" /> +<text x="834.27" y="447.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="352.0" y="469" width="1.3" height="15.0" fill="rgb(0,211,107)" rx="2" ry="2" /> +<text x="354.97" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.68%)</title><rect x="704.7" y="693" width="9.4" height="15.0" fill="rgb(0,218,96)" rx="2" ry="2" /> +<text x="707.71" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="1368.5" y="741" width="2.7" height="15.0" fill="rgb(0,201,17)" rx="2" ry="2" /> +<text x="1371.46" y="751.5" ></text> +</g> +<g > +<title>net_send_buf (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="837" width="2.7" height="15.0" fill="rgb(0,220,124)" rx="2" ry="2" /> +<text x="1375.50" y="847.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="936.3" y="725" width="2.7" height="15.0" fill="rgb(0,210,3)" rx="2" ry="2" /> +<text x="939.28" y="735.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.10%)</title><rect x="922.8" y="517" width="1.4" height="15.0" fill="rgb(0,217,116)" rx="2" ry="2" /> +<text x="925.82" y="527.5" ></text> +</g> +<g > +<title>neigh_hh_output (10,101,010 samples, 0.10%)</title><rect x="1332.1" y="469" width="1.4" height="15.0" fill="rgb(0,230,23)" rx="2" ry="2" /> +<text x="1335.11" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (111,111,110 samples, 1.07%)</title><rect x="1206.9" y="693" width="14.8" height="15.0" fill="rgb(0,232,151)" rx="2" ry="2" /> +<text x="1209.90" y="703.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.20%)</title><rect x="672.4" y="533" width="2.7" height="15.0" fill="rgb(0,212,140)" rx="2" ry="2" /> +<text x="675.40" y="543.5" ></text> +</g> +<g > +<title>security_file_permission (10,101,010 samples, 0.10%)</title><rect x="805.7" y="549" width="1.3" height="15.0" fill="rgb(0,209,145)" rx="2" ry="2" /> +<text x="808.69" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="753.2" y="645" width="1.3" height="15.0" fill="rgb(0,196,160)" rx="2" ry="2" /> +<text x="756.18" y="655.5" ></text> +</g> +<g > +<title>__jbd2_journal_file_buffer (10,101,010 samples, 0.10%)</title><rect x="269.8" y="469" width="1.4" height="15.0" fill="rgb(0,208,138)" rx="2" ry="2" /> +<text x="272.84" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="536.4" y="725" width="4.1" height="15.0" fill="rgb(0,210,123)" rx="2" ry="2" /> +<text x="539.42" y="735.5" ></text> +</g> +<g > +<title>json_object_new_object (20,202,020 samples, 0.20%)</title><rect x="1318.6" y="821" width="2.7" height="15.0" fill="rgb(0,230,208)" rx="2" ry="2" /> +<text x="1321.64" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (20,202,020 samples, 0.20%)</title><rect x="693.9" y="629" width="2.7" height="15.0" fill="rgb(0,219,67)" rx="2" ry="2" /> +<text x="696.94" y="639.5" ></text> +</g> +<g > +<title>crypto_shash_update (20,202,020 samples, 0.20%)</title><rect x="148.7" y="645" width="2.7" height="15.0" fill="rgb(0,223,202)" rx="2" ry="2" /> +<text x="151.67" y="655.5" ></text> +</g> +<g > +<title>__ext4_link (20,202,020 samples, 0.20%)</title><rect x="601.0" y="581" width="2.7" height="15.0" fill="rgb(0,199,63)" rx="2" ry="2" /> +<text x="604.04" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="747.8" y="581" width="2.7" height="15.0" fill="rgb(0,207,113)" rx="2" ry="2" /> +<text x="750.80" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="633.4" y="629" width="1.3" height="15.0" fill="rgb(0,227,10)" rx="2" ry="2" /> +<text x="636.36" y="639.5" ></text> +</g> +<g > +<title>sock_sendmsg (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="709" width="5.4" height="15.0" fill="rgb(0,200,30)" rx="2" ry="2" /> +<text x="1331.07" y="719.5" ></text> +</g> +<g > +<title>evict (50,505,050 samples, 0.49%)</title><rect x="646.8" y="517" width="6.8" height="15.0" fill="rgb(0,229,54)" rx="2" ry="2" /> +<text x="649.82" y="527.5" ></text> +</g> +<g > +<title>ext4_es_insert_delayed_block (10,101,010 samples, 0.10%)</title><rect x="683.2" y="405" width="1.3" height="15.0" fill="rgb(0,197,74)" rx="2" ry="2" /> +<text x="686.17" y="415.5" ></text> +</g> +<g > +<title>uncharge_batch (10,101,010 samples, 0.10%)</title><rect x="652.2" y="405" width="1.4" height="15.0" fill="rgb(0,220,37)" rx="2" ry="2" /> +<text x="655.20" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 1.17%)</title><rect x="920.1" y="741" width="16.2" height="15.0" fill="rgb(0,200,73)" rx="2" ry="2" /> +<text x="923.13" y="751.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="792.2" y="565" width="1.4" height="15.0" fill="rgb(0,221,140)" rx="2" ry="2" /> +<text x="795.22" y="575.5" ></text> +</g> +<g > +<title>ip_local_out (60,606,060 samples, 0.59%)</title><rect x="65.2" y="453" width="8.1" height="15.0" fill="rgb(0,203,161)" rx="2" ry="2" /> +<text x="68.20" y="463.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="364.1" y="693" width="1.3" height="15.0" fill="rgb(0,230,112)" rx="2" ry="2" /> +<text x="367.09" y="703.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.10%)</title><rect x="895.9" y="517" width="1.3" height="15.0" fill="rgb(0,191,85)" rx="2" ry="2" /> +<text x="898.89" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="1240.6" y="613" width="1.3" height="15.0" fill="rgb(0,196,46)" rx="2" ry="2" /> +<text x="1243.56" y="623.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="454.3" y="549" width="2.7" height="15.0" fill="rgb(0,215,34)" rx="2" ry="2" /> +<text x="457.29" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.10%)</title><rect x="1019.8" y="677" width="1.3" height="15.0" fill="rgb(0,210,206)" rx="2" ry="2" /> +<text x="1022.76" y="687.5" ></text> +</g> +<g > +<title>generic_write_end (10,101,010 samples, 0.10%)</title><rect x="922.8" y="501" width="1.4" height="15.0" fill="rgb(0,213,43)" rx="2" ry="2" /> +<text x="925.82" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="1040.0" y="693" width="4.0" height="15.0" fill="rgb(0,204,118)" rx="2" ry="2" /> +<text x="1042.95" y="703.5" ></text> +</g> +<g > +<title>do_mkdirat (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="725" width="4.0" height="15.0" fill="rgb(0,197,86)" rx="2" ry="2" /> +<text x="1255.67" y="735.5" ></text> +</g> +<g > +<title>ext4_init_new_dir (111,111,110 samples, 1.07%)</title><rect x="1142.3" y="629" width="14.8" height="15.0" fill="rgb(0,194,39)" rx="2" ry="2" /> +<text x="1145.27" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="778.8" y="645" width="4.0" height="15.0" fill="rgb(0,191,114)" rx="2" ry="2" /> +<text x="781.76" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="531.0" y="693" width="5.4" height="15.0" fill="rgb(0,192,112)" rx="2" ry="2" /> +<text x="534.03" y="703.5" ></text> +</g> +<g > +<title>ip_rcv (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="309" width="1.3" height="15.0" fill="rgb(0,226,11)" rx="2" ry="2" /> +<text x="1337.80" y="319.5" ></text> +</g> +<g > +<title>ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="571.4" y="501" width="1.4" height="15.0" fill="rgb(0,200,134)" rx="2" ry="2" /> +<text x="574.42" y="511.5" ></text> +</g> +<g > +<title>scsi_io_completion (10,101,010 samples, 0.10%)</title><rect x="213.3" y="357" width="1.3" height="15.0" fill="rgb(0,191,146)" rx="2" ry="2" /> +<text x="216.30" y="367.5" ></text> +</g> +<g > +<title>evict (222,222,220 samples, 2.15%)</title><rect x="291.4" y="549" width="29.6" height="15.0" fill="rgb(0,222,15)" rx="2" ry="2" /> +<text x="294.39" y="559.5" >ev..</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="715.5" y="613" width="2.7" height="15.0" fill="rgb(0,195,163)" rx="2" ry="2" /> +<text x="718.48" y="623.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="236.2" y="565" width="1.3" height="15.0" fill="rgb(0,214,199)" rx="2" ry="2" /> +<text x="239.19" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="773" width="2.7" height="15.0" fill="rgb(0,211,15)" rx="2" ry="2" /> +<text x="1375.50" y="783.5" ></text> +</g> +<g > +<title>__es_insert_extent (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="389" width="1.3" height="15.0" fill="rgb(0,207,166)" rx="2" ry="2" /> +<text x="1029.49" y="399.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="10.0" y="885" width="1.3" height="15.0" fill="rgb(0,230,136)" rx="2" ry="2" /> +<text x="13.00" y="895.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="570.1" y="501" width="1.3" height="15.0" fill="rgb(0,207,8)" rx="2" ry="2" /> +<text x="573.08" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="828.6" y="693" width="4.0" height="15.0" fill="rgb(0,192,198)" rx="2" ry="2" /> +<text x="831.58" y="703.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (10,101,010 samples, 0.10%)</title><rect x="1338.8" y="325" width="1.4" height="15.0" fill="rgb(0,195,41)" rx="2" ry="2" /> +<text x="1341.84" y="335.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (80,808,080 samples, 0.78%)</title><rect x="62.5" y="709" width="10.8" height="15.0" fill="rgb(0,211,170)" rx="2" ry="2" /> +<text x="65.51" y="719.5" ></text> +</g> +<g > +<title>ext4_get_group_no_and_offset (10,101,010 samples, 0.10%)</title><rect x="1143.6" y="501" width="1.4" height="15.0" fill="rgb(0,227,87)" rx="2" ry="2" /> +<text x="1146.62" y="511.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (20,202,020 samples, 0.20%)</title><rect x="769.3" y="421" width="2.7" height="15.0" fill="rgb(0,213,12)" rx="2" ry="2" /> +<text x="772.34" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (313,131,310 samples, 3.02%)</title><rect x="941.7" y="693" width="41.7" height="15.0" fill="rgb(0,218,93)" rx="2" ry="2" /> +<text x="944.67" y="703.5" >[li..</text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="1320.0" y="805" width="1.3" height="15.0" fill="rgb(0,229,125)" rx="2" ry="2" /> +<text x="1322.99" y="815.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (20,202,020 samples, 0.20%)</title><rect x="1329.4" y="277" width="2.7" height="15.0" fill="rgb(0,200,45)" rx="2" ry="2" /> +<text x="1332.41" y="287.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="405.8" y="757" width="1.4" height="15.0" fill="rgb(0,214,199)" rx="2" ry="2" /> +<text x="408.82" y="767.5" ></text> +</g> +<g > +<title>d_lookup (10,101,010 samples, 0.10%)</title><rect x="598.4" y="565" width="1.3" height="15.0" fill="rgb(0,217,144)" rx="2" ry="2" /> +<text x="601.35" y="575.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="1158.4" y="597" width="1.4" height="15.0" fill="rgb(0,206,163)" rx="2" ry="2" /> +<text x="1161.43" y="607.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="220.0" y="613" width="1.4" height="15.0" fill="rgb(0,220,41)" rx="2" ry="2" /> +<text x="223.03" y="623.5" ></text> +</g> +<g > +<title>__dentry_kill (30,303,030 samples, 0.29%)</title><rect x="436.8" y="613" width="4.0" height="15.0" fill="rgb(0,191,63)" rx="2" ry="2" /> +<text x="439.79" y="623.5" ></text> +</g> +<g > +<title>__sock_release (10,101,010 samples, 0.10%)</title><rect x="27.5" y="693" width="1.3" height="15.0" fill="rgb(0,205,13)" rx="2" ry="2" /> +<text x="30.50" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="856.8" y="645" width="1.4" height="15.0" fill="rgb(0,201,184)" rx="2" ry="2" /> +<text x="859.85" y="655.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.20%)</title><rect x="446.2" y="613" width="2.7" height="15.0" fill="rgb(0,199,88)" rx="2" ry="2" /> +<text x="449.21" y="623.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (90,909,090 samples, 0.88%)</title><rect x="1237.9" y="741" width="12.1" height="15.0" fill="rgb(0,210,110)" rx="2" ry="2" /> +<text x="1240.86" y="751.5" ></text> +</g> +<g > +<title>truncate_inode_pages_final (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="469" width="1.4" height="15.0" fill="rgb(0,196,88)" rx="2" ry="2" /> +<text x="1030.83" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="947.1" y="581" width="2.6" height="15.0" fill="rgb(0,239,201)" rx="2" ry="2" /> +<text x="950.05" y="591.5" ></text> +</g> +<g > +<title>ext4_free_inode (20,202,020 samples, 0.20%)</title><rect x="436.8" y="533" width="2.7" height="15.0" fill="rgb(0,220,161)" rx="2" ry="2" /> +<text x="439.79" y="543.5" ></text> +</g> +<g > +<title>pick_file (10,101,010 samples, 0.10%)</title><rect x="1303.8" y="725" width="1.4" height="15.0" fill="rgb(0,235,45)" rx="2" ry="2" /> +<text x="1306.83" y="735.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.10%)</title><rect x="409.9" y="629" width="1.3" height="15.0" fill="rgb(0,214,197)" rx="2" ry="2" /> +<text x="412.86" y="639.5" ></text> +</g> +<g > +<title>git_repository_set_head (595,959,590 samples, 5.76%)</title><rect x="704.7" y="757" width="79.4" height="15.0" fill="rgb(0,219,66)" rx="2" ry="2" /> +<text x="707.71" y="767.5" >git_repos..</text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="127.1" y="885" width="1.4" height="15.0" fill="rgb(0,227,170)" rx="2" ry="2" /> +<text x="130.13" y="895.5" ></text> +</g> +<g > +<title>ext4_append (10,101,010 samples, 0.10%)</title><rect x="959.2" y="485" width="1.3" height="15.0" fill="rgb(0,220,93)" rx="2" ry="2" /> +<text x="962.17" y="495.5" ></text> +</g> +<g > +<title>ext4_setattr (10,101,010 samples, 0.10%)</title><rect x="1006.3" y="597" width="1.3" height="15.0" fill="rgb(0,192,126)" rx="2" ry="2" /> +<text x="1009.29" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="715.5" y="661" width="2.7" height="15.0" fill="rgb(0,205,69)" rx="2" ry="2" /> +<text x="718.48" y="671.5" ></text> +</g> +<g > +<title>vfs_read (20,202,020 samples, 0.20%)</title><rect x="986.1" y="517" width="2.7" height="15.0" fill="rgb(0,193,60)" rx="2" ry="2" /> +<text x="989.10" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_write (90,909,090 samples, 0.88%)</title><rect x="1044.0" y="677" width="12.1" height="15.0" fill="rgb(0,203,47)" rx="2" ry="2" /> +<text x="1046.99" y="687.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="209.3" y="229" width="1.3" height="15.0" fill="rgb(0,234,73)" rx="2" ry="2" /> +<text x="212.26" y="239.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (151,515,150 samples, 1.46%)</title><rect x="568.7" y="629" width="20.2" height="15.0" fill="rgb(0,237,206)" rx="2" ry="2" /> +<text x="571.73" y="639.5" ></text> +</g> +<g > +<title>__strdup (10,101,010 samples, 0.10%)</title><rect x="496.0" y="629" width="1.4" height="15.0" fill="rgb(0,231,4)" rx="2" ry="2" /> +<text x="499.03" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1351.0" y="805" width="1.3" height="15.0" fill="rgb(0,230,31)" rx="2" ry="2" /> +<text x="1353.96" y="815.5" ></text> +</g> +<g > +<title>ext4_free_blocks (10,101,010 samples, 0.10%)</title><rect x="840.7" y="421" width="1.3" height="15.0" fill="rgb(0,194,198)" rx="2" ry="2" /> +<text x="843.69" y="431.5" ></text> +</g> +<g > +<title>submit_bio (10,101,010 samples, 0.10%)</title><rect x="768.0" y="437" width="1.3" height="15.0" fill="rgb(0,219,105)" rx="2" ry="2" /> +<text x="770.99" y="447.5" ></text> +</g> +<g > +<title>chdir (40,404,040 samples, 0.39%)</title><rect x="1313.3" y="837" width="5.3" height="15.0" fill="rgb(0,219,60)" rx="2" ry="2" /> +<text x="1316.26" y="847.5" ></text> +</g> +<g > +<title>d_lookup (10,101,010 samples, 0.10%)</title><rect x="1111.3" y="549" width="1.4" height="15.0" fill="rgb(0,198,155)" rx="2" ry="2" /> +<text x="1114.31" y="559.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (20,202,020 samples, 0.20%)</title><rect x="1324.0" y="805" width="2.7" height="15.0" fill="rgb(0,205,1)" rx="2" ry="2" /> +<text x="1327.03" y="815.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="1196.1" y="501" width="1.4" height="15.0" fill="rgb(0,224,148)" rx="2" ry="2" /> +<text x="1199.13" y="511.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (30,303,030 samples, 0.29%)</title><rect x="808.4" y="565" width="4.0" height="15.0" fill="rgb(0,227,202)" rx="2" ry="2" /> +<text x="811.38" y="575.5" ></text> +</g> +<g > +<title>git_odb_read_header (40,404,040 samples, 0.39%)</title><rect x="531.0" y="725" width="5.4" height="15.0" fill="rgb(0,198,82)" rx="2" ry="2" /> +<text x="534.03" y="735.5" ></text> +</g> +<g > +<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.10%)</title><rect x="112.3" y="741" width="1.4" height="15.0" fill="rgb(0,203,174)" rx="2" ry="2" /> +<text x="115.32" y="751.5" ></text> +</g> +<g > +<title>__check_heap_object (10,101,010 samples, 0.10%)</title><rect x="980.7" y="517" width="1.4" height="15.0" fill="rgb(0,205,63)" rx="2" ry="2" /> +<text x="983.71" y="527.5" ></text> +</g> +<g > +<title>ip_local_out (60,606,060 samples, 0.59%)</title><rect x="1341.5" y="645" width="8.1" height="15.0" fill="rgb(0,219,48)" rx="2" ry="2" /> +<text x="1344.53" y="655.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="597" width="1.3" height="15.0" fill="rgb(0,195,11)" rx="2" ry="2" /> +<text x="1182.97" y="607.5" ></text> +</g> +<g > +<title>schedule (30,303,030 samples, 0.29%)</title><rect x="1305.2" y="661" width="4.0" height="15.0" fill="rgb(0,237,208)" rx="2" ry="2" /> +<text x="1308.18" y="671.5" ></text> +</g> +<g > +<title>ip_sabotage_in (10,101,010 samples, 0.10%)</title><rect x="1340.2" y="341" width="1.3" height="15.0" fill="rgb(0,201,52)" rx="2" ry="2" /> +<text x="1343.19" y="351.5" ></text> +</g> +<g > +<title>storvsc_on_channel_callback (10,101,010 samples, 0.10%)</title><rect x="1215.0" y="373" width="1.3" height="15.0" fill="rgb(0,209,32)" rx="2" ry="2" /> +<text x="1217.98" y="383.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="781.5" y="533" width="1.3" height="15.0" fill="rgb(0,233,132)" rx="2" ry="2" /> +<text x="784.45" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="1375.2" y="821" width="2.7" height="15.0" fill="rgb(0,221,94)" rx="2" ry="2" /> +<text x="1378.19" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 1.17%)</title><rect x="920.1" y="725" width="16.2" height="15.0" fill="rgb(0,232,62)" rx="2" ry="2" /> +<text x="923.13" y="735.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.10%)</title><rect x="178.3" y="789" width="1.3" height="15.0" fill="rgb(0,199,191)" rx="2" ry="2" /> +<text x="181.29" y="799.5" ></text> +</g> +<g > +<title>rmdir (40,404,040 samples, 0.39%)</title><rect x="407.2" y="757" width="5.4" height="15.0" fill="rgb(0,237,8)" rx="2" ry="2" /> +<text x="410.17" y="767.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.20%)</title><rect x="430.1" y="629" width="2.7" height="15.0" fill="rgb(0,236,131)" rx="2" ry="2" /> +<text x="433.06" y="639.5" ></text> +</g> +<g > +<title>skb_do_copy_data_nocache (10,101,010 samples, 0.10%)</title><rect x="12.7" y="677" width="1.3" height="15.0" fill="rgb(0,217,14)" rx="2" ry="2" /> +<text x="15.69" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="807.0" y="629" width="1.4" height="15.0" fill="rgb(0,222,79)" rx="2" ry="2" /> +<text x="810.03" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.59%)</title><rect x="228.1" y="597" width="8.1" height="15.0" fill="rgb(0,236,32)" rx="2" ry="2" /> +<text x="231.11" y="607.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (40,404,040 samples, 0.39%)</title><rect x="842.0" y="533" width="5.4" height="15.0" fill="rgb(0,215,87)" rx="2" ry="2" /> +<text x="845.04" y="543.5" ></text> +</g> +<g > +<title>__pagevec_release (10,101,010 samples, 0.10%)</title><rect x="652.2" y="453" width="1.4" height="15.0" fill="rgb(0,231,65)" rx="2" ry="2" /> +<text x="655.20" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="514.9" y="677" width="8.1" height="15.0" fill="rgb(0,207,17)" rx="2" ry="2" /> +<text x="517.88" y="687.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="1080.3" y="437" width="1.4" height="15.0" fill="rgb(0,193,196)" rx="2" ry="2" /> +<text x="1083.34" y="447.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="924.2" y="693" width="1.3" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" /> +<text x="927.17" y="703.5" ></text> +</g> +<g > +<title>up_write (10,101,010 samples, 0.10%)</title><rect x="965.9" y="549" width="1.3" height="15.0" fill="rgb(0,238,100)" rx="2" ry="2" /> +<text x="968.90" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="789.5" y="725" width="6.8" height="15.0" fill="rgb(0,198,183)" rx="2" ry="2" /> +<text x="792.53" y="735.5" ></text> +</g> +<g > +<title>_IO_fprintf (10,101,010 samples, 0.10%)</title><rect x="93.5" y="837" width="1.3" height="15.0" fill="rgb(0,239,101)" rx="2" ry="2" /> +<text x="96.47" y="847.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.56%)</title><rect x="753.2" y="677" width="21.5" height="15.0" fill="rgb(0,233,114)" rx="2" ry="2" /> +<text x="756.18" y="687.5" >[..</text> +</g> +<g > +<title>net_rx_action (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="437" width="2.7" height="15.0" fill="rgb(0,221,147)" rx="2" ry="2" /> +<text x="1380.88" y="447.5" ></text> +</g> +<g > +<title>[libpcre.so.3.13.3] (10,101,010 samples, 0.10%)</title><rect x="823.2" y="709" width="1.3" height="15.0" fill="rgb(0,201,52)" rx="2" ry="2" /> +<text x="826.19" y="719.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="416.6" y="757" width="1.3" height="15.0" fill="rgb(0,207,45)" rx="2" ry="2" /> +<text x="419.60" y="767.5" ></text> +</g> +<g > +<title>pte_alloc_one (10,101,010 samples, 0.10%)</title><rect x="1287.7" y="581" width="1.3" height="15.0" fill="rgb(0,200,106)" rx="2" ry="2" /> +<text x="1290.68" y="591.5" ></text> +</g> +<g > +<title>add_to_page_cache_lru (10,101,010 samples, 0.10%)</title><rect x="1099.2" y="437" width="1.3" height="15.0" fill="rgb(0,197,34)" rx="2" ry="2" /> +<text x="1102.19" y="447.5" ></text> +</g> +<g > +<title>__x64_sys_rename (70,707,070 samples, 0.68%)</title><rect x="926.9" y="661" width="9.4" height="15.0" fill="rgb(0,214,63)" rx="2" ry="2" /> +<text x="929.86" y="671.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.10%)</title><rect x="987.4" y="437" width="1.4" height="15.0" fill="rgb(0,195,30)" rx="2" ry="2" /> +<text x="990.44" y="447.5" ></text> +</g> +<g > +<title>release_sock (40,404,040 samples, 0.39%)</title><rect x="1336.1" y="725" width="5.4" height="15.0" fill="rgb(0,229,169)" rx="2" ry="2" /> +<text x="1339.15" y="735.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="1123.4" y="533" width="1.4" height="15.0" fill="rgb(0,226,106)" rx="2" ry="2" /> +<text x="1126.42" y="543.5" ></text> +</g> +<g > +<title>__napi_poll (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="373" width="1.3" height="15.0" fill="rgb(0,206,58)" rx="2" ry="2" /> +<text x="1337.80" y="383.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (30,303,030 samples, 0.29%)</title><rect x="1124.8" y="357" width="4.0" height="15.0" fill="rgb(0,238,37)" rx="2" ry="2" /> +<text x="1127.77" y="367.5" ></text> +</g> +<g > +<title>ext4_rename2 (20,202,020 samples, 0.20%)</title><rect x="1084.4" y="565" width="2.7" height="15.0" fill="rgb(0,232,9)" rx="2" ry="2" /> +<text x="1087.38" y="575.5" ></text> +</g> +<g > +<title>free (20,202,020 samples, 0.20%)</title><rect x="634.7" y="661" width="2.7" height="15.0" fill="rgb(0,235,111)" rx="2" ry="2" /> +<text x="637.70" y="671.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.10%)</title><rect x="1053.4" y="501" width="1.4" height="15.0" fill="rgb(0,197,83)" rx="2" ry="2" /> +<text x="1056.41" y="511.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="314.3" y="341" width="1.3" height="15.0" fill="rgb(0,234,91)" rx="2" ry="2" /> +<text x="317.27" y="351.5" ></text> +</g> +<g > +<title>schedule_hrtimeout_range (60,606,060 samples, 0.59%)</title><rect x="46.4" y="757" width="8.0" height="15.0" fill="rgb(0,236,117)" rx="2" ry="2" /> +<text x="49.35" y="767.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.10%)</title><rect x="1040.0" y="629" width="1.3" height="15.0" fill="rgb(0,203,12)" rx="2" ry="2" /> +<text x="1042.95" y="639.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="905.3" y="469" width="1.4" height="15.0" fill="rgb(0,194,101)" rx="2" ry="2" /> +<text x="908.32" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="490.6" y="661" width="6.8" height="15.0" fill="rgb(0,218,167)" rx="2" ry="2" /> +<text x="493.64" y="671.5" ></text> +</g> +<g > +<title>__tcp_push_pending_frames (70,707,070 samples, 0.68%)</title><rect x="63.9" y="533" width="9.4" height="15.0" fill="rgb(0,206,53)" rx="2" ry="2" /> +<text x="66.85" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (131,313,130 samples, 1.27%)</title><rect x="672.4" y="661" width="17.5" height="15.0" fill="rgb(0,231,50)" rx="2" ry="2" /> +<text x="675.40" y="671.5" ></text> +</g> +<g > +<title>inode_io_list_del (10,101,010 samples, 0.10%)</title><rect x="330.4" y="565" width="1.4" height="15.0" fill="rgb(0,223,157)" rx="2" ry="2" /> +<text x="333.43" y="575.5" ></text> +</g> +<g > +<title>inet_release (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="661" width="2.6" height="15.0" fill="rgb(0,220,135)" rx="2" ry="2" /> +<text x="1336.45" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="940.3" y="661" width="1.4" height="15.0" fill="rgb(0,230,108)" rx="2" ry="2" /> +<text x="943.32" y="671.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.10%)</title><rect x="306.2" y="453" width="1.3" height="15.0" fill="rgb(0,218,123)" rx="2" ry="2" /> +<text x="309.20" y="463.5" ></text> +</g> +<g > +<title>lh_table_new (10,101,010 samples, 0.10%)</title><rect x="1318.6" y="805" width="1.4" height="15.0" fill="rgb(0,228,33)" rx="2" ry="2" /> +<text x="1321.64" y="815.5" ></text> +</g> +<g > +<title>__ip_finish_output (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="517" width="2.7" height="15.0" fill="rgb(0,218,28)" rx="2" ry="2" /> +<text x="1380.88" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (5,171,717,120 samples, 49.95%)</title><rect x="560.7" y="805" width="689.3" height="15.0" fill="rgb(0,200,185)" rx="2" ry="2" /> +<text x="563.65" y="815.5" >[libgit2.so.1.1.0]</text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="181" width="1.4" height="15.0" fill="rgb(0,210,103)" rx="2" ry="2" /> +<text x="1376.84" y="191.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="581" width="2.7" height="15.0" fill="rgb(0,213,85)" rx="2" ry="2" /> +<text x="1341.84" y="591.5" ></text> +</g> +<g > +<title>tcp_push (80,808,080 samples, 0.78%)</title><rect x="14.0" y="677" width="10.8" height="15.0" fill="rgb(0,202,194)" rx="2" ry="2" /> +<text x="17.04" y="687.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="183.7" y="725" width="1.3" height="15.0" fill="rgb(0,211,182)" rx="2" ry="2" /> +<text x="186.68" y="735.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="252.3" y="485" width="1.4" height="15.0" fill="rgb(0,202,121)" rx="2" ry="2" /> +<text x="255.34" y="495.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="413.9" y="741" width="1.3" height="15.0" fill="rgb(0,228,156)" rx="2" ry="2" /> +<text x="416.90" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="189.1" y="773" width="1.3" height="15.0" fill="rgb(0,196,155)" rx="2" ry="2" /> +<text x="192.06" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="693" width="1.4" height="15.0" fill="rgb(0,190,6)" rx="2" ry="2" /> +<text x="1207.20" y="703.5" ></text> +</g> +<g > +<title>__put_user_nocheck_8 (10,101,010 samples, 0.10%)</title><rect x="1302.5" y="677" width="1.3" height="15.0" fill="rgb(0,220,19)" rx="2" ry="2" /> +<text x="1305.49" y="687.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="1107.3" y="677" width="1.3" height="15.0" fill="rgb(0,199,161)" rx="2" ry="2" /> +<text x="1110.27" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (313,131,310 samples, 3.02%)</title><rect x="941.7" y="677" width="41.7" height="15.0" fill="rgb(0,220,10)" rx="2" ry="2" /> +<text x="944.67" y="687.5" >[li..</text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.10%)</title><rect x="483.9" y="501" width="1.4" height="15.0" fill="rgb(0,194,69)" rx="2" ry="2" /> +<text x="486.91" y="511.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="461.0" y="597" width="1.4" height="15.0" fill="rgb(0,235,68)" rx="2" ry="2" /> +<text x="464.02" y="607.5" ></text> +</g> +<g > +<title>ext4_unlink (40,404,040 samples, 0.39%)</title><rect x="214.6" y="517" width="5.4" height="15.0" fill="rgb(0,237,144)" rx="2" ry="2" /> +<text x="217.64" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="326.4" y="677" width="1.3" height="15.0" fill="rgb(0,228,95)" rx="2" ry="2" /> +<text x="329.39" y="687.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="1247.3" y="581" width="1.3" height="15.0" fill="rgb(0,235,51)" rx="2" ry="2" /> +<text x="1250.29" y="591.5" ></text> +</g> +<g > +<title>ip_finish_output (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="533" width="2.7" height="15.0" fill="rgb(0,216,75)" rx="2" ry="2" /> +<text x="1380.88" y="543.5" ></text> +</g> +<g > +<title>close (20,202,020 samples, 0.20%)</title><rect x="638.7" y="677" width="2.7" height="15.0" fill="rgb(0,190,205)" rx="2" ry="2" /> +<text x="641.74" y="687.5" ></text> +</g> +<g > +<title>do_softirq (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="469" width="2.7" height="15.0" fill="rgb(0,238,16)" rx="2" ry="2" /> +<text x="1380.88" y="479.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="1302.5" y="661" width="1.3" height="15.0" fill="rgb(0,209,135)" rx="2" ry="2" /> +<text x="1305.49" y="671.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1196.1" y="533" width="1.4" height="15.0" fill="rgb(0,192,180)" rx="2" ry="2" /> +<text x="1199.13" y="543.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="754.5" y="565" width="1.4" height="15.0" fill="rgb(0,231,158)" rx="2" ry="2" /> +<text x="757.53" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (939,393,930 samples, 9.07%)</title><rect x="201.2" y="709" width="125.2" height="15.0" fill="rgb(0,191,69)" rx="2" ry="2" /> +<text x="204.18" y="719.5" >[libc.so.6]</text> +</g> +<g > +<title>ext4_evict_inode (50,505,050 samples, 0.49%)</title><rect x="372.2" y="597" width="6.7" height="15.0" fill="rgb(0,196,168)" rx="2" ry="2" /> +<text x="375.17" y="607.5" ></text> +</g> +<g > +<title>mntput_no_expire (10,101,010 samples, 0.10%)</title><rect x="764.0" y="581" width="1.3" height="15.0" fill="rgb(0,229,8)" rx="2" ry="2" /> +<text x="766.95" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="1136.9" y="549" width="1.3" height="15.0" fill="rgb(0,217,70)" rx="2" ry="2" /> +<text x="1139.89" y="559.5" ></text> +</g> +<g > +<title>ip_finish_output (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="533" width="2.7" height="15.0" fill="rgb(0,221,76)" rx="2" ry="2" /> +<text x="1341.84" y="543.5" ></text> +</g> +<g > +<title>wait_on_page_writeback (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="437" width="1.4" height="15.0" fill="rgb(0,202,126)" rx="2" ry="2" /> +<text x="1030.83" y="447.5" ></text> +</g> +<g > +<title>ext4_file_open (10,101,010 samples, 0.10%)</title><rect x="1010.3" y="565" width="1.4" height="15.0" fill="rgb(0,211,2)" rx="2" ry="2" /> +<text x="1013.33" y="575.5" ></text> +</g> +<g > +<title>ext4_mb_use_best_found (10,101,010 samples, 0.10%)</title><rect x="959.2" y="341" width="1.3" height="15.0" fill="rgb(0,194,146)" rx="2" ry="2" /> +<text x="962.17" y="351.5" ></text> +</g> +<g > +<title>ext4_da_update_reserve_space (10,101,010 samples, 0.10%)</title><rect x="843.4" y="437" width="1.3" height="15.0" fill="rgb(0,224,95)" rx="2" ry="2" /> +<text x="846.39" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1022.4" y="709" width="1.4" height="15.0" fill="rgb(0,233,119)" rx="2" ry="2" /> +<text x="1025.45" y="719.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.10%)</title><rect x="758.6" y="437" width="1.3" height="15.0" fill="rgb(0,195,17)" rx="2" ry="2" /> +<text x="761.57" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="506.8" y="741" width="1.3" height="15.0" fill="rgb(0,194,65)" rx="2" ry="2" /> +<text x="509.80" y="751.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.10%)</title><rect x="885.1" y="533" width="1.4" height="15.0" fill="rgb(0,206,44)" rx="2" ry="2" /> +<text x="888.12" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1110.0" y="629" width="1.3" height="15.0" fill="rgb(0,237,26)" rx="2" ry="2" /> +<text x="1112.96" y="639.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="1303.8" y="709" width="1.4" height="15.0" fill="rgb(0,208,139)" rx="2" ry="2" /> +<text x="1306.83" y="719.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.10%)</title><rect x="86.7" y="693" width="1.4" height="15.0" fill="rgb(0,221,118)" rx="2" ry="2" /> +<text x="89.74" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="434.1" y="629" width="1.3" height="15.0" fill="rgb(0,199,21)" rx="2" ry="2" /> +<text x="437.10" y="639.5" ></text> +</g> +<g > +<title>copy_page_range (80,808,080 samples, 0.78%)</title><rect x="1278.3" y="645" width="10.7" height="15.0" fill="rgb(0,193,153)" rx="2" ry="2" /> +<text x="1281.25" y="655.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.10%)</title><rect x="894.5" y="613" width="1.4" height="15.0" fill="rgb(0,220,195)" rx="2" ry="2" /> +<text x="897.55" y="623.5" ></text> +</g> +<g > +<title>path_lookupat (40,404,040 samples, 0.39%)</title><rect x="1058.8" y="613" width="5.4" height="15.0" fill="rgb(0,217,112)" rx="2" ry="2" /> +<text x="1061.80" y="623.5" ></text> +</g> +<g > +<title>tcp_connect (60,606,060 samples, 0.59%)</title><rect x="1341.5" y="709" width="8.1" height="15.0" fill="rgb(0,238,2)" rx="2" ry="2" /> +<text x="1344.53" y="719.5" ></text> +</g> +<g > +<title>__sys_socket (10,101,010 samples, 0.10%)</title><rect x="1388.7" y="789" width="1.3" height="15.0" fill="rgb(0,213,90)" rx="2" ry="2" /> +<text x="1391.65" y="799.5" ></text> +</g> +<g > +<title>bio_alloc_bioset (10,101,010 samples, 0.10%)</title><rect x="930.9" y="437" width="1.3" height="15.0" fill="rgb(0,198,106)" rx="2" ry="2" /> +<text x="933.90" y="447.5" ></text> +</g> +<g > +<title>new_sync_write (20,202,020 samples, 0.20%)</title><rect x="681.8" y="533" width="2.7" height="15.0" fill="rgb(0,194,44)" rx="2" ry="2" /> +<text x="684.82" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_write (20,202,020 samples, 0.20%)</title><rect x="430.1" y="645" width="2.7" height="15.0" fill="rgb(0,200,170)" rx="2" ry="2" /> +<text x="433.06" y="655.5" ></text> +</g> +<g > +<title>vfs_mkdir (171,717,170 samples, 1.66%)</title><rect x="1134.2" y="661" width="22.9" height="15.0" fill="rgb(0,229,200)" rx="2" ry="2" /> +<text x="1137.20" y="671.5" >v..</text> +</g> +<g > +<title>tcp_fin (20,202,020 samples, 0.20%)</title><rect x="69.2" y="117" width="2.7" height="15.0" fill="rgb(0,231,82)" rx="2" ry="2" /> +<text x="72.24" y="127.5" ></text> +</g> +<g > +<title>ext4_clear_inode (10,101,010 samples, 0.10%)</title><rect x="1041.3" y="581" width="1.3" height="15.0" fill="rgb(0,192,134)" rx="2" ry="2" /> +<text x="1044.30" y="591.5" ></text> +</g> +<g > +<title>tcp_finish_connect (10,101,010 samples, 0.10%)</title><rect x="1337.5" y="645" width="1.3" height="15.0" fill="rgb(0,196,208)" rx="2" ry="2" /> +<text x="1340.49" y="655.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="461.0" y="517" width="1.4" height="15.0" fill="rgb(0,193,194)" rx="2" ry="2" /> +<text x="464.02" y="527.5" ></text> +</g> +<g > +<title>fstatat (60,606,060 samples, 0.59%)</title><rect x="1057.5" y="741" width="8.0" height="15.0" fill="rgb(0,191,155)" rx="2" ry="2" /> +<text x="1060.45" y="751.5" ></text> +</g> +<g > +<title>close_fd (10,101,010 samples, 0.10%)</title><rect x="1219.0" y="613" width="1.4" height="15.0" fill="rgb(0,202,141)" rx="2" ry="2" /> +<text x="1222.01" y="623.5" ></text> +</g> +<g > +<title>inet_put_port (10,101,010 samples, 0.10%)</title><rect x="69.2" y="53" width="1.4" height="15.0" fill="rgb(0,231,178)" rx="2" ry="2" /> +<text x="72.24" y="63.5" ></text> +</g> +<g > +<title>tcp_set_state (10,101,010 samples, 0.10%)</title><rect x="1337.5" y="629" width="1.3" height="15.0" fill="rgb(0,196,89)" rx="2" ry="2" /> +<text x="1340.49" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="1157.1" y="725" width="2.7" height="15.0" fill="rgb(0,203,128)" rx="2" ry="2" /> +<text x="1160.08" y="735.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.10%)</title><rect x="952.4" y="437" width="1.4" height="15.0" fill="rgb(0,220,14)" rx="2" ry="2" /> +<text x="955.44" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="773" width="4.0" height="15.0" fill="rgb(0,207,35)" rx="2" ry="2" /> +<text x="1255.67" y="783.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.10%)</title><rect x="248.3" y="517" width="1.3" height="15.0" fill="rgb(0,192,143)" rx="2" ry="2" /> +<text x="251.30" y="527.5" ></text> +</g> +<g > +<title>ext4_mb_pa_free (10,101,010 samples, 0.10%)</title><rect x="1146.3" y="517" width="1.4" height="15.0" fill="rgb(0,211,183)" rx="2" ry="2" /> +<text x="1149.31" y="527.5" ></text> +</g> +<g > +<title>do_unlinkat (101,010,100 samples, 0.98%)</title><rect x="370.8" y="645" width="13.5" height="15.0" fill="rgb(0,211,139)" rx="2" ry="2" /> +<text x="373.82" y="655.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.10%)</title><rect x="178.3" y="773" width="1.3" height="15.0" fill="rgb(0,223,174)" rx="2" ry="2" /> +<text x="181.29" y="783.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="858.2" y="533" width="1.3" height="15.0" fill="rgb(0,219,123)" rx="2" ry="2" /> +<text x="861.20" y="543.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.10%)</title><rect x="807.0" y="549" width="1.4" height="15.0" fill="rgb(0,221,168)" rx="2" ry="2" /> +<text x="810.03" y="559.5" ></text> +</g> +<g > +<title>jbd2_journal_add_journal_head (20,202,020 samples, 0.20%)</title><rect x="579.5" y="469" width="2.7" height="15.0" fill="rgb(0,192,187)" rx="2" ry="2" /> +<text x="582.50" y="479.5" ></text> +</g> +<g > +<title>remove (111,111,110 samples, 1.07%)</title><rect x="369.5" y="725" width="14.8" height="15.0" fill="rgb(0,217,137)" rx="2" ry="2" /> +<text x="372.47" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.68%)</title><rect x="753.2" y="661" width="9.4" height="15.0" fill="rgb(0,192,194)" rx="2" ry="2" /> +<text x="756.18" y="671.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="427.4" y="565" width="1.3" height="15.0" fill="rgb(0,199,171)" rx="2" ry="2" /> +<text x="430.37" y="575.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="194.4" y="725" width="1.4" height="15.0" fill="rgb(0,230,181)" rx="2" ry="2" /> +<text x="197.45" y="735.5" ></text> +</g> +<g > +<title>git_config_add_backend (50,505,050 samples, 0.49%)</title><rect x="490.6" y="693" width="6.8" height="15.0" fill="rgb(0,206,72)" rx="2" ry="2" /> +<text x="493.64" y="703.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="481.2" y="533" width="1.4" height="15.0" fill="rgb(0,234,193)" rx="2" ry="2" /> +<text x="484.22" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="718.2" y="613" width="2.7" height="15.0" fill="rgb(0,215,93)" rx="2" ry="2" /> +<text x="721.18" y="623.5" ></text> +</g> +<g > +<title>mb_mark_used (10,101,010 samples, 0.10%)</title><rect x="120.4" y="629" width="1.3" height="15.0" fill="rgb(0,209,69)" rx="2" ry="2" /> +<text x="123.40" y="639.5" ></text> +</g> +<g > +<title>_IO_default_xsputn (10,101,010 samples, 0.10%)</title><rect x="1091.1" y="597" width="1.4" height="15.0" fill="rgb(0,233,56)" rx="2" ry="2" /> +<text x="1094.11" y="607.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.20%)</title><rect x="936.3" y="661" width="2.7" height="15.0" fill="rgb(0,204,52)" rx="2" ry="2" /> +<text x="939.28" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="824.5" y="725" width="1.4" height="15.0" fill="rgb(0,228,159)" rx="2" ry="2" /> +<text x="827.54" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.10%)</title><rect x="632.0" y="597" width="1.4" height="15.0" fill="rgb(0,209,9)" rx="2" ry="2" /> +<text x="635.01" y="607.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.10%)</title><rect x="595.7" y="677" width="1.3" height="15.0" fill="rgb(0,220,209)" rx="2" ry="2" /> +<text x="598.66" y="687.5" ></text> +</g> +<g > +<title>__d_alloc (10,101,010 samples, 0.10%)</title><rect x="504.1" y="565" width="1.4" height="15.0" fill="rgb(0,210,137)" rx="2" ry="2" /> +<text x="507.11" y="575.5" ></text> +</g> +<g > +<title>new_sync_write (30,303,030 samples, 0.29%)</title><rect x="685.9" y="549" width="4.0" height="15.0" fill="rgb(0,196,131)" rx="2" ry="2" /> +<text x="688.86" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="855.5" y="677" width="1.3" height="15.0" fill="rgb(0,204,13)" rx="2" ry="2" /> +<text x="858.50" y="687.5" ></text> +</g> +<g > +<title>crypto_shash_update (20,202,020 samples, 0.20%)</title><rect x="277.9" y="453" width="2.7" height="15.0" fill="rgb(0,216,196)" rx="2" ry="2" /> +<text x="280.92" y="463.5" ></text> +</g> +<g > +<title>do_sys_poll (40,404,040 samples, 0.39%)</title><rect x="1352.3" y="789" width="5.4" height="15.0" fill="rgb(0,202,143)" rx="2" ry="2" /> +<text x="1355.30" y="799.5" ></text> +</g> +<g > +<title>alloc_page_buffers (10,101,010 samples, 0.10%)</title><rect x="681.8" y="421" width="1.4" height="15.0" fill="rgb(0,217,3)" rx="2" ry="2" /> +<text x="684.82" y="431.5" ></text> +</g> +<g > +<title>schedule_hrtimeout_range_clock (40,404,040 samples, 0.39%)</title><rect x="1352.3" y="741" width="5.4" height="15.0" fill="rgb(0,210,104)" rx="2" ry="2" /> +<text x="1355.30" y="751.5" ></text> +</g> +<g > +<title>net_connect (90,909,090 samples, 0.88%)</title><rect x="1377.9" y="869" width="12.1" height="15.0" fill="rgb(0,208,85)" rx="2" ry="2" /> +<text x="1380.88" y="879.5" ></text> +</g> +<g > +<title>__find_get_block_slow (10,101,010 samples, 0.10%)</title><rect x="408.5" y="533" width="1.4" height="15.0" fill="rgb(0,194,149)" rx="2" ry="2" /> +<text x="411.52" y="543.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="501" width="1.3" height="15.0" fill="rgb(0,221,167)" rx="2" ry="2" /> +<text x="1029.49" y="511.5" ></text> +</g> +<g > +<title>ext4_free_blocks (10,101,010 samples, 0.10%)</title><rect x="209.3" y="373" width="1.3" height="15.0" fill="rgb(0,235,116)" rx="2" ry="2" /> +<text x="212.26" y="383.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.10%)</title><rect x="187.7" y="805" width="1.4" height="15.0" fill="rgb(0,239,86)" rx="2" ry="2" /> +<text x="190.72" y="815.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.10%)</title><rect x="751.8" y="501" width="1.4" height="15.0" fill="rgb(0,194,196)" rx="2" ry="2" /> +<text x="754.83" y="511.5" ></text> +</g> +<g > +<title>ext4_truncate (20,202,020 samples, 0.20%)</title><rect x="1081.7" y="469" width="2.7" height="15.0" fill="rgb(0,211,11)" rx="2" ry="2" /> +<text x="1084.69" y="479.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.10%)</title><rect x="1330.8" y="117" width="1.3" height="15.0" fill="rgb(0,219,72)" rx="2" ry="2" /> +<text x="1333.76" y="127.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="1188.0" y="725" width="5.4" height="15.0" fill="rgb(0,193,122)" rx="2" ry="2" /> +<text x="1191.05" y="735.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="1132.8" y="597" width="1.4" height="15.0" fill="rgb(0,212,122)" rx="2" ry="2" /> +<text x="1135.85" y="607.5" ></text> +</g> +<g > +<title>ext4_ext_insert_extent (10,101,010 samples, 0.10%)</title><rect x="117.7" y="693" width="1.4" height="15.0" fill="rgb(0,203,203)" rx="2" ry="2" /> +<text x="120.71" y="703.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="493.3" y="501" width="1.4" height="15.0" fill="rgb(0,227,67)" rx="2" ry="2" /> +<text x="496.34" y="511.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (20,202,020 samples, 0.20%)</title><rect x="638.7" y="629" width="2.7" height="15.0" fill="rgb(0,219,150)" rx="2" ry="2" /> +<text x="641.74" y="639.5" ></text> +</g> +<g > +<title>jbd2_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="347.9" y="533" width="1.4" height="15.0" fill="rgb(0,231,116)" rx="2" ry="2" /> +<text x="350.93" y="543.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.10%)</title><rect x="189.1" y="725" width="1.3" height="15.0" fill="rgb(0,233,74)" rx="2" ry="2" /> +<text x="192.06" y="735.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="964.6" y="549" width="1.3" height="15.0" fill="rgb(0,228,38)" rx="2" ry="2" /> +<text x="967.56" y="559.5" ></text> +</g> +<g > +<title>futex_wait_setup (10,101,010 samples, 0.10%)</title><rect x="57.1" y="709" width="1.4" height="15.0" fill="rgb(0,233,70)" rx="2" ry="2" /> +<text x="60.12" y="719.5" ></text> +</g> +<g > +<title>blk_mq_sched_insert_requests (10,101,010 samples, 0.10%)</title><rect x="766.6" y="405" width="1.4" height="15.0" fill="rgb(0,218,56)" rx="2" ry="2" /> +<text x="769.64" y="415.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="352.0" y="453" width="1.3" height="15.0" fill="rgb(0,221,129)" rx="2" ry="2" /> +<text x="354.97" y="463.5" ></text> +</g> +<g > +<title>mpage_submit_page (10,101,010 samples, 0.10%)</title><rect x="772.0" y="421" width="1.4" height="15.0" fill="rgb(0,203,159)" rx="2" ry="2" /> +<text x="775.03" y="431.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="391.0" y="757" width="1.4" height="15.0" fill="rgb(0,231,148)" rx="2" ry="2" /> +<text x="394.01" y="767.5" ></text> +</g> +<g > +<title>__indirect_thunk_start (10,101,010 samples, 0.10%)</title><rect x="294.1" y="437" width="1.3" height="15.0" fill="rgb(0,199,182)" rx="2" ry="2" /> +<text x="297.08" y="447.5" ></text> +</g> +<g > +<title>__ext4_unlink (20,202,020 samples, 0.20%)</title><rect x="397.7" y="629" width="2.7" height="15.0" fill="rgb(0,195,79)" rx="2" ry="2" /> +<text x="400.75" y="639.5" ></text> +</g> +<g > +<title>mpage_submit_page (10,101,010 samples, 0.10%)</title><rect x="1085.7" y="421" width="1.4" height="15.0" fill="rgb(0,200,159)" rx="2" ry="2" /> +<text x="1088.73" y="431.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="1175.9" y="629" width="2.7" height="15.0" fill="rgb(0,222,98)" rx="2" ry="2" /> +<text x="1178.93" y="639.5" ></text> +</g> +<g > +<title>dnotify_flush (10,101,010 samples, 0.10%)</title><rect x="979.4" y="565" width="1.3" height="15.0" fill="rgb(0,230,152)" rx="2" ry="2" /> +<text x="982.37" y="575.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="922.8" y="421" width="1.4" height="15.0" fill="rgb(0,194,207)" rx="2" ry="2" /> +<text x="925.82" y="431.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="501" width="1.4" height="15.0" fill="rgb(0,236,57)" rx="2" ry="2" /> +<text x="1207.20" y="511.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="482.6" y="565" width="1.3" height="15.0" fill="rgb(0,210,88)" rx="2" ry="2" /> +<text x="485.57" y="575.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.10%)</title><rect x="338.5" y="581" width="1.4" height="15.0" fill="rgb(0,198,182)" rx="2" ry="2" /> +<text x="341.51" y="591.5" ></text> +</g> +<g > +<title>log_prefix_thread_id (10,101,010 samples, 0.10%)</title><rect x="24.8" y="885" width="1.4" height="15.0" fill="rgb(0,239,11)" rx="2" ry="2" /> +<text x="27.81" y="895.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="870.3" y="421" width="1.4" height="15.0" fill="rgb(0,192,8)" rx="2" ry="2" /> +<text x="873.31" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1184.0" y="677" width="4.0" height="15.0" fill="rgb(0,196,200)" rx="2" ry="2" /> +<text x="1187.01" y="687.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.20%)</title><rect x="689.9" y="549" width="2.7" height="15.0" fill="rgb(0,207,145)" rx="2" ry="2" /> +<text x="692.90" y="559.5" ></text> +</g> +<g > +<title>client_destroy (141,414,140 samples, 1.37%)</title><rect x="54.4" y="837" width="18.9" height="15.0" fill="rgb(0,233,103)" rx="2" ry="2" /> +<text x="57.43" y="847.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="565" width="5.4" height="15.0" fill="rgb(0,226,101)" rx="2" ry="2" /> +<text x="1383.58" y="575.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="481.2" y="597" width="1.4" height="15.0" fill="rgb(0,196,188)" rx="2" ry="2" /> +<text x="484.22" y="607.5" ></text> +</g> +<g > +<title>ip_finish_output (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="613" width="5.4" height="15.0" fill="rgb(0,225,77)" rx="2" ry="2" /> +<text x="1383.58" y="623.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (10,101,010 samples, 0.10%)</title><rect x="1321.3" y="773" width="1.4" height="15.0" fill="rgb(0,227,111)" rx="2" ry="2" /> +<text x="1324.34" y="783.5" ></text> +</g> +<g > +<title>__sock_release (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="677" width="1.4" height="15.0" fill="rgb(0,215,115)" rx="2" ry="2" /> +<text x="1379.54" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1239.2" y="645" width="1.4" height="15.0" fill="rgb(0,202,108)" rx="2" ry="2" /> +<text x="1242.21" y="655.5" ></text> +</g> +<g > +<title>tcp_recvmsg_locked (20,202,020 samples, 0.20%)</title><rect x="1368.5" y="581" width="2.7" height="15.0" fill="rgb(0,190,168)" rx="2" ry="2" /> +<text x="1371.46" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="792.2" y="629" width="1.4" height="15.0" fill="rgb(0,190,192)" rx="2" ry="2" /> +<text x="795.22" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="902.6" y="597" width="1.4" height="15.0" fill="rgb(0,198,0)" rx="2" ry="2" /> +<text x="905.62" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="983.4" y="677" width="6.7" height="15.0" fill="rgb(0,195,152)" rx="2" ry="2" /> +<text x="986.40" y="687.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="233.5" y="389" width="1.3" height="15.0" fill="rgb(0,192,178)" rx="2" ry="2" /> +<text x="236.49" y="399.5" ></text> +</g> +<g > +<title>tcp_close (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="645" width="2.6" height="15.0" fill="rgb(0,190,174)" rx="2" ry="2" /> +<text x="1336.45" y="655.5" ></text> +</g> +<g > +<title>dnotify_flush (10,101,010 samples, 0.10%)</title><rect x="536.4" y="645" width="1.4" height="15.0" fill="rgb(0,229,190)" rx="2" ry="2" /> +<text x="539.42" y="655.5" ></text> +</g> +<g > +<title>blk_flush_plug_list (10,101,010 samples, 0.10%)</title><rect x="1084.4" y="437" width="1.3" height="15.0" fill="rgb(0,212,149)" rx="2" ry="2" /> +<text x="1087.38" y="447.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.10%)</title><rect x="1056.1" y="645" width="1.4" height="15.0" fill="rgb(0,229,121)" rx="2" ry="2" /> +<text x="1059.11" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="800.3" y="709" width="1.3" height="15.0" fill="rgb(0,207,179)" rx="2" ry="2" /> +<text x="803.30" y="719.5" ></text> +</g> +<g > +<title>json_tokener_new_ex (20,202,020 samples, 0.20%)</title><rect x="1363.1" y="757" width="2.7" height="15.0" fill="rgb(0,239,124)" rx="2" ry="2" /> +<text x="1366.07" y="767.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="1169.2" y="613" width="1.3" height="15.0" fill="rgb(0,221,159)" rx="2" ry="2" /> +<text x="1172.20" y="623.5" ></text> +</g> +<g > +<title>server_main (484,848,480 samples, 4.68%)</title><rect x="43.7" y="901" width="64.6" height="15.0" fill="rgb(0,223,135)" rx="2" ry="2" /> +<text x="46.66" y="911.5" >server_..</text> +</g> +<g > +<title>slab_free_freelist_hook.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="1342.9" y="517" width="1.3" height="15.0" fill="rgb(0,234,195)" rx="2" ry="2" /> +<text x="1345.88" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="939.0" y="677" width="2.7" height="15.0" fill="rgb(0,233,121)" rx="2" ry="2" /> +<text x="941.98" y="687.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.10%)</title><rect x="380.2" y="581" width="1.4" height="15.0" fill="rgb(0,212,15)" rx="2" ry="2" /> +<text x="383.24" y="591.5" ></text> +</g> +<g > +<title>free_unref_page (10,101,010 samples, 0.10%)</title><rect x="1307.9" y="549" width="1.3" height="15.0" fill="rgb(0,227,140)" rx="2" ry="2" /> +<text x="1310.87" y="559.5" ></text> +</g> +<g > +<title>ext4_truncate (40,404,040 samples, 0.39%)</title><rect x="230.8" y="485" width="5.4" height="15.0" fill="rgb(0,235,129)" rx="2" ry="2" /> +<text x="233.80" y="495.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (10,101,010 samples, 0.10%)</title><rect x="400.4" y="709" width="1.4" height="15.0" fill="rgb(0,231,160)" rx="2" ry="2" /> +<text x="403.44" y="719.5" ></text> +</g> +<g > +<title>cmd_dispatcher_handle_event (101,010,100 samples, 0.98%)</title><rect x="1357.7" y="853" width="13.5" height="15.0" fill="rgb(0,207,25)" rx="2" ry="2" /> +<text x="1360.69" y="863.5" ></text> +</g> +<g > +<title>do_filp_open (20,202,020 samples, 0.20%)</title><rect x="532.4" y="549" width="2.7" height="15.0" fill="rgb(0,197,31)" rx="2" ry="2" /> +<text x="535.38" y="559.5" ></text> +</g> +<g > +<title>ip_queue_xmit (20,202,020 samples, 0.20%)</title><rect x="18.1" y="197" width="2.7" height="15.0" fill="rgb(0,205,90)" rx="2" ry="2" /> +<text x="21.08" y="207.5" ></text> +</g> +<g > +<title>__blk_mq_run_hw_queue (10,101,010 samples, 0.10%)</title><rect x="1084.4" y="357" width="1.3" height="15.0" fill="rgb(0,235,54)" rx="2" ry="2" /> +<text x="1087.38" y="367.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.10%)</title><rect x="969.9" y="469" width="1.4" height="15.0" fill="rgb(0,229,122)" rx="2" ry="2" /> +<text x="972.94" y="479.5" ></text> +</g> +<g > +<title>vfs_rename (30,303,030 samples, 0.29%)</title><rect x="1030.5" y="581" width="4.1" height="15.0" fill="rgb(0,216,47)" rx="2" ry="2" /> +<text x="1033.53" y="591.5" ></text> +</g> +<g > +<title>iput (30,303,030 samples, 0.29%)</title><rect x="1080.3" y="517" width="4.1" height="15.0" fill="rgb(0,217,24)" rx="2" ry="2" /> +<text x="1083.34" y="527.5" ></text> +</g> +<g > +<title>evict (50,505,050 samples, 0.49%)</title><rect x="372.2" y="613" width="6.7" height="15.0" fill="rgb(0,217,131)" rx="2" ry="2" /> +<text x="375.17" y="623.5" ></text> +</g> +<g > +<title>ext4_bread (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="645" width="4.0" height="15.0" fill="rgb(0,225,20)" rx="2" ry="2" /> +<text x="1255.67" y="655.5" ></text> +</g> +<g > +<title>ip_local_out (50,505,050 samples, 0.49%)</title><rect x="1380.6" y="645" width="6.7" height="15.0" fill="rgb(0,217,154)" rx="2" ry="2" /> +<text x="1383.58" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="378.9" y="549" width="1.3" height="15.0" fill="rgb(0,221,131)" rx="2" ry="2" /> +<text x="381.90" y="559.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="1044.0" y="629" width="1.3" height="15.0" fill="rgb(0,227,176)" rx="2" ry="2" /> +<text x="1046.99" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1178.6" y="693" width="1.4" height="15.0" fill="rgb(0,228,111)" rx="2" ry="2" /> +<text x="1181.62" y="703.5" ></text> +</g> +<g > +<title>__sys_accept4 (50,505,050 samples, 0.49%)</title><rect x="86.7" y="741" width="6.8" height="15.0" fill="rgb(0,208,72)" rx="2" ry="2" /> +<text x="89.74" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="908.0" y="629" width="1.4" height="15.0" fill="rgb(0,195,146)" rx="2" ry="2" /> +<text x="911.01" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.59%)</title><rect x="392.4" y="709" width="8.0" height="15.0" fill="rgb(0,239,88)" rx="2" ry="2" /> +<text x="395.36" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="1194.8" y="725" width="8.1" height="15.0" fill="rgb(0,234,68)" rx="2" ry="2" /> +<text x="1197.78" y="735.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="621.2" y="645" width="2.7" height="15.0" fill="rgb(0,199,44)" rx="2" ry="2" /> +<text x="624.24" y="655.5" ></text> +</g> +<g > +<title>ext4_getblk (20,202,020 samples, 0.20%)</title><rect x="613.2" y="517" width="2.7" height="15.0" fill="rgb(0,228,206)" rx="2" ry="2" /> +<text x="616.16" y="527.5" ></text> +</g> +<g > +<title>__connect (80,808,080 samples, 0.78%)</title><rect x="1377.9" y="853" width="10.8" height="15.0" fill="rgb(0,231,157)" rx="2" ry="2" /> +<text x="1380.88" y="863.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="1194.8" y="693" width="6.7" height="15.0" fill="rgb(0,215,158)" rx="2" ry="2" /> +<text x="1197.78" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="777.4" y="661" width="1.4" height="15.0" fill="rgb(0,219,138)" rx="2" ry="2" /> +<text x="780.41" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="751.8" y="661" width="1.4" height="15.0" fill="rgb(0,216,13)" rx="2" ry="2" /> +<text x="754.83" y="671.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="403.1" y="661" width="1.4" height="15.0" fill="rgb(0,222,90)" rx="2" ry="2" /> +<text x="406.13" y="671.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="226.8" y="485" width="1.3" height="15.0" fill="rgb(0,226,76)" rx="2" ry="2" /> +<text x="229.76" y="495.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="189.1" y="757" width="1.3" height="15.0" fill="rgb(0,233,122)" rx="2" ry="2" /> +<text x="192.06" y="767.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="496.0" y="597" width="1.4" height="15.0" fill="rgb(0,215,99)" rx="2" ry="2" /> +<text x="499.03" y="607.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.10%)</title><rect x="1210.9" y="533" width="1.4" height="15.0" fill="rgb(0,239,109)" rx="2" ry="2" /> +<text x="1213.94" y="543.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (10,101,010 samples, 0.10%)</title><rect x="1120.7" y="469" width="1.4" height="15.0" fill="rgb(0,201,202)" rx="2" ry="2" /> +<text x="1123.73" y="479.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.10%)</title><rect x="922.8" y="613" width="1.4" height="15.0" fill="rgb(0,223,53)" rx="2" ry="2" /> +<text x="925.82" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (343,434,340 samples, 3.32%)</title><rect x="1088.4" y="693" width="45.8" height="15.0" fill="rgb(0,236,82)" rx="2" ry="2" /> +<text x="1091.42" y="703.5" >[lib..</text> +</g> +<g > +<title>mod_timer (10,101,010 samples, 0.10%)</title><rect x="23.5" y="581" width="1.3" height="15.0" fill="rgb(0,230,1)" rx="2" ry="2" /> +<text x="26.46" y="591.5" ></text> +</g> +<g > +<title>mkdir (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="789" width="4.0" height="15.0" fill="rgb(0,230,147)" rx="2" ry="2" /> +<text x="1255.67" y="799.5" ></text> +</g> +<g > +<title>nd_jump_root (10,101,010 samples, 0.10%)</title><rect x="168.9" y="789" width="1.3" height="15.0" fill="rgb(0,235,166)" rx="2" ry="2" /> +<text x="171.87" y="799.5" ></text> +</g> +<g > +<title>do_syscall_64 (90,909,090 samples, 0.88%)</title><rect x="1044.0" y="693" width="12.1" height="15.0" fill="rgb(0,209,7)" rx="2" ry="2" /> +<text x="1046.99" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="490.6" y="677" width="6.8" height="15.0" fill="rgb(0,223,108)" rx="2" ry="2" /> +<text x="493.64" y="687.5" ></text> +</g> +<g > +<title>copy_process (313,131,310 samples, 3.02%)</title><rect x="1259.4" y="693" width="41.7" height="15.0" fill="rgb(0,192,70)" rx="2" ry="2" /> +<text x="1262.40" y="703.5" >cop..</text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="918.8" y="629" width="1.3" height="15.0" fill="rgb(0,231,49)" rx="2" ry="2" /> +<text x="921.78" y="639.5" ></text> +</g> +<g > +<title>ext4_add_entry (10,101,010 samples, 0.10%)</title><rect x="957.8" y="501" width="1.4" height="15.0" fill="rgb(0,221,137)" rx="2" ry="2" /> +<text x="960.82" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (111,111,110 samples, 1.07%)</title><rect x="1206.9" y="725" width="14.8" height="15.0" fill="rgb(0,206,16)" rx="2" ry="2" /> +<text x="1209.90" y="735.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="953.8" y="421" width="1.3" height="15.0" fill="rgb(0,238,44)" rx="2" ry="2" /> +<text x="956.79" y="431.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="575.5" y="501" width="1.3" height="15.0" fill="rgb(0,223,42)" rx="2" ry="2" /> +<text x="578.46" y="511.5" ></text> +</g> +<g > +<title>git_config_set_int64 (131,313,130 samples, 1.27%)</title><rect x="1070.9" y="741" width="17.5" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="1073.92" y="751.5" ></text> +</g> +<g > +<title>dentry_kill (30,303,030 samples, 0.29%)</title><rect x="838.0" y="597" width="4.0" height="15.0" fill="rgb(0,238,93)" rx="2" ry="2" /> +<text x="841.00" y="607.5" ></text> +</g> +<g > +<title>realloc (10,101,010 samples, 0.10%)</title><rect x="1167.9" y="565" width="1.3" height="15.0" fill="rgb(0,197,50)" rx="2" ry="2" /> +<text x="1170.85" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="524.3" y="661" width="1.3" height="15.0" fill="rgb(0,209,30)" rx="2" ry="2" /> +<text x="527.30" y="671.5" ></text> +</g> +<g > +<title>file_exists (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="837" width="1.4" height="15.0" fill="rgb(0,218,166)" rx="2" ry="2" /> +<text x="1312.22" y="847.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="1174.6" y="725" width="5.4" height="15.0" fill="rgb(0,211,18)" rx="2" ry="2" /> +<text x="1177.59" y="735.5" ></text> +</g> +<g > +<title>tcp_ack (20,202,020 samples, 0.20%)</title><rect x="66.5" y="133" width="2.7" height="15.0" fill="rgb(0,218,15)" rx="2" ry="2" /> +<text x="69.55" y="143.5" ></text> +</g> +<g > +<title>do_softirq (20,202,020 samples, 0.20%)</title><rect x="1345.6" y="549" width="2.7" height="15.0" fill="rgb(0,221,66)" rx="2" ry="2" /> +<text x="1348.57" y="559.5" ></text> +</g> +<g > +<title>shrink_dcache_parent (10,101,010 samples, 0.10%)</title><rect x="387.0" y="629" width="1.3" height="15.0" fill="rgb(0,228,66)" rx="2" ry="2" /> +<text x="389.98" y="639.5" ></text> +</g> +<g > +<title>mkdir (141,414,140 samples, 1.37%)</title><rect x="949.7" y="613" width="18.9" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="952.75" y="623.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.10%)</title><rect x="498.7" y="565" width="1.4" height="15.0" fill="rgb(0,199,118)" rx="2" ry="2" /> +<text x="501.72" y="575.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.10%)</title><rect x="1377.9" y="309" width="1.3" height="15.0" fill="rgb(0,224,154)" rx="2" ry="2" /> +<text x="1380.88" y="319.5" ></text> +</g> +<g > +<title>fput (10,101,010 samples, 0.10%)</title><rect x="537.8" y="645" width="1.3" height="15.0" fill="rgb(0,233,14)" rx="2" ry="2" /> +<text x="540.77" y="655.5" ></text> +</g> +<g > +<title>fsnotify_perm.part.0 (10,101,010 samples, 0.10%)</title><rect x="237.5" y="517" width="1.4" height="15.0" fill="rgb(0,209,70)" rx="2" ry="2" /> +<text x="240.53" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="864.9" y="533" width="1.4" height="15.0" fill="rgb(0,220,104)" rx="2" ry="2" /> +<text x="867.93" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_futex (20,202,020 samples, 0.20%)</title><rect x="55.8" y="757" width="2.7" height="15.0" fill="rgb(0,194,45)" rx="2" ry="2" /> +<text x="58.78" y="767.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.10%)</title><rect x="574.1" y="517" width="1.4" height="15.0" fill="rgb(0,209,170)" rx="2" ry="2" /> +<text x="577.12" y="527.5" ></text> +</g> +<g > +<title>ip_local_deliver (50,505,050 samples, 0.49%)</title><rect x="65.2" y="229" width="6.7" height="15.0" fill="rgb(0,215,190)" rx="2" ry="2" /> +<text x="68.20" y="239.5" ></text> +</g> +<g > +<title>iput (10,101,010 samples, 0.10%)</title><rect x="209.3" y="501" width="1.3" height="15.0" fill="rgb(0,190,53)" rx="2" ry="2" /> +<text x="212.26" y="511.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="506.8" y="709" width="1.3" height="15.0" fill="rgb(0,211,38)" rx="2" ry="2" /> +<text x="509.80" y="719.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="617.2" y="533" width="1.3" height="15.0" fill="rgb(0,194,30)" rx="2" ry="2" /> +<text x="620.20" y="543.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="947.1" y="469" width="1.3" height="15.0" fill="rgb(0,200,145)" rx="2" ry="2" /> +<text x="950.05" y="479.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="1198.8" y="677" width="2.7" height="15.0" fill="rgb(0,206,129)" rx="2" ry="2" /> +<text x="1201.82" y="687.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="1220.4" y="565" width="1.3" height="15.0" fill="rgb(0,193,1)" rx="2" ry="2" /> +<text x="1223.36" y="575.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="489.3" y="661" width="1.3" height="15.0" fill="rgb(0,214,115)" rx="2" ry="2" /> +<text x="492.30" y="671.5" ></text> +</g> +<g > +<title>sock_alloc_inode (10,101,010 samples, 0.10%)</title><rect x="90.8" y="645" width="1.3" height="15.0" fill="rgb(0,229,20)" rx="2" ry="2" /> +<text x="93.78" y="655.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.10%)</title><rect x="610.5" y="565" width="1.3" height="15.0" fill="rgb(0,207,42)" rx="2" ry="2" /> +<text x="613.47" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="527.0" y="725" width="4.0" height="15.0" fill="rgb(0,226,44)" rx="2" ry="2" /> +<text x="530.00" y="735.5" ></text> +</g> +<g > +<title>__dquot_initialize (10,101,010 samples, 0.10%)</title><rect x="156.8" y="741" width="1.3" height="15.0" fill="rgb(0,197,167)" rx="2" ry="2" /> +<text x="159.75" y="751.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.20%)</title><rect x="936.3" y="645" width="2.7" height="15.0" fill="rgb(0,206,28)" rx="2" ry="2" /> +<text x="939.28" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="718.2" y="629" width="2.7" height="15.0" fill="rgb(0,234,115)" rx="2" ry="2" /> +<text x="721.18" y="639.5" ></text> +</g> +<g > +<title>evict (10,101,010 samples, 0.10%)</title><rect x="209.3" y="485" width="1.3" height="15.0" fill="rgb(0,226,70)" rx="2" ry="2" /> +<text x="212.26" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="661" width="1.4" height="15.0" fill="rgb(0,205,153)" rx="2" ry="2" /> +<text x="1207.20" y="671.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="792.2" y="613" width="1.4" height="15.0" fill="rgb(0,231,54)" rx="2" ry="2" /> +<text x="795.22" y="623.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="1021.1" y="725" width="1.3" height="15.0" fill="rgb(0,221,9)" rx="2" ry="2" /> +<text x="1024.10" y="735.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="570.1" y="485" width="1.3" height="15.0" fill="rgb(0,210,26)" rx="2" ry="2" /> +<text x="573.08" y="495.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.10%)</title><rect x="1224.4" y="565" width="1.3" height="15.0" fill="rgb(0,203,50)" rx="2" ry="2" /> +<text x="1227.40" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_readlink (10,101,010 samples, 0.10%)</title><rect x="1158.4" y="661" width="1.4" height="15.0" fill="rgb(0,235,5)" rx="2" ry="2" /> +<text x="1161.43" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (121,212,120 samples, 1.17%)</title><rect x="470.4" y="709" width="16.2" height="15.0" fill="rgb(0,239,161)" rx="2" ry="2" /> +<text x="473.45" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="642.8" y="661" width="2.7" height="15.0" fill="rgb(0,227,187)" rx="2" ry="2" /> +<text x="645.78" y="671.5" ></text> +</g> +<g > +<title>ihold (10,101,010 samples, 0.10%)</title><rect x="370.8" y="629" width="1.4" height="15.0" fill="rgb(0,216,188)" rx="2" ry="2" /> +<text x="373.82" y="639.5" ></text> +</g> +<g > +<title>mpage_submit_page (10,101,010 samples, 0.10%)</title><rect x="1033.2" y="421" width="1.4" height="15.0" fill="rgb(0,192,25)" rx="2" ry="2" /> +<text x="1036.22" y="431.5" ></text> +</g> +<g > +<title>ext4_bread (50,505,050 samples, 0.49%)</title><rect x="579.5" y="533" width="6.7" height="15.0" fill="rgb(0,233,40)" rx="2" ry="2" /> +<text x="582.50" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="632.0" y="629" width="1.4" height="15.0" fill="rgb(0,228,207)" rx="2" ry="2" /> +<text x="635.01" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="916.1" y="645" width="1.3" height="15.0" fill="rgb(0,222,183)" rx="2" ry="2" /> +<text x="919.09" y="655.5" ></text> +</g> +<g > +<title>git_config_snapshot (10,101,010 samples, 0.10%)</title><rect x="703.4" y="693" width="1.3" height="15.0" fill="rgb(0,225,181)" rx="2" ry="2" /> +<text x="706.37" y="703.5" ></text> +</g> +<g > +<title>iterate_dir (10,101,010 samples, 0.10%)</title><rect x="917.4" y="597" width="1.4" height="15.0" fill="rgb(0,204,157)" rx="2" ry="2" /> +<text x="920.43" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="852.8" y="725" width="1.4" height="15.0" fill="rgb(0,200,105)" rx="2" ry="2" /> +<text x="855.81" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="730.3" y="565" width="1.3" height="15.0" fill="rgb(0,214,57)" rx="2" ry="2" /> +<text x="733.29" y="575.5" ></text> +</g> +<g > +<title>git_signature_free (10,101,010 samples, 0.10%)</title><rect x="190.4" y="757" width="1.4" height="15.0" fill="rgb(0,222,156)" rx="2" ry="2" /> +<text x="193.41" y="767.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="459.7" y="661" width="1.3" height="15.0" fill="rgb(0,202,204)" rx="2" ry="2" /> +<text x="462.68" y="671.5" ></text> +</g> +<g > +<title>ipv4_confirm (10,101,010 samples, 0.10%)</title><rect x="1386.0" y="597" width="1.3" height="15.0" fill="rgb(0,212,135)" rx="2" ry="2" /> +<text x="1388.96" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="541.8" y="709" width="6.7" height="15.0" fill="rgb(0,210,30)" rx="2" ry="2" /> +<text x="544.80" y="719.5" ></text> +</g> +<g > +<title>xas_load (10,101,010 samples, 0.10%)</title><rect x="408.5" y="501" width="1.4" height="15.0" fill="rgb(0,205,62)" rx="2" ry="2" /> +<text x="411.52" y="511.5" ></text> +</g> +<g > +<title>vfs_rename (50,505,050 samples, 0.49%)</title><rect x="929.6" y="629" width="6.7" height="15.0" fill="rgb(0,226,61)" rx="2" ry="2" /> +<text x="932.55" y="639.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.10%)</title><rect x="483.9" y="517" width="1.4" height="15.0" fill="rgb(0,193,25)" rx="2" ry="2" /> +<text x="486.91" y="527.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.20%)</title><rect x="850.1" y="517" width="2.7" height="15.0" fill="rgb(0,222,182)" rx="2" ry="2" /> +<text x="853.12" y="527.5" ></text> +</g> +<g > +<title>exit_to_user_mode_loop (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="757" width="2.6" height="15.0" fill="rgb(0,225,103)" rx="2" ry="2" /> +<text x="1336.45" y="767.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="978.0" y="437" width="1.4" height="15.0" fill="rgb(0,205,147)" rx="2" ry="2" /> +<text x="981.02" y="447.5" ></text> +</g> +<g > +<title>do_mkdirat (141,414,140 samples, 1.37%)</title><rect x="568.7" y="613" width="18.9" height="15.0" fill="rgb(0,198,128)" rx="2" ry="2" /> +<text x="571.73" y="623.5" ></text> +</g> +<g > +<title>__ip_finish_output (20,202,020 samples, 0.20%)</title><rect x="1345.6" y="597" width="2.7" height="15.0" fill="rgb(0,239,154)" rx="2" ry="2" /> +<text x="1348.57" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="1213.6" y="613" width="4.1" height="15.0" fill="rgb(0,200,76)" rx="2" ry="2" /> +<text x="1216.63" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="936.3" y="709" width="2.7" height="15.0" fill="rgb(0,225,147)" rx="2" ry="2" /> +<text x="939.28" y="719.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="711.4" y="661" width="1.4" height="15.0" fill="rgb(0,200,165)" rx="2" ry="2" /> +<text x="714.44" y="671.5" ></text> +</g> +<g > +<title>ksys_write (90,909,090 samples, 0.88%)</title><rect x="1044.0" y="661" width="12.1" height="15.0" fill="rgb(0,238,98)" rx="2" ry="2" /> +<text x="1046.99" y="671.5" ></text> +</g> +<g > +<title>insert_inode_locked (10,101,010 samples, 0.10%)</title><rect x="955.1" y="485" width="1.4" height="15.0" fill="rgb(0,215,96)" rx="2" ry="2" /> +<text x="958.13" y="495.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="895.9" y="565" width="1.3" height="15.0" fill="rgb(0,204,60)" rx="2" ry="2" /> +<text x="898.89" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="325.0" y="645" width="1.4" height="15.0" fill="rgb(0,192,19)" rx="2" ry="2" /> +<text x="328.04" y="655.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.20%)</title><rect x="381.6" y="565" width="2.7" height="15.0" fill="rgb(0,191,168)" rx="2" ry="2" /> +<text x="384.59" y="575.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="357.4" y="485" width="1.3" height="15.0" fill="rgb(0,213,59)" rx="2" ry="2" /> +<text x="360.36" y="495.5" ></text> +</g> +<g > +<title>iput (10,101,010 samples, 0.10%)</title><rect x="926.9" y="565" width="1.3" height="15.0" fill="rgb(0,203,195)" rx="2" ry="2" /> +<text x="929.86" y="575.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="664.3" y="645" width="1.4" height="15.0" fill="rgb(0,194,45)" rx="2" ry="2" /> +<text x="667.32" y="655.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="111.0" y="901" width="2.7" height="15.0" fill="rgb(0,237,158)" rx="2" ry="2" /> +<text x="113.98" y="911.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (40,404,040 samples, 0.39%)</title><rect x="242.9" y="613" width="5.4" height="15.0" fill="rgb(0,202,182)" rx="2" ry="2" /> +<text x="245.92" y="623.5" ></text> +</g> +<g > +<title>ext4_inode_bitmap_csum_set (10,101,010 samples, 0.10%)</title><rect x="1015.7" y="549" width="1.4" height="15.0" fill="rgb(0,201,21)" rx="2" ry="2" /> +<text x="1018.72" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="944.4" y="613" width="1.3" height="15.0" fill="rgb(0,192,136)" rx="2" ry="2" /> +<text x="947.36" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_mkdir (60,606,060 samples, 0.59%)</title><rect x="115.0" y="853" width="8.1" height="15.0" fill="rgb(0,206,55)" rx="2" ry="2" /> +<text x="118.01" y="863.5" ></text> +</g> +<g > +<title>ext4_writepages (40,404,040 samples, 0.39%)</title><rect x="1124.8" y="485" width="5.4" height="15.0" fill="rgb(0,223,5)" rx="2" ry="2" /> +<text x="1127.77" y="495.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="284.7" y="437" width="1.3" height="15.0" fill="rgb(0,218,108)" rx="2" ry="2" /> +<text x="287.65" y="447.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="404.5" y="757" width="1.3" height="15.0" fill="rgb(0,239,52)" rx="2" ry="2" /> +<text x="407.48" y="767.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.10%)</title><rect x="700.7" y="581" width="1.3" height="15.0" fill="rgb(0,229,115)" rx="2" ry="2" /> +<text x="703.67" y="591.5" ></text> +</g> +<g > +<title>ext4_evict_inode (20,202,020 samples, 0.20%)</title><rect x="1041.3" y="613" width="2.7" height="15.0" fill="rgb(0,220,93)" rx="2" ry="2" /> +<text x="1044.30" y="623.5" ></text> +</g> +<g > +<title>nf_conntrack_free (10,101,010 samples, 0.10%)</title><rect x="1342.9" y="549" width="1.3" height="15.0" fill="rgb(0,215,150)" rx="2" ry="2" /> +<text x="1345.88" y="559.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="672.4" y="437" width="2.7" height="15.0" fill="rgb(0,217,83)" rx="2" ry="2" /> +<text x="675.40" y="447.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.10%)</title><rect x="792.2" y="517" width="1.4" height="15.0" fill="rgb(0,218,55)" rx="2" ry="2" /> +<text x="795.22" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="789.5" y="629" width="1.4" height="15.0" fill="rgb(0,231,101)" rx="2" ry="2" /> +<text x="792.53" y="639.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="302.2" y="501" width="1.3" height="15.0" fill="rgb(0,237,66)" rx="2" ry="2" /> +<text x="305.16" y="511.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="1279.6" y="597" width="1.3" height="15.0" fill="rgb(0,198,41)" rx="2" ry="2" /> +<text x="1282.60" y="607.5" ></text> +</g> +<g > +<title>scsi_finish_command (10,101,010 samples, 0.10%)</title><rect x="213.3" y="373" width="1.3" height="15.0" fill="rgb(0,232,190)" rx="2" ry="2" /> +<text x="216.30" y="383.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.10%)</title><rect x="829.9" y="661" width="1.4" height="15.0" fill="rgb(0,204,180)" rx="2" ry="2" /> +<text x="832.92" y="671.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="420.6" y="805" width="1.4" height="15.0" fill="rgb(0,192,127)" rx="2" ry="2" /> +<text x="423.63" y="815.5" ></text> +</g> +<g > +<title>ext4_mkdir (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="693" width="4.0" height="15.0" fill="rgb(0,192,120)" rx="2" ry="2" /> +<text x="1255.67" y="703.5" ></text> +</g> +<g > +<title>ext4_inode_csum (20,202,020 samples, 0.20%)</title><rect x="277.9" y="469" width="2.7" height="15.0" fill="rgb(0,199,199)" rx="2" ry="2" /> +<text x="280.92" y="479.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.10%)</title><rect x="1053.4" y="469" width="1.4" height="15.0" fill="rgb(0,223,71)" rx="2" ry="2" /> +<text x="1056.41" y="479.5" ></text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="42.3" y="805" width="1.4" height="15.0" fill="rgb(0,228,14)" rx="2" ry="2" /> +<text x="45.31" y="815.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (10,101,010 samples, 0.10%)</title><rect x="1332.1" y="437" width="1.4" height="15.0" fill="rgb(0,190,70)" rx="2" ry="2" /> +<text x="1335.11" y="447.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="509.5" y="677" width="4.0" height="15.0" fill="rgb(0,223,59)" rx="2" ry="2" /> +<text x="512.49" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.10%)</title><rect x="633.4" y="597" width="1.3" height="15.0" fill="rgb(0,234,47)" rx="2" ry="2" /> +<text x="636.36" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="706.1" y="581" width="1.3" height="15.0" fill="rgb(0,201,179)" rx="2" ry="2" /> +<text x="709.06" y="591.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="427.4" y="581" width="1.3" height="15.0" fill="rgb(0,217,170)" rx="2" ry="2" /> +<text x="430.37" y="591.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.10%)</title><rect x="716.8" y="581" width="1.4" height="15.0" fill="rgb(0,199,114)" rx="2" ry="2" /> +<text x="719.83" y="591.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="482.6" y="693" width="1.3" height="15.0" fill="rgb(0,193,7)" rx="2" ry="2" /> +<text x="485.57" y="703.5" ></text> +</g> +<g > +<title>rcu_read_unlock_strict (10,101,010 samples, 0.10%)</title><rect x="1280.9" y="565" width="1.4" height="15.0" fill="rgb(0,207,5)" rx="2" ry="2" /> +<text x="1283.95" y="575.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.10%)</title><rect x="1057.5" y="645" width="1.3" height="15.0" fill="rgb(0,212,147)" rx="2" ry="2" /> +<text x="1060.45" y="655.5" ></text> +</g> +<g > +<title>git_index_read (10,101,010 samples, 0.10%)</title><rect x="549.9" y="757" width="1.3" height="15.0" fill="rgb(0,192,97)" rx="2" ry="2" /> +<text x="552.88" y="767.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (40,404,040 samples, 0.39%)</title><rect x="842.0" y="565" width="5.4" height="15.0" fill="rgb(0,211,9)" rx="2" ry="2" /> +<text x="845.04" y="575.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="724.9" y="565" width="1.4" height="15.0" fill="rgb(0,232,107)" rx="2" ry="2" /> +<text x="727.91" y="575.5" ></text> +</g> +<g > +<title>iput (232,323,230 samples, 2.24%)</title><rect x="290.0" y="565" width="31.0" height="15.0" fill="rgb(0,193,42)" rx="2" ry="2" /> +<text x="293.04" y="575.5" >iput</text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.10%)</title><rect x="945.7" y="613" width="1.4" height="15.0" fill="rgb(0,223,57)" rx="2" ry="2" /> +<text x="948.71" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1311.9" y="789" width="1.4" height="15.0" fill="rgb(0,212,148)" rx="2" ry="2" /> +<text x="1314.91" y="799.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="453" width="1.3" height="15.0" fill="rgb(0,213,39)" rx="2" ry="2" /> +<text x="1029.49" y="463.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="581" width="1.4" height="15.0" fill="rgb(0,207,119)" rx="2" ry="2" /> +<text x="1312.22" y="591.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.10%)</title><rect x="1368.5" y="485" width="1.3" height="15.0" fill="rgb(0,192,6)" rx="2" ry="2" /> +<text x="1371.46" y="495.5" ></text> +</g> +<g > +<title>ext4_lookup.part.0 (10,101,010 samples, 0.10%)</title><rect x="758.6" y="453" width="1.3" height="15.0" fill="rgb(0,205,88)" rx="2" ry="2" /> +<text x="761.57" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.10%)</title><rect x="790.9" y="613" width="1.3" height="15.0" fill="rgb(0,227,123)" rx="2" ry="2" /> +<text x="793.88" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="461.0" y="613" width="1.4" height="15.0" fill="rgb(0,200,154)" rx="2" ry="2" /> +<text x="464.02" y="623.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="644.1" y="565" width="1.4" height="15.0" fill="rgb(0,212,81)" rx="2" ry="2" /> +<text x="647.13" y="575.5" ></text> +</g> +<g > +<title>git_reference_create (414,141,410 samples, 4.00%)</title><rect x="941.7" y="741" width="55.2" height="15.0" fill="rgb(0,215,152)" rx="2" ry="2" /> +<text x="944.67" y="751.5" >git_r..</text> +</g> +<g > +<title>__ext4_check_dir_entry (10,101,010 samples, 0.10%)</title><rect x="384.3" y="597" width="1.3" height="15.0" fill="rgb(0,194,5)" rx="2" ry="2" /> +<text x="387.28" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="751.8" y="677" width="1.4" height="15.0" fill="rgb(0,229,109)" rx="2" ry="2" /> +<text x="754.83" y="687.5" ></text> +</g> +<g > +<title>dma_direct_map_page (10,101,010 samples, 0.10%)</title><rect x="440.8" y="213" width="1.4" height="15.0" fill="rgb(0,211,67)" rx="2" ry="2" /> +<text x="443.83" y="223.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="432.8" y="709" width="1.3" height="15.0" fill="rgb(0,210,60)" rx="2" ry="2" /> +<text x="435.75" y="719.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="296.8" y="421" width="1.3" height="15.0" fill="rgb(0,198,65)" rx="2" ry="2" /> +<text x="299.77" y="431.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="642.8" y="597" width="2.7" height="15.0" fill="rgb(0,208,89)" rx="2" ry="2" /> +<text x="645.78" y="607.5" ></text> +</g> +<g > +<title>clear_inode (10,101,010 samples, 0.10%)</title><rect x="299.5" y="501" width="1.3" height="15.0" fill="rgb(0,217,148)" rx="2" ry="2" /> +<text x="302.46" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="488.0" y="661" width="1.3" height="15.0" fill="rgb(0,206,119)" rx="2" ry="2" /> +<text x="490.95" y="671.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="924.2" y="661" width="1.3" height="15.0" fill="rgb(0,213,31)" rx="2" ry="2" /> +<text x="927.17" y="671.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.20%)</title><rect x="1224.4" y="597" width="2.7" height="15.0" fill="rgb(0,231,125)" rx="2" ry="2" /> +<text x="1227.40" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="983.4" y="661" width="6.7" height="15.0" fill="rgb(0,202,134)" rx="2" ry="2" /> +<text x="986.40" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1201.5" y="677" width="1.4" height="15.0" fill="rgb(0,202,19)" rx="2" ry="2" /> +<text x="1204.51" y="687.5" ></text> +</g> +<g > +<title>ext4_ext_search_left (10,101,010 samples, 0.10%)</title><rect x="1128.8" y="437" width="1.4" height="15.0" fill="rgb(0,237,164)" rx="2" ry="2" /> +<text x="1131.81" y="447.5" ></text> +</g> +<g > +<title>ext4_read_block_bitmap (10,101,010 samples, 0.10%)</title><rect x="770.7" y="373" width="1.3" height="15.0" fill="rgb(0,204,168)" rx="2" ry="2" /> +<text x="773.68" y="383.5" ></text> +</g> +<g > +<title>__alloc_skb (10,101,010 samples, 0.10%)</title><rect x="1387.3" y="677" width="1.4" height="15.0" fill="rgb(0,202,91)" rx="2" ry="2" /> +<text x="1390.31" y="687.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (30,303,030 samples, 0.29%)</title><rect x="582.2" y="469" width="4.0" height="15.0" fill="rgb(0,212,149)" rx="2" ry="2" /> +<text x="585.20" y="479.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1091.1" y="613" width="1.4" height="15.0" fill="rgb(0,200,172)" rx="2" ry="2" /> +<text x="1094.11" y="623.5" ></text> +</g> +<g > +<title>mb_find_extent (10,101,010 samples, 0.10%)</title><rect x="584.9" y="421" width="1.3" height="15.0" fill="rgb(0,197,36)" rx="2" ry="2" /> +<text x="587.89" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="996.9" y="677" width="2.7" height="15.0" fill="rgb(0,231,85)" rx="2" ry="2" /> +<text x="999.87" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (414,141,410 samples, 4.00%)</title><rect x="1000.9" y="741" width="55.2" height="15.0" fill="rgb(0,212,158)" rx="2" ry="2" /> +<text x="1003.91" y="751.5" >[libg..</text> +</g> +<g > +<title>log_entry_start (10,101,010 samples, 0.10%)</title><rect x="24.8" y="901" width="1.4" height="15.0" fill="rgb(0,207,30)" rx="2" ry="2" /> +<text x="27.81" y="911.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="922.8" y="453" width="1.4" height="15.0" fill="rgb(0,218,26)" rx="2" ry="2" /> +<text x="925.82" y="463.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (30,303,030 samples, 0.29%)</title><rect x="334.5" y="613" width="4.0" height="15.0" fill="rgb(0,214,209)" rx="2" ry="2" /> +<text x="337.47" y="623.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="298.1" y="469" width="1.4" height="15.0" fill="rgb(0,231,199)" rx="2" ry="2" /> +<text x="301.12" y="479.5" ></text> +</g> +<g > +<title>__do_sys_clone (333,333,330 samples, 3.22%)</title><rect x="1258.1" y="725" width="44.4" height="15.0" fill="rgb(0,217,201)" rx="2" ry="2" /> +<text x="1261.06" y="735.5" >__do..</text> +</g> +<g > +<title>ext4_try_merge_freed_extent.part.0 (10,101,010 samples, 0.10%)</title><rect x="318.3" y="405" width="1.4" height="15.0" fill="rgb(0,202,169)" rx="2" ry="2" /> +<text x="321.31" y="415.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="998.2" y="597" width="1.4" height="15.0" fill="rgb(0,207,46)" rx="2" ry="2" /> +<text x="1001.21" y="607.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="799.0" y="709" width="1.3" height="15.0" fill="rgb(0,225,14)" rx="2" ry="2" /> +<text x="801.96" y="719.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="517" width="1.4" height="15.0" fill="rgb(0,235,189)" rx="2" ry="2" /> +<text x="1207.20" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="207.9" y="581" width="1.4" height="15.0" fill="rgb(0,217,204)" rx="2" ry="2" /> +<text x="210.91" y="591.5" ></text> +</g> +<g > +<title>find_lock_entries (10,101,010 samples, 0.10%)</title><rect x="377.6" y="549" width="1.3" height="15.0" fill="rgb(0,219,116)" rx="2" ry="2" /> +<text x="380.55" y="559.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (10,101,010 samples, 0.10%)</title><rect x="1140.9" y="613" width="1.4" height="15.0" fill="rgb(0,225,174)" rx="2" ry="2" /> +<text x="1143.93" y="623.5" ></text> +</g> +<g > +<title>mkdtemp (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="821" width="4.0" height="15.0" fill="rgb(0,234,13)" rx="2" ry="2" /> +<text x="1255.67" y="831.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="30.2" y="805" width="1.3" height="15.0" fill="rgb(0,196,102)" rx="2" ry="2" /> +<text x="33.20" y="815.5" ></text> +</g> +<g > +<title>ext4_append (50,505,050 samples, 0.49%)</title><rect x="579.5" y="549" width="6.7" height="15.0" fill="rgb(0,199,136)" rx="2" ry="2" /> +<text x="582.50" y="559.5" ></text> +</g> +<g > +<title>strerror_l (10,101,010 samples, 0.10%)</title><rect x="734.3" y="629" width="1.4" height="15.0" fill="rgb(0,230,56)" rx="2" ry="2" /> +<text x="737.33" y="639.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum (10,101,010 samples, 0.10%)</title><rect x="1014.4" y="533" width="1.3" height="15.0" fill="rgb(0,228,65)" rx="2" ry="2" /> +<text x="1017.37" y="543.5" ></text> +</g> +<g > +<title>ext4_getblk (20,202,020 samples, 0.20%)</title><rect x="677.8" y="469" width="2.7" height="15.0" fill="rgb(0,220,121)" rx="2" ry="2" /> +<text x="680.79" y="479.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.10%)</title><rect x="595.7" y="549" width="1.3" height="15.0" fill="rgb(0,230,119)" rx="2" ry="2" /> +<text x="598.66" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1023.8" y="645" width="4.0" height="15.0" fill="rgb(0,202,16)" rx="2" ry="2" /> +<text x="1026.80" y="655.5" ></text> +</g> +<g > +<title>ci_run_script (393,939,390 samples, 3.80%)</title><rect x="1256.7" y="837" width="52.5" height="15.0" fill="rgb(0,227,46)" rx="2" ry="2" /> +<text x="1259.71" y="847.5" >ci_ru..</text> +</g> +<g > +<title>__handle_mm_fault (10,101,010 samples, 0.10%)</title><rect x="189.1" y="693" width="1.3" height="15.0" fill="rgb(0,238,21)" rx="2" ry="2" /> +<text x="192.06" y="703.5" ></text> +</g> +<g > +<title>git_config_get_int32 (10,101,010 samples, 0.10%)</title><rect x="886.5" y="725" width="1.3" height="15.0" fill="rgb(0,222,85)" rx="2" ry="2" /> +<text x="889.47" y="735.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="1041.3" y="533" width="1.3" height="15.0" fill="rgb(0,219,82)" rx="2" ry="2" /> +<text x="1044.30" y="543.5" ></text> +</g> +<g > +<title>tcp_send_ack (10,101,010 samples, 0.10%)</title><rect x="1330.8" y="213" width="1.3" height="15.0" fill="rgb(0,234,88)" rx="2" ry="2" /> +<text x="1333.76" y="223.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="759.9" y="629" width="2.7" height="15.0" fill="rgb(0,224,72)" rx="2" ry="2" /> +<text x="762.91" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="887.8" y="629" width="4.1" height="15.0" fill="rgb(0,238,80)" rx="2" ry="2" /> +<text x="890.81" y="639.5" ></text> +</g> +<g > +<title>__ext4_find_entry (20,202,020 samples, 0.20%)</title><rect x="407.2" y="613" width="2.7" height="15.0" fill="rgb(0,194,140)" rx="2" ry="2" /> +<text x="410.17" y="623.5" ></text> +</g> +<g > +<title>scsi_queue_rq (10,101,010 samples, 0.10%)</title><rect x="440.8" y="325" width="1.4" height="15.0" fill="rgb(0,224,100)" rx="2" ry="2" /> +<text x="443.83" y="335.5" ></text> +</g> +<g > +<title>rseq_get_rseq_cs.isra.0 (10,101,010 samples, 0.10%)</title><rect x="30.2" y="757" width="1.3" height="15.0" fill="rgb(0,238,50)" rx="2" ry="2" /> +<text x="33.20" y="767.5" ></text> +</g> +<g > +<title>new_sync_read (10,101,010 samples, 0.10%)</title><rect x="172.9" y="821" width="1.4" height="15.0" fill="rgb(0,216,30)" rx="2" ry="2" /> +<text x="175.91" y="831.5" ></text> +</g> +<g > +<title>ext4_rename2 (50,505,050 samples, 0.49%)</title><rect x="815.1" y="597" width="6.7" height="15.0" fill="rgb(0,225,10)" rx="2" ry="2" /> +<text x="818.11" y="607.5" ></text> +</g> +<g > +<title>link (10,101,010 samples, 0.10%)</title><rect x="1079.0" y="661" width="1.3" height="15.0" fill="rgb(0,199,175)" rx="2" ry="2" /> +<text x="1082.00" y="671.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="610.5" y="613" width="1.3" height="15.0" fill="rgb(0,222,157)" rx="2" ry="2" /> +<text x="613.47" y="623.5" ></text> +</g> +<g > +<title>ext4_getblk (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="629" width="4.0" height="15.0" fill="rgb(0,199,48)" rx="2" ry="2" /> +<text x="1255.67" y="639.5" ></text> +</g> +<g > +<title>new_inode (10,101,010 samples, 0.10%)</title><rect x="956.5" y="485" width="1.3" height="15.0" fill="rgb(0,198,150)" rx="2" ry="2" /> +<text x="959.48" y="495.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="858.2" y="501" width="1.3" height="15.0" fill="rgb(0,202,146)" rx="2" ry="2" /> +<text x="861.20" y="511.5" ></text> +</g> +<g > +<title>git_index_set_caps (10,101,010 samples, 0.10%)</title><rect x="551.2" y="773" width="1.4" height="15.0" fill="rgb(0,232,118)" rx="2" ry="2" /> +<text x="554.23" y="783.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="346.6" y="501" width="1.3" height="15.0" fill="rgb(0,195,136)" rx="2" ry="2" /> +<text x="349.59" y="511.5" ></text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.10%)</title><rect x="401.8" y="693" width="1.3" height="15.0" fill="rgb(0,205,120)" rx="2" ry="2" /> +<text x="404.79" y="703.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.10%)</title><rect x="280.6" y="469" width="1.4" height="15.0" fill="rgb(0,196,22)" rx="2" ry="2" /> +<text x="283.61" y="479.5" ></text> +</g> +<g > +<title>mpage_release_unused_pages (10,101,010 samples, 0.10%)</title><rect x="933.6" y="501" width="1.3" height="15.0" fill="rgb(0,228,179)" rx="2" ry="2" /> +<text x="936.59" y="511.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (50,505,050 samples, 0.49%)</title><rect x="766.6" y="501" width="6.8" height="15.0" fill="rgb(0,191,59)" rx="2" ry="2" /> +<text x="769.64" y="511.5" ></text> +</g> +<g > +<title>blk_throtl_bio (10,101,010 samples, 0.10%)</title><rect x="768.0" y="373" width="1.3" height="15.0" fill="rgb(0,237,139)" rx="2" ry="2" /> +<text x="770.99" y="383.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="488.0" y="677" width="2.6" height="15.0" fill="rgb(0,216,71)" rx="2" ry="2" /> +<text x="490.95" y="687.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="696.6" y="581" width="1.4" height="15.0" fill="rgb(0,239,79)" rx="2" ry="2" /> +<text x="699.63" y="591.5" ></text> +</g> +<g > +<title>__d_alloc (10,101,010 samples, 0.10%)</title><rect x="792.2" y="469" width="1.4" height="15.0" fill="rgb(0,225,78)" rx="2" ry="2" /> +<text x="795.22" y="479.5" ></text> +</g> +<g > +<title>alloc_buffer_head (10,101,010 samples, 0.10%)</title><rect x="681.8" y="405" width="1.4" height="15.0" fill="rgb(0,202,187)" rx="2" ry="2" /> +<text x="684.82" y="415.5" ></text> +</g> +<g > +<title>filp_close (10,101,010 samples, 0.10%)</title><rect x="1219.0" y="597" width="1.4" height="15.0" fill="rgb(0,239,66)" rx="2" ry="2" /> +<text x="1222.01" y="607.5" ></text> +</g> +<g > +<title>__dentry_kill (10,101,010 samples, 0.10%)</title><rect x="926.9" y="597" width="1.3" height="15.0" fill="rgb(0,224,47)" rx="2" ry="2" /> +<text x="929.86" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.56%)</title><rect x="828.6" y="709" width="21.5" height="15.0" fill="rgb(0,237,113)" rx="2" ry="2" /> +<text x="831.58" y="719.5" >[..</text> +</g> +<g > +<title>__tcp_transmit_skb (70,707,070 samples, 0.68%)</title><rect x="63.9" y="501" width="9.4" height="15.0" fill="rgb(0,219,42)" rx="2" ry="2" /> +<text x="66.85" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="417.9" y="789" width="2.7" height="15.0" fill="rgb(0,207,158)" rx="2" ry="2" /> +<text x="420.94" y="799.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (30,303,030 samples, 0.29%)</title><rect x="1328.1" y="437" width="4.0" height="15.0" fill="rgb(0,198,15)" rx="2" ry="2" /> +<text x="1331.07" y="447.5" ></text> +</g> +<g > +<title>delete_from_page_cache_batch (10,101,010 samples, 0.10%)</title><rect x="376.2" y="549" width="1.4" height="15.0" fill="rgb(0,200,131)" rx="2" ry="2" /> +<text x="379.20" y="559.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.10%)</title><rect x="632.0" y="645" width="1.4" height="15.0" fill="rgb(0,220,72)" rx="2" ry="2" /> +<text x="635.01" y="655.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="792.2" y="597" width="1.4" height="15.0" fill="rgb(0,201,112)" rx="2" ry="2" /> +<text x="795.22" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="916.1" y="629" width="1.3" height="15.0" fill="rgb(0,207,37)" rx="2" ry="2" /> +<text x="919.09" y="639.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.10%)</title><rect x="648.2" y="453" width="1.3" height="15.0" fill="rgb(0,219,56)" rx="2" ry="2" /> +<text x="651.17" y="463.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.10%)</title><rect x="224.1" y="517" width="1.3" height="15.0" fill="rgb(0,221,199)" rx="2" ry="2" /> +<text x="227.07" y="527.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="947.1" y="549" width="2.6" height="15.0" fill="rgb(0,239,172)" rx="2" ry="2" /> +<text x="950.05" y="559.5" ></text> +</g> +<g > +<title>clear_page_erms (10,101,010 samples, 0.10%)</title><rect x="687.2" y="373" width="1.4" height="15.0" fill="rgb(0,217,73)" rx="2" ry="2" /> +<text x="690.21" y="383.5" ></text> +</g> +<g > +<title>__lookup_slow (20,202,020 samples, 0.20%)</title><rect x="1060.1" y="581" width="2.7" height="15.0" fill="rgb(0,234,110)" rx="2" ry="2" /> +<text x="1063.15" y="591.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="1136.9" y="581" width="1.3" height="15.0" fill="rgb(0,194,66)" rx="2" ry="2" /> +<text x="1139.89" y="591.5" ></text> +</g> +<g > +<title>accept4 (50,505,050 samples, 0.49%)</title><rect x="86.7" y="805" width="6.8" height="15.0" fill="rgb(0,231,109)" rx="2" ry="2" /> +<text x="89.74" y="815.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="209.3" y="277" width="1.3" height="15.0" fill="rgb(0,194,148)" rx="2" ry="2" /> +<text x="212.26" y="287.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.10%)</title><rect x="1019.8" y="725" width="1.3" height="15.0" fill="rgb(0,229,101)" rx="2" ry="2" /> +<text x="1022.76" y="735.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="862.2" y="549" width="1.4" height="15.0" fill="rgb(0,197,116)" rx="2" ry="2" /> +<text x="865.23" y="559.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="252.3" y="437" width="1.4" height="15.0" fill="rgb(0,203,71)" rx="2" ry="2" /> +<text x="255.34" y="447.5" ></text> +</g> +<g > +<title>vfs_unlink (10,101,010 samples, 0.10%)</title><rect x="982.1" y="581" width="1.3" height="15.0" fill="rgb(0,199,32)" rx="2" ry="2" /> +<text x="985.06" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="685.9" y="613" width="4.0" height="15.0" fill="rgb(0,227,177)" rx="2" ry="2" /> +<text x="688.86" y="623.5" ></text> +</g> +<g > +<title>git_remote_free (10,101,010 samples, 0.10%)</title><rect x="999.6" y="789" width="1.3" height="15.0" fill="rgb(0,195,20)" rx="2" ry="2" /> +<text x="1002.56" y="799.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="434.1" y="597" width="1.3" height="15.0" fill="rgb(0,195,100)" rx="2" ry="2" /> +<text x="437.10" y="607.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.10%)</title><rect x="286.0" y="453" width="1.3" height="15.0" fill="rgb(0,201,88)" rx="2" ry="2" /> +<text x="289.00" y="463.5" ></text> +</g> +<g > +<title>path_openat (20,202,020 samples, 0.20%)</title><rect x="532.4" y="533" width="2.7" height="15.0" fill="rgb(0,218,138)" rx="2" ry="2" /> +<text x="535.38" y="543.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="213.3" y="437" width="1.3" height="15.0" fill="rgb(0,226,159)" rx="2" ry="2" /> +<text x="216.30" y="447.5" ></text> +</g> +<g > +<title>ip_rcv (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="357" width="2.7" height="15.0" fill="rgb(0,231,206)" rx="2" ry="2" /> +<text x="1341.84" y="367.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="704.7" y="661" width="6.7" height="15.0" fill="rgb(0,231,115)" rx="2" ry="2" /> +<text x="707.71" y="671.5" ></text> +</g> +<g > +<title>net_rx_action (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="421" width="1.4" height="15.0" fill="rgb(0,205,71)" rx="2" ry="2" /> +<text x="1376.84" y="431.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="469" width="1.4" height="15.0" fill="rgb(0,223,65)" rx="2" ry="2" /> +<text x="1007.95" y="479.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="715.5" y="469" width="1.3" height="15.0" fill="rgb(0,216,104)" rx="2" ry="2" /> +<text x="718.48" y="479.5" ></text> +</g> +<g > +<title>__x64_sys_close (20,202,020 samples, 0.20%)</title><rect x="536.4" y="693" width="2.7" height="15.0" fill="rgb(0,205,77)" rx="2" ry="2" /> +<text x="539.42" y="703.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (30,303,030 samples, 0.29%)</title><rect x="1073.6" y="501" width="4.0" height="15.0" fill="rgb(0,197,68)" rx="2" ry="2" /> +<text x="1076.61" y="511.5" ></text> +</g> +<g > +<title>git_config_set_string (303,030,300 samples, 2.93%)</title><rect x="623.9" y="741" width="40.4" height="15.0" fill="rgb(0,238,208)" rx="2" ry="2" /> +<text x="626.93" y="751.5" >git..</text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="1233.8" y="645" width="1.4" height="15.0" fill="rgb(0,230,42)" rx="2" ry="2" /> +<text x="1236.82" y="655.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="478.5" y="485" width="1.4" height="15.0" fill="rgb(0,213,107)" rx="2" ry="2" /> +<text x="481.53" y="495.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="213.3" y="485" width="1.3" height="15.0" fill="rgb(0,230,6)" rx="2" ry="2" /> +<text x="216.30" y="495.5" ></text> +</g> +<g > +<title>ext4_rename (10,101,010 samples, 0.10%)</title><rect x="440.8" y="613" width="1.4" height="15.0" fill="rgb(0,196,43)" rx="2" ry="2" /> +<text x="443.83" y="623.5" ></text> +</g> +<g > +<title>__build_skb_around (10,101,010 samples, 0.10%)</title><rect x="1383.3" y="245" width="1.3" height="15.0" fill="rgb(0,225,199)" rx="2" ry="2" /> +<text x="1386.27" y="255.5" ></text> +</g> +<g > +<title>git_config_get_string_buf (20,202,020 samples, 0.20%)</title><rect x="939.0" y="725" width="2.7" height="15.0" fill="rgb(0,224,90)" rx="2" ry="2" /> +<text x="941.98" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="807.0" y="645" width="1.4" height="15.0" fill="rgb(0,214,93)" rx="2" ry="2" /> +<text x="810.03" y="655.5" ></text> +</g> +<g > +<title>ksys_write (10,101,010 samples, 0.10%)</title><rect x="831.3" y="597" width="1.3" height="15.0" fill="rgb(0,208,114)" rx="2" ry="2" /> +<text x="834.27" y="607.5" ></text> +</g> +<g > +<title>malloc (20,202,020 samples, 0.20%)</title><rect x="261.8" y="661" width="2.7" height="15.0" fill="rgb(0,220,58)" rx="2" ry="2" /> +<text x="264.77" y="671.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="199.8" y="709" width="1.4" height="15.0" fill="rgb(0,204,204)" rx="2" ry="2" /> +<text x="202.83" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_connect (101,010,100 samples, 0.98%)</title><rect x="1336.1" y="805" width="13.5" height="15.0" fill="rgb(0,226,182)" rx="2" ry="2" /> +<text x="1339.15" y="815.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.59%)</title><rect x="265.8" y="645" width="8.1" height="15.0" fill="rgb(0,226,136)" rx="2" ry="2" /> +<text x="268.80" y="655.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="194.4" y="709" width="1.4" height="15.0" fill="rgb(0,220,23)" rx="2" ry="2" /> +<text x="197.45" y="719.5" ></text> +</g> +<g > +<title>ext4_getblk (30,303,030 samples, 0.29%)</title><rect x="117.7" y="741" width="4.0" height="15.0" fill="rgb(0,231,88)" rx="2" ry="2" /> +<text x="120.71" y="751.5" ></text> +</g> +<g > +<title>unlink_anon_vmas (10,101,010 samples, 0.10%)</title><rect x="54.4" y="645" width="1.4" height="15.0" fill="rgb(0,220,173)" rx="2" ry="2" /> +<text x="57.43" y="655.5" ></text> +</g> +<g > +<title>close_fd (10,101,010 samples, 0.10%)</title><rect x="1171.9" y="597" width="1.3" height="15.0" fill="rgb(0,192,147)" rx="2" ry="2" /> +<text x="1174.89" y="607.5" ></text> +</g> +<g > +<title>should_failslab (10,101,010 samples, 0.10%)</title><rect x="434.1" y="469" width="1.3" height="15.0" fill="rgb(0,230,88)" rx="2" ry="2" /> +<text x="437.10" y="479.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.10%)</title><rect x="284.7" y="453" width="1.3" height="15.0" fill="rgb(0,237,33)" rx="2" ry="2" /> +<text x="287.65" y="463.5" ></text> +</g> +<g > +<title>file_modified (10,101,010 samples, 0.10%)</title><rect x="807.0" y="517" width="1.4" height="15.0" fill="rgb(0,233,173)" rx="2" ry="2" /> +<text x="810.03" y="527.5" ></text> +</g> +<g > +<title>ext4_set_bits (10,101,010 samples, 0.10%)</title><rect x="582.2" y="437" width="1.3" height="15.0" fill="rgb(0,229,177)" rx="2" ry="2" /> +<text x="585.20" y="447.5" ></text> +</g> +<g > +<title>filp_close (10,101,010 samples, 0.10%)</title><rect x="979.4" y="581" width="1.3" height="15.0" fill="rgb(0,198,17)" rx="2" ry="2" /> +<text x="982.37" y="591.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_buffers (20,202,020 samples, 0.20%)</title><rect x="930.9" y="485" width="2.7" height="15.0" fill="rgb(0,236,179)" rx="2" ry="2" /> +<text x="933.90" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1220.4" y="645" width="1.3" height="15.0" fill="rgb(0,228,134)" rx="2" ry="2" /> +<text x="1223.36" y="655.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.10%)</title><rect x="922.8" y="677" width="1.4" height="15.0" fill="rgb(0,190,34)" rx="2" ry="2" /> +<text x="925.82" y="687.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="1003.6" y="453" width="1.3" height="15.0" fill="rgb(0,231,145)" rx="2" ry="2" /> +<text x="1006.60" y="463.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="905.3" y="581" width="1.4" height="15.0" fill="rgb(0,198,104)" rx="2" ry="2" /> +<text x="908.32" y="591.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.10%)</title><rect x="275.2" y="549" width="1.4" height="15.0" fill="rgb(0,207,35)" rx="2" ry="2" /> +<text x="278.23" y="559.5" ></text> +</g> +<g > +<title>do_mkdirat (171,717,170 samples, 1.66%)</title><rect x="1134.2" y="677" width="22.9" height="15.0" fill="rgb(0,234,193)" rx="2" ry="2" /> +<text x="1137.20" y="687.5" >d..</text> +</g> +<g > +<title>prepare_creds (10,101,010 samples, 0.10%)</title><rect x="894.5" y="597" width="1.4" height="15.0" fill="rgb(0,239,72)" rx="2" ry="2" /> +<text x="897.55" y="607.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="843.4" y="389" width="1.3" height="15.0" fill="rgb(0,228,147)" rx="2" ry="2" /> +<text x="846.39" y="399.5" ></text> +</g> +<g > +<title>grab_cache_page_write_begin (10,101,010 samples, 0.10%)</title><rect x="431.4" y="517" width="1.4" height="15.0" fill="rgb(0,238,28)" rx="2" ry="2" /> +<text x="434.40" y="527.5" ></text> +</g> +<g > +<title>ext4_find_entry (10,101,010 samples, 0.10%)</title><rect x="934.9" y="581" width="1.4" height="15.0" fill="rgb(0,239,182)" rx="2" ry="2" /> +<text x="937.94" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (101,010,100 samples, 0.98%)</title><rect x="11.3" y="789" width="13.5" height="15.0" fill="rgb(0,202,122)" rx="2" ry="2" /> +<text x="14.35" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1066.9" y="693" width="4.0" height="15.0" fill="rgb(0,209,6)" rx="2" ry="2" /> +<text x="1069.88" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="984.8" y="613" width="4.0" height="15.0" fill="rgb(0,228,191)" rx="2" ry="2" /> +<text x="987.75" y="623.5" ></text> +</g> +<g > +<title>ip_finish_output (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="485" width="1.3" height="15.0" fill="rgb(0,209,21)" rx="2" ry="2" /> +<text x="1337.80" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="1221.7" y="757" width="8.1" height="15.0" fill="rgb(0,231,37)" rx="2" ry="2" /> +<text x="1224.71" y="767.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1161.1" y="741" width="1.4" height="15.0" fill="rgb(0,218,47)" rx="2" ry="2" /> +<text x="1164.12" y="751.5" ></text> +</g> +<g > +<title>pagecache_get_page (20,202,020 samples, 0.20%)</title><rect x="1073.6" y="437" width="2.7" height="15.0" fill="rgb(0,233,39)" rx="2" ry="2" /> +<text x="1076.61" y="447.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="1019.8" y="645" width="1.3" height="15.0" fill="rgb(0,204,156)" rx="2" ry="2" /> +<text x="1022.76" y="655.5" ></text> +</g> +<g > +<title>log_entry_start (20,202,020 samples, 0.20%)</title><rect x="1310.6" y="837" width="2.7" height="15.0" fill="rgb(0,199,11)" rx="2" ry="2" /> +<text x="1313.57" y="847.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.10%)</title><rect x="478.5" y="613" width="1.4" height="15.0" fill="rgb(0,227,92)" rx="2" ry="2" /> +<text x="481.53" y="623.5" ></text> +</g> +<g > +<title>terminate_walk (10,101,010 samples, 0.10%)</title><rect x="179.6" y="805" width="1.4" height="15.0" fill="rgb(0,223,182)" rx="2" ry="2" /> +<text x="182.64" y="815.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="730.3" y="533" width="1.3" height="15.0" fill="rgb(0,237,154)" rx="2" ry="2" /> +<text x="733.29" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="443.5" y="693" width="2.7" height="15.0" fill="rgb(0,194,151)" rx="2" ry="2" /> +<text x="446.52" y="703.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="482.6" y="629" width="1.3" height="15.0" fill="rgb(0,227,43)" rx="2" ry="2" /> +<text x="485.57" y="639.5" ></text> +</g> +<g > +<title>getdents64 (70,707,070 samples, 0.68%)</title><rect x="264.5" y="677" width="9.4" height="15.0" fill="rgb(0,230,16)" rx="2" ry="2" /> +<text x="267.46" y="687.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="549" width="1.4" height="15.0" fill="rgb(0,232,20)" rx="2" ry="2" /> +<text x="1312.22" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="1037.3" y="693" width="2.7" height="15.0" fill="rgb(0,237,18)" rx="2" ry="2" /> +<text x="1040.26" y="703.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="27.5" y="853" width="1.3" height="15.0" fill="rgb(0,239,94)" rx="2" ry="2" /> +<text x="30.50" y="863.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="728.9" y="629" width="1.4" height="15.0" fill="rgb(0,192,134)" rx="2" ry="2" /> +<text x="731.95" y="639.5" ></text> +</g> +<g > +<title>client_destroy_handler (141,414,140 samples, 1.37%)</title><rect x="54.4" y="853" width="18.9" height="15.0" fill="rgb(0,214,96)" rx="2" ry="2" /> +<text x="57.43" y="863.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.10%)</title><rect x="276.6" y="485" width="1.3" height="15.0" fill="rgb(0,215,98)" rx="2" ry="2" /> +<text x="279.58" y="495.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="862.2" y="533" width="1.4" height="15.0" fill="rgb(0,232,155)" rx="2" ry="2" /> +<text x="865.23" y="543.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="506.8" y="677" width="1.3" height="15.0" fill="rgb(0,201,11)" rx="2" ry="2" /> +<text x="509.80" y="687.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="119.1" y="645" width="1.3" height="15.0" fill="rgb(0,197,28)" rx="2" ry="2" /> +<text x="122.05" y="655.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="1163.8" y="629" width="1.4" height="15.0" fill="rgb(0,223,10)" rx="2" ry="2" /> +<text x="1166.81" y="639.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.10%)</title><rect x="373.5" y="533" width="1.4" height="15.0" fill="rgb(0,196,66)" rx="2" ry="2" /> +<text x="376.51" y="543.5" ></text> +</g> +<g > +<title>nf_conntrack_in (30,303,030 samples, 0.29%)</title><rect x="1341.5" y="581" width="4.1" height="15.0" fill="rgb(0,192,209)" rx="2" ry="2" /> +<text x="1344.53" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (10,101,010 samples, 0.10%)</title><rect x="873.0" y="549" width="1.4" height="15.0" fill="rgb(0,194,166)" rx="2" ry="2" /> +<text x="876.00" y="559.5" ></text> +</g> +<g > +<title>process_backlog (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="389" width="1.4" height="15.0" fill="rgb(0,234,144)" rx="2" ry="2" /> +<text x="1376.84" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="796.3" y="613" width="2.7" height="15.0" fill="rgb(0,197,165)" rx="2" ry="2" /> +<text x="799.26" y="623.5" ></text> +</g> +<g > +<title>ip_rcv (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="341" width="1.4" height="15.0" fill="rgb(0,191,134)" rx="2" ry="2" /> +<text x="1376.84" y="351.5" ></text> +</g> +<g > +<title>file_close (20,202,020 samples, 0.20%)</title><rect x="58.5" y="821" width="2.7" height="15.0" fill="rgb(0,203,189)" rx="2" ry="2" /> +<text x="61.47" y="831.5" ></text> +</g> +<g > +<title>down_write (10,101,010 samples, 0.10%)</title><rect x="661.6" y="565" width="1.4" height="15.0" fill="rgb(0,232,83)" rx="2" ry="2" /> +<text x="664.63" y="575.5" ></text> +</g> +<g > +<title>get_obj_cgroup_from_current (10,101,010 samples, 0.10%)</title><rect x="1377.9" y="149" width="1.3" height="15.0" fill="rgb(0,194,201)" rx="2" ry="2" /> +<text x="1380.88" y="159.5" ></text> +</g> +<g > +<title>dup_fd (10,101,010 samples, 0.10%)</title><rect x="1259.4" y="677" width="1.4" height="15.0" fill="rgb(0,222,146)" rx="2" ry="2" /> +<text x="1262.40" y="687.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="330.4" y="549" width="1.4" height="15.0" fill="rgb(0,216,190)" rx="2" ry="2" /> +<text x="333.43" y="559.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="1080.3" y="389" width="1.4" height="15.0" fill="rgb(0,237,121)" rx="2" ry="2" /> +<text x="1083.34" y="399.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.10%)</title><rect x="431.4" y="533" width="1.4" height="15.0" fill="rgb(0,224,106)" rx="2" ry="2" /> +<text x="434.40" y="543.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.10%)</title><rect x="754.5" y="453" width="1.4" height="15.0" fill="rgb(0,190,139)" rx="2" ry="2" /> +<text x="757.53" y="463.5" ></text> +</g> +<g > +<title>vfs_write (20,202,020 samples, 0.20%)</title><rect x="430.1" y="613" width="2.7" height="15.0" fill="rgb(0,195,4)" rx="2" ry="2" /> +<text x="433.06" y="623.5" ></text> +</g> +<g > +<title>page_mapped (10,101,010 samples, 0.10%)</title><rect x="772.0" y="389" width="1.4" height="15.0" fill="rgb(0,219,202)" rx="2" ry="2" /> +<text x="775.03" y="399.5" ></text> +</g> +<g > +<title>do_softirq (30,303,030 samples, 0.29%)</title><rect x="1328.1" y="453" width="4.0" height="15.0" fill="rgb(0,221,191)" rx="2" ry="2" /> +<text x="1331.07" y="463.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="669.7" y="597" width="1.4" height="15.0" fill="rgb(0,199,133)" rx="2" ry="2" /> +<text x="672.71" y="607.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="28.8" y="821" width="1.4" height="15.0" fill="rgb(0,235,149)" rx="2" ry="2" /> +<text x="31.85" y="831.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.10%)</title><rect x="121.7" y="773" width="1.4" height="15.0" fill="rgb(0,238,175)" rx="2" ry="2" /> +<text x="124.75" y="783.5" ></text> +</g> +<g > +<title>filemap_flush (20,202,020 samples, 0.20%)</title><rect x="1031.9" y="517" width="2.7" height="15.0" fill="rgb(0,214,96)" rx="2" ry="2" /> +<text x="1034.87" y="527.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="921.5" y="581" width="1.3" height="15.0" fill="rgb(0,199,183)" rx="2" ry="2" /> +<text x="924.47" y="591.5" ></text> +</g> +<g > +<title>task_work_run (20,202,020 samples, 0.20%)</title><rect x="1375.2" y="741" width="2.7" height="15.0" fill="rgb(0,232,172)" rx="2" ry="2" /> +<text x="1378.19" y="751.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="630.7" y="565" width="1.3" height="15.0" fill="rgb(0,234,57)" rx="2" ry="2" /> +<text x="633.66" y="575.5" ></text> +</g> +<g > +<title>blk_flush_plug_list (10,101,010 samples, 0.10%)</title><rect x="766.6" y="437" width="1.4" height="15.0" fill="rgb(0,236,50)" rx="2" ry="2" /> +<text x="769.64" y="447.5" ></text> +</g> +<g > +<title>do_renameat2 (50,505,050 samples, 0.49%)</title><rect x="1080.3" y="597" width="6.8" height="15.0" fill="rgb(0,203,90)" rx="2" ry="2" /> +<text x="1083.34" y="607.5" ></text> +</g> +<g > +<title>new_sync_write (50,505,050 samples, 0.49%)</title><rect x="1093.8" y="549" width="6.7" height="15.0" fill="rgb(0,215,66)" rx="2" ry="2" /> +<text x="1096.80" y="559.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="890.5" y="469" width="1.4" height="15.0" fill="rgb(0,195,133)" rx="2" ry="2" /> +<text x="893.51" y="479.5" ></text> +</g> +<g > +<title>d_splice_alias (10,101,010 samples, 0.10%)</title><rect x="1061.5" y="533" width="1.3" height="15.0" fill="rgb(0,220,73)" rx="2" ry="2" /> +<text x="1064.49" y="543.5" ></text> +</g> +<g > +<title>__put_page (10,101,010 samples, 0.10%)</title><rect x="921.5" y="485" width="1.3" height="15.0" fill="rgb(0,220,178)" rx="2" ry="2" /> +<text x="924.47" y="495.5" ></text> +</g> +<g > +<title>filemap_flush (10,101,010 samples, 0.10%)</title><rect x="440.8" y="581" width="1.4" height="15.0" fill="rgb(0,212,21)" rx="2" ry="2" /> +<text x="443.83" y="591.5" ></text> +</g> +<g > +<title>ext4_release_file (10,101,010 samples, 0.10%)</title><rect x="1077.6" y="517" width="1.4" height="15.0" fill="rgb(0,231,55)" rx="2" ry="2" /> +<text x="1080.65" y="527.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (10,101,010 samples, 0.10%)</title><rect x="1351.0" y="837" width="1.3" height="15.0" fill="rgb(0,207,17)" rx="2" ry="2" /> +<text x="1353.96" y="847.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="683.2" y="421" width="1.3" height="15.0" fill="rgb(0,226,38)" rx="2" ry="2" /> +<text x="686.17" y="431.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="497.4" y="661" width="1.3" height="15.0" fill="rgb(0,195,177)" rx="2" ry="2" /> +<text x="500.38" y="671.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="581" width="2.7" height="15.0" fill="rgb(0,215,65)" rx="2" ry="2" /> +<text x="1380.88" y="591.5" ></text> +</g> +<g > +<title>irqentry_exit (10,101,010 samples, 0.10%)</title><rect x="595.7" y="645" width="1.3" height="15.0" fill="rgb(0,192,21)" rx="2" ry="2" /> +<text x="598.66" y="655.5" ></text> +</g> +<g > +<title>ksys_read (20,202,020 samples, 0.20%)</title><rect x="986.1" y="533" width="2.7" height="15.0" fill="rgb(0,239,106)" rx="2" ry="2" /> +<text x="989.10" y="543.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.10%)</title><rect x="90.8" y="613" width="1.3" height="15.0" fill="rgb(0,237,62)" rx="2" ry="2" /> +<text x="93.78" y="623.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="357" width="1.4" height="15.0" fill="rgb(0,193,67)" rx="2" ry="2" /> +<text x="1376.84" y="367.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="782.8" y="645" width="1.3" height="15.0" fill="rgb(0,222,50)" rx="2" ry="2" /> +<text x="785.80" y="655.5" ></text> +</g> +<g > +<title>do_user_addr_fault (30,303,030 samples, 0.29%)</title><rect x="1103.2" y="629" width="4.1" height="15.0" fill="rgb(0,233,182)" rx="2" ry="2" /> +<text x="1106.23" y="639.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (20,202,020 samples, 0.20%)</title><rect x="1097.8" y="485" width="2.7" height="15.0" fill="rgb(0,198,165)" rx="2" ry="2" /> +<text x="1100.84" y="495.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.10%)</title><rect x="998.2" y="453" width="1.4" height="15.0" fill="rgb(0,237,105)" rx="2" ry="2" /> +<text x="1001.21" y="463.5" ></text> +</g> +<g > +<title>git_repository_free (10,101,010 samples, 0.10%)</title><rect x="910.7" y="741" width="1.3" height="15.0" fill="rgb(0,228,124)" rx="2" ry="2" /> +<text x="913.70" y="751.5" ></text> +</g> +<g > +<title>__legitimize_path (10,101,010 samples, 0.10%)</title><rect x="186.4" y="757" width="1.3" height="15.0" fill="rgb(0,211,175)" rx="2" ry="2" /> +<text x="189.37" y="767.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="1132.8" y="581" width="1.4" height="15.0" fill="rgb(0,231,202)" rx="2" ry="2" /> +<text x="1135.85" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="1073.6" y="613" width="4.0" height="15.0" fill="rgb(0,237,95)" rx="2" ry="2" /> +<text x="1076.61" y="623.5" ></text> +</g> +<g > +<title>process_backlog (40,404,040 samples, 0.39%)</title><rect x="15.4" y="421" width="5.4" height="15.0" fill="rgb(0,193,207)" rx="2" ry="2" /> +<text x="18.39" y="431.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="552.6" y="741" width="8.1" height="15.0" fill="rgb(0,225,81)" rx="2" ry="2" /> +<text x="555.58" y="751.5" ></text> +</g> +<g > +<title>unlink_cb (80,808,080 samples, 0.78%)</title><rect x="248.3" y="677" width="10.8" height="15.0" fill="rgb(0,215,104)" rx="2" ry="2" /> +<text x="251.30" y="687.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.10%)</title><rect x="358.7" y="485" width="1.3" height="15.0" fill="rgb(0,219,163)" rx="2" ry="2" /> +<text x="361.70" y="495.5" ></text> +</g> +<g > +<title>mntput (10,101,010 samples, 0.10%)</title><rect x="475.8" y="517" width="1.4" height="15.0" fill="rgb(0,217,84)" rx="2" ry="2" /> +<text x="478.83" y="527.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="1146.3" y="501" width="1.4" height="15.0" fill="rgb(0,193,5)" rx="2" ry="2" /> +<text x="1149.31" y="511.5" ></text> +</g> +<g > +<title>ip_local_deliver (10,101,010 samples, 0.10%)</title><rect x="1338.8" y="341" width="1.4" height="15.0" fill="rgb(0,192,101)" rx="2" ry="2" /> +<text x="1341.84" y="351.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="493.3" y="597" width="1.4" height="15.0" fill="rgb(0,202,70)" rx="2" ry="2" /> +<text x="496.34" y="607.5" ></text> +</g> +<g > +<title>_raw_spin_lock_bh (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="37" width="1.4" height="15.0" fill="rgb(0,204,144)" rx="2" ry="2" /> +<text x="1376.84" y="47.5" ></text> +</g> +<g > +<title>d_alloc_parallel (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="549" width="1.3" height="15.0" fill="rgb(0,231,113)" rx="2" ry="2" /> +<text x="1182.97" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.10%)</title><rect x="548.5" y="709" width="1.4" height="15.0" fill="rgb(0,234,31)" rx="2" ry="2" /> +<text x="551.54" y="719.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="703.4" y="581" width="1.3" height="15.0" fill="rgb(0,232,150)" rx="2" ry="2" /> +<text x="706.37" y="591.5" ></text> +</g> +<g > +<title>new_sync_write (20,202,020 samples, 0.20%)</title><rect x="100.2" y="677" width="2.7" height="15.0" fill="rgb(0,228,64)" rx="2" ry="2" /> +<text x="103.20" y="687.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.10%)</title><rect x="1083.0" y="357" width="1.4" height="15.0" fill="rgb(0,239,13)" rx="2" ry="2" /> +<text x="1086.03" y="367.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="364.1" y="741" width="1.3" height="15.0" fill="rgb(0,200,94)" rx="2" ry="2" /> +<text x="367.09" y="751.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="978.0" y="549" width="1.4" height="15.0" fill="rgb(0,232,184)" rx="2" ry="2" /> +<text x="981.02" y="559.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="366.8" y="597" width="1.3" height="15.0" fill="rgb(0,190,120)" rx="2" ry="2" /> +<text x="369.78" y="607.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.10%)</title><rect x="974.0" y="469" width="1.3" height="15.0" fill="rgb(0,219,81)" rx="2" ry="2" /> +<text x="976.98" y="479.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.10%)</title><rect x="347.9" y="565" width="1.4" height="15.0" fill="rgb(0,207,47)" rx="2" ry="2" /> +<text x="350.93" y="575.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.10%)</title><rect x="325.0" y="661" width="1.4" height="15.0" fill="rgb(0,223,152)" rx="2" ry="2" /> +<text x="328.04" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="1184.0" y="661" width="2.7" height="15.0" fill="rgb(0,222,82)" rx="2" ry="2" /> +<text x="1187.01" y="671.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="477.2" y="533" width="1.3" height="15.0" fill="rgb(0,192,208)" rx="2" ry="2" /> +<text x="480.18" y="543.5" ></text> +</g> +<g > +<title>net_close (90,909,090 samples, 0.88%)</title><rect x="61.2" y="821" width="12.1" height="15.0" fill="rgb(0,214,110)" rx="2" ry="2" /> +<text x="64.16" y="831.5" ></text> +</g> +<g > +<title>do_syscall_64 (141,414,140 samples, 1.37%)</title><rect x="342.5" y="661" width="18.9" height="15.0" fill="rgb(0,221,55)" rx="2" ry="2" /> +<text x="345.55" y="671.5" ></text> +</g> +<g > +<title>close_fd (10,101,010 samples, 0.10%)</title><rect x="874.4" y="565" width="1.3" height="15.0" fill="rgb(0,225,122)" rx="2" ry="2" /> +<text x="877.35" y="575.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (20,202,020 samples, 0.20%)</title><rect x="335.8" y="581" width="2.7" height="15.0" fill="rgb(0,192,134)" rx="2" ry="2" /> +<text x="338.81" y="591.5" ></text> +</g> +<g > +<title>ext4_mb_new_blocks (10,101,010 samples, 0.10%)</title><rect x="1035.9" y="517" width="1.4" height="15.0" fill="rgb(0,194,169)" rx="2" ry="2" /> +<text x="1038.91" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="978.0" y="533" width="1.4" height="15.0" fill="rgb(0,222,193)" rx="2" ry="2" /> +<text x="981.02" y="543.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_buffers (10,101,010 samples, 0.10%)</title><rect x="772.0" y="437" width="1.4" height="15.0" fill="rgb(0,219,191)" rx="2" ry="2" /> +<text x="775.03" y="447.5" ></text> +</g> +<g > +<title>__handle_mm_fault (10,101,010 samples, 0.10%)</title><rect x="199.8" y="661" width="1.4" height="15.0" fill="rgb(0,225,174)" rx="2" ry="2" /> +<text x="202.83" y="671.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="742.4" y="517" width="1.4" height="15.0" fill="rgb(0,214,162)" rx="2" ry="2" /> +<text x="745.41" y="527.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="304.8" y="485" width="2.7" height="15.0" fill="rgb(0,194,75)" rx="2" ry="2" /> +<text x="307.85" y="495.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="644.1" y="549" width="1.4" height="15.0" fill="rgb(0,225,105)" rx="2" ry="2" /> +<text x="647.13" y="559.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="403.1" y="677" width="1.4" height="15.0" fill="rgb(0,190,73)" rx="2" ry="2" /> +<text x="406.13" y="687.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.10%)</title><rect x="535.1" y="629" width="1.3" height="15.0" fill="rgb(0,191,31)" rx="2" ry="2" /> +<text x="538.07" y="639.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.10%)</title><rect x="790.9" y="517" width="1.3" height="15.0" fill="rgb(0,233,23)" rx="2" ry="2" /> +<text x="793.88" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.59%)</title><rect x="1057.5" y="725" width="8.0" height="15.0" fill="rgb(0,219,195)" rx="2" ry="2" /> +<text x="1060.45" y="735.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="1025.1" y="581" width="1.4" height="15.0" fill="rgb(0,211,166)" rx="2" ry="2" /> +<text x="1028.14" y="591.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="889.2" y="597" width="1.3" height="15.0" fill="rgb(0,193,4)" rx="2" ry="2" /> +<text x="892.16" y="607.5" ></text> +</g> +<g > +<title>ext4_ext_remove_space (10,101,010 samples, 0.10%)</title><rect x="649.5" y="453" width="1.4" height="15.0" fill="rgb(0,207,179)" rx="2" ry="2" /> +<text x="652.51" y="463.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.10%)</title><rect x="883.8" y="533" width="1.3" height="15.0" fill="rgb(0,235,96)" rx="2" ry="2" /> +<text x="886.78" y="543.5" ></text> +</g> +<g > +<title>blk_mq_sched_insert_requests (10,101,010 samples, 0.10%)</title><rect x="1084.4" y="405" width="1.3" height="15.0" fill="rgb(0,233,31)" rx="2" ry="2" /> +<text x="1087.38" y="415.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="607.8" y="677" width="1.3" height="15.0" fill="rgb(0,232,119)" rx="2" ry="2" /> +<text x="610.78" y="687.5" ></text> +</g> +<g > +<title>tcp_fin (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="181" width="1.4" height="15.0" fill="rgb(0,199,206)" rx="2" ry="2" /> +<text x="1379.54" y="191.5" ></text> +</g> +<g > +<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.10%)</title><rect x="1145.0" y="501" width="1.3" height="15.0" fill="rgb(0,224,54)" rx="2" ry="2" /> +<text x="1147.97" y="511.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="292.7" y="517" width="1.4" height="15.0" fill="rgb(0,232,0)" rx="2" ry="2" /> +<text x="295.73" y="527.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.10%)</title><rect x="953.8" y="405" width="1.3" height="15.0" fill="rgb(0,203,123)" rx="2" ry="2" /> +<text x="956.79" y="415.5" ></text> +</g> +<g > +<title>ext4_rename (60,606,060 samples, 0.59%)</title><rect x="842.0" y="581" width="8.1" height="15.0" fill="rgb(0,202,187)" rx="2" ry="2" /> +<text x="845.04" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="945.7" y="565" width="1.4" height="15.0" fill="rgb(0,205,200)" rx="2" ry="2" /> +<text x="948.71" y="575.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="751.8" y="597" width="1.4" height="15.0" fill="rgb(0,226,127)" rx="2" ry="2" /> +<text x="754.83" y="607.5" ></text> +</g> +<g > +<title>mkdir (161,616,160 samples, 1.56%)</title><rect x="568.7" y="677" width="21.6" height="15.0" fill="rgb(0,205,100)" rx="2" ry="2" /> +<text x="571.73" y="687.5" >m..</text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="104.2" y="821" width="1.4" height="15.0" fill="rgb(0,197,111)" rx="2" ry="2" /> +<text x="107.24" y="831.5" ></text> +</g> +<g > +<title>vfs_mkdir (40,404,040 samples, 0.39%)</title><rect x="117.7" y="821" width="5.4" height="15.0" fill="rgb(0,207,185)" rx="2" ry="2" /> +<text x="120.71" y="831.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (40,404,040 samples, 0.39%)</title><rect x="613.2" y="565" width="5.3" height="15.0" fill="rgb(0,223,45)" rx="2" ry="2" /> +<text x="616.16" y="575.5" ></text> +</g> +<g > +<title>__netif_receive_skb (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="469" width="5.4" height="15.0" fill="rgb(0,236,140)" rx="2" ry="2" /> +<text x="1383.58" y="479.5" ></text> +</g> +<g > +<title>_IO_file_write (10,101,010 samples, 0.10%)</title><rect x="93.5" y="789" width="1.3" height="15.0" fill="rgb(0,199,46)" rx="2" ry="2" /> +<text x="96.47" y="799.5" ></text> +</g> +<g > +<title>generic_perform_write (30,303,030 samples, 0.29%)</title><rect x="685.9" y="501" width="4.0" height="15.0" fill="rgb(0,232,74)" rx="2" ry="2" /> +<text x="688.86" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="856.8" y="741" width="2.7" height="15.0" fill="rgb(0,214,195)" rx="2" ry="2" /> +<text x="859.85" y="751.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (80,808,080 samples, 0.78%)</title><rect x="310.2" y="453" width="10.8" height="15.0" fill="rgb(0,237,45)" rx="2" ry="2" /> +<text x="313.23" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="998.2" y="613" width="1.4" height="15.0" fill="rgb(0,224,21)" rx="2" ry="2" /> +<text x="1001.21" y="623.5" ></text> +</g> +<g > +<title>git_index_write (30,303,030 samples, 0.29%)</title><rect x="536.4" y="789" width="4.1" height="15.0" fill="rgb(0,235,92)" rx="2" ry="2" /> +<text x="539.42" y="799.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="790.9" y="645" width="1.3" height="15.0" fill="rgb(0,205,70)" rx="2" ry="2" /> +<text x="793.88" y="655.5" ></text> +</g> +<g > +<title>fscrypt_setup_filename (10,101,010 samples, 0.10%)</title><rect x="349.3" y="533" width="1.3" height="15.0" fill="rgb(0,199,167)" rx="2" ry="2" /> +<text x="352.28" y="543.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="277" width="1.4" height="15.0" fill="rgb(0,227,161)" rx="2" ry="2" /> +<text x="1376.84" y="287.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="209.3" y="581" width="1.3" height="15.0" fill="rgb(0,238,189)" rx="2" ry="2" /> +<text x="212.26" y="591.5" ></text> +</g> +<g > +<title>__blk_mq_run_hw_queue (30,303,030 samples, 0.29%)</title><rect x="1124.8" y="373" width="4.0" height="15.0" fill="rgb(0,232,50)" rx="2" ry="2" /> +<text x="1127.77" y="383.5" ></text> +</g> +<g > +<title>net_close (20,202,020 samples, 0.20%)</title><rect x="1375.2" y="869" width="2.7" height="15.0" fill="rgb(0,234,140)" rx="2" ry="2" /> +<text x="1378.19" y="879.5" ></text> +</g> +<g > +<title>crypto_shash_update (20,202,020 samples, 0.20%)</title><rect x="164.8" y="693" width="2.7" height="15.0" fill="rgb(0,238,86)" rx="2" ry="2" /> +<text x="167.83" y="703.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="870.3" y="453" width="1.4" height="15.0" fill="rgb(0,235,6)" rx="2" ry="2" /> +<text x="873.31" y="463.5" ></text> +</g> +<g > +<title>ip_rcv_finish_core.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="1346.9" y="421" width="1.4" height="15.0" fill="rgb(0,236,95)" rx="2" ry="2" /> +<text x="1349.92" y="431.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="112.3" y="773" width="1.4" height="15.0" fill="rgb(0,235,84)" rx="2" ry="2" /> +<text x="115.32" y="783.5" ></text> +</g> +<g > +<title>current_time (10,101,010 samples, 0.10%)</title><rect x="271.2" y="565" width="1.3" height="15.0" fill="rgb(0,213,197)" rx="2" ry="2" /> +<text x="274.19" y="575.5" ></text> +</g> +<g > +<title>net_recv (20,202,020 samples, 0.20%)</title><rect x="1368.5" y="773" width="2.7" height="15.0" fill="rgb(0,235,184)" rx="2" ry="2" /> +<text x="1371.46" y="783.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (20,202,020 samples, 0.20%)</title><rect x="681.8" y="517" width="2.7" height="15.0" fill="rgb(0,219,199)" rx="2" ry="2" /> +<text x="684.82" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="916.1" y="613" width="1.3" height="15.0" fill="rgb(0,234,193)" rx="2" ry="2" /> +<text x="919.09" y="623.5" ></text> +</g> +<g > +<title>apparmor_inode_getattr (10,101,010 samples, 0.10%)</title><rect x="925.5" y="613" width="1.4" height="15.0" fill="rgb(0,201,111)" rx="2" ry="2" /> +<text x="928.51" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.59%)</title><rect x="1057.5" y="709" width="8.0" height="15.0" fill="rgb(0,191,0)" rx="2" ry="2" /> +<text x="1060.45" y="719.5" ></text> +</g> +<g > +<title>generic_perform_write (60,606,060 samples, 0.59%)</title><rect x="1048.0" y="581" width="8.1" height="15.0" fill="rgb(0,218,32)" rx="2" ry="2" /> +<text x="1051.03" y="591.5" ></text> +</g> +<g > +<title>rename (50,505,050 samples, 0.49%)</title><rect x="1027.8" y="661" width="6.8" height="15.0" fill="rgb(0,196,175)" rx="2" ry="2" /> +<text x="1030.83" y="671.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.10%)</title><rect x="964.6" y="485" width="1.3" height="15.0" fill="rgb(0,190,173)" rx="2" ry="2" /> +<text x="967.56" y="495.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (10,101,010 samples, 0.10%)</title><rect x="498.7" y="597" width="1.4" height="15.0" fill="rgb(0,238,166)" rx="2" ry="2" /> +<text x="501.72" y="607.5" ></text> +</g> +<g > +<title>blk_mq_dispatch_rq_list (10,101,010 samples, 0.10%)</title><rect x="816.5" y="309" width="1.3" height="15.0" fill="rgb(0,239,117)" rx="2" ry="2" /> +<text x="819.46" y="319.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="796.3" y="565" width="1.3" height="15.0" fill="rgb(0,202,189)" rx="2" ry="2" /> +<text x="799.26" y="575.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (20,202,020 samples, 0.20%)</title><rect x="1345.6" y="565" width="2.7" height="15.0" fill="rgb(0,238,202)" rx="2" ry="2" /> +<text x="1348.57" y="575.5" ></text> +</g> +<g > +<title>tcp_v4_fill_cb (10,101,010 samples, 0.10%)</title><rect x="1384.6" y="357" width="1.4" height="15.0" fill="rgb(0,223,165)" rx="2" ry="2" /> +<text x="1387.61" y="367.5" ></text> +</g> +<g > +<title>tcp_connect (60,606,060 samples, 0.59%)</title><rect x="1380.6" y="709" width="8.1" height="15.0" fill="rgb(0,233,95)" rx="2" ry="2" /> +<text x="1383.58" y="719.5" ></text> +</g> +<g > +<title>ext4_mkdir (111,111,110 samples, 1.07%)</title><rect x="949.7" y="517" width="14.9" height="15.0" fill="rgb(0,223,83)" rx="2" ry="2" /> +<text x="952.75" y="527.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (282,828,280 samples, 2.73%)</title><rect x="715.5" y="725" width="37.7" height="15.0" fill="rgb(0,228,88)" rx="2" ry="2" /> +<text x="718.48" y="735.5" >[li..</text> +</g> +<g > +<title>__ip_finish_output (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="469" width="1.3" height="15.0" fill="rgb(0,215,167)" rx="2" ry="2" /> +<text x="1337.80" y="479.5" ></text> +</g> +<g > +<title>__fget_files (20,202,020 samples, 0.20%)</title><rect x="43.7" y="725" width="2.7" height="15.0" fill="rgb(0,191,23)" rx="2" ry="2" /> +<text x="46.66" y="735.5" ></text> +</g> +<g > +<title>path_init (10,101,010 samples, 0.10%)</title><rect x="365.4" y="597" width="1.4" height="15.0" fill="rgb(0,199,162)" rx="2" ry="2" /> +<text x="368.43" y="607.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.10%)</title><rect x="1031.9" y="389" width="1.3" height="15.0" fill="rgb(0,214,159)" rx="2" ry="2" /> +<text x="1034.87" y="399.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="696.6" y="693" width="5.4" height="15.0" fill="rgb(0,236,77)" rx="2" ry="2" /> +<text x="699.63" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="887.8" y="581" width="1.4" height="15.0" fill="rgb(0,226,84)" rx="2" ry="2" /> +<text x="890.81" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="1245.9" y="661" width="2.7" height="15.0" fill="rgb(0,206,132)" rx="2" ry="2" /> +<text x="1248.94" y="671.5" ></text> +</g> +<g > +<title>sock_sendmsg (101,010,100 samples, 0.98%)</title><rect x="11.3" y="741" width="13.5" height="15.0" fill="rgb(0,196,144)" rx="2" ry="2" /> +<text x="14.35" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.98%)</title><rect x="1336.1" y="837" width="13.5" height="15.0" fill="rgb(0,195,168)" rx="2" ry="2" /> +<text x="1339.15" y="847.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="252.3" y="421" width="1.4" height="15.0" fill="rgb(0,224,203)" rx="2" ry="2" /> +<text x="255.34" y="431.5" ></text> +</g> +<g > +<title>crc_41 (10,101,010 samples, 0.10%)</title><rect x="438.1" y="485" width="1.4" height="15.0" fill="rgb(0,204,172)" rx="2" ry="2" /> +<text x="441.14" y="495.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="831.3" y="453" width="1.3" height="15.0" fill="rgb(0,209,187)" rx="2" ry="2" /> +<text x="834.27" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="794.9" y="661" width="1.4" height="15.0" fill="rgb(0,192,64)" rx="2" ry="2" /> +<text x="797.92" y="671.5" ></text> +</g> +<g > +<title>tcp_push (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="645" width="5.4" height="15.0" fill="rgb(0,217,154)" rx="2" ry="2" /> +<text x="1331.07" y="655.5" ></text> +</g> +<g > +<title>ext4_ext_tree_init (20,202,020 samples, 0.20%)</title><rect x="672.4" y="453" width="2.7" height="15.0" fill="rgb(0,196,169)" rx="2" ry="2" /> +<text x="675.40" y="463.5" ></text> +</g> +<g > +<title>ip_local_deliver (20,202,020 samples, 0.20%)</title><rect x="1329.4" y="325" width="2.7" height="15.0" fill="rgb(0,193,128)" rx="2" ry="2" /> +<text x="1332.41" y="335.5" ></text> +</g> +<g > +<title>nf_hook_slow (30,303,030 samples, 0.29%)</title><rect x="1341.5" y="613" width="4.1" height="15.0" fill="rgb(0,227,8)" rx="2" ry="2" /> +<text x="1344.53" y="623.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="353.3" y="517" width="1.4" height="15.0" fill="rgb(0,232,75)" rx="2" ry="2" /> +<text x="356.32" y="527.5" ></text> +</g> +<g > +<title>readdir64 (10,101,010 samples, 0.10%)</title><rect x="917.4" y="677" width="1.4" height="15.0" fill="rgb(0,196,2)" rx="2" ry="2" /> +<text x="920.43" y="687.5" ></text> +</g> +<g > +<title>lockref_get_not_dead (10,101,010 samples, 0.10%)</title><rect x="242.9" y="485" width="1.4" height="15.0" fill="rgb(0,202,55)" rx="2" ry="2" /> +<text x="245.92" y="495.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (10,101,010 samples, 0.10%)</title><rect x="926.9" y="581" width="1.3" height="15.0" fill="rgb(0,223,113)" rx="2" ry="2" /> +<text x="929.86" y="591.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.10%)</title><rect x="533.7" y="485" width="1.4" height="15.0" fill="rgb(0,208,66)" rx="2" ry="2" /> +<text x="536.73" y="495.5" ></text> +</g> +<g > +<title>do_sys_openat2 (10,101,010 samples, 0.10%)</title><rect x="664.3" y="661" width="1.4" height="15.0" fill="rgb(0,225,125)" rx="2" ry="2" /> +<text x="667.32" y="671.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.10%)</title><rect x="607.8" y="613" width="1.3" height="15.0" fill="rgb(0,196,55)" rx="2" ry="2" /> +<text x="610.78" y="623.5" ></text> +</g> +<g > +<title>git_config_snapshot (40,404,040 samples, 0.39%)</title><rect x="1182.7" y="741" width="5.3" height="15.0" fill="rgb(0,197,3)" rx="2" ry="2" /> +<text x="1185.66" y="751.5" ></text> +</g> +<g > +<title>__kmalloc (10,101,010 samples, 0.10%)</title><rect x="615.9" y="533" width="1.3" height="15.0" fill="rgb(0,233,9)" rx="2" ry="2" /> +<text x="618.85" y="543.5" ></text> +</g> +<g > +<title>fscrypt_policy_to_inherit (10,101,010 samples, 0.10%)</title><rect x="1037.3" y="597" width="1.3" height="15.0" fill="rgb(0,238,145)" rx="2" ry="2" /> +<text x="1040.26" y="607.5" ></text> +</g> +<g > +<title>__ext4_unlink (40,404,040 samples, 0.39%)</title><rect x="214.6" y="501" width="5.4" height="15.0" fill="rgb(0,214,4)" rx="2" ry="2" /> +<text x="217.64" y="511.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="237.5" y="597" width="1.4" height="15.0" fill="rgb(0,229,139)" rx="2" ry="2" /> +<text x="240.53" y="607.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="581" width="1.4" height="15.0" fill="rgb(0,228,13)" rx="2" ry="2" /> +<text x="1376.84" y="591.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (10,101,010 samples, 0.10%)</title><rect x="1377.9" y="325" width="1.3" height="15.0" fill="rgb(0,206,33)" rx="2" ry="2" /> +<text x="1380.88" y="335.5" ></text> +</g> +<g > +<title>step_into (10,101,010 samples, 0.10%)</title><rect x="493.3" y="421" width="1.4" height="15.0" fill="rgb(0,191,70)" rx="2" ry="2" /> +<text x="496.34" y="431.5" ></text> +</g> +<g > +<title>__d_alloc (30,303,030 samples, 0.29%)</title><rect x="181.0" y="741" width="4.0" height="15.0" fill="rgb(0,224,206)" rx="2" ry="2" /> +<text x="183.99" y="751.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="455.6" y="485" width="1.4" height="15.0" fill="rgb(0,197,10)" rx="2" ry="2" /> +<text x="458.64" y="495.5" ></text> +</g> +<g > +<title>sock_read_iter (20,202,020 samples, 0.20%)</title><rect x="1368.5" y="645" width="2.7" height="15.0" fill="rgb(0,238,156)" rx="2" ry="2" /> +<text x="1371.46" y="655.5" ></text> +</g> +<g > +<title>dev_queue_xmit (10,101,010 samples, 0.10%)</title><rect x="1332.1" y="453" width="1.4" height="15.0" fill="rgb(0,209,43)" rx="2" ry="2" /> +<text x="1335.11" y="463.5" ></text> +</g> +<g > +<title>rcu_read_unlock_strict (10,101,010 samples, 0.10%)</title><rect x="533.7" y="437" width="1.4" height="15.0" fill="rgb(0,191,98)" rx="2" ry="2" /> +<text x="536.73" y="447.5" ></text> +</g> +<g > +<title>__sk_free (10,101,010 samples, 0.10%)</title><rect x="65.2" y="133" width="1.3" height="15.0" fill="rgb(0,238,54)" rx="2" ry="2" /> +<text x="68.20" y="143.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="1111.3" y="645" width="4.0" height="15.0" fill="rgb(0,210,51)" rx="2" ry="2" /> +<text x="1114.31" y="655.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="229.5" y="437" width="1.3" height="15.0" fill="rgb(0,214,167)" rx="2" ry="2" /> +<text x="232.45" y="447.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="117.7" y="645" width="1.4" height="15.0" fill="rgb(0,216,45)" rx="2" ry="2" /> +<text x="120.71" y="655.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.20%)</title><rect x="350.6" y="517" width="2.7" height="15.0" fill="rgb(0,227,207)" rx="2" ry="2" /> +<text x="353.62" y="527.5" ></text> +</g> +<g > +<title>__vmalloc_node_range (20,202,020 samples, 0.20%)</title><rect x="38.3" y="821" width="2.7" height="15.0" fill="rgb(0,236,92)" rx="2" ry="2" /> +<text x="41.27" y="831.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="1215.0" y="485" width="1.3" height="15.0" fill="rgb(0,216,91)" rx="2" ry="2" /> +<text x="1217.98" y="495.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1041.3" y="501" width="1.3" height="15.0" fill="rgb(0,224,7)" rx="2" ry="2" /> +<text x="1044.30" y="511.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="111.0" y="821" width="2.7" height="15.0" fill="rgb(0,230,129)" rx="2" ry="2" /> +<text x="113.98" y="831.5" ></text> +</g> +<g > +<title>inode_init_always (10,101,010 samples, 0.10%)</title><rect x="1388.7" y="709" width="1.3" height="15.0" fill="rgb(0,239,141)" rx="2" ry="2" /> +<text x="1391.65" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="877.0" y="645" width="4.1" height="15.0" fill="rgb(0,191,163)" rx="2" ry="2" /> +<text x="880.04" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="998.2" y="661" width="1.4" height="15.0" fill="rgb(0,190,101)" rx="2" ry="2" /> +<text x="1001.21" y="671.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.10%)</title><rect x="1053.4" y="485" width="1.4" height="15.0" fill="rgb(0,214,158)" rx="2" ry="2" /> +<text x="1056.41" y="495.5" ></text> +</g> +<g > +<title>ext4_find_dest_de (10,101,010 samples, 0.10%)</title><rect x="576.8" y="533" width="1.4" height="15.0" fill="rgb(0,190,47)" rx="2" ry="2" /> +<text x="579.81" y="543.5" ></text> +</g> +<g > +<title>__inet_stream_connect (80,808,080 samples, 0.78%)</title><rect x="1377.9" y="741" width="10.8" height="15.0" fill="rgb(0,214,131)" rx="2" ry="2" /> +<text x="1380.88" y="751.5" ></text> +</g> +<g > +<title>htree_dirblock_to_tree (10,101,010 samples, 0.10%)</title><rect x="384.3" y="613" width="1.3" height="15.0" fill="rgb(0,209,131)" rx="2" ry="2" /> +<text x="387.28" y="623.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.10%)</title><rect x="533.7" y="517" width="1.4" height="15.0" fill="rgb(0,234,94)" rx="2" ry="2" /> +<text x="536.73" y="527.5" ></text> +</g> +<g > +<title>walk_component (50,505,050 samples, 0.49%)</title><rect x="181.0" y="805" width="6.7" height="15.0" fill="rgb(0,206,71)" rx="2" ry="2" /> +<text x="183.99" y="815.5" ></text> +</g> +<g > +<title>cgroup_post_fork (10,101,010 samples, 0.10%)</title><rect x="34.2" y="853" width="1.4" height="15.0" fill="rgb(0,234,58)" rx="2" ry="2" /> +<text x="37.23" y="863.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.10%)</title><rect x="1083.0" y="405" width="1.4" height="15.0" fill="rgb(0,218,48)" rx="2" ry="2" /> +<text x="1086.03" y="415.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="548.5" y="645" width="1.4" height="15.0" fill="rgb(0,198,137)" rx="2" ry="2" /> +<text x="551.54" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="714.1" y="693" width="1.4" height="15.0" fill="rgb(0,235,55)" rx="2" ry="2" /> +<text x="717.14" y="703.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.10%)</title><rect x="582.2" y="453" width="1.3" height="15.0" fill="rgb(0,206,155)" rx="2" ry="2" /> +<text x="585.20" y="463.5" ></text> +</g> +<g > +<title>mem_cgroup_wb_stats (10,101,010 samples, 0.10%)</title><rect x="510.8" y="501" width="1.4" height="15.0" fill="rgb(0,207,27)" rx="2" ry="2" /> +<text x="513.84" y="511.5" ></text> +</g> +<g > +<title>do_syscall_64 (101,010,100 samples, 0.98%)</title><rect x="1336.1" y="821" width="13.5" height="15.0" fill="rgb(0,223,109)" rx="2" ry="2" /> +<text x="1339.15" y="831.5" ></text> +</g> +<g > +<title>____fput (10,101,010 samples, 0.10%)</title><rect x="400.4" y="677" width="1.4" height="15.0" fill="rgb(0,216,5)" rx="2" ry="2" /> +<text x="403.44" y="687.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="1076.3" y="405" width="1.3" height="15.0" fill="rgb(0,190,203)" rx="2" ry="2" /> +<text x="1079.30" y="415.5" ></text> +</g> +<g > +<title>rmqueue (10,101,010 samples, 0.10%)</title><rect x="1075.0" y="373" width="1.3" height="15.0" fill="rgb(0,191,5)" rx="2" ry="2" /> +<text x="1077.96" y="383.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1233.8" y="629" width="1.4" height="15.0" fill="rgb(0,223,197)" rx="2" ry="2" /> +<text x="1236.82" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="724.9" y="581" width="1.4" height="15.0" fill="rgb(0,202,208)" rx="2" ry="2" /> +<text x="727.91" y="591.5" ></text> +</g> +<g > +<title>git_config_set_string (80,808,080 samples, 0.78%)</title><rect x="1023.8" y="725" width="10.8" height="15.0" fill="rgb(0,237,9)" rx="2" ry="2" /> +<text x="1026.80" y="735.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="213.3" y="453" width="1.3" height="15.0" fill="rgb(0,229,139)" rx="2" ry="2" /> +<text x="216.30" y="463.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="121.7" y="757" width="1.4" height="15.0" fill="rgb(0,203,126)" rx="2" ry="2" /> +<text x="124.75" y="767.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="632.0" y="613" width="1.4" height="15.0" fill="rgb(0,226,143)" rx="2" ry="2" /> +<text x="635.01" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.20%)</title><rect x="203.9" y="437" width="2.7" height="15.0" fill="rgb(0,234,202)" rx="2" ry="2" /> +<text x="206.87" y="447.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="895.9" y="645" width="1.3" height="15.0" fill="rgb(0,235,181)" rx="2" ry="2" /> +<text x="898.89" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="105.6" y="821" width="2.7" height="15.0" fill="rgb(0,200,168)" rx="2" ry="2" /> +<text x="108.59" y="831.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="434.1" y="613" width="1.3" height="15.0" fill="rgb(0,216,148)" rx="2" ry="2" /> +<text x="437.10" y="623.5" ></text> +</g> +<g > +<title>iput (10,101,010 samples, 0.10%)</title><rect x="330.4" y="597" width="1.4" height="15.0" fill="rgb(0,194,105)" rx="2" ry="2" /> +<text x="333.43" y="607.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="378.9" y="565" width="1.3" height="15.0" fill="rgb(0,224,75)" rx="2" ry="2" /> +<text x="381.90" y="575.5" ></text> +</g> +<g > +<title>ext4_superblock_csum_set (10,101,010 samples, 0.10%)</title><rect x="288.7" y="517" width="1.3" height="15.0" fill="rgb(0,216,196)" rx="2" ry="2" /> +<text x="291.69" y="527.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="315.6" y="373" width="1.4" height="15.0" fill="rgb(0,238,48)" rx="2" ry="2" /> +<text x="318.62" y="383.5" ></text> +</g> +<g > +<title>tcp_write_xmit (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="581" width="2.6" height="15.0" fill="rgb(0,238,50)" rx="2" ry="2" /> +<text x="1336.45" y="591.5" ></text> +</g> +<g > +<title>ipv4_conntrack_local (10,101,010 samples, 0.10%)</title><rect x="1333.5" y="469" width="1.3" height="15.0" fill="rgb(0,201,180)" rx="2" ry="2" /> +<text x="1336.45" y="479.5" ></text> +</g> +<g > +<title>git_repository_init (1,444,444,430 samples, 13.95%)</title><rect x="1000.9" y="789" width="192.5" height="15.0" fill="rgb(0,203,56)" rx="2" ry="2" /> +<text x="1003.91" y="799.5" >git_repository_init</text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.10%)</title><rect x="1073.6" y="373" width="1.4" height="15.0" fill="rgb(0,203,93)" rx="2" ry="2" /> +<text x="1076.61" y="383.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="541.8" y="437" width="1.4" height="15.0" fill="rgb(0,222,119)" rx="2" ry="2" /> +<text x="544.80" y="447.5" ></text> +</g> +<g > +<title>__x64_sys_openat (70,707,070 samples, 0.68%)</title><rect x="1010.3" y="677" width="9.5" height="15.0" fill="rgb(0,232,49)" rx="2" ry="2" /> +<text x="1013.33" y="687.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="405.8" y="677" width="1.4" height="15.0" fill="rgb(0,197,161)" rx="2" ry="2" /> +<text x="408.82" y="687.5" ></text> +</g> +<g > +<title>ext4_empty_dir (10,101,010 samples, 0.10%)</title><rect x="283.3" y="533" width="1.4" height="15.0" fill="rgb(0,223,185)" rx="2" ry="2" /> +<text x="286.31" y="543.5" ></text> +</g> +<g > +<title>d_instantiate (10,101,010 samples, 0.10%)</title><rect x="85.4" y="677" width="1.3" height="15.0" fill="rgb(0,199,74)" rx="2" ry="2" /> +<text x="88.40" y="687.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.10%)</title><rect x="664.3" y="613" width="1.4" height="15.0" fill="rgb(0,236,201)" rx="2" ry="2" /> +<text x="667.32" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="905.3" y="597" width="1.4" height="15.0" fill="rgb(0,233,89)" rx="2" ry="2" /> +<text x="908.32" y="607.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.10%)</title><rect x="1069.6" y="613" width="1.3" height="15.0" fill="rgb(0,216,82)" rx="2" ry="2" /> +<text x="1072.57" y="623.5" ></text> +</g> +<g > +<title>get_zeroed_page (10,101,010 samples, 0.10%)</title><rect x="1282.3" y="597" width="1.3" height="15.0" fill="rgb(0,235,20)" rx="2" ry="2" /> +<text x="1285.29" y="607.5" ></text> +</g> +<g > +<title>set_root (10,101,010 samples, 0.10%)</title><rect x="168.9" y="773" width="1.3" height="15.0" fill="rgb(0,234,77)" rx="2" ry="2" /> +<text x="171.87" y="783.5" ></text> +</g> +<g > +<title>__d_alloc (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="517" width="1.3" height="15.0" fill="rgb(0,209,2)" rx="2" ry="2" /> +<text x="1182.97" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (111,111,110 samples, 1.07%)</title><rect x="174.3" y="901" width="14.8" height="15.0" fill="rgb(0,214,153)" rx="2" ry="2" /> +<text x="177.25" y="911.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.56%)</title><rect x="828.6" y="741" width="21.5" height="15.0" fill="rgb(0,191,206)" rx="2" ry="2" /> +<text x="831.58" y="751.5" >[..</text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.20%)</title><rect x="111.0" y="805" width="2.7" height="15.0" fill="rgb(0,234,20)" rx="2" ry="2" /> +<text x="113.98" y="815.5" ></text> +</g> +<g > +<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="595.7" y="629" width="1.3" height="15.0" fill="rgb(0,209,85)" rx="2" ry="2" /> +<text x="598.66" y="639.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="730.3" y="437" width="1.3" height="15.0" fill="rgb(0,233,136)" rx="2" ry="2" /> +<text x="733.29" y="447.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="715.5" y="421" width="1.3" height="15.0" fill="rgb(0,212,170)" rx="2" ry="2" /> +<text x="718.48" y="431.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.10%)</title><rect x="633.4" y="501" width="1.3" height="15.0" fill="rgb(0,209,62)" rx="2" ry="2" /> +<text x="636.36" y="511.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.10%)</title><rect x="790.9" y="549" width="1.3" height="15.0" fill="rgb(0,190,175)" rx="2" ry="2" /> +<text x="793.88" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="434.1" y="565" width="1.3" height="15.0" fill="rgb(0,223,167)" rx="2" ry="2" /> +<text x="437.10" y="575.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="1196.1" y="549" width="1.4" height="15.0" fill="rgb(0,234,190)" rx="2" ry="2" /> +<text x="1199.13" y="559.5" ></text> +</g> +<g > +<title>tcp_send_ack (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="645" width="2.7" height="15.0" fill="rgb(0,208,34)" rx="2" ry="2" /> +<text x="1380.88" y="655.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="1175.9" y="581" width="1.4" height="15.0" fill="rgb(0,221,24)" rx="2" ry="2" /> +<text x="1178.93" y="591.5" ></text> +</g> +<g > +<title>pthread_sigmask (10,101,010 samples, 0.10%)</title><rect x="84.0" y="757" width="1.4" height="15.0" fill="rgb(0,220,193)" rx="2" ry="2" /> +<text x="87.05" y="767.5" ></text> +</g> +<g > +<title>__ext4_unlink (50,505,050 samples, 0.49%)</title><rect x="251.0" y="533" width="6.7" height="15.0" fill="rgb(0,224,82)" rx="2" ry="2" /> +<text x="254.00" y="543.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="533" width="1.4" height="15.0" fill="rgb(0,205,5)" rx="2" ry="2" /> +<text x="1379.54" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (60,606,060 samples, 0.59%)</title><rect x="392.4" y="693" width="8.0" height="15.0" fill="rgb(0,221,82)" rx="2" ry="2" /> +<text x="395.36" y="703.5" ></text> +</g> +<g > +<title>ext4_create (10,101,010 samples, 0.10%)</title><rect x="505.5" y="597" width="1.3" height="15.0" fill="rgb(0,194,186)" rx="2" ry="2" /> +<text x="508.45" y="607.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.10%)</title><rect x="439.5" y="485" width="1.3" height="15.0" fill="rgb(0,203,59)" rx="2" ry="2" /> +<text x="442.48" y="495.5" ></text> +</g> +<g > +<title>git_repository_index (30,303,030 samples, 0.29%)</title><rect x="548.5" y="805" width="4.1" height="15.0" fill="rgb(0,210,24)" rx="2" ry="2" /> +<text x="551.54" y="815.5" ></text> +</g> +<g > +<title>ip_local_out (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="517" width="2.6" height="15.0" fill="rgb(0,200,123)" rx="2" ry="2" /> +<text x="1336.45" y="527.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="793.6" y="629" width="1.3" height="15.0" fill="rgb(0,211,86)" rx="2" ry="2" /> +<text x="796.57" y="639.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="1163.8" y="613" width="1.4" height="15.0" fill="rgb(0,220,62)" rx="2" ry="2" /> +<text x="1166.81" y="623.5" ></text> +</g> +<g > +<title>tcp_v4_rcv (10,101,010 samples, 0.10%)</title><rect x="1377.9" y="293" width="1.3" height="15.0" fill="rgb(0,215,109)" rx="2" ry="2" /> +<text x="1380.88" y="303.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (20,202,020 samples, 0.20%)</title><rect x="181.0" y="725" width="2.7" height="15.0" fill="rgb(0,199,108)" rx="2" ry="2" /> +<text x="183.99" y="735.5" ></text> +</g> +<g > +<title>d_alloc (10,101,010 samples, 0.10%)</title><rect x="792.2" y="485" width="1.4" height="15.0" fill="rgb(0,230,95)" rx="2" ry="2" /> +<text x="795.22" y="495.5" ></text> +</g> +<g > +<title>evict (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="501" width="1.4" height="15.0" fill="rgb(0,212,46)" rx="2" ry="2" /> +<text x="1030.83" y="511.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (10,101,010 samples, 0.10%)</title><rect x="1084.4" y="421" width="1.3" height="15.0" fill="rgb(0,209,56)" rx="2" ry="2" /> +<text x="1087.38" y="431.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="1186.7" y="645" width="1.3" height="15.0" fill="rgb(0,229,193)" rx="2" ry="2" /> +<text x="1189.70" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.78%)</title><rect x="1023.8" y="693" width="10.8" height="15.0" fill="rgb(0,222,104)" rx="2" ry="2" /> +<text x="1026.80" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="489.3" y="645" width="1.3" height="15.0" fill="rgb(0,196,11)" rx="2" ry="2" /> +<text x="492.30" y="655.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.10%)</title><rect x="408.5" y="549" width="1.4" height="15.0" fill="rgb(0,212,204)" rx="2" ry="2" /> +<text x="411.52" y="559.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="715.5" y="437" width="1.3" height="15.0" fill="rgb(0,192,34)" rx="2" ry="2" /> +<text x="718.48" y="447.5" ></text> +</g> +<g > +<title>remove (30,303,030 samples, 0.29%)</title><rect x="385.6" y="741" width="4.1" height="15.0" fill="rgb(0,222,74)" rx="2" ry="2" /> +<text x="388.63" y="751.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="1123.4" y="549" width="1.4" height="15.0" fill="rgb(0,229,26)" rx="2" ry="2" /> +<text x="1126.42" y="559.5" ></text> +</g> +<g > +<title>stop_this_handle (10,101,010 samples, 0.10%)</title><rect x="338.5" y="549" width="1.4" height="15.0" fill="rgb(0,219,144)" rx="2" ry="2" /> +<text x="341.51" y="559.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.10%)</title><rect x="1041.3" y="597" width="1.3" height="15.0" fill="rgb(0,211,81)" rx="2" ry="2" /> +<text x="1044.30" y="607.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (20,202,020 samples, 0.20%)</title><rect x="225.4" y="501" width="2.7" height="15.0" fill="rgb(0,236,205)" rx="2" ry="2" /> +<text x="228.41" y="511.5" ></text> +</g> +<g > +<title>__dev_queue_xmit (10,101,010 samples, 0.10%)</title><rect x="71.9" y="341" width="1.4" height="15.0" fill="rgb(0,219,32)" rx="2" ry="2" /> +<text x="74.93" y="351.5" ></text> +</g> +<g > +<title>security_inode_need_killpriv (10,101,010 samples, 0.10%)</title><rect x="1093.8" y="485" width="1.4" height="15.0" fill="rgb(0,200,131)" rx="2" ry="2" /> +<text x="1096.80" y="495.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="358.7" y="437" width="1.3" height="15.0" fill="rgb(0,193,163)" rx="2" ry="2" /> +<text x="361.70" y="447.5" ></text> +</g> +<g > +<title>kernel_fpu_begin_mask (10,101,010 samples, 0.10%)</title><rect x="164.8" y="661" width="1.4" height="15.0" fill="rgb(0,196,119)" rx="2" ry="2" /> +<text x="167.83" y="671.5" ></text> +</g> +<g > +<title>__lookup_hash (10,101,010 samples, 0.10%)</title><rect x="598.4" y="597" width="1.3" height="15.0" fill="rgb(0,222,125)" rx="2" ry="2" /> +<text x="601.35" y="607.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="1302.5" y="725" width="1.3" height="15.0" fill="rgb(0,225,81)" rx="2" ry="2" /> +<text x="1305.49" y="735.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.10%)</title><rect x="1040.0" y="613" width="1.3" height="15.0" fill="rgb(0,217,35)" rx="2" ry="2" /> +<text x="1042.95" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="543.2" y="661" width="2.6" height="15.0" fill="rgb(0,230,62)" rx="2" ry="2" /> +<text x="546.15" y="671.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (40,404,040 samples, 0.39%)</title><rect x="15.4" y="469" width="5.4" height="15.0" fill="rgb(0,206,88)" rx="2" ry="2" /> +<text x="18.39" y="479.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (30,303,030 samples, 0.29%)</title><rect x="1189.4" y="709" width="4.0" height="15.0" fill="rgb(0,223,49)" rx="2" ry="2" /> +<text x="1192.40" y="719.5" ></text> +</g> +<g > +<title>git_repository__cleanup (90,909,090 samples, 0.88%)</title><rect x="189.1" y="805" width="12.1" height="15.0" fill="rgb(0,191,73)" rx="2" ry="2" /> +<text x="192.06" y="815.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="730.3" y="581" width="1.3" height="15.0" fill="rgb(0,232,25)" rx="2" ry="2" /> +<text x="733.29" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1110.0" y="645" width="1.3" height="15.0" fill="rgb(0,213,72)" rx="2" ry="2" /> +<text x="1112.96" y="655.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.10%)</title><rect x="408.5" y="517" width="1.4" height="15.0" fill="rgb(0,219,154)" rx="2" ry="2" /> +<text x="411.52" y="527.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (10,101,010 samples, 0.10%)</title><rect x="62.5" y="517" width="1.4" height="15.0" fill="rgb(0,225,66)" rx="2" ry="2" /> +<text x="65.51" y="527.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.10%)</title><rect x="431.4" y="501" width="1.4" height="15.0" fill="rgb(0,211,185)" rx="2" ry="2" /> +<text x="434.40" y="511.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="870.3" y="613" width="1.4" height="15.0" fill="rgb(0,217,51)" rx="2" ry="2" /> +<text x="873.31" y="623.5" ></text> +</g> +<g > +<title>mm_init (10,101,010 samples, 0.10%)</title><rect x="1299.8" y="661" width="1.3" height="15.0" fill="rgb(0,222,149)" rx="2" ry="2" /> +<text x="1302.80" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1077.6" y="645" width="1.4" height="15.0" fill="rgb(0,190,1)" rx="2" ry="2" /> +<text x="1080.65" y="655.5" ></text> +</g> +<g > +<title>vfs_rename (10,101,010 samples, 0.10%)</title><rect x="440.8" y="645" width="1.4" height="15.0" fill="rgb(0,200,22)" rx="2" ry="2" /> +<text x="443.83" y="655.5" ></text> +</g> +<g > +<title>ktime_get (10,101,010 samples, 0.10%)</title><rect x="816.5" y="261" width="1.3" height="15.0" fill="rgb(0,224,27)" rx="2" ry="2" /> +<text x="819.46" y="271.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="434.1" y="533" width="1.3" height="15.0" fill="rgb(0,224,55)" rx="2" ry="2" /> +<text x="437.10" y="543.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.10%)</title><rect x="1173.2" y="693" width="1.4" height="15.0" fill="rgb(0,202,33)" rx="2" ry="2" /> +<text x="1176.24" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="990.1" y="629" width="6.8" height="15.0" fill="rgb(0,213,158)" rx="2" ry="2" /> +<text x="993.14" y="639.5" ></text> +</g> +<g > +<title>dput (60,606,060 samples, 0.59%)</title><rect x="1115.3" y="597" width="8.1" height="15.0" fill="rgb(0,217,41)" rx="2" ry="2" /> +<text x="1118.35" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="922.8" y="645" width="1.4" height="15.0" fill="rgb(0,237,137)" rx="2" ry="2" /> +<text x="925.82" y="655.5" ></text> +</g> +<g > +<title>crc_32 (10,101,010 samples, 0.10%)</title><rect x="206.6" y="405" width="1.3" height="15.0" fill="rgb(0,205,75)" rx="2" ry="2" /> +<text x="209.57" y="415.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="976.7" y="549" width="1.3" height="15.0" fill="rgb(0,196,44)" rx="2" ry="2" /> +<text x="979.67" y="559.5" ></text> +</g> +<g > +<title>filemap_flush (40,404,040 samples, 0.39%)</title><rect x="842.0" y="549" width="5.4" height="15.0" fill="rgb(0,228,101)" rx="2" ry="2" /> +<text x="845.04" y="559.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="877.0" y="469" width="1.4" height="15.0" fill="rgb(0,227,135)" rx="2" ry="2" /> +<text x="880.04" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="109.6" y="869" width="1.4" height="15.0" fill="rgb(0,223,70)" rx="2" ry="2" /> +<text x="112.63" y="879.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1023.8" y="661" width="4.0" height="15.0" fill="rgb(0,190,158)" rx="2" ry="2" /> +<text x="1026.80" y="671.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="683.2" y="373" width="1.3" height="15.0" fill="rgb(0,204,5)" rx="2" ry="2" /> +<text x="686.17" y="383.5" ></text> +</g> +<g > +<title>net_send_part (101,010,100 samples, 0.98%)</title><rect x="11.3" y="837" width="13.5" height="15.0" fill="rgb(0,234,0)" rx="2" ry="2" /> +<text x="14.35" y="847.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="1342.9" y="533" width="1.3" height="15.0" fill="rgb(0,201,84)" rx="2" ry="2" /> +<text x="1345.88" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.39%)</title><rect x="676.4" y="613" width="5.4" height="15.0" fill="rgb(0,203,87)" rx="2" ry="2" /> +<text x="679.44" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="536.4" y="757" width="4.1" height="15.0" fill="rgb(0,234,164)" rx="2" ry="2" /> +<text x="539.42" y="767.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="1030.5" y="453" width="1.4" height="15.0" fill="rgb(0,219,86)" rx="2" ry="2" /> +<text x="1033.53" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (181,818,180 samples, 1.76%)</title><rect x="672.4" y="693" width="24.2" height="15.0" fill="rgb(0,206,152)" rx="2" ry="2" /> +<text x="675.40" y="703.5" >[..</text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="877.0" y="629" width="2.7" height="15.0" fill="rgb(0,225,36)" rx="2" ry="2" /> +<text x="880.04" y="639.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.10%)</title><rect x="885.1" y="549" width="1.4" height="15.0" fill="rgb(0,195,92)" rx="2" ry="2" /> +<text x="888.12" y="559.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="782.8" y="485" width="1.3" height="15.0" fill="rgb(0,205,7)" rx="2" ry="2" /> +<text x="785.80" y="495.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="677" width="2.7" height="15.0" fill="rgb(0,222,6)" rx="2" ry="2" /> +<text x="1380.88" y="687.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (30,303,030 samples, 0.29%)</title><rect x="1124.8" y="437" width="4.0" height="15.0" fill="rgb(0,236,51)" rx="2" ry="2" /> +<text x="1127.77" y="447.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="457.0" y="661" width="1.3" height="15.0" fill="rgb(0,205,45)" rx="2" ry="2" /> +<text x="459.99" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="27.5" y="837" width="1.3" height="15.0" fill="rgb(0,198,95)" rx="2" ry="2" /> +<text x="30.50" y="847.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.10%)</title><rect x="176.9" y="789" width="1.4" height="15.0" fill="rgb(0,196,72)" rx="2" ry="2" /> +<text x="179.95" y="799.5" ></text> +</g> +<g > +<title>handle_pte_fault (10,101,010 samples, 0.10%)</title><rect x="199.8" y="645" width="1.4" height="15.0" fill="rgb(0,232,37)" rx="2" ry="2" /> +<text x="202.83" y="655.5" ></text> +</g> +<g > +<title>ext4_add_entry (40,404,040 samples, 0.39%)</title><rect x="574.1" y="565" width="5.4" height="15.0" fill="rgb(0,223,174)" rx="2" ry="2" /> +<text x="577.12" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="610.5" y="677" width="1.3" height="15.0" fill="rgb(0,214,97)" rx="2" ry="2" /> +<text x="613.47" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="784.1" y="725" width="1.4" height="15.0" fill="rgb(0,207,78)" rx="2" ry="2" /> +<text x="787.15" y="735.5" ></text> +</g> +<g > +<title>ext4_evict_inode (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="485" width="1.4" height="15.0" fill="rgb(0,234,182)" rx="2" ry="2" /> +<text x="1030.83" y="495.5" ></text> +</g> +<g > +<title>ext4_mb_check_limits (10,101,010 samples, 0.10%)</title><rect x="959.2" y="357" width="1.3" height="15.0" fill="rgb(0,200,15)" rx="2" ry="2" /> +<text x="962.17" y="367.5" ></text> +</g> +<g > +<title>__ext4_unlink (10,101,010 samples, 0.10%)</title><rect x="695.3" y="565" width="1.3" height="15.0" fill="rgb(0,192,3)" rx="2" ry="2" /> +<text x="698.29" y="575.5" ></text> +</g> +<g > +<title>git_config_add_file_ondisk (40,404,040 samples, 0.39%)</title><rect x="1065.5" y="725" width="5.4" height="15.0" fill="rgb(0,225,7)" rx="2" ry="2" /> +<text x="1068.53" y="735.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.10%)</title><rect x="926.9" y="517" width="1.3" height="15.0" fill="rgb(0,202,78)" rx="2" ry="2" /> +<text x="929.86" y="527.5" ></text> +</g> +<g > +<title>copy_p4d_range (80,808,080 samples, 0.78%)</title><rect x="1278.3" y="629" width="10.7" height="15.0" fill="rgb(0,213,115)" rx="2" ry="2" /> +<text x="1281.25" y="639.5" ></text> +</g> +<g > +<title>crc_35 (10,101,010 samples, 0.10%)</title><rect x="1155.7" y="581" width="1.4" height="15.0" fill="rgb(0,225,53)" rx="2" ry="2" /> +<text x="1158.74" y="591.5" ></text> +</g> +<g > +<title>__netif_receive_skb (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="341" width="1.4" height="15.0" fill="rgb(0,236,28)" rx="2" ry="2" /> +<text x="1379.54" y="351.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="789.5" y="677" width="2.7" height="15.0" fill="rgb(0,191,87)" rx="2" ry="2" /> +<text x="792.53" y="687.5" ></text> +</g> +<g > +<title>ext4_truncate (10,101,010 samples, 0.10%)</title><rect x="209.3" y="453" width="1.3" height="15.0" fill="rgb(0,237,10)" rx="2" ry="2" /> +<text x="212.26" y="463.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.10%)</title><rect x="532.4" y="517" width="1.3" height="15.0" fill="rgb(0,234,98)" rx="2" ry="2" /> +<text x="535.38" y="527.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.39%)</title><rect x="1352.3" y="821" width="5.4" height="15.0" fill="rgb(0,219,37)" rx="2" ry="2" /> +<text x="1355.30" y="831.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="909.4" y="725" width="1.3" height="15.0" fill="rgb(0,226,176)" rx="2" ry="2" /> +<text x="912.36" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="759.9" y="549" width="2.7" height="15.0" fill="rgb(0,227,73)" rx="2" ry="2" /> +<text x="762.91" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="450.3" y="645" width="6.7" height="15.0" fill="rgb(0,220,60)" rx="2" ry="2" /> +<text x="453.25" y="655.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="602.4" y="485" width="1.3" height="15.0" fill="rgb(0,195,201)" rx="2" ry="2" /> +<text x="605.39" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (70,707,070 samples, 0.68%)</title><rect x="597.0" y="661" width="9.4" height="15.0" fill="rgb(0,217,23)" rx="2" ry="2" /> +<text x="600.00" y="671.5" ></text> +</g> +<g > +<title>mempool_alloc (10,101,010 samples, 0.10%)</title><rect x="930.9" y="405" width="1.3" height="15.0" fill="rgb(0,193,61)" rx="2" ry="2" /> +<text x="933.90" y="415.5" ></text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.10%)</title><rect x="1241.9" y="501" width="1.3" height="15.0" fill="rgb(0,225,137)" rx="2" ry="2" /> +<text x="1244.90" y="511.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="547.2" y="565" width="1.3" height="15.0" fill="rgb(0,200,44)" rx="2" ry="2" /> +<text x="550.19" y="575.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (30,303,030 samples, 0.29%)</title><rect x="685.9" y="533" width="4.0" height="15.0" fill="rgb(0,196,60)" rx="2" ry="2" /> +<text x="688.86" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.10%)</title><rect x="236.2" y="581" width="1.3" height="15.0" fill="rgb(0,230,58)" rx="2" ry="2" /> +<text x="239.19" y="591.5" ></text> +</g> +<g > +<title>jbd2_journal_add_journal_head (10,101,010 samples, 0.10%)</title><rect x="1142.3" y="533" width="1.3" height="15.0" fill="rgb(0,190,175)" rx="2" ry="2" /> +<text x="1145.27" y="543.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.10%)</title><rect x="969.9" y="437" width="1.4" height="15.0" fill="rgb(0,229,108)" rx="2" ry="2" /> +<text x="972.94" y="447.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="972.6" y="597" width="2.7" height="15.0" fill="rgb(0,208,125)" rx="2" ry="2" /> +<text x="975.63" y="607.5" ></text> +</g> +<g > +<title>ext4_free_blocks (10,101,010 samples, 0.10%)</title><rect x="1083.0" y="389" width="1.4" height="15.0" fill="rgb(0,190,74)" rx="2" ry="2" /> +<text x="1086.03" y="399.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="203.9" y="453" width="2.7" height="15.0" fill="rgb(0,199,3)" rx="2" ry="2" /> +<text x="206.87" y="463.5" ></text> +</g> +<g > +<title>lockref_put_return (10,101,010 samples, 0.10%)</title><rect x="812.4" y="613" width="1.4" height="15.0" fill="rgb(0,239,164)" rx="2" ry="2" /> +<text x="815.42" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="551.2" y="709" width="1.4" height="15.0" fill="rgb(0,199,128)" rx="2" ry="2" /> +<text x="554.23" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1026.5" y="613" width="1.3" height="15.0" fill="rgb(0,199,94)" rx="2" ry="2" /> +<text x="1029.49" y="623.5" ></text> +</g> +<g > +<title>end_page_writeback (10,101,010 samples, 0.10%)</title><rect x="213.3" y="261" width="1.3" height="15.0" fill="rgb(0,203,39)" rx="2" ry="2" /> +<text x="216.30" y="271.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="864.9" y="565" width="1.4" height="15.0" fill="rgb(0,220,107)" rx="2" ry="2" /> +<text x="867.93" y="575.5" ></text> +</g> +<g > +<title>touch_atime (40,404,040 samples, 0.39%)</title><rect x="267.2" y="597" width="5.3" height="15.0" fill="rgb(0,210,53)" rx="2" ry="2" /> +<text x="270.15" y="607.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="244.3" y="501" width="1.3" height="15.0" fill="rgb(0,207,97)" rx="2" ry="2" /> +<text x="247.26" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1162.5" y="741" width="1.3" height="15.0" fill="rgb(0,226,77)" rx="2" ry="2" /> +<text x="1165.47" y="751.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="1239.2" y="565" width="1.4" height="15.0" fill="rgb(0,208,119)" rx="2" ry="2" /> +<text x="1242.21" y="575.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="972.6" y="581" width="2.7" height="15.0" fill="rgb(0,226,143)" rx="2" ry="2" /> +<text x="975.63" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="877.0" y="501" width="1.4" height="15.0" fill="rgb(0,231,204)" rx="2" ry="2" /> +<text x="880.04" y="511.5" ></text> +</g> +<g > +<title>git_odb_hash (10,101,010 samples, 0.10%)</title><rect x="671.1" y="709" width="1.3" height="15.0" fill="rgb(0,223,125)" rx="2" ry="2" /> +<text x="674.05" y="719.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="513.5" y="725" width="1.4" height="15.0" fill="rgb(0,225,41)" rx="2" ry="2" /> +<text x="516.53" y="735.5" ></text> +</g> +<g > +<title>dquot_initialize (10,101,010 samples, 0.10%)</title><rect x="156.8" y="757" width="1.3" height="15.0" fill="rgb(0,235,123)" rx="2" ry="2" /> +<text x="159.75" y="767.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (10,101,010 samples, 0.10%)</title><rect x="265.8" y="581" width="1.4" height="15.0" fill="rgb(0,213,21)" rx="2" ry="2" /> +<text x="268.80" y="591.5" ></text> +</g> +<g > +<title>tcp_rcv_state_process (40,404,040 samples, 0.39%)</title><rect x="1336.1" y="677" width="5.4" height="15.0" fill="rgb(0,236,87)" rx="2" ry="2" /> +<text x="1339.15" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="532.4" y="645" width="4.0" height="15.0" fill="rgb(0,214,115)" rx="2" ry="2" /> +<text x="535.38" y="655.5" ></text> +</g> +<g > +<title>vfs_getattr_nosec (10,101,010 samples, 0.10%)</title><rect x="506.8" y="661" width="1.3" height="15.0" fill="rgb(0,199,66)" rx="2" ry="2" /> +<text x="509.80" y="671.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="325" width="1.4" height="15.0" fill="rgb(0,220,148)" rx="2" ry="2" /> +<text x="1379.54" y="335.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (30,303,030 samples, 0.29%)</title><rect x="267.2" y="581" width="4.0" height="15.0" fill="rgb(0,225,200)" rx="2" ry="2" /> +<text x="270.15" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (80,808,080 samples, 0.78%)</title><rect x="62.5" y="757" width="10.8" height="15.0" fill="rgb(0,190,31)" rx="2" ry="2" /> +<text x="65.51" y="767.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="734.3" y="661" width="5.4" height="15.0" fill="rgb(0,194,152)" rx="2" ry="2" /> +<text x="737.33" y="671.5" ></text> +</g> +<g > +<title>mb_update_avg_fragment_size.isra.0 (10,101,010 samples, 0.10%)</title><rect x="120.4" y="613" width="1.3" height="15.0" fill="rgb(0,221,90)" rx="2" ry="2" /> +<text x="123.40" y="623.5" ></text> +</g> +<g > +<title>apparmor_file_alloc_security (10,101,010 samples, 0.10%)</title><rect x="419.3" y="549" width="1.3" height="15.0" fill="rgb(0,195,131)" rx="2" ry="2" /> +<text x="422.29" y="559.5" ></text> +</g> +<g > +<title>vfs_unlink (40,404,040 samples, 0.39%)</title><rect x="378.9" y="629" width="5.4" height="15.0" fill="rgb(0,214,111)" rx="2" ry="2" /> +<text x="381.90" y="639.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.10%)</title><rect x="338.5" y="629" width="1.4" height="15.0" fill="rgb(0,227,102)" rx="2" ry="2" /> +<text x="341.51" y="639.5" ></text> +</g> +<g > +<title>ext4_writepages (40,404,040 samples, 0.39%)</title><rect x="929.6" y="517" width="5.3" height="15.0" fill="rgb(0,224,107)" rx="2" ry="2" /> +<text x="932.55" y="527.5" ></text> +</g> +<g > +<title>filemap_read (10,101,010 samples, 0.10%)</title><rect x="698.0" y="469" width="1.3" height="15.0" fill="rgb(0,233,100)" rx="2" ry="2" /> +<text x="700.98" y="479.5" ></text> +</g> +<g > +<title>ext4_group_desc_csum_set (10,101,010 samples, 0.10%)</title><rect x="1014.4" y="549" width="1.3" height="15.0" fill="rgb(0,204,29)" rx="2" ry="2" /> +<text x="1017.37" y="559.5" ></text> +</g> +<g > +<title>json_send (30,303,030 samples, 0.29%)</title><rect x="1371.2" y="853" width="4.0" height="15.0" fill="rgb(0,217,146)" rx="2" ry="2" /> +<text x="1374.15" y="863.5" ></text> +</g> +<g > +<title>do_renameat2 (131,313,130 samples, 1.27%)</title><rect x="1115.3" y="613" width="17.5" height="15.0" fill="rgb(0,207,150)" rx="2" ry="2" /> +<text x="1118.35" y="623.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="1100.5" y="597" width="1.4" height="15.0" fill="rgb(0,210,94)" rx="2" ry="2" /> +<text x="1103.54" y="607.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.10%)</title><rect x="831.3" y="533" width="1.3" height="15.0" fill="rgb(0,229,193)" rx="2" ry="2" /> +<text x="834.27" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_rmdir (141,414,140 samples, 1.37%)</title><rect x="342.5" y="645" width="18.9" height="15.0" fill="rgb(0,229,51)" rx="2" ry="2" /> +<text x="345.55" y="655.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="488.0" y="645" width="1.3" height="15.0" fill="rgb(0,231,44)" rx="2" ry="2" /> +<text x="490.95" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (80,808,080 samples, 0.78%)</title><rect x="43.7" y="821" width="10.7" height="15.0" fill="rgb(0,215,169)" rx="2" ry="2" /> +<text x="46.66" y="831.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="220.0" y="629" width="1.4" height="15.0" fill="rgb(0,220,166)" rx="2" ry="2" /> +<text x="223.03" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="696.6" y="677" width="5.4" height="15.0" fill="rgb(0,199,109)" rx="2" ry="2" /> +<text x="699.63" y="687.5" ></text> +</g> +<g > +<title>blk_mq_flush_plug_list (10,101,010 samples, 0.10%)</title><rect x="816.5" y="453" width="1.3" height="15.0" fill="rgb(0,236,152)" rx="2" ry="2" /> +<text x="819.46" y="463.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="483.9" y="645" width="2.7" height="15.0" fill="rgb(0,219,28)" rx="2" ry="2" /> +<text x="486.91" y="655.5" ></text> +</g> +<g > +<title>ext4_evict_inode (30,303,030 samples, 0.29%)</title><rect x="1080.3" y="485" width="4.1" height="15.0" fill="rgb(0,218,131)" rx="2" ry="2" /> +<text x="1083.34" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="671.1" y="661" width="1.3" height="15.0" fill="rgb(0,209,77)" rx="2" ry="2" /> +<text x="674.05" y="671.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.10%)</title><rect x="633.4" y="645" width="1.3" height="15.0" fill="rgb(0,237,150)" rx="2" ry="2" /> +<text x="636.36" y="655.5" ></text> +</g> +<g > +<title>inet6_sendmsg (101,010,100 samples, 0.98%)</title><rect x="11.3" y="725" width="13.5" height="15.0" fill="rgb(0,229,137)" rx="2" ry="2" /> +<text x="14.35" y="735.5" ></text> +</g> +<g > +<title>delete_from_page_cache_batch (10,101,010 samples, 0.10%)</title><rect x="809.7" y="469" width="1.4" height="15.0" fill="rgb(0,236,109)" rx="2" ry="2" /> +<text x="812.73" y="479.5" ></text> +</g> +<g > +<title>git_config_snapshot (30,303,030 samples, 0.29%)</title><rect x="527.0" y="773" width="4.0" height="15.0" fill="rgb(0,228,57)" rx="2" ry="2" /> +<text x="530.00" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.49%)</title><rect x="86.7" y="789" width="6.8" height="15.0" fill="rgb(0,235,195)" rx="2" ry="2" /> +<text x="89.74" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="734.3" y="645" width="1.4" height="15.0" fill="rgb(0,191,170)" rx="2" ry="2" /> +<text x="737.33" y="655.5" ></text> +</g> +<g > +<title>process_backlog (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="485" width="5.4" height="15.0" fill="rgb(0,238,179)" rx="2" ry="2" /> +<text x="1383.58" y="495.5" ></text> +</g> +<g > +<title>__wake_up (10,101,010 samples, 0.10%)</title><rect x="505.5" y="533" width="1.3" height="15.0" fill="rgb(0,223,160)" rx="2" ry="2" /> +<text x="508.45" y="543.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="689.9" y="613" width="2.7" height="15.0" fill="rgb(0,208,111)" rx="2" ry="2" /> +<text x="692.90" y="623.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="524.3" y="565" width="1.3" height="15.0" fill="rgb(0,222,81)" rx="2" ry="2" /> +<text x="527.30" y="575.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="882.4" y="581" width="1.4" height="15.0" fill="rgb(0,215,150)" rx="2" ry="2" /> +<text x="885.43" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="233.5" y="373" width="1.3" height="15.0" fill="rgb(0,197,24)" rx="2" ry="2" /> +<text x="236.49" y="383.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.10%)</title><rect x="755.9" y="581" width="1.3" height="15.0" fill="rgb(0,215,35)" rx="2" ry="2" /> +<text x="758.87" y="591.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="1131.5" y="533" width="1.3" height="15.0" fill="rgb(0,201,137)" rx="2" ry="2" /> +<text x="1134.50" y="543.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="555.3" y="549" width="1.3" height="15.0" fill="rgb(0,196,5)" rx="2" ry="2" /> +<text x="558.27" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="435.4" y="629" width="1.4" height="15.0" fill="rgb(0,215,97)" rx="2" ry="2" /> +<text x="438.44" y="639.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.10%)</title><rect x="380.2" y="565" width="1.4" height="15.0" fill="rgb(0,201,32)" rx="2" ry="2" /> +<text x="383.24" y="575.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (10,101,010 samples, 0.10%)</title><rect x="790.9" y="533" width="1.3" height="15.0" fill="rgb(0,208,86)" rx="2" ry="2" /> +<text x="793.88" y="543.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="664.3" y="629" width="1.4" height="15.0" fill="rgb(0,202,142)" rx="2" ry="2" /> +<text x="667.32" y="639.5" ></text> +</g> +<g > +<title>blk_mq_do_dispatch_sched (10,101,010 samples, 0.10%)</title><rect x="816.5" y="341" width="1.3" height="15.0" fill="rgb(0,227,164)" rx="2" ry="2" /> +<text x="819.46" y="351.5" ></text> +</g> +<g > +<title>do_syscall_64 (343,434,340 samples, 3.32%)</title><rect x="1258.1" y="757" width="45.7" height="15.0" fill="rgb(0,236,143)" rx="2" ry="2" /> +<text x="1261.06" y="767.5" >do_s..</text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (313,131,310 samples, 3.02%)</title><rect x="128.5" y="901" width="41.7" height="15.0" fill="rgb(0,211,75)" rx="2" ry="2" /> +<text x="131.48" y="911.5" >ent..</text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="922.8" y="485" width="1.4" height="15.0" fill="rgb(0,202,147)" rx="2" ry="2" /> +<text x="925.82" y="495.5" ></text> +</g> +<g > +<title>truncate_inode_pages_range (20,202,020 samples, 0.20%)</title><rect x="376.2" y="565" width="2.7" height="15.0" fill="rgb(0,232,111)" rx="2" ry="2" /> +<text x="379.20" y="575.5" ></text> +</g> +<g > +<title>allocate_slab (10,101,010 samples, 0.10%)</title><rect x="326.4" y="533" width="1.3" height="15.0" fill="rgb(0,225,199)" rx="2" ry="2" /> +<text x="329.39" y="543.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="1140.9" y="597" width="1.4" height="15.0" fill="rgb(0,209,104)" rx="2" ry="2" /> +<text x="1143.93" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="493.3" y="581" width="1.4" height="15.0" fill="rgb(0,223,203)" rx="2" ry="2" /> +<text x="496.34" y="591.5" ></text> +</g> +<g > +<title>scsi_prepare_cmd (10,101,010 samples, 0.10%)</title><rect x="766.6" y="245" width="1.4" height="15.0" fill="rgb(0,212,58)" rx="2" ry="2" /> +<text x="769.64" y="255.5" ></text> +</g> +<g > +<title>release_pages (10,101,010 samples, 0.10%)</title><rect x="652.2" y="437" width="1.4" height="15.0" fill="rgb(0,224,73)" rx="2" ry="2" /> +<text x="655.20" y="447.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="782.8" y="549" width="1.3" height="15.0" fill="rgb(0,192,39)" rx="2" ry="2" /> +<text x="785.80" y="559.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="630.7" y="629" width="1.3" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="633.66" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.49%)</title><rect x="1027.8" y="629" width="6.8" height="15.0" fill="rgb(0,198,114)" rx="2" ry="2" /> +<text x="1030.83" y="639.5" ></text> +</g> +<g > +<title>filemap_fdatawrite_wbc (50,505,050 samples, 0.49%)</title><rect x="1124.8" y="517" width="6.7" height="15.0" fill="rgb(0,235,127)" rx="2" ry="2" /> +<text x="1127.77" y="527.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.10%)</title><rect x="1139.6" y="533" width="1.3" height="15.0" fill="rgb(0,194,123)" rx="2" ry="2" /> +<text x="1142.58" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1388.7" y="837" width="1.3" height="15.0" fill="rgb(0,191,13)" rx="2" ry="2" /> +<text x="1391.65" y="847.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="327.7" y="677" width="2.7" height="15.0" fill="rgb(0,206,113)" rx="2" ry="2" /> +<text x="330.74" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="552.6" y="757" width="8.1" height="15.0" fill="rgb(0,215,64)" rx="2" ry="2" /> +<text x="555.58" y="767.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="1175.9" y="613" width="1.4" height="15.0" fill="rgb(0,210,38)" rx="2" ry="2" /> +<text x="1178.93" y="623.5" ></text> +</g> +<g > +<title>schedule (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="373" width="1.4" height="15.0" fill="rgb(0,228,118)" rx="2" ry="2" /> +<text x="1030.83" y="383.5" ></text> +</g> +<g > +<title>add_dirent_to_buf (50,505,050 samples, 0.49%)</title><rect x="160.8" y="725" width="6.7" height="15.0" fill="rgb(0,208,31)" rx="2" ry="2" /> +<text x="163.79" y="735.5" ></text> +</g> +<g > +<title>__kmalloc (10,101,010 samples, 0.10%)</title><rect x="1192.1" y="549" width="1.3" height="15.0" fill="rgb(0,234,62)" rx="2" ry="2" /> +<text x="1195.09" y="559.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="575.5" y="517" width="1.3" height="15.0" fill="rgb(0,201,191)" rx="2" ry="2" /> +<text x="578.46" y="527.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="232.1" y="421" width="1.4" height="15.0" fill="rgb(0,230,11)" rx="2" ry="2" /> +<text x="235.15" y="431.5" ></text> +</g> +<g > +<title>libgit_checkout (1,070,707,060 samples, 10.34%)</title><rect x="417.9" y="837" width="142.8" height="15.0" fill="rgb(0,199,103)" rx="2" ry="2" /> +<text x="420.94" y="847.5" >libgit_checkout</text> +</g> +<g > +<title>irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="1197.5" y="597" width="1.3" height="15.0" fill="rgb(0,213,90)" rx="2" ry="2" /> +<text x="1200.47" y="607.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="443.5" y="565" width="1.4" height="15.0" fill="rgb(0,203,48)" rx="2" ry="2" /> +<text x="446.52" y="575.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.10%)</title><rect x="1163.8" y="677" width="1.4" height="15.0" fill="rgb(0,199,19)" rx="2" ry="2" /> +<text x="1166.81" y="687.5" ></text> +</g> +<g > +<title>close_fd (10,101,010 samples, 0.10%)</title><rect x="979.4" y="597" width="1.3" height="15.0" fill="rgb(0,195,198)" rx="2" ry="2" /> +<text x="982.37" y="607.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="895.9" y="549" width="1.3" height="15.0" fill="rgb(0,239,145)" rx="2" ry="2" /> +<text x="898.89" y="559.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.20%)</title><rect x="757.2" y="517" width="2.7" height="15.0" fill="rgb(0,235,87)" rx="2" ry="2" /> +<text x="760.22" y="527.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="372.2" y="533" width="1.3" height="15.0" fill="rgb(0,212,196)" rx="2" ry="2" /> +<text x="375.17" y="543.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.10%)</title><rect x="685.9" y="453" width="1.3" height="15.0" fill="rgb(0,216,63)" rx="2" ry="2" /> +<text x="688.86" y="463.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="956.5" y="421" width="1.3" height="15.0" fill="rgb(0,197,118)" rx="2" ry="2" /> +<text x="959.48" y="431.5" ></text> +</g> +<g > +<title>__alloc_file (10,101,010 samples, 0.10%)</title><rect x="532.4" y="501" width="1.3" height="15.0" fill="rgb(0,210,156)" rx="2" ry="2" /> +<text x="535.38" y="511.5" ></text> +</g> +<g > +<title>__ip_finish_output (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="469" width="1.4" height="15.0" fill="rgb(0,213,53)" rx="2" ry="2" /> +<text x="1379.54" y="479.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="715.5" y="501" width="1.3" height="15.0" fill="rgb(0,237,66)" rx="2" ry="2" /> +<text x="718.48" y="511.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.10%)</title><rect x="794.9" y="597" width="1.4" height="15.0" fill="rgb(0,221,209)" rx="2" ry="2" /> +<text x="797.92" y="607.5" ></text> +</g> +<g > +<title>ext4_generic_delete_entry (10,101,010 samples, 0.10%)</title><rect x="773.4" y="501" width="1.3" height="15.0" fill="rgb(0,234,181)" rx="2" ry="2" /> +<text x="776.38" y="511.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="684.5" y="645" width="1.4" height="15.0" fill="rgb(0,208,168)" rx="2" ry="2" /> +<text x="687.52" y="655.5" ></text> +</g> +<g > +<title>do_renameat2 (121,212,120 samples, 1.17%)</title><rect x="646.8" y="613" width="16.2" height="15.0" fill="rgb(0,226,178)" rx="2" ry="2" /> +<text x="649.82" y="623.5" ></text> +</g> +<g > +<title>realpath (20,202,020 samples, 0.20%)</title><rect x="881.1" y="693" width="2.7" height="15.0" fill="rgb(0,213,184)" rx="2" ry="2" /> +<text x="884.08" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="782.8" y="597" width="1.3" height="15.0" fill="rgb(0,196,200)" rx="2" ry="2" /> +<text x="785.80" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (30,303,030 samples, 0.29%)</title><rect x="1000.9" y="709" width="4.0" height="15.0" fill="rgb(0,216,15)" rx="2" ry="2" /> +<text x="1003.91" y="719.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.10%)</title><rect x="599.7" y="565" width="1.3" height="15.0" fill="rgb(0,206,208)" rx="2" ry="2" /> +<text x="602.70" y="575.5" ></text> +</g> +<g > +<title>copy_user_enhanced_fast_string (10,101,010 samples, 0.10%)</title><rect x="391.0" y="677" width="1.4" height="15.0" fill="rgb(0,238,70)" rx="2" ry="2" /> +<text x="394.01" y="687.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.10%)</title><rect x="245.6" y="501" width="1.4" height="15.0" fill="rgb(0,194,18)" rx="2" ry="2" /> +<text x="248.61" y="511.5" ></text> +</g> +<g > +<title>fdopendir (10,101,010 samples, 0.10%)</title><rect x="221.4" y="661" width="1.3" height="15.0" fill="rgb(0,232,117)" rx="2" ry="2" /> +<text x="224.38" y="671.5" ></text> +</g> +<g > +<title>delayed_put_task_struct (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="405" width="1.3" height="15.0" fill="rgb(0,239,42)" rx="2" ry="2" /> +<text x="1032.18" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="703.4" y="629" width="1.3" height="15.0" fill="rgb(0,231,75)" rx="2" ry="2" /> +<text x="706.37" y="639.5" ></text> +</g> +<g > +<title>do_faccessat (20,202,020 samples, 0.20%)</title><rect x="747.8" y="549" width="2.7" height="15.0" fill="rgb(0,213,136)" rx="2" ry="2" /> +<text x="750.80" y="559.5" ></text> +</g> +<g > +<title>evict (20,202,020 samples, 0.20%)</title><rect x="839.3" y="533" width="2.7" height="15.0" fill="rgb(0,237,71)" rx="2" ry="2" /> +<text x="842.35" y="543.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="998.2" y="581" width="1.4" height="15.0" fill="rgb(0,203,167)" rx="2" ry="2" /> +<text x="1001.21" y="591.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="551.2" y="661" width="1.4" height="15.0" fill="rgb(0,196,46)" rx="2" ry="2" /> +<text x="554.23" y="671.5" ></text> +</g> +<g > +<title>jsonrpc_request_send (70,707,070 samples, 0.68%)</title><rect x="1324.0" y="869" width="9.5" height="15.0" fill="rgb(0,201,5)" rx="2" ry="2" /> +<text x="1327.03" y="879.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="333.1" y="677" width="1.4" height="15.0" fill="rgb(0,229,51)" rx="2" ry="2" /> +<text x="336.12" y="687.5" ></text> +</g> +<g > +<title>getname (10,101,010 samples, 0.10%)</title><rect x="555.3" y="581" width="1.3" height="15.0" fill="rgb(0,234,101)" rx="2" ry="2" /> +<text x="558.27" y="591.5" ></text> +</g> +<g > +<title>opendir (30,303,030 samples, 0.29%)</title><rect x="401.8" y="789" width="4.0" height="15.0" fill="rgb(0,232,29)" rx="2" ry="2" /> +<text x="404.79" y="799.5" ></text> +</g> +<g > +<title>errseq_sample (10,101,010 samples, 0.10%)</title><rect x="443.5" y="517" width="1.4" height="15.0" fill="rgb(0,204,105)" rx="2" ry="2" /> +<text x="446.52" y="527.5" ></text> +</g> +<g > +<title>memcg_slab_free_hook (10,101,010 samples, 0.10%)</title><rect x="65.2" y="85" width="1.3" height="15.0" fill="rgb(0,234,208)" rx="2" ry="2" /> +<text x="68.20" y="95.5" ></text> +</g> +<g > +<title>rename (50,505,050 samples, 0.49%)</title><rect x="1080.3" y="661" width="6.8" height="15.0" fill="rgb(0,203,186)" rx="2" ry="2" /> +<text x="1083.34" y="671.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.29%)</title><rect x="619.9" y="725" width="4.0" height="15.0" fill="rgb(0,211,11)" rx="2" ry="2" /> +<text x="622.89" y="735.5" ></text> +</g> +<g > +<title>nf_conntrack_in (10,101,010 samples, 0.10%)</title><rect x="1333.5" y="453" width="1.3" height="15.0" fill="rgb(0,200,92)" rx="2" ry="2" /> +<text x="1336.45" y="463.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.10%)</title><rect x="172.9" y="757" width="1.4" height="15.0" fill="rgb(0,207,31)" rx="2" ry="2" /> +<text x="175.91" y="767.5" ></text> +</g> +<g > +<title>__sys_connect_file (80,808,080 samples, 0.78%)</title><rect x="1377.9" y="773" width="10.8" height="15.0" fill="rgb(0,211,170)" rx="2" ry="2" /> +<text x="1380.88" y="783.5" ></text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.10%)</title><rect x="361.4" y="629" width="1.3" height="15.0" fill="rgb(0,217,26)" rx="2" ry="2" /> +<text x="364.40" y="639.5" ></text> +</g> +<g > +<title>__x64_sys_rename (101,010,100 samples, 0.98%)</title><rect x="836.7" y="645" width="13.4" height="15.0" fill="rgb(0,191,172)" rx="2" ry="2" /> +<text x="839.65" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="642.8" y="645" width="2.7" height="15.0" fill="rgb(0,201,203)" rx="2" ry="2" /> +<text x="645.78" y="655.5" ></text> +</g> +<g > +<title>__libc_calloc (20,202,020 samples, 0.20%)</title><rect x="1363.1" y="741" width="2.7" height="15.0" fill="rgb(0,234,148)" rx="2" ry="2" /> +<text x="1366.07" y="751.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="378.9" y="581" width="1.3" height="15.0" fill="rgb(0,237,36)" rx="2" ry="2" /> +<text x="381.90" y="591.5" ></text> +</g> +<g > +<title>scsi_dispatch_cmd (20,202,020 samples, 0.20%)</title><rect x="1124.8" y="261" width="2.7" height="15.0" fill="rgb(0,212,20)" rx="2" ry="2" /> +<text x="1127.77" y="271.5" ></text> +</g> +<g > +<title>do_readlinkat (10,101,010 samples, 0.10%)</title><rect x="1158.4" y="645" width="1.4" height="15.0" fill="rgb(0,218,197)" rx="2" ry="2" /> +<text x="1161.43" y="655.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.20%)</title><rect x="242.9" y="565" width="2.7" height="15.0" fill="rgb(0,233,205)" rx="2" ry="2" /> +<text x="245.92" y="575.5" ></text> +</g> +<g > +<title>generic_perform_write (10,101,010 samples, 0.10%)</title><rect x="922.8" y="533" width="1.4" height="15.0" fill="rgb(0,213,69)" rx="2" ry="2" /> +<text x="925.82" y="543.5" ></text> +</g> +<g > +<title>ext4_map_blocks (70,707,070 samples, 0.68%)</title><rect x="1143.6" y="565" width="9.4" height="15.0" fill="rgb(0,193,166)" rx="2" ry="2" /> +<text x="1146.62" y="575.5" ></text> +</g> +<g > +<title>notify_change (10,101,010 samples, 0.10%)</title><rect x="1006.3" y="613" width="1.3" height="15.0" fill="rgb(0,216,91)" rx="2" ry="2" /> +<text x="1009.29" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="784.1" y="693" width="1.4" height="15.0" fill="rgb(0,214,33)" rx="2" ry="2" /> +<text x="787.15" y="703.5" ></text> +</g> +<g > +<title>kfree (10,101,010 samples, 0.10%)</title><rect x="1210.9" y="485" width="1.4" height="15.0" fill="rgb(0,217,84)" rx="2" ry="2" /> +<text x="1213.94" y="495.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="1215.0" y="501" width="1.3" height="15.0" fill="rgb(0,221,111)" rx="2" ry="2" /> +<text x="1217.98" y="511.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="588.9" y="629" width="1.4" height="15.0" fill="rgb(0,195,190)" rx="2" ry="2" /> +<text x="591.93" y="639.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="890.5" y="533" width="1.4" height="15.0" fill="rgb(0,229,59)" rx="2" ry="2" /> +<text x="893.51" y="543.5" ></text> +</g> +<g > +<title>page_counter_cancel (10,101,010 samples, 0.10%)</title><rect x="652.2" y="373" width="1.4" height="15.0" fill="rgb(0,213,43)" rx="2" ry="2" /> +<text x="655.20" y="383.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="1110.0" y="677" width="1.3" height="15.0" fill="rgb(0,230,13)" rx="2" ry="2" /> +<text x="1112.96" y="687.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="858.2" y="517" width="1.3" height="15.0" fill="rgb(0,209,86)" rx="2" ry="2" /> +<text x="861.20" y="527.5" ></text> +</g> +<g > +<title>__poll (80,808,080 samples, 0.78%)</title><rect x="43.7" y="853" width="10.7" height="15.0" fill="rgb(0,237,4)" rx="2" ry="2" /> +<text x="46.66" y="863.5" ></text> +</g> +<g > +<title>path_init (10,101,010 samples, 0.10%)</title><rect x="1019.8" y="597" width="1.3" height="15.0" fill="rgb(0,193,200)" rx="2" ry="2" /> +<text x="1022.76" y="607.5" ></text> +</g> +<g > +<title>apparmor_path_rename (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="565" width="1.3" height="15.0" fill="rgb(0,199,68)" rx="2" ry="2" /> +<text x="1032.18" y="575.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.20%)</title><rect x="446.2" y="693" width="2.7" height="15.0" fill="rgb(0,238,23)" rx="2" ry="2" /> +<text x="449.21" y="703.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.10%)</title><rect x="1013.0" y="581" width="1.4" height="15.0" fill="rgb(0,227,67)" rx="2" ry="2" /> +<text x="1016.02" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_csum (20,202,020 samples, 0.20%)</title><rect x="148.7" y="661" width="2.7" height="15.0" fill="rgb(0,200,90)" rx="2" ry="2" /> +<text x="151.67" y="671.5" ></text> +</g> +<g > +<title>handle_mm_fault (10,101,010 samples, 0.10%)</title><rect x="189.1" y="709" width="1.3" height="15.0" fill="rgb(0,217,92)" rx="2" ry="2" /> +<text x="192.06" y="719.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="210.6" y="581" width="1.4" height="15.0" fill="rgb(0,217,58)" rx="2" ry="2" /> +<text x="213.60" y="591.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="318.3" y="389" width="1.4" height="15.0" fill="rgb(0,207,37)" rx="2" ry="2" /> +<text x="321.31" y="399.5" ></text> +</g> +<g > +<title>ext4_map_blocks (20,202,020 samples, 0.20%)</title><rect x="677.8" y="453" width="2.7" height="15.0" fill="rgb(0,236,184)" rx="2" ry="2" /> +<text x="680.79" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="527.0" y="661" width="1.3" height="15.0" fill="rgb(0,200,1)" rx="2" ry="2" /> +<text x="530.00" y="671.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="483.9" y="581" width="1.4" height="15.0" fill="rgb(0,234,157)" rx="2" ry="2" /> +<text x="486.91" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="54.4" y="741" width="1.4" height="15.0" fill="rgb(0,229,174)" rx="2" ry="2" /> +<text x="57.43" y="751.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="221.4" y="581" width="1.3" height="15.0" fill="rgb(0,225,155)" rx="2" ry="2" /> +<text x="224.38" y="591.5" ></text> +</g> +<g > +<title>__d_lookup (20,202,020 samples, 0.20%)</title><rect x="143.3" y="757" width="2.7" height="15.0" fill="rgb(0,236,79)" rx="2" ry="2" /> +<text x="146.29" y="767.5" ></text> +</g> +<g > +<title>do_writepages (40,404,040 samples, 0.39%)</title><rect x="929.6" y="533" width="5.3" height="15.0" fill="rgb(0,203,118)" rx="2" ry="2" /> +<text x="932.55" y="543.5" ></text> +</g> +<g > +<title>asm_exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="263.1" y="629" width="1.4" height="15.0" fill="rgb(0,233,58)" rx="2" ry="2" /> +<text x="266.11" y="639.5" ></text> +</g> +<g > +<title>crypto_shash_update (30,303,030 samples, 0.29%)</title><rect x="1153.0" y="597" width="4.1" height="15.0" fill="rgb(0,219,115)" rx="2" ry="2" /> +<text x="1156.04" y="607.5" ></text> +</g> +<g > +<title>__mem_cgroup_uncharge (10,101,010 samples, 0.10%)</title><rect x="921.5" y="469" width="1.3" height="15.0" fill="rgb(0,201,116)" rx="2" ry="2" /> +<text x="924.47" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="506.8" y="725" width="1.3" height="15.0" fill="rgb(0,206,100)" rx="2" ry="2" /> +<text x="509.80" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="610.5" y="645" width="1.3" height="15.0" fill="rgb(0,215,65)" rx="2" ry="2" /> +<text x="613.47" y="655.5" ></text> +</g> +<g > +<title>unlink (30,303,030 samples, 0.29%)</title><rect x="203.9" y="581" width="4.0" height="15.0" fill="rgb(0,238,123)" rx="2" ry="2" /> +<text x="206.87" y="591.5" ></text> +</g> +<g > +<title>__mmdrop (10,101,010 samples, 0.10%)</title><rect x="1307.9" y="613" width="1.3" height="15.0" fill="rgb(0,226,165)" rx="2" ry="2" /> +<text x="1310.87" y="623.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.10%)</title><rect x="323.7" y="533" width="1.3" height="15.0" fill="rgb(0,209,114)" rx="2" ry="2" /> +<text x="326.70" y="543.5" ></text> +</g> +<g > +<title>read (10,101,010 samples, 0.10%)</title><rect x="516.2" y="629" width="1.4" height="15.0" fill="rgb(0,238,85)" rx="2" ry="2" /> +<text x="519.22" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="1135.5" y="629" width="1.4" height="15.0" fill="rgb(0,200,39)" rx="2" ry="2" /> +<text x="1138.54" y="639.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.10%)</title><rect x="788.2" y="629" width="1.3" height="15.0" fill="rgb(0,196,111)" rx="2" ry="2" /> +<text x="791.19" y="639.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (20,202,020 samples, 0.20%)</title><rect x="203.9" y="405" width="2.7" height="15.0" fill="rgb(0,212,144)" rx="2" ry="2" /> +<text x="206.87" y="415.5" ></text> +</g> +<g > +<title>ext4_block_bitmap_csum_set (10,101,010 samples, 0.10%)</title><rect x="119.1" y="661" width="1.3" height="15.0" fill="rgb(0,199,21)" rx="2" ry="2" /> +<text x="122.05" y="671.5" ></text> +</g> +<g > +<title>balance_dirty_pages_ratelimited (10,101,010 samples, 0.10%)</title><rect x="510.8" y="533" width="1.4" height="15.0" fill="rgb(0,200,191)" rx="2" ry="2" /> +<text x="513.84" y="543.5" ></text> +</g> +<g > +<title>ksys_write (30,303,030 samples, 0.29%)</title><rect x="509.5" y="629" width="4.0" height="15.0" fill="rgb(0,219,92)" rx="2" ry="2" /> +<text x="512.49" y="639.5" ></text> +</g> +<g > +<title>__es_insert_extent (10,101,010 samples, 0.10%)</title><rect x="683.2" y="389" width="1.3" height="15.0" fill="rgb(0,223,160)" rx="2" ry="2" /> +<text x="686.17" y="399.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="890.5" y="485" width="1.4" height="15.0" fill="rgb(0,230,174)" rx="2" ry="2" /> +<text x="893.51" y="495.5" ></text> +</g> +<g > +<title>do_softirq (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="549" width="5.4" height="15.0" fill="rgb(0,229,167)" rx="2" ry="2" /> +<text x="1383.58" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1365.8" y="725" width="1.3" height="15.0" fill="rgb(0,228,136)" rx="2" ry="2" /> +<text x="1368.77" y="735.5" ></text> +</g> +<g > +<title>git_config_add_backend (30,303,030 samples, 0.29%)</title><rect x="730.3" y="677" width="4.0" height="15.0" fill="rgb(0,198,147)" rx="2" ry="2" /> +<text x="733.29" y="687.5" ></text> +</g> +<g > +<title>getdents64 (10,101,010 samples, 0.10%)</title><rect x="498.7" y="693" width="1.4" height="15.0" fill="rgb(0,224,109)" rx="2" ry="2" /> +<text x="501.72" y="703.5" ></text> +</g> +<g > +<title>blk_mq_sched_dispatch_requests (10,101,010 samples, 0.10%)</title><rect x="1084.4" y="341" width="1.3" height="15.0" fill="rgb(0,205,113)" rx="2" ry="2" /> +<text x="1087.38" y="351.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.10%)</title><rect x="640.1" y="581" width="1.3" height="15.0" fill="rgb(0,219,20)" rx="2" ry="2" /> +<text x="643.09" y="591.5" ></text> +</g> +<g > +<title>ip_output (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="533" width="1.4" height="15.0" fill="rgb(0,190,86)" rx="2" ry="2" /> +<text x="1376.84" y="543.5" ></text> +</g> +<g > +<title>git_odb_hash (10,101,010 samples, 0.10%)</title><rect x="525.6" y="709" width="1.4" height="15.0" fill="rgb(0,213,60)" rx="2" ry="2" /> +<text x="528.65" y="719.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.10%)</title><rect x="874.4" y="581" width="1.3" height="15.0" fill="rgb(0,220,152)" rx="2" ry="2" /> +<text x="877.35" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (414,141,410 samples, 4.00%)</title><rect x="941.7" y="709" width="55.2" height="15.0" fill="rgb(0,238,148)" rx="2" ry="2" /> +<text x="944.67" y="719.5" >[libg..</text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="263.1" y="613" width="1.4" height="15.0" fill="rgb(0,223,200)" rx="2" ry="2" /> +<text x="266.11" y="623.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.10%)</title><rect x="660.3" y="533" width="1.3" height="15.0" fill="rgb(0,229,15)" rx="2" ry="2" /> +<text x="663.28" y="543.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.10%)</title><rect x="374.9" y="533" width="1.3" height="15.0" fill="rgb(0,217,112)" rx="2" ry="2" /> +<text x="377.86" y="543.5" ></text> +</g> +<g > +<title>git_reference_normalize_name (10,101,010 samples, 0.10%)</title><rect x="435.4" y="677" width="1.4" height="15.0" fill="rgb(0,210,31)" rx="2" ry="2" /> +<text x="438.44" y="687.5" ></text> +</g> +<g > +<title>___slab_alloc (10,101,010 samples, 0.10%)</title><rect x="202.5" y="469" width="1.4" height="15.0" fill="rgb(0,231,156)" rx="2" ry="2" /> +<text x="205.53" y="479.5" ></text> +</g> +<g > +<title>alloc_pages (10,101,010 samples, 0.10%)</title><rect x="431.4" y="469" width="1.4" height="15.0" fill="rgb(0,235,40)" rx="2" ry="2" /> +<text x="434.40" y="479.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="185.0" y="773" width="1.4" height="15.0" fill="rgb(0,228,103)" rx="2" ry="2" /> +<text x="188.02" y="783.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="405" width="1.4" height="15.0" fill="rgb(0,233,71)" rx="2" ry="2" /> +<text x="1379.54" y="415.5" ></text> +</g> +<g > +<title>[libc.so.6] (9,010,100,920 samples, 87.02%)</title><rect x="189.1" y="933" width="1200.9" height="15.0" fill="rgb(0,237,162)" rx="2" ry="2" /> +<text x="192.06" y="943.5" >[libc.so.6]</text> +</g> +<g > +<title>blk_mq_flush_plug_list (10,101,010 samples, 0.10%)</title><rect x="440.8" y="485" width="1.4" height="15.0" fill="rgb(0,201,37)" rx="2" ry="2" /> +<text x="443.83" y="495.5" ></text> +</g> +<g > +<title>security_file_open (10,101,010 samples, 0.10%)</title><rect x="1241.9" y="485" width="1.3" height="15.0" fill="rgb(0,213,40)" rx="2" ry="2" /> +<text x="1244.90" y="495.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (10,101,010 samples, 0.10%)</title><rect x="1330.8" y="181" width="1.3" height="15.0" fill="rgb(0,225,83)" rx="2" ry="2" /> +<text x="1333.76" y="191.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="788.2" y="581" width="1.3" height="15.0" fill="rgb(0,205,64)" rx="2" ry="2" /> +<text x="791.19" y="591.5" ></text> +</g> +<g > +<title>do_poll.constprop.0 (80,808,080 samples, 0.78%)</title><rect x="43.7" y="773" width="10.7" height="15.0" fill="rgb(0,205,208)" rx="2" ry="2" /> +<text x="46.66" y="783.5" ></text> +</g> +<g > +<title>tasklet_action (10,101,010 samples, 0.10%)</title><rect x="1215.0" y="421" width="1.3" height="15.0" fill="rgb(0,201,129)" rx="2" ry="2" /> +<text x="1217.98" y="431.5" ></text> +</g> +<g > +<title>__virt_addr_valid (10,101,010 samples, 0.10%)</title><rect x="366.8" y="549" width="1.3" height="15.0" fill="rgb(0,214,50)" rx="2" ry="2" /> +<text x="369.78" y="559.5" ></text> +</g> +<g > +<title>git_config_add_backend (70,707,070 samples, 0.68%)</title><rect x="741.1" y="645" width="9.4" height="15.0" fill="rgb(0,222,50)" rx="2" ry="2" /> +<text x="744.06" y="655.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="642.8" y="629" width="2.7" height="15.0" fill="rgb(0,237,121)" rx="2" ry="2" /> +<text x="645.78" y="639.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (20,202,020 samples, 0.20%)</title><rect x="1081.7" y="453" width="2.7" height="15.0" fill="rgb(0,201,60)" rx="2" ry="2" /> +<text x="1084.69" y="463.5" ></text> +</g> +<g > +<title>filemap_flush (50,505,050 samples, 0.49%)</title><rect x="1124.8" y="533" width="6.7" height="15.0" fill="rgb(0,234,31)" rx="2" ry="2" /> +<text x="1127.77" y="543.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="792.2" y="533" width="1.4" height="15.0" fill="rgb(0,195,122)" rx="2" ry="2" /> +<text x="795.22" y="543.5" ></text> +</g> +<g > +<title>iput (50,505,050 samples, 0.49%)</title><rect x="1116.7" y="533" width="6.7" height="15.0" fill="rgb(0,191,57)" rx="2" ry="2" /> +<text x="1119.69" y="543.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="571.4" y="485" width="1.4" height="15.0" fill="rgb(0,222,189)" rx="2" ry="2" /> +<text x="574.42" y="495.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="921.5" y="661" width="1.3" height="15.0" fill="rgb(0,195,194)" rx="2" ry="2" /> +<text x="924.47" y="671.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (20,202,020 samples, 0.20%)</title><rect x="843.4" y="453" width="2.7" height="15.0" fill="rgb(0,232,165)" rx="2" ry="2" /> +<text x="846.39" y="463.5" ></text> +</g> +<g > +<title>__page_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="687.2" y="437" width="1.4" height="15.0" fill="rgb(0,199,131)" rx="2" ry="2" /> +<text x="690.21" y="447.5" ></text> +</g> +<g > +<title>tcp_data_queue (20,202,020 samples, 0.20%)</title><rect x="69.2" y="133" width="2.7" height="15.0" fill="rgb(0,233,192)" rx="2" ry="2" /> +<text x="72.24" y="143.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="715.5" y="581" width="1.3" height="15.0" fill="rgb(0,222,117)" rx="2" ry="2" /> +<text x="718.48" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="982.1" y="645" width="1.3" height="15.0" fill="rgb(0,237,4)" rx="2" ry="2" /> +<text x="985.06" y="655.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="327.7" y="629" width="1.4" height="15.0" fill="rgb(0,190,92)" rx="2" ry="2" /> +<text x="330.74" y="639.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="901.3" y="565" width="1.3" height="15.0" fill="rgb(0,220,137)" rx="2" ry="2" /> +<text x="904.28" y="575.5" ></text> +</g> +<g > +<title>git_config_get_string (10,101,010 samples, 0.10%)</title><rect x="777.4" y="677" width="1.4" height="15.0" fill="rgb(0,232,55)" rx="2" ry="2" /> +<text x="780.41" y="687.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (20,202,020 samples, 0.20%)</title><rect x="621.2" y="581" width="2.7" height="15.0" fill="rgb(0,192,156)" rx="2" ry="2" /> +<text x="624.24" y="591.5" ></text> +</g> +<g > +<title>ip_rcv (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="357" width="2.7" height="15.0" fill="rgb(0,213,136)" rx="2" ry="2" /> +<text x="1380.88" y="367.5" ></text> +</g> +<g > +<title>ip_finish_output2 (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="453" width="1.4" height="15.0" fill="rgb(0,202,38)" rx="2" ry="2" /> +<text x="1379.54" y="463.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="889.2" y="581" width="1.3" height="15.0" fill="rgb(0,227,148)" rx="2" ry="2" /> +<text x="892.16" y="591.5" ></text> +</g> +<g > +<title>git_buf_set (10,101,010 samples, 0.10%)</title><rect x="738.4" y="645" width="1.3" height="15.0" fill="rgb(0,194,181)" rx="2" ry="2" /> +<text x="741.37" y="655.5" ></text> +</g> +<g > +<title>ext4_io_submit (10,101,010 samples, 0.10%)</title><rect x="817.8" y="485" width="1.4" height="15.0" fill="rgb(0,234,131)" rx="2" ry="2" /> +<text x="820.80" y="495.5" ></text> +</g> +<g > +<title>__x64_sys_clone3 (90,909,090 samples, 0.88%)</title><rect x="31.5" y="917" width="12.2" height="15.0" fill="rgb(0,237,85)" rx="2" ry="2" /> +<text x="34.54" y="927.5" ></text> +</g> +<g > +<title>readdir64 (40,404,040 samples, 0.39%)</title><rect x="222.7" y="661" width="5.4" height="15.0" fill="rgb(0,235,62)" rx="2" ry="2" /> +<text x="225.72" y="671.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (10,101,010 samples, 0.10%)</title><rect x="27.5" y="789" width="1.3" height="15.0" fill="rgb(0,233,202)" rx="2" ry="2" /> +<text x="30.50" y="799.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="461.0" y="565" width="1.4" height="15.0" fill="rgb(0,194,38)" rx="2" ry="2" /> +<text x="464.02" y="575.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="209.3" y="245" width="1.3" height="15.0" fill="rgb(0,197,21)" rx="2" ry="2" /> +<text x="212.26" y="255.5" ></text> +</g> +<g > +<title>mkdir (20,202,020 samples, 0.20%)</title><rect x="1034.6" y="725" width="2.7" height="15.0" fill="rgb(0,210,115)" rx="2" ry="2" /> +<text x="1037.57" y="735.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="567.4" y="645" width="1.3" height="15.0" fill="rgb(0,238,60)" rx="2" ry="2" /> +<text x="570.39" y="655.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.10%)</title><rect x="885.1" y="565" width="1.4" height="15.0" fill="rgb(0,239,57)" rx="2" ry="2" /> +<text x="888.12" y="575.5" ></text> +</g> +<g > +<title>_IO_default_xsputn (10,101,010 samples, 0.10%)</title><rect x="1251.3" y="725" width="1.4" height="15.0" fill="rgb(0,203,3)" rx="2" ry="2" /> +<text x="1254.33" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="1000.9" y="725" width="8.1" height="15.0" fill="rgb(0,191,12)" rx="2" ry="2" /> +<text x="1003.91" y="735.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="570.1" y="453" width="1.3" height="15.0" fill="rgb(0,214,180)" rx="2" ry="2" /> +<text x="573.08" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="882.4" y="629" width="1.4" height="15.0" fill="rgb(0,222,38)" rx="2" ry="2" /> +<text x="885.43" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="681.8" y="597" width="2.7" height="15.0" fill="rgb(0,224,207)" rx="2" ry="2" /> +<text x="684.82" y="607.5" ></text> +</g> +<g > +<title>ip_queue_xmit (10,101,010 samples, 0.10%)</title><rect x="1330.8" y="165" width="1.3" height="15.0" fill="rgb(0,202,80)" rx="2" ry="2" /> +<text x="1333.76" y="175.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (161,616,160 samples, 1.56%)</title><rect x="422.0" y="757" width="21.5" height="15.0" fill="rgb(0,215,110)" rx="2" ry="2" /> +<text x="424.98" y="767.5" >[..</text> +</g> +<g > +<title>git_reference_symbolic_create (232,323,230 samples, 2.24%)</title><rect x="753.2" y="741" width="30.9" height="15.0" fill="rgb(0,234,184)" rx="2" ry="2" /> +<text x="756.18" y="751.5" >gi..</text> +</g> +<g > +<title>schedule (60,606,060 samples, 0.59%)</title><rect x="46.4" y="725" width="8.0" height="15.0" fill="rgb(0,230,207)" rx="2" ry="2" /> +<text x="49.35" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="850.1" y="597" width="2.7" height="15.0" fill="rgb(0,229,49)" rx="2" ry="2" /> +<text x="853.12" y="607.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="757.2" y="469" width="1.4" height="15.0" fill="rgb(0,208,167)" rx="2" ry="2" /> +<text x="760.22" y="479.5" ></text> +</g> +<g > +<title>ip_finish_output (40,404,040 samples, 0.39%)</title><rect x="15.4" y="549" width="5.4" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="18.39" y="559.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="629" width="2.7" height="15.0" fill="rgb(0,229,209)" rx="2" ry="2" /> +<text x="1380.88" y="639.5" ></text> +</g> +<g > +<title>exit_to_user_mode_prepare (20,202,020 samples, 0.20%)</title><rect x="638.7" y="613" width="2.7" height="15.0" fill="rgb(0,224,3)" rx="2" ry="2" /> +<text x="641.74" y="623.5" ></text> +</g> +<g > +<title>tcp_child_process (10,101,010 samples, 0.10%)</title><rect x="1338.8" y="277" width="1.4" height="15.0" fill="rgb(0,224,70)" rx="2" ry="2" /> +<text x="1341.84" y="287.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="1303.8" y="805" width="1.4" height="15.0" fill="rgb(0,230,156)" rx="2" ry="2" /> +<text x="1306.83" y="815.5" ></text> +</g> +<g > +<title>__open64 (10,101,010 samples, 0.10%)</title><rect x="743.8" y="565" width="1.3" height="15.0" fill="rgb(0,234,135)" rx="2" ry="2" /> +<text x="746.76" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1205.6" y="757" width="1.3" height="15.0" fill="rgb(0,228,144)" rx="2" ry="2" /> +<text x="1208.55" y="767.5" ></text> +</g> +<g > +<title>apparmor_file_free_security (10,101,010 samples, 0.10%)</title><rect x="543.2" y="549" width="1.3" height="15.0" fill="rgb(0,225,138)" rx="2" ry="2" /> +<text x="546.15" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="427.4" y="629" width="1.3" height="15.0" fill="rgb(0,200,144)" rx="2" ry="2" /> +<text x="430.37" y="639.5" ></text> +</g> +<g > +<title>tcp_close (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="645" width="1.4" height="15.0" fill="rgb(0,216,148)" rx="2" ry="2" /> +<text x="1379.54" y="655.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.20%)</title><rect x="532.4" y="565" width="2.7" height="15.0" fill="rgb(0,214,75)" rx="2" ry="2" /> +<text x="535.38" y="575.5" ></text> +</g> +<g > +<title>rename (101,010,100 samples, 0.98%)</title><rect x="836.7" y="693" width="13.4" height="15.0" fill="rgb(0,234,21)" rx="2" ry="2" /> +<text x="839.65" y="703.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.10%)</title><rect x="710.1" y="549" width="1.3" height="15.0" fill="rgb(0,219,20)" rx="2" ry="2" /> +<text x="713.10" y="559.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.10%)</title><rect x="373.5" y="549" width="1.4" height="15.0" fill="rgb(0,207,167)" rx="2" ry="2" /> +<text x="376.51" y="559.5" ></text> +</g> +<g > +<title>ip_protocol_deliver_rcu (10,101,010 samples, 0.10%)</title><rect x="1338.8" y="309" width="1.4" height="15.0" fill="rgb(0,223,208)" rx="2" ry="2" /> +<text x="1341.84" y="319.5" ></text> +</g> +<g > +<title>link (30,303,030 samples, 0.29%)</title><rect x="1111.3" y="677" width="4.0" height="15.0" fill="rgb(0,230,153)" rx="2" ry="2" /> +<text x="1114.31" y="687.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="754.5" y="581" width="1.4" height="15.0" fill="rgb(0,233,19)" rx="2" ry="2" /> +<text x="757.53" y="591.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="1252.7" y="757" width="4.0" height="15.0" fill="rgb(0,217,189)" rx="2" ry="2" /> +<text x="1255.67" y="767.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.10%)</title><rect x="784.1" y="629" width="1.4" height="15.0" fill="rgb(0,216,121)" rx="2" ry="2" /> +<text x="787.15" y="639.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="209.3" y="325" width="1.3" height="15.0" fill="rgb(0,234,53)" rx="2" ry="2" /> +<text x="212.26" y="335.5" ></text> +</g> +<g > +<title>unlink_cb (111,111,110 samples, 1.07%)</title><rect x="369.5" y="741" width="14.8" height="15.0" fill="rgb(0,213,139)" rx="2" ry="2" /> +<text x="372.47" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.59%)</title><rect x="1093.8" y="629" width="8.1" height="15.0" fill="rgb(0,212,112)" rx="2" ry="2" /> +<text x="1096.80" y="639.5" ></text> +</g> +<g > +<title>ext4_da_map_blocks.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="685.9" y="437" width="1.3" height="15.0" fill="rgb(0,207,26)" rx="2" ry="2" /> +<text x="688.86" y="447.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="1110.0" y="581" width="1.3" height="15.0" fill="rgb(0,230,123)" rx="2" ry="2" /> +<text x="1112.96" y="591.5" ></text> +</g> +<g > +<title>mb_mark_used (10,101,010 samples, 0.10%)</title><rect x="583.5" y="405" width="1.4" height="15.0" fill="rgb(0,208,16)" rx="2" ry="2" /> +<text x="586.54" y="415.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="1021.1" y="677" width="1.3" height="15.0" fill="rgb(0,211,84)" rx="2" ry="2" /> +<text x="1024.10" y="687.5" ></text> +</g> +<g > +<title>__legitimize_mnt (10,101,010 samples, 0.10%)</title><rect x="850.1" y="453" width="1.4" height="15.0" fill="rgb(0,206,79)" rx="2" ry="2" /> +<text x="853.12" y="463.5" ></text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="1190.7" y="565" width="1.4" height="15.0" fill="rgb(0,223,48)" rx="2" ry="2" /> +<text x="1193.74" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="852.8" y="741" width="1.4" height="15.0" fill="rgb(0,193,149)" rx="2" ry="2" /> +<text x="855.81" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.10%)</title><rect x="807.0" y="613" width="1.4" height="15.0" fill="rgb(0,230,12)" rx="2" ry="2" /> +<text x="810.03" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_readlink (10,101,010 samples, 0.10%)</title><rect x="483.9" y="613" width="1.4" height="15.0" fill="rgb(0,235,117)" rx="2" ry="2" /> +<text x="486.91" y="623.5" ></text> +</g> +<g > +<title>read_hv_clock_tsc (10,101,010 samples, 0.10%)</title><rect x="816.5" y="245" width="1.3" height="15.0" fill="rgb(0,191,156)" rx="2" ry="2" /> +<text x="819.46" y="255.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="998.2" y="645" width="1.4" height="15.0" fill="rgb(0,213,173)" rx="2" ry="2" /> +<text x="1001.21" y="655.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.10%)</title><rect x="207.9" y="533" width="1.4" height="15.0" fill="rgb(0,203,42)" rx="2" ry="2" /> +<text x="210.91" y="543.5" ></text> +</g> +<g > +<title>ext4_find_entry (10,101,010 samples, 0.10%)</title><rect x="385.6" y="597" width="1.4" height="15.0" fill="rgb(0,230,102)" rx="2" ry="2" /> +<text x="388.63" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="536.4" y="773" width="4.1" height="15.0" fill="rgb(0,193,56)" rx="2" ry="2" /> +<text x="539.42" y="783.5" ></text> +</g> +<g > +<title>task_work_add (10,101,010 samples, 0.10%)</title><rect x="537.8" y="629" width="1.3" height="15.0" fill="rgb(0,212,180)" rx="2" ry="2" /> +<text x="540.77" y="639.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="986.1" y="565" width="2.7" height="15.0" fill="rgb(0,218,94)" rx="2" ry="2" /> +<text x="989.10" y="575.5" ></text> +</g> +<g > +<title>fsnotify_perm.part.0 (10,101,010 samples, 0.10%)</title><rect x="699.3" y="485" width="1.4" height="15.0" fill="rgb(0,234,3)" rx="2" ry="2" /> +<text x="702.33" y="495.5" ></text> +</g> +<g > +<title>do_syscall_64 (60,606,060 samples, 0.59%)</title><rect x="1093.8" y="613" width="8.1" height="15.0" fill="rgb(0,237,197)" rx="2" ry="2" /> +<text x="1096.80" y="623.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="1080.3" y="453" width="1.4" height="15.0" fill="rgb(0,191,175)" rx="2" ry="2" /> +<text x="1083.34" y="463.5" ></text> +</g> +<g > +<title>ext4_create (171,717,170 samples, 1.66%)</title><rect x="146.0" y="773" width="22.9" height="15.0" fill="rgb(0,215,179)" rx="2" ry="2" /> +<text x="148.98" y="783.5" >e..</text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="280.6" y="517" width="1.4" height="15.0" fill="rgb(0,219,126)" rx="2" ry="2" /> +<text x="283.61" y="527.5" ></text> +</g> +<g > +<title>ext4_buffered_write_iter (30,303,030 samples, 0.29%)</title><rect x="685.9" y="517" width="4.0" height="15.0" fill="rgb(0,200,153)" rx="2" ry="2" /> +<text x="688.86" y="527.5" ></text> +</g> +<g > +<title>__sock_release (80,808,080 samples, 0.78%)</title><rect x="62.5" y="629" width="10.8" height="15.0" fill="rgb(0,209,34)" rx="2" ry="2" /> +<text x="65.51" y="639.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1243.2" y="613" width="1.4" height="15.0" fill="rgb(0,227,0)" rx="2" ry="2" /> +<text x="1246.25" y="623.5" ></text> +</g> +<g > +<title>str2hashbuf_signed (10,101,010 samples, 0.10%)</title><rect x="498.7" y="533" width="1.4" height="15.0" fill="rgb(0,230,29)" rx="2" ry="2" /> +<text x="501.72" y="543.5" ></text> +</g> +<g > +<title>process_backlog (50,505,050 samples, 0.49%)</title><rect x="65.2" y="293" width="6.7" height="15.0" fill="rgb(0,223,157)" rx="2" ry="2" /> +<text x="68.20" y="303.5" ></text> +</g> +<g > +<title>net_rx_action (50,505,050 samples, 0.49%)</title><rect x="65.2" y="325" width="6.7" height="15.0" fill="rgb(0,221,113)" rx="2" ry="2" /> +<text x="68.20" y="335.5" ></text> +</g> +<g > +<title>__dentry_kill (30,303,030 samples, 0.29%)</title><rect x="1080.3" y="549" width="4.1" height="15.0" fill="rgb(0,238,191)" rx="2" ry="2" /> +<text x="1083.34" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="698.0" y="581" width="2.7" height="15.0" fill="rgb(0,221,123)" rx="2" ry="2" /> +<text x="700.98" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="715.5" y="597" width="2.7" height="15.0" fill="rgb(0,217,38)" rx="2" ry="2" /> +<text x="718.48" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1194.8" y="629" width="1.3" height="15.0" fill="rgb(0,205,175)" rx="2" ry="2" /> +<text x="1197.78" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="780.1" y="549" width="1.4" height="15.0" fill="rgb(0,223,154)" rx="2" ry="2" /> +<text x="783.11" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="972.6" y="629" width="4.1" height="15.0" fill="rgb(0,199,31)" rx="2" ry="2" /> +<text x="975.63" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (70,707,070 samples, 0.68%)</title><rect x="423.3" y="709" width="9.5" height="15.0" fill="rgb(0,192,19)" rx="2" ry="2" /> +<text x="426.33" y="719.5" ></text> +</g> +<g > +<title>remove (181,818,180 samples, 1.76%)</title><rect x="339.9" y="709" width="24.2" height="15.0" fill="rgb(0,196,192)" rx="2" ry="2" /> +<text x="342.85" y="719.5" >r..</text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="885.1" y="725" width="1.4" height="15.0" fill="rgb(0,191,193)" rx="2" ry="2" /> +<text x="888.12" y="735.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="391.0" y="725" width="1.4" height="15.0" fill="rgb(0,224,194)" rx="2" ry="2" /> +<text x="394.01" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="210.6" y="613" width="1.4" height="15.0" fill="rgb(0,233,133)" rx="2" ry="2" /> +<text x="213.60" y="623.5" ></text> +</g> +<g > +<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="1167.9" y="469" width="1.3" height="15.0" fill="rgb(0,193,118)" rx="2" ry="2" /> +<text x="1170.85" y="479.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="1044.0" y="613" width="1.3" height="15.0" fill="rgb(0,203,127)" rx="2" ry="2" /> +<text x="1046.99" y="623.5" ></text> +</g> +<g > +<title>chmod (20,202,020 samples, 0.20%)</title><rect x="1006.3" y="709" width="2.7" height="15.0" fill="rgb(0,221,158)" rx="2" ry="2" /> +<text x="1009.29" y="719.5" ></text> +</g> +<g > +<title>__open64_nocancel (20,202,020 samples, 0.20%)</title><rect x="609.1" y="693" width="2.7" height="15.0" fill="rgb(0,218,132)" rx="2" ry="2" /> +<text x="612.12" y="703.5" ></text> +</g> +<g > +<title>ext4_evict_inode (30,303,030 samples, 0.29%)</title><rect x="436.8" y="549" width="4.0" height="15.0" fill="rgb(0,192,142)" rx="2" ry="2" /> +<text x="439.79" y="559.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.10%)</title><rect x="516.2" y="549" width="1.4" height="15.0" fill="rgb(0,198,121)" rx="2" ry="2" /> +<text x="519.22" y="559.5" ></text> +</g> +<g > +<title>ksys_read (30,303,030 samples, 0.29%)</title><rect x="1305.2" y="725" width="4.0" height="15.0" fill="rgb(0,209,142)" rx="2" ry="2" /> +<text x="1308.18" y="735.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="724.9" y="533" width="1.4" height="15.0" fill="rgb(0,219,140)" rx="2" ry="2" /> +<text x="727.91" y="543.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="1030.5" y="517" width="1.4" height="15.0" fill="rgb(0,216,122)" rx="2" ry="2" /> +<text x="1033.53" y="527.5" ></text> +</g> +<g > +<title>new_inode_pseudo (10,101,010 samples, 0.10%)</title><rect x="1388.7" y="741" width="1.3" height="15.0" fill="rgb(0,239,60)" rx="2" ry="2" /> +<text x="1391.65" y="751.5" ></text> +</g> +<g > +<title>ext4_link (20,202,020 samples, 0.20%)</title><rect x="601.0" y="597" width="2.7" height="15.0" fill="rgb(0,197,29)" rx="2" ry="2" /> +<text x="604.04" y="607.5" ></text> +</g> +<g > +<title>scsi_dispatch_cmd (10,101,010 samples, 0.10%)</title><rect x="440.8" y="309" width="1.4" height="15.0" fill="rgb(0,217,112)" rx="2" ry="2" /> +<text x="443.83" y="319.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (20,202,020 samples, 0.20%)</title><rect x="672.4" y="501" width="2.7" height="15.0" fill="rgb(0,210,55)" rx="2" ry="2" /> +<text x="675.40" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="723.6" y="629" width="1.3" height="15.0" fill="rgb(0,237,119)" rx="2" ry="2" /> +<text x="726.56" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (60,606,060 samples, 0.59%)</title><rect x="265.8" y="661" width="8.1" height="15.0" fill="rgb(0,216,112)" rx="2" ry="2" /> +<text x="268.80" y="671.5" ></text> +</g> +<g > +<title>__netif_receive_skb (10,101,010 samples, 0.10%)</title><rect x="1334.8" y="341" width="1.3" height="15.0" fill="rgb(0,201,183)" rx="2" ry="2" /> +<text x="1337.80" y="351.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="457.0" y="645" width="1.3" height="15.0" fill="rgb(0,193,193)" rx="2" ry="2" /> +<text x="459.99" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="730.3" y="597" width="1.3" height="15.0" fill="rgb(0,236,59)" rx="2" ry="2" /> +<text x="733.29" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="551.2" y="629" width="1.4" height="15.0" fill="rgb(0,207,206)" rx="2" ry="2" /> +<text x="554.23" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (101,010,100 samples, 0.98%)</title><rect x="863.6" y="645" width="13.4" height="15.0" fill="rgb(0,227,84)" rx="2" ry="2" /> +<text x="866.58" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="527.0" y="741" width="4.0" height="15.0" fill="rgb(0,190,209)" rx="2" ry="2" /> +<text x="530.00" y="751.5" ></text> +</g> +<g > +<title>rmdir (10,101,010 samples, 0.10%)</title><rect x="209.3" y="597" width="1.3" height="15.0" fill="rgb(0,230,167)" rx="2" ry="2" /> +<text x="212.26" y="607.5" ></text> +</g> +<g > +<title>blk_update_request (10,101,010 samples, 0.10%)</title><rect x="213.3" y="325" width="1.3" height="15.0" fill="rgb(0,202,150)" rx="2" ry="2" /> +<text x="216.30" y="335.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="676.4" y="469" width="1.4" height="15.0" fill="rgb(0,220,25)" rx="2" ry="2" /> +<text x="679.44" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (70,707,070 samples, 0.68%)</title><rect x="1010.3" y="693" width="9.5" height="15.0" fill="rgb(0,223,136)" rx="2" ry="2" /> +<text x="1013.33" y="703.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="1135.5" y="613" width="1.4" height="15.0" fill="rgb(0,205,168)" rx="2" ry="2" /> +<text x="1138.54" y="623.5" ></text> +</g> +<g > +<title>find_vma (10,101,010 samples, 0.10%)</title><rect x="415.2" y="741" width="1.4" height="15.0" fill="rgb(0,196,21)" rx="2" ry="2" /> +<text x="418.25" y="751.5" ></text> +</g> +<g > +<title>inode_io_list_del (10,101,010 samples, 0.10%)</title><rect x="811.1" y="517" width="1.3" height="15.0" fill="rgb(0,198,34)" rx="2" ry="2" /> +<text x="814.07" y="527.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.10%)</title><rect x="858.2" y="469" width="1.3" height="15.0" fill="rgb(0,206,177)" rx="2" ry="2" /> +<text x="861.20" y="479.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.10%)</title><rect x="695.3" y="533" width="1.3" height="15.0" fill="rgb(0,191,200)" rx="2" ry="2" /> +<text x="698.29" y="543.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (10,101,010 samples, 0.10%)</title><rect x="302.2" y="469" width="1.3" height="15.0" fill="rgb(0,225,136)" rx="2" ry="2" /> +<text x="305.16" y="479.5" ></text> +</g> +<g > +<title>ext4_fname_setup_filename (10,101,010 samples, 0.10%)</title><rect x="349.3" y="549" width="1.3" height="15.0" fill="rgb(0,195,125)" rx="2" ry="2" /> +<text x="352.28" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (40,404,040 samples, 0.39%)</title><rect x="222.7" y="597" width="5.4" height="15.0" fill="rgb(0,227,152)" rx="2" ry="2" /> +<text x="225.72" y="607.5" ></text> +</g> +<g > +<title>sysvec_hyperv_stimer0 (10,101,010 samples, 0.10%)</title><rect x="595.7" y="661" width="1.3" height="15.0" fill="rgb(0,239,183)" rx="2" ry="2" /> +<text x="598.66" y="671.5" ></text> +</g> +<g > +<title>__poll (40,404,040 samples, 0.39%)</title><rect x="1352.3" y="853" width="5.4" height="15.0" fill="rgb(0,234,50)" rx="2" ry="2" /> +<text x="1355.30" y="863.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="747.8" y="597" width="2.7" height="15.0" fill="rgb(0,238,167)" rx="2" ry="2" /> +<text x="750.80" y="607.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="1132.8" y="613" width="1.4" height="15.0" fill="rgb(0,232,170)" rx="2" ry="2" /> +<text x="1135.85" y="623.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="1212.3" y="581" width="1.3" height="15.0" fill="rgb(0,204,144)" rx="2" ry="2" /> +<text x="1215.28" y="591.5" ></text> +</g> +<g > +<title>[libjson-c.so.5.1.0] (20,202,020 samples, 0.20%)</title><rect x="1324.0" y="773" width="2.7" height="15.0" fill="rgb(0,207,107)" rx="2" ry="2" /> +<text x="1327.03" y="783.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.10%)</title><rect x="908.0" y="597" width="1.4" height="15.0" fill="rgb(0,220,47)" rx="2" ry="2" /> +<text x="911.01" y="607.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="755.9" y="373" width="1.3" height="15.0" fill="rgb(0,236,209)" rx="2" ry="2" /> +<text x="758.87" y="383.5" ></text> +</g> +<g > +<title>ext4_rename (70,707,070 samples, 0.68%)</title><rect x="1123.4" y="565" width="9.4" height="15.0" fill="rgb(0,192,194)" rx="2" ry="2" /> +<text x="1126.42" y="575.5" ></text> +</g> +<g > +<title>unlink_cb (10,101,010 samples, 0.10%)</title><rect x="330.4" y="709" width="1.4" height="15.0" fill="rgb(0,206,37)" rx="2" ry="2" /> +<text x="333.43" y="719.5" ></text> +</g> +<g > +<title>__open64 (30,303,030 samples, 0.29%)</title><rect x="1000.9" y="693" width="4.0" height="15.0" fill="rgb(0,210,92)" rx="2" ry="2" /> +<text x="1003.91" y="703.5" ></text> +</g> +<g > +<title>__napi_poll (20,202,020 samples, 0.20%)</title><rect x="1345.6" y="501" width="2.7" height="15.0" fill="rgb(0,230,109)" rx="2" ry="2" /> +<text x="1348.57" y="511.5" ></text> +</g> +<g > +<title>generic_permission (10,101,010 samples, 0.10%)</title><rect x="524.3" y="533" width="1.3" height="15.0" fill="rgb(0,197,209)" rx="2" ry="2" /> +<text x="527.30" y="543.5" ></text> +</g> +<g > +<title>refill_obj_stock (10,101,010 samples, 0.10%)</title><rect x="65.2" y="53" width="1.3" height="15.0" fill="rgb(0,196,183)" rx="2" ry="2" /> +<text x="68.20" y="63.5" ></text> +</g> +<g > +<title>tcp_v4_destroy_sock (10,101,010 samples, 0.10%)</title><rect x="70.6" y="69" width="1.3" height="15.0" fill="rgb(0,233,65)" rx="2" ry="2" /> +<text x="73.59" y="79.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="373" width="2.7" height="15.0" fill="rgb(0,196,201)" rx="2" ry="2" /> +<text x="1380.88" y="383.5" ></text> +</g> +<g > +<title>opendir (10,101,010 samples, 0.10%)</title><rect x="871.7" y="613" width="1.3" height="15.0" fill="rgb(0,199,117)" rx="2" ry="2" /> +<text x="874.66" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="925.5" y="677" width="1.4" height="15.0" fill="rgb(0,206,31)" rx="2" ry="2" /> +<text x="928.51" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="1190.7" y="645" width="2.7" height="15.0" fill="rgb(0,221,40)" rx="2" ry="2" /> +<text x="1193.74" y="655.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="638.7" y="661" width="2.7" height="15.0" fill="rgb(0,238,121)" rx="2" ry="2" /> +<text x="641.74" y="671.5" ></text> +</g> +<g > +<title>__ext4_get_inode_loc (10,101,010 samples, 0.10%)</title><rect x="405.8" y="597" width="1.4" height="15.0" fill="rgb(0,219,13)" rx="2" ry="2" /> +<text x="408.82" y="607.5" ></text> +</g> +<g > +<title>mpage_prepare_extent_to_map (10,101,010 samples, 0.10%)</title><rect x="846.1" y="485" width="1.3" height="15.0" fill="rgb(0,231,162)" rx="2" ry="2" /> +<text x="849.08" y="495.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (30,303,030 samples, 0.29%)</title><rect x="474.5" y="565" width="4.0" height="15.0" fill="rgb(0,234,109)" rx="2" ry="2" /> +<text x="477.49" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="527.0" y="693" width="4.0" height="15.0" fill="rgb(0,232,63)" rx="2" ry="2" /> +<text x="530.00" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="1208.2" y="661" width="2.7" height="15.0" fill="rgb(0,193,184)" rx="2" ry="2" /> +<text x="1211.24" y="671.5" ></text> +</g> +<g > +<title>git_repository_open_ext (191,919,190 samples, 1.85%)</title><rect x="724.9" y="709" width="25.6" height="15.0" fill="rgb(0,208,43)" rx="2" ry="2" /> +<text x="727.91" y="719.5" >g..</text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="918.8" y="677" width="1.3" height="15.0" fill="rgb(0,239,60)" rx="2" ry="2" /> +<text x="921.78" y="687.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (10,101,010 samples, 0.10%)</title><rect x="1376.5" y="277" width="1.4" height="15.0" fill="rgb(0,237,35)" rx="2" ry="2" /> +<text x="1379.54" y="287.5" ></text> +</g> +<g > +<title>file_modified (10,101,010 samples, 0.10%)</title><rect x="1093.8" y="501" width="1.4" height="15.0" fill="rgb(0,212,67)" rx="2" ry="2" /> +<text x="1096.80" y="511.5" ></text> +</g> +<g > +<title>__pte_alloc (10,101,010 samples, 0.10%)</title><rect x="1287.7" y="597" width="1.3" height="15.0" fill="rgb(0,222,111)" rx="2" ry="2" /> +<text x="1290.68" y="607.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="1064.2" y="693" width="1.3" height="15.0" fill="rgb(0,195,55)" rx="2" ry="2" /> +<text x="1067.19" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (1,414,141,400 samples, 13.66%)</title><rect x="201.2" y="773" width="188.5" height="15.0" fill="rgb(0,236,186)" rx="2" ry="2" /> +<text x="204.18" y="783.5" >[libc.so.6]</text> +</g> +<g > +<title>open_last_lookups (212,121,210 samples, 2.05%)</title><rect x="140.6" y="805" width="28.3" height="15.0" fill="rgb(0,236,111)" rx="2" ry="2" /> +<text x="143.60" y="815.5" >o..</text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="1245.9" y="581" width="1.4" height="15.0" fill="rgb(0,217,182)" rx="2" ry="2" /> +<text x="1248.94" y="591.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="988.8" y="613" width="1.3" height="15.0" fill="rgb(0,213,164)" rx="2" ry="2" /> +<text x="991.79" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="913.4" y="661" width="1.3" height="15.0" fill="rgb(0,207,3)" rx="2" ry="2" /> +<text x="916.40" y="671.5" ></text> +</g> +<g > +<title>_raw_spin_unlock_irqrestore (10,101,010 samples, 0.10%)</title><rect x="338.5" y="517" width="1.4" height="15.0" fill="rgb(0,194,30)" rx="2" ry="2" /> +<text x="341.51" y="527.5" ></text> +</g> +<g > +<title>nf_conntrack_tcp_packet (10,101,010 samples, 0.10%)</title><rect x="1341.5" y="549" width="1.4" height="15.0" fill="rgb(0,211,157)" rx="2" ry="2" /> +<text x="1344.53" y="559.5" ></text> +</g> +<g > +<title>blk_mq_rq_ctx_init (10,101,010 samples, 0.10%)</title><rect x="817.8" y="389" width="1.4" height="15.0" fill="rgb(0,191,114)" rx="2" ry="2" /> +<text x="820.80" y="399.5" ></text> +</g> +<g > +<title>xas_start (10,101,010 samples, 0.10%)</title><rect x="1083.0" y="325" width="1.4" height="15.0" fill="rgb(0,231,116)" rx="2" ry="2" /> +<text x="1086.03" y="335.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (20,202,020 samples, 0.20%)</title><rect x="286.0" y="517" width="2.7" height="15.0" fill="rgb(0,208,138)" rx="2" ry="2" /> +<text x="289.00" y="527.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="403.1" y="629" width="1.4" height="15.0" fill="rgb(0,195,205)" rx="2" ry="2" /> +<text x="406.13" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="890.5" y="597" width="1.4" height="15.0" fill="rgb(0,222,189)" rx="2" ry="2" /> +<text x="893.51" y="607.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="469" width="1.4" height="15.0" fill="rgb(0,236,185)" rx="2" ry="2" /> +<text x="1376.84" y="479.5" ></text> +</g> +<g > +<title>close (80,808,080 samples, 0.78%)</title><rect x="62.5" y="789" width="10.8" height="15.0" fill="rgb(0,195,119)" rx="2" ry="2" /> +<text x="65.51" y="799.5" ></text> +</g> +<g > +<title>write (90,909,090 samples, 0.88%)</title><rect x="1044.0" y="725" width="12.1" height="15.0" fill="rgb(0,211,187)" rx="2" ry="2" /> +<text x="1046.99" y="735.5" ></text> +</g> +<g > +<title>remove (10,101,010 samples, 0.10%)</title><rect x="330.4" y="693" width="1.4" height="15.0" fill="rgb(0,238,173)" rx="2" ry="2" /> +<text x="333.43" y="703.5" ></text> +</g> +<g > +<title>evict (30,303,030 samples, 0.29%)</title><rect x="1080.3" y="501" width="4.1" height="15.0" fill="rgb(0,209,21)" rx="2" ry="2" /> +<text x="1083.34" y="511.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="1209.6" y="629" width="1.3" height="15.0" fill="rgb(0,226,105)" rx="2" ry="2" /> +<text x="1212.59" y="639.5" ></text> +</g> +<g > +<title>prepare_creds (20,202,020 samples, 0.20%)</title><rect x="1190.7" y="581" width="2.7" height="15.0" fill="rgb(0,238,91)" rx="2" ry="2" /> +<text x="1193.74" y="591.5" ></text> +</g> +<g > +<title>____fput (20,202,020 samples, 0.20%)</title><rect x="543.2" y="581" width="2.6" height="15.0" fill="rgb(0,213,77)" rx="2" ry="2" /> +<text x="546.15" y="591.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.10%)</title><rect x="922.8" y="597" width="1.4" height="15.0" fill="rgb(0,193,25)" rx="2" ry="2" /> +<text x="925.82" y="607.5" ></text> +</g> +<g > +<title>pgd_alloc (10,101,010 samples, 0.10%)</title><rect x="1299.8" y="645" width="1.3" height="15.0" fill="rgb(0,196,7)" rx="2" ry="2" /> +<text x="1302.80" y="655.5" ></text> +</g> +<g > +<title>unlink_cb (30,303,030 samples, 0.29%)</title><rect x="385.6" y="757" width="4.1" height="15.0" fill="rgb(0,213,159)" rx="2" ry="2" /> +<text x="388.63" y="767.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.10%)</title><rect x="578.2" y="533" width="1.3" height="15.0" fill="rgb(0,219,86)" rx="2" ry="2" /> +<text x="581.16" y="543.5" ></text> +</g> +<g > +<title>alloc_empty_file (10,101,010 samples, 0.10%)</title><rect x="518.9" y="533" width="1.4" height="15.0" fill="rgb(0,204,56)" rx="2" ry="2" /> +<text x="521.92" y="543.5" ></text> +</g> +<g > +<title>ip_local_out (50,505,050 samples, 0.49%)</title><rect x="14.0" y="581" width="6.8" height="15.0" fill="rgb(0,208,2)" rx="2" ry="2" /> +<text x="17.04" y="591.5" ></text> +</g> +<g > +<title>lookup_open.isra.0 (20,202,020 samples, 0.20%)</title><rect x="504.1" y="613" width="2.7" height="15.0" fill="rgb(0,202,163)" rx="2" ry="2" /> +<text x="507.11" y="623.5" ></text> +</g> +<g > +<title>mpage_map_and_submit_extent (30,303,030 samples, 0.29%)</title><rect x="929.6" y="501" width="4.0" height="15.0" fill="rgb(0,232,172)" rx="2" ry="2" /> +<text x="932.55" y="511.5" ></text> +</g> +<g > +<title>__ip_local_out (10,101,010 samples, 0.10%)</title><rect x="1333.5" y="501" width="1.3" height="15.0" fill="rgb(0,236,38)" rx="2" ry="2" /> +<text x="1336.45" y="511.5" ></text> +</g> +<g > +<title>git_odb_read_header (40,404,040 samples, 0.39%)</title><rect x="443.5" y="757" width="5.4" height="15.0" fill="rgb(0,209,84)" rx="2" ry="2" /> +<text x="446.52" y="767.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="1166.5" y="725" width="1.4" height="15.0" fill="rgb(0,231,46)" rx="2" ry="2" /> +<text x="1169.51" y="735.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="1068.2" y="613" width="1.4" height="15.0" fill="rgb(0,209,158)" rx="2" ry="2" /> +<text x="1071.22" y="623.5" ></text> +</g> +<g > +<title>sock_sendmsg (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="709" width="2.7" height="15.0" fill="rgb(0,194,142)" rx="2" ry="2" /> +<text x="1375.50" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="423.3" y="661" width="1.4" height="15.0" fill="rgb(0,220,97)" rx="2" ry="2" /> +<text x="426.33" y="671.5" ></text> +</g> +<g > +<title>__pud_alloc (10,101,010 samples, 0.10%)</title><rect x="1282.3" y="613" width="1.3" height="15.0" fill="rgb(0,229,107)" rx="2" ry="2" /> +<text x="1285.29" y="623.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="232.1" y="389" width="1.4" height="15.0" fill="rgb(0,230,26)" rx="2" ry="2" /> +<text x="235.15" y="399.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="780.1" y="565" width="1.4" height="15.0" fill="rgb(0,226,140)" rx="2" ry="2" /> +<text x="783.11" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1167.9" y="597" width="1.3" height="15.0" fill="rgb(0,195,76)" rx="2" ry="2" /> +<text x="1170.85" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="902.6" y="581" width="1.4" height="15.0" fill="rgb(0,211,70)" rx="2" ry="2" /> +<text x="905.62" y="591.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="1205.6" y="725" width="1.3" height="15.0" fill="rgb(0,235,178)" rx="2" ry="2" /> +<text x="1208.55" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="1006.3" y="677" width="2.7" height="15.0" fill="rgb(0,195,136)" rx="2" ry="2" /> +<text x="1009.29" y="687.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="725" width="1.3" height="15.0" fill="rgb(0,227,131)" rx="2" ry="2" /> +<text x="1182.97" y="735.5" ></text> +</g> +<g > +<title>tsk_fork_get_node (10,101,010 samples, 0.10%)</title><rect x="42.3" y="853" width="1.4" height="15.0" fill="rgb(0,206,38)" rx="2" ry="2" /> +<text x="45.31" y="863.5" ></text> +</g> +<g > +<title>free_pgtables (10,101,010 samples, 0.10%)</title><rect x="54.4" y="661" width="1.4" height="15.0" fill="rgb(0,216,196)" rx="2" ry="2" /> +<text x="57.43" y="671.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="1030.5" y="501" width="1.4" height="15.0" fill="rgb(0,217,114)" rx="2" ry="2" /> +<text x="1033.53" y="511.5" ></text> +</g> +<g > +<title>__irq_exit_rcu (10,101,010 samples, 0.10%)</title><rect x="127.1" y="853" width="1.4" height="15.0" fill="rgb(0,212,141)" rx="2" ry="2" /> +<text x="130.13" y="863.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="482.6" y="613" width="1.3" height="15.0" fill="rgb(0,206,203)" rx="2" ry="2" /> +<text x="485.57" y="623.5" ></text> +</g> +<g > +<title>__strdup (10,101,010 samples, 0.10%)</title><rect x="1233.8" y="661" width="1.4" height="15.0" fill="rgb(0,199,122)" rx="2" ry="2" /> +<text x="1236.82" y="671.5" ></text> +</g> +<g > +<title>__mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="917.4" y="565" width="1.4" height="15.0" fill="rgb(0,238,112)" rx="2" ry="2" /> +<text x="920.43" y="575.5" ></text> +</g> +<g > +<title>ext4_mb_load_buddy_gfp (10,101,010 samples, 0.10%)</title><rect x="234.8" y="389" width="1.4" height="15.0" fill="rgb(0,193,59)" rx="2" ry="2" /> +<text x="237.84" y="399.5" ></text> +</g> +<g > +<title>blk_mq_sched_insert_requests (10,101,010 samples, 0.10%)</title><rect x="440.8" y="469" width="1.4" height="15.0" fill="rgb(0,216,13)" rx="2" ry="2" /> +<text x="443.83" y="479.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1212.3" y="629" width="1.3" height="15.0" fill="rgb(0,235,63)" rx="2" ry="2" /> +<text x="1215.28" y="639.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1311.9" y="773" width="1.4" height="15.0" fill="rgb(0,202,19)" rx="2" ry="2" /> +<text x="1314.91" y="783.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (20,202,020 samples, 0.20%)</title><rect x="148.7" y="677" width="2.7" height="15.0" fill="rgb(0,207,156)" rx="2" ry="2" /> +<text x="151.67" y="687.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.10%)</title><rect x="799.0" y="789" width="1.3" height="15.0" fill="rgb(0,205,177)" rx="2" ry="2" /> +<text x="801.96" y="799.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="1161.1" y="645" width="1.4" height="15.0" fill="rgb(0,197,11)" rx="2" ry="2" /> +<text x="1164.12" y="655.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.10%)</title><rect x="286.0" y="469" width="1.3" height="15.0" fill="rgb(0,214,87)" rx="2" ry="2" /> +<text x="289.00" y="479.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="564.7" y="549" width="1.3" height="15.0" fill="rgb(0,226,61)" rx="2" ry="2" /> +<text x="567.69" y="559.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="741" width="1.4" height="15.0" fill="rgb(0,237,80)" rx="2" ry="2" /> +<text x="1312.22" y="751.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.10%)</title><rect x="234.8" y="437" width="1.4" height="15.0" fill="rgb(0,229,58)" rx="2" ry="2" /> +<text x="237.84" y="447.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="533" width="1.4" height="15.0" fill="rgb(0,195,142)" rx="2" ry="2" /> +<text x="1207.20" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="1231.1" y="725" width="6.8" height="15.0" fill="rgb(0,197,139)" rx="2" ry="2" /> +<text x="1234.13" y="735.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="529.7" y="597" width="1.3" height="15.0" fill="rgb(0,233,135)" rx="2" ry="2" /> +<text x="532.69" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (292,929,290 samples, 2.83%)</title><rect x="623.9" y="693" width="39.1" height="15.0" fill="rgb(0,230,125)" rx="2" ry="2" /> +<text x="626.93" y="703.5" >[li..</text> +</g> +<g > +<title>ext4_clear_inode (10,101,010 samples, 0.10%)</title><rect x="393.7" y="597" width="1.4" height="15.0" fill="rgb(0,204,51)" rx="2" ry="2" /> +<text x="396.71" y="607.5" ></text> +</g> +<g > +<title>atime_needs_update (10,101,010 samples, 0.10%)</title><rect x="271.2" y="581" width="1.3" height="15.0" fill="rgb(0,217,200)" rx="2" ry="2" /> +<text x="274.19" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="1175.9" y="661" width="2.7" height="15.0" fill="rgb(0,236,183)" rx="2" ry="2" /> +<text x="1178.93" y="671.5" ></text> +</g> +<g > +<title>ext4_mb_regular_allocator (10,101,010 samples, 0.10%)</title><rect x="959.2" y="389" width="1.3" height="15.0" fill="rgb(0,232,137)" rx="2" ry="2" /> +<text x="962.17" y="399.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="1138.2" y="597" width="2.7" height="15.0" fill="rgb(0,233,183)" rx="2" ry="2" /> +<text x="1141.23" y="607.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="365.4" y="661" width="2.7" height="15.0" fill="rgb(0,233,208)" rx="2" ry="2" /> +<text x="368.43" y="671.5" ></text> +</g> +<g > +<title>ksys_read (20,202,020 samples, 0.20%)</title><rect x="698.0" y="549" width="2.7" height="15.0" fill="rgb(0,212,167)" rx="2" ry="2" /> +<text x="700.98" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.10%)</title><rect x="1171.9" y="613" width="1.3" height="15.0" fill="rgb(0,210,191)" rx="2" ry="2" /> +<text x="1174.89" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="401.8" y="709" width="2.7" height="15.0" fill="rgb(0,202,48)" rx="2" ry="2" /> +<text x="404.79" y="719.5" ></text> +</g> +<g > +<title>iput (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="517" width="1.4" height="15.0" fill="rgb(0,211,12)" rx="2" ry="2" /> +<text x="1030.83" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (50,505,050 samples, 0.49%)</title><rect x="613.2" y="677" width="6.7" height="15.0" fill="rgb(0,215,77)" rx="2" ry="2" /> +<text x="616.16" y="687.5" ></text> +</g> +<g > +<title>ip_local_deliver_finish (20,202,020 samples, 0.20%)</title><rect x="1329.4" y="309" width="2.7" height="15.0" fill="rgb(0,236,157)" rx="2" ry="2" /> +<text x="1332.41" y="319.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="1245.9" y="549" width="1.4" height="15.0" fill="rgb(0,239,71)" rx="2" ry="2" /> +<text x="1248.94" y="559.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.10%)</title><rect x="820.5" y="453" width="1.3" height="15.0" fill="rgb(0,217,71)" rx="2" ry="2" /> +<text x="823.50" y="463.5" ></text> +</g> +<g > +<title>log_prefix_thread_id (10,101,010 samples, 0.10%)</title><rect x="93.5" y="853" width="1.3" height="15.0" fill="rgb(0,198,19)" rx="2" ry="2" /> +<text x="96.47" y="863.5" ></text> +</g> +<g > +<title>__x64_sys_read (20,202,020 samples, 0.20%)</title><rect x="698.0" y="565" width="2.7" height="15.0" fill="rgb(0,194,6)" rx="2" ry="2" /> +<text x="700.98" y="575.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="401.8" y="773" width="2.7" height="15.0" fill="rgb(0,213,176)" rx="2" ry="2" /> +<text x="404.79" y="783.5" ></text> +</g> +<g > +<title>git_config_free (20,202,020 samples, 0.20%)</title><rect x="193.1" y="773" width="2.7" height="15.0" fill="rgb(0,197,138)" rx="2" ry="2" /> +<text x="196.10" y="783.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="528.3" y="613" width="1.4" height="15.0" fill="rgb(0,215,191)" rx="2" ry="2" /> +<text x="531.34" y="623.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1110.0" y="613" width="1.3" height="15.0" fill="rgb(0,212,14)" rx="2" ry="2" /> +<text x="1112.96" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="778.8" y="565" width="1.3" height="15.0" fill="rgb(0,202,163)" rx="2" ry="2" /> +<text x="781.76" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="330.4" y="661" width="1.4" height="15.0" fill="rgb(0,190,58)" rx="2" ry="2" /> +<text x="333.43" y="671.5" ></text> +</g> +<g > +<title>__put_cred (10,101,010 samples, 0.10%)</title><rect x="1188.0" y="597" width="1.4" height="15.0" fill="rgb(0,226,31)" rx="2" ry="2" /> +<text x="1191.05" y="607.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.20%)</title><rect x="1163.8" y="725" width="2.7" height="15.0" fill="rgb(0,209,94)" rx="2" ry="2" /> +<text x="1166.81" y="735.5" ></text> +</g> +<g > +<title>git_config_set_string (161,616,160 samples, 1.56%)</title><rect x="828.6" y="757" width="21.5" height="15.0" fill="rgb(0,213,190)" rx="2" ry="2" /> +<text x="831.58" y="767.5" >g..</text> +</g> +<g > +<title>apparmor_file_alloc_security (10,101,010 samples, 0.10%)</title><rect x="518.9" y="485" width="1.4" height="15.0" fill="rgb(0,227,111)" rx="2" ry="2" /> +<text x="521.92" y="495.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="479.9" y="597" width="1.3" height="15.0" fill="rgb(0,234,179)" rx="2" ry="2" /> +<text x="482.87" y="607.5" ></text> +</g> +<g > +<title>user_path_at_empty (40,404,040 samples, 0.39%)</title><rect x="1313.3" y="773" width="5.3" height="15.0" fill="rgb(0,235,42)" rx="2" ry="2" /> +<text x="1316.26" y="783.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="1231.1" y="741" width="6.8" height="15.0" fill="rgb(0,213,139)" rx="2" ry="2" /> +<text x="1234.13" y="751.5" ></text> +</g> +<g > +<title>path_parentat (10,101,010 samples, 0.10%)</title><rect x="693.9" y="581" width="1.4" height="15.0" fill="rgb(0,203,201)" rx="2" ry="2" /> +<text x="696.94" y="591.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="613" width="2.7" height="15.0" fill="rgb(0,200,65)" rx="2" ry="2" /> +<text x="1380.88" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.10%)</title><rect x="1161.1" y="709" width="1.4" height="15.0" fill="rgb(0,205,106)" rx="2" ry="2" /> +<text x="1164.12" y="719.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="967.2" y="565" width="1.4" height="15.0" fill="rgb(0,233,113)" rx="2" ry="2" /> +<text x="970.25" y="575.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.10%)</title><rect x="330.4" y="677" width="1.4" height="15.0" fill="rgb(0,239,202)" rx="2" ry="2" /> +<text x="333.43" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="718.2" y="597" width="2.7" height="15.0" fill="rgb(0,205,207)" rx="2" ry="2" /> +<text x="721.18" y="607.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="1162.5" y="709" width="1.3" height="15.0" fill="rgb(0,206,156)" rx="2" ry="2" /> +<text x="1165.47" y="719.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.10%)</title><rect x="921.5" y="533" width="1.3" height="15.0" fill="rgb(0,226,127)" rx="2" ry="2" /> +<text x="924.47" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="778.8" y="597" width="4.0" height="15.0" fill="rgb(0,225,116)" rx="2" ry="2" /> +<text x="781.76" y="607.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (10,101,010 samples, 0.10%)</title><rect x="685.9" y="421" width="1.3" height="15.0" fill="rgb(0,198,75)" rx="2" ry="2" /> +<text x="688.86" y="431.5" ></text> +</g> +<g > +<title>dev_queue_xmit (10,101,010 samples, 0.10%)</title><rect x="71.9" y="357" width="1.4" height="15.0" fill="rgb(0,190,116)" rx="2" ry="2" /> +<text x="74.93" y="367.5" ></text> +</g> +<g > +<title>__legitimize_mnt (10,101,010 samples, 0.10%)</title><rect x="327.7" y="517" width="1.4" height="15.0" fill="rgb(0,222,177)" rx="2" ry="2" /> +<text x="330.74" y="527.5" ></text> +</g> +<g > +<title>[libz.so.1.2.11] (10,101,010 samples, 0.10%)</title><rect x="668.4" y="629" width="1.3" height="15.0" fill="rgb(0,222,180)" rx="2" ry="2" /> +<text x="671.36" y="639.5" ></text> +</g> +<g > +<title>__nf_ct_try_assign_helper (10,101,010 samples, 0.10%)</title><rect x="1344.2" y="533" width="1.4" height="15.0" fill="rgb(0,217,161)" rx="2" ry="2" /> +<text x="1347.22" y="543.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="858.2" y="565" width="1.3" height="15.0" fill="rgb(0,212,93)" rx="2" ry="2" /> +<text x="861.20" y="575.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="261" width="1.4" height="15.0" fill="rgb(0,208,60)" rx="2" ry="2" /> +<text x="1376.84" y="271.5" ></text> +</g> +<g > +<title>ext4_append (80,808,080 samples, 0.78%)</title><rect x="1142.3" y="613" width="10.7" height="15.0" fill="rgb(0,210,117)" rx="2" ry="2" /> +<text x="1145.27" y="623.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.10%)</title><rect x="1076.3" y="469" width="1.3" height="15.0" fill="rgb(0,194,192)" rx="2" ry="2" /> +<text x="1079.30" y="479.5" ></text> +</g> +<g > +<title>exc_page_fault (10,101,010 samples, 0.10%)</title><rect x="415.2" y="773" width="1.4" height="15.0" fill="rgb(0,209,181)" rx="2" ry="2" /> +<text x="418.25" y="783.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="509.5" y="661" width="4.0" height="15.0" fill="rgb(0,230,63)" rx="2" ry="2" /> +<text x="512.49" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="796.3" y="661" width="2.7" height="15.0" fill="rgb(0,225,161)" rx="2" ry="2" /> +<text x="799.26" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="910.7" y="693" width="1.3" height="15.0" fill="rgb(0,223,35)" rx="2" ry="2" /> +<text x="913.70" y="703.5" ></text> +</g> +<g > +<title>tcp_v6_conn_request (20,202,020 samples, 0.20%)</title><rect x="1381.9" y="325" width="2.7" height="15.0" fill="rgb(0,207,160)" rx="2" ry="2" /> +<text x="1384.92" y="335.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="677" width="1.4" height="15.0" fill="rgb(0,212,58)" rx="2" ry="2" /> +<text x="1007.95" y="687.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="886.5" y="693" width="1.3" height="15.0" fill="rgb(0,205,14)" rx="2" ry="2" /> +<text x="889.47" y="703.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="725" width="1.4" height="15.0" fill="rgb(0,207,1)" rx="2" ry="2" /> +<text x="1312.22" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="899.9" y="549" width="1.4" height="15.0" fill="rgb(0,203,60)" rx="2" ry="2" /> +<text x="902.93" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="28.8" y="869" width="2.7" height="15.0" fill="rgb(0,199,67)" rx="2" ry="2" /> +<text x="31.85" y="879.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.10%)</title><rect x="206.6" y="437" width="1.3" height="15.0" fill="rgb(0,198,27)" rx="2" ry="2" /> +<text x="209.57" y="447.5" ></text> +</g> +<g > +<title>__check_object_size.part.0 (10,101,010 samples, 0.10%)</title><rect x="12.7" y="645" width="1.3" height="15.0" fill="rgb(0,206,127)" rx="2" ry="2" /> +<text x="15.69" y="655.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="541.8" y="421" width="1.4" height="15.0" fill="rgb(0,214,28)" rx="2" ry="2" /> +<text x="544.80" y="431.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="922.8" y="661" width="1.4" height="15.0" fill="rgb(0,233,146)" rx="2" ry="2" /> +<text x="925.82" y="671.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (90,909,090 samples, 0.88%)</title><rect x="1193.4" y="773" width="12.2" height="15.0" fill="rgb(0,194,32)" rx="2" ry="2" /> +<text x="1196.43" y="783.5" ></text> +</g> +<g > +<title>__blk_mq_do_dispatch_sched (10,101,010 samples, 0.10%)</title><rect x="440.8" y="357" width="1.4" height="15.0" fill="rgb(0,220,203)" rx="2" ry="2" /> +<text x="443.83" y="367.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="689.9" y="597" width="2.7" height="15.0" fill="rgb(0,201,184)" rx="2" ry="2" /> +<text x="692.90" y="607.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1349.6" y="821" width="1.4" height="15.0" fill="rgb(0,226,136)" rx="2" ry="2" /> +<text x="1352.61" y="831.5" ></text> +</g> +<g > +<title>unlink (60,606,060 samples, 0.59%)</title><rect x="212.0" y="613" width="8.0" height="15.0" fill="rgb(0,221,180)" rx="2" ry="2" /> +<text x="214.95" y="623.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="479.9" y="661" width="1.3" height="15.0" fill="rgb(0,233,193)" rx="2" ry="2" /> +<text x="482.87" y="671.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (20,202,020 samples, 0.20%)</title><rect x="268.5" y="549" width="2.7" height="15.0" fill="rgb(0,196,10)" rx="2" ry="2" /> +<text x="271.50" y="559.5" ></text> +</g> +<g > +<title>inet_release (80,808,080 samples, 0.78%)</title><rect x="62.5" y="597" width="10.8" height="15.0" fill="rgb(0,229,88)" rx="2" ry="2" /> +<text x="65.51" y="607.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="905.3" y="485" width="1.4" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="908.32" y="495.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.29%)</title><rect x="1174.6" y="709" width="4.0" height="15.0" fill="rgb(0,195,38)" rx="2" ry="2" /> +<text x="1177.59" y="719.5" ></text> +</g> +<g > +<title>ext4_file_open (10,101,010 samples, 0.10%)</title><rect x="945.7" y="469" width="1.4" height="15.0" fill="rgb(0,228,82)" rx="2" ry="2" /> +<text x="948.71" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1021.1" y="709" width="1.3" height="15.0" fill="rgb(0,217,144)" rx="2" ry="2" /> +<text x="1024.10" y="719.5" ></text> +</g> +<g > +<title>vfs_getattr_nosec (10,101,010 samples, 0.10%)</title><rect x="247.0" y="581" width="1.3" height="15.0" fill="rgb(0,192,20)" rx="2" ry="2" /> +<text x="249.96" y="591.5" ></text> +</g> +<g > +<title>d_lru_add (10,101,010 samples, 0.10%)</title><rect x="597.0" y="597" width="1.4" height="15.0" fill="rgb(0,218,19)" rx="2" ry="2" /> +<text x="600.00" y="607.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="718.2" y="581" width="2.7" height="15.0" fill="rgb(0,198,131)" rx="2" ry="2" /> +<text x="721.18" y="591.5" ></text> +</g> +<g > +<title>errseq_sample (10,101,010 samples, 0.10%)</title><rect x="610.5" y="549" width="1.3" height="15.0" fill="rgb(0,211,133)" rx="2" ry="2" /> +<text x="613.47" y="559.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="778.8" y="533" width="1.3" height="15.0" fill="rgb(0,226,128)" rx="2" ry="2" /> +<text x="781.76" y="543.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="306.2" y="469" width="1.3" height="15.0" fill="rgb(0,212,170)" rx="2" ry="2" /> +<text x="309.20" y="479.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="669.7" y="613" width="1.4" height="15.0" fill="rgb(0,199,103)" rx="2" ry="2" /> +<text x="672.71" y="623.5" ></text> +</g> +<g > +<title>schedule_hrtimeout_range_clock (60,606,060 samples, 0.59%)</title><rect x="46.4" y="741" width="8.0" height="15.0" fill="rgb(0,191,38)" rx="2" ry="2" /> +<text x="49.35" y="751.5" ></text> +</g> +<g > +<title>path_openat (10,101,010 samples, 0.10%)</title><rect x="202.5" y="533" width="1.4" height="15.0" fill="rgb(0,198,36)" rx="2" ry="2" /> +<text x="205.53" y="543.5" ></text> +</g> +<g > +<title>kernel_fpu_begin_mask (10,101,010 samples, 0.10%)</title><rect x="216.0" y="421" width="1.3" height="15.0" fill="rgb(0,209,201)" rx="2" ry="2" /> +<text x="218.99" y="431.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="551.2" y="645" width="1.4" height="15.0" fill="rgb(0,192,0)" rx="2" ry="2" /> +<text x="554.23" y="655.5" ></text> +</g> +<g > +<title>__open64 (20,202,020 samples, 0.20%)</title><rect x="532.4" y="629" width="2.7" height="15.0" fill="rgb(0,206,167)" rx="2" ry="2" /> +<text x="535.38" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="724.9" y="693" width="4.0" height="15.0" fill="rgb(0,212,130)" rx="2" ry="2" /> +<text x="727.91" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1068.2" y="629" width="1.4" height="15.0" fill="rgb(0,222,12)" rx="2" ry="2" /> +<text x="1071.22" y="639.5" ></text> +</g> +<g > +<title>handle_pte_fault (10,101,010 samples, 0.10%)</title><rect x="189.1" y="677" width="1.3" height="15.0" fill="rgb(0,237,167)" rx="2" ry="2" /> +<text x="192.06" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1196.1" y="613" width="1.4" height="15.0" fill="rgb(0,211,105)" rx="2" ry="2" /> +<text x="1199.13" y="623.5" ></text> +</g> +<g > +<title>ext4_bio_write_page (10,101,010 samples, 0.10%)</title><rect x="1085.7" y="405" width="1.4" height="15.0" fill="rgb(0,209,120)" rx="2" ry="2" /> +<text x="1088.73" y="415.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="1162.5" y="725" width="1.3" height="15.0" fill="rgb(0,223,171)" rx="2" ry="2" /> +<text x="1165.47" y="735.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="1158.4" y="629" width="1.4" height="15.0" fill="rgb(0,191,41)" rx="2" ry="2" /> +<text x="1161.43" y="639.5" ></text> +</g> +<g > +<title>json_object_put (20,202,020 samples, 0.20%)</title><rect x="1359.0" y="773" width="2.7" height="15.0" fill="rgb(0,193,96)" rx="2" ry="2" /> +<text x="1362.03" y="783.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="115.0" y="757" width="1.4" height="15.0" fill="rgb(0,205,122)" rx="2" ry="2" /> +<text x="118.01" y="767.5" ></text> +</g> +<g > +<title>submit_bio_noacct (30,303,030 samples, 0.29%)</title><rect x="656.2" y="437" width="4.1" height="15.0" fill="rgb(0,231,205)" rx="2" ry="2" /> +<text x="659.24" y="447.5" ></text> +</g> +<g > +<title>__napi_poll (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="421" width="2.7" height="15.0" fill="rgb(0,217,129)" rx="2" ry="2" /> +<text x="1341.84" y="431.5" ></text> +</g> +<g > +<title>mark_page_accessed (10,101,010 samples, 0.10%)</title><rect x="571.4" y="437" width="1.4" height="15.0" fill="rgb(0,197,160)" rx="2" ry="2" /> +<text x="574.42" y="447.5" ></text> +</g> +<g > +<title>path_openat (30,303,030 samples, 0.29%)</title><rect x="1000.9" y="597" width="4.0" height="15.0" fill="rgb(0,227,31)" rx="2" ry="2" /> +<text x="1003.91" y="607.5" ></text> +</g> +<g > +<title>do_renameat2 (70,707,070 samples, 0.68%)</title><rect x="926.9" y="645" width="9.4" height="15.0" fill="rgb(0,223,43)" rx="2" ry="2" /> +<text x="929.86" y="655.5" ></text> +</g> +<g > +<title>ip_finish_output2 (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="485" width="1.4" height="15.0" fill="rgb(0,211,44)" rx="2" ry="2" /> +<text x="1376.84" y="495.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="539.1" y="693" width="1.4" height="15.0" fill="rgb(0,196,43)" rx="2" ry="2" /> +<text x="542.11" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (343,434,340 samples, 3.32%)</title><rect x="1258.1" y="773" width="45.7" height="15.0" fill="rgb(0,232,195)" rx="2" ry="2" /> +<text x="1261.06" y="783.5" >entr..</text> +</g> +<g > +<title>tcp_v4_do_rcv (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="693" width="2.7" height="15.0" fill="rgb(0,234,46)" rx="2" ry="2" /> +<text x="1380.88" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="54.4" y="789" width="1.4" height="15.0" fill="rgb(0,237,40)" rx="2" ry="2" /> +<text x="57.43" y="799.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (252,525,250 samples, 2.44%)</title><rect x="467.8" y="741" width="33.6" height="15.0" fill="rgb(0,197,34)" rx="2" ry="2" /> +<text x="470.76" y="751.5" >[l..</text> +</g> +<g > +<title>do_unlinkat (10,101,010 samples, 0.10%)</title><rect x="325.0" y="597" width="1.4" height="15.0" fill="rgb(0,202,179)" rx="2" ry="2" /> +<text x="328.04" y="607.5" ></text> +</g> +<g > +<title>hook_cred_prepare (10,101,010 samples, 0.10%)</title><rect x="174.3" y="837" width="1.3" height="15.0" fill="rgb(0,239,191)" rx="2" ry="2" /> +<text x="177.25" y="847.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="909.4" y="661" width="1.3" height="15.0" fill="rgb(0,199,65)" rx="2" ry="2" /> +<text x="912.36" y="671.5" ></text> +</g> +<g > +<title>__ext4_journal_start_sb (10,101,010 samples, 0.10%)</title><rect x="982.1" y="533" width="1.3" height="15.0" fill="rgb(0,239,167)" rx="2" ry="2" /> +<text x="985.06" y="543.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (60,606,060 samples, 0.59%)</title><rect x="1341.5" y="661" width="8.1" height="15.0" fill="rgb(0,231,205)" rx="2" ry="2" /> +<text x="1344.53" y="671.5" ></text> +</g> +<g > +<title>ext4_rename2 (50,505,050 samples, 0.49%)</title><rect x="929.6" y="613" width="6.7" height="15.0" fill="rgb(0,237,100)" rx="2" ry="2" /> +<text x="932.55" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (1,787,878,770 samples, 17.27%)</title><rect x="560.7" y="789" width="238.3" height="15.0" fill="rgb(0,201,120)" rx="2" ry="2" /> +<text x="563.65" y="799.5" >[libgit2.so.1.1.0]</text> +</g> +<g > +<title>__ip_finish_output (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="501" width="5.4" height="15.0" fill="rgb(0,229,55)" rx="2" ry="2" /> +<text x="1331.07" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="435.4" y="645" width="1.4" height="15.0" fill="rgb(0,234,146)" rx="2" ry="2" /> +<text x="438.44" y="655.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="797.6" y="597" width="1.4" height="15.0" fill="rgb(0,232,92)" rx="2" ry="2" /> +<text x="800.61" y="607.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.10%)</title><rect x="237.5" y="581" width="1.4" height="15.0" fill="rgb(0,195,43)" rx="2" ry="2" /> +<text x="240.53" y="591.5" ></text> +</g> +<g > +<title>validate_xmit_skb (10,101,010 samples, 0.10%)</title><rect x="1332.1" y="421" width="1.4" height="15.0" fill="rgb(0,209,156)" rx="2" ry="2" /> +<text x="1335.11" y="431.5" ></text> +</g> +<g > +<title>anon_vma_fork (111,111,110 samples, 1.07%)</title><rect x="1263.4" y="645" width="14.9" height="15.0" fill="rgb(0,229,36)" rx="2" ry="2" /> +<text x="1266.44" y="655.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="972.6" y="469" width="1.4" height="15.0" fill="rgb(0,217,161)" rx="2" ry="2" /> +<text x="975.63" y="479.5" ></text> +</g> +<g > +<title>vmacache_find (10,101,010 samples, 0.10%)</title><rect x="415.2" y="725" width="1.4" height="15.0" fill="rgb(0,216,2)" rx="2" ry="2" /> +<text x="418.25" y="735.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="357.4" y="469" width="1.3" height="15.0" fill="rgb(0,220,140)" rx="2" ry="2" /> +<text x="360.36" y="479.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="688.6" y="389" width="1.3" height="15.0" fill="rgb(0,198,3)" rx="2" ry="2" /> +<text x="691.56" y="399.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="1181.3" y="741" width="1.4" height="15.0" fill="rgb(0,231,187)" rx="2" ry="2" /> +<text x="1184.32" y="751.5" ></text> +</g> +<g > +<title>__page_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="1053.4" y="517" width="1.4" height="15.0" fill="rgb(0,195,154)" rx="2" ry="2" /> +<text x="1056.41" y="527.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="374.9" y="501" width="1.3" height="15.0" fill="rgb(0,209,197)" rx="2" ry="2" /> +<text x="377.86" y="511.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="715.5" y="517" width="1.3" height="15.0" fill="rgb(0,191,168)" rx="2" ry="2" /> +<text x="718.48" y="527.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="1003.6" y="421" width="1.3" height="15.0" fill="rgb(0,218,201)" rx="2" ry="2" /> +<text x="1006.60" y="431.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="978.0" y="421" width="1.4" height="15.0" fill="rgb(0,191,155)" rx="2" ry="2" /> +<text x="981.02" y="431.5" ></text> +</g> +<g > +<title>do_syscall_64 (373,737,370 samples, 3.61%)</title><rect x="275.2" y="629" width="49.8" height="15.0" fill="rgb(0,204,57)" rx="2" ry="2" /> +<text x="278.23" y="639.5" >do_sy..</text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="461.0" y="549" width="1.4" height="15.0" fill="rgb(0,201,160)" rx="2" ry="2" /> +<text x="464.02" y="559.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="718.2" y="469" width="1.3" height="15.0" fill="rgb(0,239,95)" rx="2" ry="2" /> +<text x="721.18" y="479.5" ></text> +</g> +<g > +<title>ext4_evict_inode (20,202,020 samples, 0.20%)</title><rect x="808.4" y="517" width="2.7" height="15.0" fill="rgb(0,214,5)" rx="2" ry="2" /> +<text x="811.38" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1158.4" y="693" width="1.4" height="15.0" fill="rgb(0,212,105)" rx="2" ry="2" /> +<text x="1161.43" y="703.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="421" width="1.3" height="15.0" fill="rgb(0,198,88)" rx="2" ry="2" /> +<text x="1032.18" y="431.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="975.3" y="597" width="1.4" height="15.0" fill="rgb(0,216,52)" rx="2" ry="2" /> +<text x="978.33" y="607.5" ></text> +</g> +<g > +<title>memset_erms (10,101,010 samples, 0.10%)</title><rect x="908.0" y="517" width="1.4" height="15.0" fill="rgb(0,227,82)" rx="2" ry="2" /> +<text x="911.01" y="527.5" ></text> +</g> +<g > +<title>file_read (30,303,030 samples, 0.29%)</title><rect x="1305.2" y="805" width="4.0" height="15.0" fill="rgb(0,223,84)" rx="2" ry="2" /> +<text x="1308.18" y="815.5" ></text> +</g> +<g > +<title>ext4_add_entry (60,606,060 samples, 0.59%)</title><rect x="160.8" y="741" width="8.1" height="15.0" fill="rgb(0,209,203)" rx="2" ry="2" /> +<text x="163.79" y="751.5" ></text> +</g> +<g > +<title>cgroup_get_e_css (10,101,010 samples, 0.10%)</title><rect x="677.8" y="341" width="1.3" height="15.0" fill="rgb(0,227,31)" rx="2" ry="2" /> +<text x="680.79" y="351.5" ></text> +</g> +<g > +<title>ext4_unlink (50,505,050 samples, 0.49%)</title><rect x="251.0" y="549" width="6.7" height="15.0" fill="rgb(0,218,153)" rx="2" ry="2" /> +<text x="254.00" y="559.5" ></text> +</g> +<g > +<title>ext4_orphan_add (20,202,020 samples, 0.20%)</title><rect x="381.6" y="581" width="2.7" height="15.0" fill="rgb(0,195,150)" rx="2" ry="2" /> +<text x="384.59" y="591.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="111.0" y="789" width="1.3" height="15.0" fill="rgb(0,225,75)" rx="2" ry="2" /> +<text x="113.98" y="799.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="581" width="1.4" height="15.0" fill="rgb(0,226,111)" rx="2" ry="2" /> +<text x="1007.95" y="591.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (20,202,020 samples, 0.20%)</title><rect x="1377.9" y="485" width="2.7" height="15.0" fill="rgb(0,215,9)" rx="2" ry="2" /> +<text x="1380.88" y="495.5" ></text> +</g> +<g > +<title>ext4_inode_attach_jinode (10,101,010 samples, 0.10%)</title><rect x="1010.3" y="549" width="1.4" height="15.0" fill="rgb(0,236,69)" rx="2" ry="2" /> +<text x="1013.33" y="559.5" ></text> +</g> +<g > +<title>__cpuset_node_allowed (10,101,010 samples, 0.10%)</title><rect x="90.8" y="597" width="1.3" height="15.0" fill="rgb(0,239,98)" rx="2" ry="2" /> +<text x="93.78" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (50,505,050 samples, 0.49%)</title><rect x="1057.5" y="693" width="6.7" height="15.0" fill="rgb(0,212,175)" rx="2" ry="2" /> +<text x="1060.45" y="703.5" ></text> +</g> +<g > +<title>getdents64 (10,101,010 samples, 0.10%)</title><rect x="788.2" y="741" width="1.3" height="15.0" fill="rgb(0,223,14)" rx="2" ry="2" /> +<text x="791.19" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="471.8" y="661" width="6.7" height="15.0" fill="rgb(0,227,28)" rx="2" ry="2" /> +<text x="474.80" y="671.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (30,303,030 samples, 0.29%)</title><rect x="1328.1" y="357" width="4.0" height="15.0" fill="rgb(0,203,170)" rx="2" ry="2" /> +<text x="1331.07" y="367.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="127.1" y="837" width="1.4" height="15.0" fill="rgb(0,214,178)" rx="2" ry="2" /> +<text x="130.13" y="847.5" ></text> +</g> +<g > +<title>ext4_remove_blocks (10,101,010 samples, 0.10%)</title><rect x="234.8" y="421" width="1.4" height="15.0" fill="rgb(0,235,195)" rx="2" ry="2" /> +<text x="237.84" y="431.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="885.1" y="693" width="1.4" height="15.0" fill="rgb(0,195,51)" rx="2" ry="2" /> +<text x="888.12" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="326.4" y="709" width="1.3" height="15.0" fill="rgb(0,226,114)" rx="2" ry="2" /> +<text x="329.39" y="719.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="158.1" y="725" width="1.3" height="15.0" fill="rgb(0,216,175)" rx="2" ry="2" /> +<text x="161.10" y="735.5" ></text> +</g> +<g > +<title>access (30,303,030 samples, 0.29%)</title><rect x="1244.6" y="693" width="4.0" height="15.0" fill="rgb(0,208,129)" rx="2" ry="2" /> +<text x="1247.60" y="703.5" ></text> +</g> +<g > +<title>dma_map_sg_attrs (10,101,010 samples, 0.10%)</title><rect x="440.8" y="261" width="1.4" height="15.0" fill="rgb(0,212,182)" rx="2" ry="2" /> +<text x="443.83" y="271.5" ></text> +</g> +<g > +<title>vfs_rmdir (363,636,360 samples, 3.51%)</title><rect x="276.6" y="581" width="48.4" height="15.0" fill="rgb(0,227,38)" rx="2" ry="2" /> +<text x="279.58" y="591.5" >vfs_..</text> +</g> +<g > +<title>write (10,101,010 samples, 0.10%)</title><rect x="790.9" y="661" width="1.3" height="15.0" fill="rgb(0,200,52)" rx="2" ry="2" /> +<text x="793.88" y="671.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="1314.6" y="709" width="1.4" height="15.0" fill="rgb(0,192,52)" rx="2" ry="2" /> +<text x="1317.60" y="719.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="284.7" y="325" width="1.3" height="15.0" fill="rgb(0,201,91)" rx="2" ry="2" /> +<text x="287.65" y="335.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.10%)</title><rect x="1029.2" y="437" width="1.3" height="15.0" fill="rgb(0,195,58)" rx="2" ry="2" /> +<text x="1032.18" y="447.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="493.3" y="517" width="1.4" height="15.0" fill="rgb(0,219,146)" rx="2" ry="2" /> +<text x="496.34" y="527.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="529.7" y="613" width="1.3" height="15.0" fill="rgb(0,215,126)" rx="2" ry="2" /> +<text x="532.69" y="623.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="1140.9" y="517" width="1.4" height="15.0" fill="rgb(0,218,178)" rx="2" ry="2" /> +<text x="1143.93" y="527.5" ></text> +</g> +<g > +<title>ext4_da_get_block_prep (10,101,010 samples, 0.10%)</title><rect x="683.2" y="437" width="1.3" height="15.0" fill="rgb(0,191,160)" rx="2" ry="2" /> +<text x="686.17" y="447.5" ></text> +</g> +<g > +<title>clear_nlink (10,101,010 samples, 0.10%)</title><rect x="282.0" y="533" width="1.3" height="15.0" fill="rgb(0,225,114)" rx="2" ry="2" /> +<text x="284.96" y="543.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="621.2" y="709" width="2.7" height="15.0" fill="rgb(0,202,64)" rx="2" ry="2" /> +<text x="624.24" y="719.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (121,212,120 samples, 1.17%)</title><rect x="646.8" y="661" width="16.2" height="15.0" fill="rgb(0,202,59)" rx="2" ry="2" /> +<text x="649.82" y="671.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="913.4" y="613" width="1.3" height="15.0" fill="rgb(0,231,29)" rx="2" ry="2" /> +<text x="916.40" y="623.5" ></text> +</g> +<g > +<title>terminate_walk (10,101,010 samples, 0.10%)</title><rect x="799.0" y="661" width="1.3" height="15.0" fill="rgb(0,230,22)" rx="2" ry="2" /> +<text x="801.96" y="671.5" ></text> +</g> +<g > +<title>ext4_mb_use_best_found (10,101,010 samples, 0.10%)</title><rect x="120.4" y="645" width="1.3" height="15.0" fill="rgb(0,193,92)" rx="2" ry="2" /> +<text x="123.40" y="655.5" ></text> +</g> +<g > +<title>__check_object_size (10,101,010 samples, 0.10%)</title><rect x="1369.8" y="517" width="1.4" height="15.0" fill="rgb(0,190,35)" rx="2" ry="2" /> +<text x="1372.80" y="527.5" ></text> +</g> +<g > +<title>fsnotify_perm.part.0 (10,101,010 samples, 0.10%)</title><rect x="1241.9" y="469" width="1.3" height="15.0" fill="rgb(0,233,37)" rx="2" ry="2" /> +<text x="1244.90" y="479.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.10%)</title><rect x="308.9" y="469" width="1.3" height="15.0" fill="rgb(0,204,131)" rx="2" ry="2" /> +<text x="311.89" y="479.5" ></text> +</g> +<g > +<title>kmalloc_slab (10,101,010 samples, 0.10%)</title><rect x="1192.1" y="533" width="1.3" height="15.0" fill="rgb(0,219,50)" rx="2" ry="2" /> +<text x="1195.09" y="543.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="700.7" y="501" width="1.3" height="15.0" fill="rgb(0,223,200)" rx="2" ry="2" /> +<text x="703.67" y="511.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.10%)</title><rect x="1058.8" y="597" width="1.3" height="15.0" fill="rgb(0,205,157)" rx="2" ry="2" /> +<text x="1061.80" y="607.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="221.4" y="645" width="1.3" height="15.0" fill="rgb(0,195,197)" rx="2" ry="2" /> +<text x="224.38" y="655.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.10%)</title><rect x="478.5" y="469" width="1.4" height="15.0" fill="rgb(0,214,156)" rx="2" ry="2" /> +<text x="481.53" y="479.5" ></text> +</g> +<g > +<title>filename_parentat (10,101,010 samples, 0.10%)</title><rect x="249.6" y="565" width="1.4" height="15.0" fill="rgb(0,190,163)" rx="2" ry="2" /> +<text x="252.65" y="575.5" ></text> +</g> +<g > +<title>ext4_dx_readdir (10,101,010 samples, 0.10%)</title><rect x="873.0" y="501" width="1.4" height="15.0" fill="rgb(0,202,107)" rx="2" ry="2" /> +<text x="876.00" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="905.3" y="613" width="1.4" height="15.0" fill="rgb(0,215,7)" rx="2" ry="2" /> +<text x="908.32" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="759.9" y="533" width="2.7" height="15.0" fill="rgb(0,212,23)" rx="2" ry="2" /> +<text x="762.91" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="976.7" y="581" width="2.7" height="15.0" fill="rgb(0,223,198)" rx="2" ry="2" /> +<text x="979.67" y="591.5" ></text> +</g> +<g > +<title>fstatat (20,202,020 samples, 0.20%)</title><rect x="850.1" y="645" width="2.7" height="15.0" fill="rgb(0,190,111)" rx="2" ry="2" /> +<text x="853.12" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (434,343,430 samples, 4.20%)</title><rect x="201.2" y="693" width="57.9" height="15.0" fill="rgb(0,218,183)" rx="2" ry="2" /> +<text x="204.18" y="703.5" >[libc...</text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="365.4" y="613" width="1.4" height="15.0" fill="rgb(0,193,118)" rx="2" ry="2" /> +<text x="368.43" y="623.5" ></text> +</g> +<g > +<title>memset (10,101,010 samples, 0.10%)</title><rect x="1293.1" y="629" width="1.3" height="15.0" fill="rgb(0,227,158)" rx="2" ry="2" /> +<text x="1296.06" y="639.5" ></text> +</g> +<g > +<title>fsnotify_destroy_marks (10,101,010 samples, 0.10%)</title><rect x="343.9" y="549" width="1.3" height="15.0" fill="rgb(0,233,165)" rx="2" ry="2" /> +<text x="346.89" y="559.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="1022.4" y="725" width="1.4" height="15.0" fill="rgb(0,195,119)" rx="2" ry="2" /> +<text x="1025.45" y="735.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="976.7" y="597" width="2.7" height="15.0" fill="rgb(0,206,168)" rx="2" ry="2" /> +<text x="979.67" y="607.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (80,808,080 samples, 0.78%)</title><rect x="248.3" y="629" width="10.8" height="15.0" fill="rgb(0,217,41)" rx="2" ry="2" /> +<text x="251.30" y="639.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="781.5" y="437" width="1.3" height="15.0" fill="rgb(0,239,148)" rx="2" ry="2" /> +<text x="784.45" y="447.5" ></text> +</g> +<g > +<title>ext4_delete_entry (10,101,010 samples, 0.10%)</title><rect x="206.6" y="453" width="1.3" height="15.0" fill="rgb(0,210,192)" rx="2" ry="2" /> +<text x="209.57" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.78%)</title><rect x="1023.8" y="677" width="10.8" height="15.0" fill="rgb(0,232,203)" rx="2" ry="2" /> +<text x="1026.80" y="687.5" ></text> +</g> +<g > +<title>put_crypt_info (10,101,010 samples, 0.10%)</title><rect x="436.8" y="501" width="1.3" height="15.0" fill="rgb(0,196,151)" rx="2" ry="2" /> +<text x="439.79" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="801.6" y="693" width="6.8" height="15.0" fill="rgb(0,225,190)" rx="2" ry="2" /> +<text x="804.65" y="703.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="228.1" y="405" width="1.4" height="15.0" fill="rgb(0,239,144)" rx="2" ry="2" /> +<text x="231.11" y="415.5" ></text> +</g> +<g > +<title>jsonrpc_notification_create (10,101,010 samples, 0.10%)</title><rect x="26.2" y="885" width="1.3" height="15.0" fill="rgb(0,223,95)" rx="2" ry="2" /> +<text x="29.16" y="895.5" ></text> +</g> +<g > +<title>ext4_readdir (10,101,010 samples, 0.10%)</title><rect x="498.7" y="613" width="1.4" height="15.0" fill="rgb(0,192,89)" rx="2" ry="2" /> +<text x="501.72" y="623.5" ></text> +</g> +<g > +<title>from_kgid_munged (10,101,010 samples, 0.10%)</title><rect x="401.8" y="677" width="1.3" height="15.0" fill="rgb(0,231,200)" rx="2" ry="2" /> +<text x="404.79" y="687.5" ></text> +</g> +<g > +<title>__get_unused_fd_flags (10,101,010 samples, 0.10%)</title><rect x="86.7" y="709" width="1.4" height="15.0" fill="rgb(0,225,131)" rx="2" ry="2" /> +<text x="89.74" y="719.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="972.6" y="565" width="2.7" height="15.0" fill="rgb(0,217,64)" rx="2" ry="2" /> +<text x="975.63" y="575.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.10%)</title><rect x="945.7" y="485" width="1.4" height="15.0" fill="rgb(0,210,98)" rx="2" ry="2" /> +<text x="948.71" y="495.5" ></text> +</g> +<g > +<title>__sk_destruct (10,101,010 samples, 0.10%)</title><rect x="65.2" y="117" width="1.3" height="15.0" fill="rgb(0,210,48)" rx="2" ry="2" /> +<text x="68.20" y="127.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.39%)</title><rect x="334.5" y="693" width="5.4" height="15.0" fill="rgb(0,210,129)" rx="2" ry="2" /> +<text x="337.47" y="703.5" ></text> +</g> +<g > +<title>clear_page_erms (10,101,010 samples, 0.10%)</title><rect x="431.4" y="421" width="1.4" height="15.0" fill="rgb(0,205,102)" rx="2" ry="2" /> +<text x="434.40" y="431.5" ></text> +</g> +<g > +<title>__x64_sys_access (20,202,020 samples, 0.20%)</title><rect x="1245.9" y="645" width="2.7" height="15.0" fill="rgb(0,228,42)" rx="2" ry="2" /> +<text x="1248.94" y="655.5" ></text> +</g> +<g > +<title>syscall_enter_from_user_mode (10,101,010 samples, 0.10%)</title><rect x="675.1" y="581" width="1.3" height="15.0" fill="rgb(0,194,2)" rx="2" ry="2" /> +<text x="678.09" y="591.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="284.7" y="517" width="1.3" height="15.0" fill="rgb(0,235,117)" rx="2" ry="2" /> +<text x="287.65" y="527.5" ></text> +</g> +<g > +<title>ext4_getattr (10,101,010 samples, 0.10%)</title><rect x="247.0" y="565" width="1.3" height="15.0" fill="rgb(0,206,59)" rx="2" ry="2" /> +<text x="249.96" y="575.5" ></text> +</g> +<g > +<title>access (20,202,020 samples, 0.20%)</title><rect x="750.5" y="693" width="2.7" height="15.0" fill="rgb(0,239,165)" rx="2" ry="2" /> +<text x="753.49" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="492.0" y="597" width="1.3" height="15.0" fill="rgb(0,221,137)" rx="2" ry="2" /> +<text x="494.99" y="607.5" ></text> +</g> +<g > +<title>git_odb_read (40,404,040 samples, 0.39%)</title><rect x="667.0" y="741" width="5.4" height="15.0" fill="rgb(0,232,169)" rx="2" ry="2" /> +<text x="670.01" y="751.5" ></text> +</g> +<g > +<title>__blk_mq_run_hw_queue (10,101,010 samples, 0.10%)</title><rect x="766.6" y="357" width="1.4" height="15.0" fill="rgb(0,234,31)" rx="2" ry="2" /> +<text x="769.64" y="367.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.29%)</title><rect x="452.9" y="629" width="4.1" height="15.0" fill="rgb(0,239,121)" rx="2" ry="2" /> +<text x="455.95" y="639.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="205.2" y="373" width="1.4" height="15.0" fill="rgb(0,213,131)" rx="2" ry="2" /> +<text x="208.22" y="383.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="427.4" y="533" width="1.3" height="15.0" fill="rgb(0,234,201)" rx="2" ry="2" /> +<text x="430.37" y="543.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="269.8" y="517" width="1.4" height="15.0" fill="rgb(0,231,27)" rx="2" ry="2" /> +<text x="272.84" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="401.8" y="757" width="2.7" height="15.0" fill="rgb(0,196,30)" rx="2" ry="2" /> +<text x="404.79" y="767.5" ></text> +</g> +<g > +<title>realpath (20,202,020 samples, 0.20%)</title><rect x="1157.1" y="741" width="2.7" height="15.0" fill="rgb(0,201,20)" rx="2" ry="2" /> +<text x="1160.08" y="751.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="1145.0" y="485" width="1.3" height="15.0" fill="rgb(0,220,104)" rx="2" ry="2" /> +<text x="1147.97" y="495.5" ></text> +</g> +<g > +<title>__raw_callee_save___pv_queued_spin_unlock (10,101,010 samples, 0.10%)</title><rect x="85.4" y="645" width="1.3" height="15.0" fill="rgb(0,219,139)" rx="2" ry="2" /> +<text x="88.40" y="655.5" ></text> +</g> +<g > +<title>walk_component (30,303,030 samples, 0.29%)</title><rect x="1060.1" y="597" width="4.1" height="15.0" fill="rgb(0,225,129)" rx="2" ry="2" /> +<text x="1063.15" y="607.5" ></text> +</g> +<g > +<title>rcu_core_si (10,101,010 samples, 0.10%)</title><rect x="788.2" y="549" width="1.3" height="15.0" fill="rgb(0,229,47)" rx="2" ry="2" /> +<text x="791.19" y="559.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (20,202,020 samples, 0.20%)</title><rect x="1345.6" y="533" width="2.7" height="15.0" fill="rgb(0,210,64)" rx="2" ry="2" /> +<text x="1348.57" y="543.5" ></text> +</g> +<g > +<title>futex_wait_queue_me (10,101,010 samples, 0.10%)</title><rect x="55.8" y="709" width="1.3" height="15.0" fill="rgb(0,211,147)" rx="2" ry="2" /> +<text x="58.78" y="719.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="374.9" y="485" width="1.3" height="15.0" fill="rgb(0,227,94)" rx="2" ry="2" /> +<text x="377.86" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="860.9" y="693" width="2.7" height="15.0" fill="rgb(0,229,88)" rx="2" ry="2" /> +<text x="863.89" y="703.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.10%)</title><rect x="1056.1" y="613" width="1.4" height="15.0" fill="rgb(0,203,2)" rx="2" ry="2" /> +<text x="1059.11" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="829.9" y="677" width="2.7" height="15.0" fill="rgb(0,223,123)" rx="2" ry="2" /> +<text x="832.92" y="687.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (50,505,050 samples, 0.49%)</title><rect x="1049.4" y="565" width="6.7" height="15.0" fill="rgb(0,194,152)" rx="2" ry="2" /> +<text x="1052.38" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="195.8" y="773" width="5.4" height="15.0" fill="rgb(0,202,44)" rx="2" ry="2" /> +<text x="198.80" y="783.5" ></text> +</g> +<g > +<title>ext4_lookup.part.0 (20,202,020 samples, 0.20%)</title><rect x="1060.1" y="549" width="2.7" height="15.0" fill="rgb(0,215,169)" rx="2" ry="2" /> +<text x="1063.15" y="559.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="244.3" y="517" width="1.3" height="15.0" fill="rgb(0,237,172)" rx="2" ry="2" /> +<text x="247.26" y="527.5" ></text> +</g> +<g > +<title>fscrypt_prepare_symlink (10,101,010 samples, 0.10%)</title><rect x="1037.3" y="613" width="1.3" height="15.0" fill="rgb(0,227,29)" rx="2" ry="2" /> +<text x="1040.26" y="623.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.20%)</title><rect x="545.8" y="597" width="2.7" height="15.0" fill="rgb(0,230,180)" rx="2" ry="2" /> +<text x="548.84" y="607.5" ></text> +</g> +<g > +<title>do_rmdir (60,606,060 samples, 0.59%)</title><rect x="228.1" y="565" width="8.1" height="15.0" fill="rgb(0,222,43)" rx="2" ry="2" /> +<text x="231.11" y="575.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.10%)</title><rect x="146.0" y="741" width="1.3" height="15.0" fill="rgb(0,210,163)" rx="2" ry="2" /> +<text x="148.98" y="751.5" ></text> +</g> +<g > +<title>nft_do_chain (10,101,010 samples, 0.10%)</title><rect x="1330.8" y="69" width="1.3" height="15.0" fill="rgb(0,217,134)" rx="2" ry="2" /> +<text x="1333.76" y="79.5" ></text> +</g> +<g > +<title>[libc.so.6] (252,525,250 samples, 2.44%)</title><rect x="10.0" y="965" width="33.7" height="15.0" fill="rgb(0,236,161)" rx="2" ry="2" /> +<text x="13.00" y="975.5" >[l..</text> +</g> +<g > +<title>git_remote_create_with_opts (424,242,420 samples, 4.10%)</title><rect x="800.3" y="773" width="56.5" height="15.0" fill="rgb(0,215,94)" rx="2" ry="2" /> +<text x="803.30" y="783.5" >git_r..</text> +</g> +<g > +<title>filename_parentat (10,101,010 samples, 0.10%)</title><rect x="115.0" y="805" width="1.4" height="15.0" fill="rgb(0,196,156)" rx="2" ry="2" /> +<text x="118.01" y="815.5" ></text> +</g> +<g > +<title>__sys_socket (10,101,010 samples, 0.10%)</title><rect x="1349.6" y="789" width="1.4" height="15.0" fill="rgb(0,223,184)" rx="2" ry="2" /> +<text x="1352.61" y="799.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="969.9" y="517" width="1.4" height="15.0" fill="rgb(0,213,90)" rx="2" ry="2" /> +<text x="972.94" y="527.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.10%)</title><rect x="1287.7" y="549" width="1.3" height="15.0" fill="rgb(0,218,95)" rx="2" ry="2" /> +<text x="1290.68" y="559.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (20,202,020 samples, 0.20%)</title><rect x="1031.9" y="533" width="2.7" height="15.0" fill="rgb(0,228,124)" rx="2" ry="2" /> +<text x="1034.87" y="543.5" ></text> +</g> +<g > +<title>submit_bio_checks (10,101,010 samples, 0.10%)</title><rect x="842.0" y="421" width="1.4" height="15.0" fill="rgb(0,222,20)" rx="2" ry="2" /> +<text x="845.04" y="431.5" ></text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="663.0" y="693" width="1.3" height="15.0" fill="rgb(0,233,189)" rx="2" ry="2" /> +<text x="665.98" y="703.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (30,303,030 samples, 0.29%)</title><rect x="251.0" y="517" width="4.0" height="15.0" fill="rgb(0,229,126)" rx="2" ry="2" /> +<text x="254.00" y="527.5" ></text> +</g> +<g > +<title>tcp_rcv_established (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="245" width="1.4" height="15.0" fill="rgb(0,190,159)" rx="2" ry="2" /> +<text x="1376.84" y="255.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (404,040,400 samples, 3.90%)</title><rect x="856.8" y="773" width="53.9" height="15.0" fill="rgb(0,199,116)" rx="2" ry="2" /> +<text x="859.85" y="783.5" >[libg..</text> +</g> +<g > +<title>do_filp_open (30,303,030 samples, 0.29%)</title><rect x="1000.9" y="613" width="4.0" height="15.0" fill="rgb(0,194,8)" rx="2" ry="2" /> +<text x="1003.91" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="548.5" y="725" width="1.4" height="15.0" fill="rgb(0,218,48)" rx="2" ry="2" /> +<text x="551.54" y="735.5" ></text> +</g> +<g > +<title>git_config_snapshot (20,202,020 samples, 0.20%)</title><rect x="850.1" y="757" width="2.7" height="15.0" fill="rgb(0,231,95)" rx="2" ry="2" /> +<text x="853.12" y="767.5" ></text> +</g> +<g > +<title>link_path_walk.part.0.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="689.9" y="517" width="1.3" height="15.0" fill="rgb(0,228,83)" rx="2" ry="2" /> +<text x="692.90" y="527.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="485" width="1.4" height="15.0" fill="rgb(0,220,101)" rx="2" ry="2" /> +<text x="1207.20" y="495.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.10%)</title><rect x="364.1" y="645" width="1.3" height="15.0" fill="rgb(0,191,148)" rx="2" ry="2" /> +<text x="367.09" y="655.5" ></text> +</g> +<g > +<title>copy_user_enhanced_fast_string (10,101,010 samples, 0.10%)</title><rect x="529.7" y="565" width="1.3" height="15.0" fill="rgb(0,213,198)" rx="2" ry="2" /> +<text x="532.69" y="575.5" ></text> +</g> +<g > +<title>alloc_thread_stack_node (20,202,020 samples, 0.20%)</title><rect x="38.3" y="837" width="2.7" height="15.0" fill="rgb(0,195,162)" rx="2" ry="2" /> +<text x="41.27" y="847.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="1163.8" y="693" width="2.7" height="15.0" fill="rgb(0,234,106)" rx="2" ry="2" /> +<text x="1166.81" y="703.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="1101.9" y="565" width="1.3" height="15.0" fill="rgb(0,231,45)" rx="2" ry="2" /> +<text x="1104.88" y="575.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (10,101,010 samples, 0.10%)</title><rect x="1140.9" y="565" width="1.4" height="15.0" fill="rgb(0,190,178)" rx="2" ry="2" /> +<text x="1143.93" y="575.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (10,101,010 samples, 0.10%)</title><rect x="233.5" y="421" width="1.3" height="15.0" fill="rgb(0,198,165)" rx="2" ry="2" /> +<text x="236.49" y="431.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="757" width="2.7" height="15.0" fill="rgb(0,207,44)" rx="2" ry="2" /> +<text x="1375.50" y="767.5" ></text> +</g> +<g > +<title>printbuf_memappend (10,101,010 samples, 0.10%)</title><rect x="1371.2" y="773" width="1.3" height="15.0" fill="rgb(0,225,168)" rx="2" ry="2" /> +<text x="1374.15" y="783.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="862.2" y="645" width="1.4" height="15.0" fill="rgb(0,236,54)" rx="2" ry="2" /> +<text x="865.23" y="655.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="856.8" y="725" width="2.7" height="15.0" fill="rgb(0,238,201)" rx="2" ry="2" /> +<text x="859.85" y="735.5" ></text> +</g> +<g > +<title>tcp_v4_connect (60,606,060 samples, 0.59%)</title><rect x="1341.5" y="725" width="8.1" height="15.0" fill="rgb(0,236,40)" rx="2" ry="2" /> +<text x="1344.53" y="735.5" ></text> +</g> +<g > +<title>ext4_inode_csum_set (30,303,030 samples, 0.29%)</title><rect x="294.1" y="469" width="4.0" height="15.0" fill="rgb(0,200,132)" rx="2" ry="2" /> +<text x="297.08" y="479.5" ></text> +</g> +<g > +<title>ip_finish_output (60,606,060 samples, 0.59%)</title><rect x="65.2" y="421" width="8.1" height="15.0" fill="rgb(0,207,202)" rx="2" ry="2" /> +<text x="68.20" y="431.5" ></text> +</g> +<g > +<title>net_send (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="821" width="2.7" height="15.0" fill="rgb(0,222,56)" rx="2" ry="2" /> +<text x="1375.50" y="831.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (1,717,171,700 samples, 16.59%)</title><rect x="560.7" y="773" width="228.8" height="15.0" fill="rgb(0,202,135)" rx="2" ry="2" /> +<text x="563.65" y="783.5" >[libgit2.so.1.1.0]</text> +</g> +<g > +<title>cp_new_stat (10,101,010 samples, 0.10%)</title><rect x="391.0" y="693" width="1.4" height="15.0" fill="rgb(0,232,32)" rx="2" ry="2" /> +<text x="394.01" y="703.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="858.2" y="581" width="1.3" height="15.0" fill="rgb(0,208,129)" rx="2" ry="2" /> +<text x="861.20" y="591.5" ></text> +</g> +<g > +<title>jsonrpc_request_send (101,010,100 samples, 0.98%)</title><rect x="11.3" y="901" width="13.5" height="15.0" fill="rgb(0,191,200)" rx="2" ry="2" /> +<text x="14.35" y="911.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1079.0" y="629" width="1.3" height="15.0" fill="rgb(0,228,153)" rx="2" ry="2" /> +<text x="1082.00" y="639.5" ></text> +</g> +<g > +<title>alloc_inode (10,101,010 samples, 0.10%)</title><rect x="1388.7" y="725" width="1.3" height="15.0" fill="rgb(0,222,19)" rx="2" ry="2" /> +<text x="1391.65" y="735.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="816.5" y="213" width="1.3" height="15.0" fill="rgb(0,206,155)" rx="2" ry="2" /> +<text x="819.46" y="223.5" ></text> +</g> +<g > +<title>ip_finish_output (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="517" width="1.4" height="15.0" fill="rgb(0,197,85)" rx="2" ry="2" /> +<text x="1376.84" y="527.5" ></text> +</g> +<g > +<title>dput (10,101,010 samples, 0.10%)</title><rect x="544.5" y="565" width="1.3" height="15.0" fill="rgb(0,224,123)" rx="2" ry="2" /> +<text x="547.50" y="575.5" ></text> +</g> +<g > +<title>_IO_fprintf (10,101,010 samples, 0.10%)</title><rect x="1311.9" y="805" width="1.4" height="15.0" fill="rgb(0,236,108)" rx="2" ry="2" /> +<text x="1314.91" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="947.1" y="597" width="2.6" height="15.0" fill="rgb(0,204,91)" rx="2" ry="2" /> +<text x="950.05" y="607.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="917.4" y="517" width="1.4" height="15.0" fill="rgb(0,223,113)" rx="2" ry="2" /> +<text x="920.43" y="527.5" ></text> +</g> +<g > +<title>_IO_default_xsputn (10,101,010 samples, 0.10%)</title><rect x="416.6" y="741" width="1.3" height="15.0" fill="rgb(0,192,173)" rx="2" ry="2" /> +<text x="419.60" y="751.5" ></text> +</g> +<g > +<title>ksys_write (20,202,020 samples, 0.20%)</title><rect x="681.8" y="565" width="2.7" height="15.0" fill="rgb(0,219,11)" rx="2" ry="2" /> +<text x="684.82" y="575.5" ></text> +</g> +<g > +<title>ext4_rename2 (70,707,070 samples, 0.68%)</title><rect x="765.3" y="565" width="9.4" height="15.0" fill="rgb(0,224,33)" rx="2" ry="2" /> +<text x="768.30" y="575.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="994.2" y="533" width="1.3" height="15.0" fill="rgb(0,235,4)" rx="2" ry="2" /> +<text x="997.18" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="195.8" y="757" width="2.7" height="15.0" fill="rgb(0,234,175)" rx="2" ry="2" /> +<text x="198.80" y="767.5" ></text> +</g> +<g > +<title>log_prefix_timestamp (101,010,100 samples, 0.98%)</title><rect x="94.8" y="853" width="13.5" height="15.0" fill="rgb(0,216,164)" rx="2" ry="2" /> +<text x="97.82" y="863.5" ></text> +</g> +<g > +<title>rw_verify_area (10,101,010 samples, 0.10%)</title><rect x="699.3" y="517" width="1.4" height="15.0" fill="rgb(0,214,103)" rx="2" ry="2" /> +<text x="702.33" y="527.5" ></text> +</g> +<g > +<title>ext4_io_submit (10,101,010 samples, 0.10%)</title><rect x="842.0" y="485" width="1.4" height="15.0" fill="rgb(0,228,81)" rx="2" ry="2" /> +<text x="845.04" y="495.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="205.2" y="389" width="1.4" height="15.0" fill="rgb(0,208,25)" rx="2" ry="2" /> +<text x="208.22" y="399.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.10%)</title><rect x="790.9" y="565" width="1.3" height="15.0" fill="rgb(0,234,127)" rx="2" ry="2" /> +<text x="793.88" y="575.5" ></text> +</g> +<g > +<title>ext4_bread (30,303,030 samples, 0.29%)</title><rect x="117.7" y="757" width="4.0" height="15.0" fill="rgb(0,202,128)" rx="2" ry="2" /> +<text x="120.71" y="767.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.10%)</title><rect x="119.1" y="677" width="1.3" height="15.0" fill="rgb(0,233,197)" rx="2" ry="2" /> +<text x="122.05" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="565" width="1.4" height="15.0" fill="rgb(0,224,81)" rx="2" ry="2" /> +<text x="1207.20" y="575.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.10%)</title><rect x="220.0" y="533" width="1.4" height="15.0" fill="rgb(0,216,41)" rx="2" ry="2" /> +<text x="223.03" y="543.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="921.5" y="709" width="4.0" height="15.0" fill="rgb(0,197,48)" rx="2" ry="2" /> +<text x="924.47" y="719.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="671.1" y="693" width="1.3" height="15.0" fill="rgb(0,190,204)" rx="2" ry="2" /> +<text x="674.05" y="703.5" ></text> +</g> +<g > +<title>ext4_mkdir (161,616,160 samples, 1.56%)</title><rect x="1135.5" y="645" width="21.6" height="15.0" fill="rgb(0,234,205)" rx="2" ry="2" /> +<text x="1138.54" y="655.5" >e..</text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.20%)</title><rect x="454.3" y="517" width="2.7" height="15.0" fill="rgb(0,200,184)" rx="2" ry="2" /> +<text x="457.29" y="527.5" ></text> +</g> +<g > +<title>finish_task_switch.isra.0 (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="341" width="1.4" height="15.0" fill="rgb(0,239,204)" rx="2" ry="2" /> +<text x="1030.83" y="351.5" ></text> +</g> +<g > +<title>libgit_clone_to_tmp (5,222,222,170 samples, 50.44%)</title><rect x="560.7" y="837" width="696.0" height="15.0" fill="rgb(0,229,159)" rx="2" ry="2" /> +<text x="563.65" y="847.5" >libgit_clone_to_tmp</text> +</g> +<g > +<title>do_dentry_open (10,101,010 samples, 0.10%)</title><rect x="1010.3" y="581" width="1.4" height="15.0" fill="rgb(0,239,45)" rx="2" ry="2" /> +<text x="1013.33" y="591.5" ></text> +</g> +<g > +<title>__fsnotify_parent (10,101,010 samples, 0.10%)</title><rect x="1241.9" y="453" width="1.3" height="15.0" fill="rgb(0,226,76)" rx="2" ry="2" /> +<text x="1244.90" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (282,828,280 samples, 2.73%)</title><rect x="941.7" y="661" width="37.7" height="15.0" fill="rgb(0,205,178)" rx="2" ry="2" /> +<text x="944.67" y="671.5" >[li..</text> +</g> +<g > +<title>git_reference_normalize_name (10,101,010 samples, 0.10%)</title><rect x="448.9" y="757" width="1.4" height="15.0" fill="rgb(0,238,110)" rx="2" ry="2" /> +<text x="451.91" y="767.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.10%)</title><rect x="524.3" y="629" width="1.3" height="15.0" fill="rgb(0,234,204)" rx="2" ry="2" /> +<text x="527.30" y="639.5" ></text> +</g> +<g > +<title>cimple-server (737,373,730 samples, 7.12%)</title><rect x="10.0" y="981" width="98.3" height="15.0" fill="rgb(0,192,1)" rx="2" ry="2" /> +<text x="13.00" y="991.5" >cimple-server</text> +</g> +<g > +<title>do_wp_page (10,101,010 samples, 0.10%)</title><rect x="189.1" y="661" width="1.3" height="15.0" fill="rgb(0,231,184)" rx="2" ry="2" /> +<text x="192.06" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1219.0" y="645" width="1.4" height="15.0" fill="rgb(0,204,78)" rx="2" ry="2" /> +<text x="1222.01" y="655.5" ></text> +</g> +<g > +<title>pthread_create (40,404,040 samples, 0.39%)</title><rect x="76.0" y="789" width="5.4" height="15.0" fill="rgb(0,217,202)" rx="2" ry="2" /> +<text x="78.97" y="799.5" ></text> +</g> +<g > +<title>server_assign_run (141,414,140 samples, 1.37%)</title><rect x="10.0" y="917" width="18.8" height="15.0" fill="rgb(0,206,126)" rx="2" ry="2" /> +<text x="13.00" y="927.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="724.9" y="645" width="1.4" height="15.0" fill="rgb(0,229,93)" rx="2" ry="2" /> +<text x="727.91" y="655.5" ></text> +</g> +<g > +<title>strncpy_from_user (20,202,020 samples, 0.20%)</title><rect x="603.7" y="597" width="2.7" height="15.0" fill="rgb(0,219,103)" rx="2" ry="2" /> +<text x="606.74" y="607.5" ></text> +</g> +<g > +<title>ksys_read (10,101,010 samples, 0.10%)</title><rect x="516.2" y="565" width="1.4" height="15.0" fill="rgb(0,220,23)" rx="2" ry="2" /> +<text x="519.22" y="575.5" ></text> +</g> +<g > +<title>ext4_file_write_iter (80,808,080 samples, 0.78%)</title><rect x="1045.3" y="613" width="10.8" height="15.0" fill="rgb(0,235,29)" rx="2" ry="2" /> +<text x="1048.34" y="623.5" ></text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="1225.7" y="549" width="1.4" height="15.0" fill="rgb(0,210,201)" rx="2" ry="2" /> +<text x="1228.75" y="559.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.10%)</title><rect x="172.9" y="869" width="1.4" height="15.0" fill="rgb(0,211,5)" rx="2" ry="2" /> +<text x="175.91" y="879.5" ></text> +</g> +<g > +<title>__open64 (20,202,020 samples, 0.20%)</title><rect x="936.3" y="741" width="2.7" height="15.0" fill="rgb(0,214,28)" rx="2" ry="2" /> +<text x="939.28" y="751.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.29%)</title><rect x="641.4" y="677" width="4.1" height="15.0" fill="rgb(0,196,79)" rx="2" ry="2" /> +<text x="644.43" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="427.4" y="661" width="1.3" height="15.0" fill="rgb(0,217,57)" rx="2" ry="2" /> +<text x="430.37" y="671.5" ></text> +</g> +<g > +<title>ext4_io_submit (10,101,010 samples, 0.10%)</title><rect x="768.0" y="453" width="1.3" height="15.0" fill="rgb(0,232,9)" rx="2" ry="2" /> +<text x="770.99" y="463.5" ></text> +</g> +<g > +<title>put_cred_rcu (10,101,010 samples, 0.10%)</title><rect x="1188.0" y="581" width="1.4" height="15.0" fill="rgb(0,206,178)" rx="2" ry="2" /> +<text x="1191.05" y="591.5" ></text> +</g> +<g > +<title>new_sync_write (10,101,010 samples, 0.10%)</title><rect x="922.8" y="581" width="1.4" height="15.0" fill="rgb(0,221,101)" rx="2" ry="2" /> +<text x="925.82" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_journal_mode (10,101,010 samples, 0.10%)</title><rect x="654.9" y="469" width="1.3" height="15.0" fill="rgb(0,235,95)" rx="2" ry="2" /> +<text x="657.90" y="479.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="1239.2" y="661" width="4.0" height="15.0" fill="rgb(0,202,34)" rx="2" ry="2" /> +<text x="1242.21" y="671.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="700.7" y="549" width="1.3" height="15.0" fill="rgb(0,238,165)" rx="2" ry="2" /> +<text x="703.67" y="559.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.10%)</title><rect x="505.5" y="581" width="1.3" height="15.0" fill="rgb(0,199,103)" rx="2" ry="2" /> +<text x="508.45" y="591.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="105.6" y="805" width="2.7" height="15.0" fill="rgb(0,200,1)" rx="2" ry="2" /> +<text x="108.59" y="815.5" ></text> +</g> +<g > +<title>rcu_core (10,101,010 samples, 0.10%)</title><rect x="788.2" y="533" width="1.3" height="15.0" fill="rgb(0,231,192)" rx="2" ry="2" /> +<text x="791.19" y="543.5" ></text> +</g> +<g > +<title>dput (30,303,030 samples, 0.29%)</title><rect x="1080.3" y="581" width="4.1" height="15.0" fill="rgb(0,192,93)" rx="2" ry="2" /> +<text x="1083.34" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_poll (80,808,080 samples, 0.78%)</title><rect x="43.7" y="805" width="10.7" height="15.0" fill="rgb(0,192,186)" rx="2" ry="2" /> +<text x="46.66" y="815.5" ></text> +</g> +<g > +<title>ip_queue_xmit (60,606,060 samples, 0.59%)</title><rect x="65.2" y="485" width="8.1" height="15.0" fill="rgb(0,224,125)" rx="2" ry="2" /> +<text x="68.20" y="495.5" ></text> +</g> +<g > +<title>do_sys_openat2 (20,202,020 samples, 0.20%)</title><rect x="237.5" y="629" width="2.7" height="15.0" fill="rgb(0,202,128)" rx="2" ry="2" /> +<text x="240.53" y="639.5" ></text> +</g> +<g > +<title>tcp_send_ack (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="213" width="1.4" height="15.0" fill="rgb(0,193,21)" rx="2" ry="2" /> +<text x="1376.84" y="223.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.10%)</title><rect x="1035.9" y="565" width="1.4" height="15.0" fill="rgb(0,224,35)" rx="2" ry="2" /> +<text x="1038.91" y="575.5" ></text> +</g> +<g > +<title>__blk_mq_delay_run_hw_queue (10,101,010 samples, 0.10%)</title><rect x="1084.4" y="373" width="1.3" height="15.0" fill="rgb(0,211,42)" rx="2" ry="2" /> +<text x="1087.38" y="383.5" ></text> +</g> +<g > +<title>alloc_pages (20,202,020 samples, 0.20%)</title><rect x="38.3" y="789" width="2.7" height="15.0" fill="rgb(0,204,84)" rx="2" ry="2" /> +<text x="41.27" y="799.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="864.9" y="501" width="1.4" height="15.0" fill="rgb(0,190,69)" rx="2" ry="2" /> +<text x="867.93" y="511.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="724.9" y="661" width="1.4" height="15.0" fill="rgb(0,210,201)" rx="2" ry="2" /> +<text x="727.91" y="671.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.10%)</title><rect x="413.9" y="725" width="1.3" height="15.0" fill="rgb(0,207,84)" rx="2" ry="2" /> +<text x="416.90" y="735.5" ></text> +</g> +<g > +<title>do_futex (20,202,020 samples, 0.20%)</title><rect x="55.8" y="741" width="2.7" height="15.0" fill="rgb(0,221,124)" rx="2" ry="2" /> +<text x="58.78" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="664.3" y="693" width="1.4" height="15.0" fill="rgb(0,199,184)" rx="2" ry="2" /> +<text x="667.32" y="703.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="581" width="1.4" height="15.0" fill="rgb(0,204,165)" rx="2" ry="2" /> +<text x="1207.20" y="591.5" ></text> +</g> +<g > +<title>__x64_sys_munmap (10,101,010 samples, 0.10%)</title><rect x="54.4" y="725" width="1.4" height="15.0" fill="rgb(0,211,150)" rx="2" ry="2" /> +<text x="57.43" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1204.2" y="597" width="1.4" height="15.0" fill="rgb(0,211,123)" rx="2" ry="2" /> +<text x="1207.20" y="607.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.10%)</title><rect x="710.1" y="581" width="1.3" height="15.0" fill="rgb(0,216,205)" rx="2" ry="2" /> +<text x="713.10" y="591.5" ></text> +</g> +<g > +<title>do_symlinkat (10,101,010 samples, 0.10%)</title><rect x="1037.3" y="661" width="1.3" height="15.0" fill="rgb(0,229,18)" rx="2" ry="2" /> +<text x="1040.26" y="671.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="947.1" y="533" width="2.6" height="15.0" fill="rgb(0,228,61)" rx="2" ry="2" /> +<text x="950.05" y="543.5" ></text> +</g> +<g > +<title>open_last_lookups (60,606,060 samples, 0.59%)</title><rect x="1011.7" y="613" width="8.1" height="15.0" fill="rgb(0,212,182)" rx="2" ry="2" /> +<text x="1014.68" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="742.4" y="501" width="1.4" height="15.0" fill="rgb(0,201,109)" rx="2" ry="2" /> +<text x="745.41" y="511.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.10%)</title><rect x="710.1" y="517" width="1.3" height="15.0" fill="rgb(0,191,124)" rx="2" ry="2" /> +<text x="713.10" y="527.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="733.0" y="597" width="1.3" height="15.0" fill="rgb(0,227,179)" rx="2" ry="2" /> +<text x="735.99" y="607.5" ></text> +</g> +<g > +<title>vfs_statx (20,202,020 samples, 0.20%)</title><rect x="850.1" y="565" width="2.7" height="15.0" fill="rgb(0,209,157)" rx="2" ry="2" /> +<text x="853.12" y="575.5" ></text> +</g> +<g > +<title>d_set_d_op (10,101,010 samples, 0.10%)</title><rect x="504.1" y="549" width="1.4" height="15.0" fill="rgb(0,212,197)" rx="2" ry="2" /> +<text x="507.11" y="559.5" ></text> +</g> +<g > +<title>blk_mq_do_dispatch_sched (10,101,010 samples, 0.10%)</title><rect x="1084.4" y="309" width="1.3" height="15.0" fill="rgb(0,228,36)" rx="2" ry="2" /> +<text x="1087.38" y="319.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="978.0" y="501" width="1.4" height="15.0" fill="rgb(0,216,172)" rx="2" ry="2" /> +<text x="981.02" y="511.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="1136.9" y="517" width="1.3" height="15.0" fill="rgb(0,232,118)" rx="2" ry="2" /> +<text x="1139.89" y="527.5" ></text> +</g> +<g > +<title>apparmor_ipv4_postroute (10,101,010 samples, 0.10%)</title><rect x="14.0" y="549" width="1.4" height="15.0" fill="rgb(0,239,209)" rx="2" ry="2" /> +<text x="17.04" y="559.5" ></text> +</g> +<g > +<title>__ext4_journal_get_write_access (10,101,010 samples, 0.10%)</title><rect x="347.9" y="549" width="1.4" height="15.0" fill="rgb(0,225,30)" rx="2" ry="2" /> +<text x="350.93" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="782.8" y="581" width="1.3" height="15.0" fill="rgb(0,202,55)" rx="2" ry="2" /> +<text x="785.80" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="913.4" y="709" width="1.3" height="15.0" fill="rgb(0,205,117)" rx="2" ry="2" /> +<text x="916.40" y="719.5" ></text> +</g> +<g > +<title>git_reference_list (151,515,150 samples, 1.46%)</title><rect x="860.9" y="741" width="20.2" height="15.0" fill="rgb(0,224,160)" rx="2" ry="2" /> +<text x="863.89" y="751.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="331.8" y="693" width="1.3" height="15.0" fill="rgb(0,225,64)" rx="2" ry="2" /> +<text x="334.78" y="703.5" ></text> +</g> +<g > +<title>opendir (20,202,020 samples, 0.20%)</title><rect x="664.3" y="741" width="2.7" height="15.0" fill="rgb(0,200,54)" rx="2" ry="2" /> +<text x="667.32" y="751.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (20,202,020 samples, 0.20%)</title><rect x="839.3" y="453" width="2.7" height="15.0" fill="rgb(0,200,130)" rx="2" ry="2" /> +<text x="842.35" y="463.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="1241.9" y="613" width="1.3" height="15.0" fill="rgb(0,235,170)" rx="2" ry="2" /> +<text x="1244.90" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="1066.9" y="677" width="2.7" height="15.0" fill="rgb(0,223,172)" rx="2" ry="2" /> +<text x="1069.88" y="687.5" ></text> +</g> +<g > +<title>__x64_sys_openat (10,101,010 samples, 0.10%)</title><rect x="419.3" y="661" width="1.3" height="15.0" fill="rgb(0,221,54)" rx="2" ry="2" /> +<text x="422.29" y="671.5" ></text> +</g> +<g > +<title>__fput (80,808,080 samples, 0.78%)</title><rect x="62.5" y="661" width="10.8" height="15.0" fill="rgb(0,221,41)" rx="2" ry="2" /> +<text x="65.51" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_close (10,101,010 samples, 0.10%)</title><rect x="979.4" y="613" width="1.3" height="15.0" fill="rgb(0,203,201)" rx="2" ry="2" /> +<text x="982.37" y="623.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.20%)</title><rect x="242.9" y="549" width="2.7" height="15.0" fill="rgb(0,217,177)" rx="2" ry="2" /> +<text x="245.92" y="559.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted.part.0 (10,101,010 samples, 0.10%)</title><rect x="1131.5" y="485" width="1.3" height="15.0" fill="rgb(0,196,75)" rx="2" ry="2" /> +<text x="1134.50" y="495.5" ></text> +</g> +<g > +<title>ext4_unlink (10,101,010 samples, 0.10%)</title><rect x="695.3" y="581" width="1.3" height="15.0" fill="rgb(0,205,87)" rx="2" ry="2" /> +<text x="698.29" y="591.5" ></text> +</g> +<g > +<title>vmbus_on_event (10,101,010 samples, 0.10%)</title><rect x="1215.0" y="389" width="1.3" height="15.0" fill="rgb(0,214,77)" rx="2" ry="2" /> +<text x="1217.98" y="399.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (30,303,030 samples, 0.29%)</title><rect x="267.2" y="565" width="4.0" height="15.0" fill="rgb(0,208,33)" rx="2" ry="2" /> +<text x="270.15" y="575.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_stimer0 (10,101,010 samples, 0.10%)</title><rect x="921.5" y="645" width="1.3" height="15.0" fill="rgb(0,231,57)" rx="2" ry="2" /> +<text x="924.47" y="655.5" ></text> +</g> +<g > +<title>__mnt_want_write (10,101,010 samples, 0.10%)</title><rect x="1079.0" y="549" width="1.3" height="15.0" fill="rgb(0,197,84)" rx="2" ry="2" /> +<text x="1082.00" y="559.5" ></text> +</g> +<g > +<title>ext4_search_dir (10,101,010 samples, 0.10%)</title><rect x="934.9" y="549" width="1.4" height="15.0" fill="rgb(0,230,48)" rx="2" ry="2" /> +<text x="937.94" y="559.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="85.4" y="773" width="1.3" height="15.0" fill="rgb(0,222,153)" rx="2" ry="2" /> +<text x="88.40" y="783.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (40,404,040 samples, 0.39%)</title><rect x="66.5" y="165" width="5.4" height="15.0" fill="rgb(0,228,160)" rx="2" ry="2" /> +<text x="69.55" y="175.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.10%)</title><rect x="908.0" y="581" width="1.4" height="15.0" fill="rgb(0,191,191)" rx="2" ry="2" /> +<text x="911.01" y="591.5" ></text> +</g> +<g > +<title>__local_bh_enable_ip (50,505,050 samples, 0.49%)</title><rect x="65.2" y="373" width="6.7" height="15.0" fill="rgb(0,211,144)" rx="2" ry="2" /> +<text x="68.20" y="383.5" ></text> +</g> +<g > +<title>inflate (10,101,010 samples, 0.10%)</title><rect x="984.8" y="597" width="1.3" height="15.0" fill="rgb(0,195,16)" rx="2" ry="2" /> +<text x="987.75" y="607.5" ></text> +</g> +<g > +<title>call_rcu (10,101,010 samples, 0.10%)</title><rect x="988.8" y="469" width="1.3" height="15.0" fill="rgb(0,197,81)" rx="2" ry="2" /> +<text x="991.79" y="479.5" ></text> +</g> +<g > +<title>sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="630.7" y="597" width="1.3" height="15.0" fill="rgb(0,218,91)" rx="2" ry="2" /> +<text x="633.66" y="607.5" ></text> +</g> +<g > +<title>ext4_evict_inode (50,505,050 samples, 0.49%)</title><rect x="1116.7" y="501" width="6.7" height="15.0" fill="rgb(0,203,5)" rx="2" ry="2" /> +<text x="1119.69" y="511.5" ></text> +</g> +<g > +<title>__cond_resched (10,101,010 samples, 0.10%)</title><rect x="1119.4" y="453" width="1.3" height="15.0" fill="rgb(0,221,44)" rx="2" ry="2" /> +<text x="1122.39" y="463.5" ></text> +</g> +<g > +<title>crc32c_pcl_intel_update (10,101,010 samples, 0.10%)</title><rect x="295.4" y="437" width="1.4" height="15.0" fill="rgb(0,200,175)" rx="2" ry="2" /> +<text x="298.42" y="447.5" ></text> +</g> +<g > +<title>ext4_get_dummy_policy (10,101,010 samples, 0.10%)</title><rect x="151.4" y="725" width="1.3" height="15.0" fill="rgb(0,208,165)" rx="2" ry="2" /> +<text x="154.37" y="735.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.49%)</title><rect x="213.3" y="581" width="6.7" height="15.0" fill="rgb(0,219,184)" rx="2" ry="2" /> +<text x="216.30" y="591.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="115.0" y="725" width="1.4" height="15.0" fill="rgb(0,214,144)" rx="2" ry="2" /> +<text x="118.01" y="735.5" ></text> +</g> +<g > +<title>vfs_write (10,101,010 samples, 0.10%)</title><rect x="790.9" y="581" width="1.3" height="15.0" fill="rgb(0,198,130)" rx="2" ry="2" /> +<text x="793.88" y="591.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="796.3" y="581" width="1.3" height="15.0" fill="rgb(0,221,102)" rx="2" ry="2" /> +<text x="799.26" y="591.5" ></text> +</g> +<g > +<title>ext4_do_update_inode.isra.0 (20,202,020 samples, 0.20%)</title><rect x="345.2" y="533" width="2.7" height="15.0" fill="rgb(0,198,119)" rx="2" ry="2" /> +<text x="348.24" y="543.5" ></text> +</g> +<g > +<title>irqentry_exit_to_user_mode (10,101,010 samples, 0.10%)</title><rect x="754.5" y="533" width="1.4" height="15.0" fill="rgb(0,230,53)" rx="2" ry="2" /> +<text x="757.53" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1251.3" y="741" width="1.4" height="15.0" fill="rgb(0,229,80)" rx="2" ry="2" /> +<text x="1254.33" y="751.5" ></text> +</g> +<g > +<title>path_lookupat (20,202,020 samples, 0.20%)</title><rect x="1313.3" y="741" width="2.7" height="15.0" fill="rgb(0,195,51)" rx="2" ry="2" /> +<text x="1316.26" y="751.5" ></text> +</g> +<g > +<title>__lookup_slow (10,101,010 samples, 0.10%)</title><rect x="751.8" y="549" width="1.4" height="15.0" fill="rgb(0,223,173)" rx="2" ry="2" /> +<text x="754.83" y="559.5" ></text> +</g> +<g > +<title>dentry_unlink_inode (50,505,050 samples, 0.49%)</title><rect x="646.8" y="549" width="6.8" height="15.0" fill="rgb(0,193,91)" rx="2" ry="2" /> +<text x="649.82" y="559.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="874.4" y="613" width="1.3" height="15.0" fill="rgb(0,227,146)" rx="2" ry="2" /> +<text x="877.35" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="774.7" y="661" width="2.7" height="15.0" fill="rgb(0,219,29)" rx="2" ry="2" /> +<text x="777.72" y="671.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.10%)</title><rect x="385.6" y="533" width="1.4" height="15.0" fill="rgb(0,239,132)" rx="2" ry="2" /> +<text x="388.63" y="543.5" ></text> +</g> +<g > +<title>ext4_map_blocks (10,101,010 samples, 0.10%)</title><rect x="820.5" y="469" width="1.3" height="15.0" fill="rgb(0,224,50)" rx="2" ry="2" /> +<text x="823.50" y="479.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (373,737,370 samples, 3.61%)</title><rect x="275.2" y="645" width="49.8" height="15.0" fill="rgb(0,193,190)" rx="2" ry="2" /> +<text x="278.23" y="655.5" >entry..</text> +</g> +<g > +<title>security_path_rename (10,101,010 samples, 0.10%)</title><rect x="813.8" y="613" width="1.3" height="15.0" fill="rgb(0,191,138)" rx="2" ry="2" /> +<text x="816.77" y="623.5" ></text> +</g> +<g > +<title>clear_page_erms (10,101,010 samples, 0.10%)</title><rect x="1053.4" y="453" width="1.4" height="15.0" fill="rgb(0,193,201)" rx="2" ry="2" /> +<text x="1056.41" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="860.9" y="661" width="1.3" height="15.0" fill="rgb(0,190,199)" rx="2" ry="2" /> +<text x="863.89" y="671.5" ></text> +</g> +<g > +<title>do_syscall_64 (50,505,050 samples, 0.49%)</title><rect x="86.7" y="773" width="6.8" height="15.0" fill="rgb(0,216,61)" rx="2" ry="2" /> +<text x="89.74" y="783.5" ></text> +</g> +<g > +<title>fstatat (30,303,030 samples, 0.29%)</title><rect x="1223.1" y="709" width="4.0" height="15.0" fill="rgb(0,202,147)" rx="2" ry="2" /> +<text x="1226.05" y="719.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="389" width="1.4" height="15.0" fill="rgb(0,222,106)" rx="2" ry="2" /> +<text x="1007.95" y="399.5" ></text> +</g> +<g > +<title>__x64_sys_access (10,101,010 samples, 0.10%)</title><rect x="799.0" y="741" width="1.3" height="15.0" fill="rgb(0,232,153)" rx="2" ry="2" /> +<text x="801.96" y="751.5" ></text> +</g> +<g > +<title>ext4_truncate (20,202,020 samples, 0.20%)</title><rect x="839.3" y="501" width="2.7" height="15.0" fill="rgb(0,206,61)" rx="2" ry="2" /> +<text x="842.35" y="511.5" ></text> +</g> +<g > +<title>kmem_cache_free (10,101,010 samples, 0.10%)</title><rect x="176.9" y="805" width="1.4" height="15.0" fill="rgb(0,197,5)" rx="2" ry="2" /> +<text x="179.95" y="815.5" ></text> +</g> +<g > +<title>__x64_sys_unlink (10,101,010 samples, 0.10%)</title><rect x="982.1" y="613" width="1.3" height="15.0" fill="rgb(0,226,34)" rx="2" ry="2" /> +<text x="985.06" y="623.5" ></text> +</g> +<g > +<title>ext4_free_inode (10,101,010 samples, 0.10%)</title><rect x="648.2" y="485" width="1.3" height="15.0" fill="rgb(0,220,1)" rx="2" ry="2" /> +<text x="651.17" y="495.5" ></text> +</g> +<g > +<title>symlink (20,202,020 samples, 0.20%)</title><rect x="1037.3" y="725" width="2.7" height="15.0" fill="rgb(0,222,113)" rx="2" ry="2" /> +<text x="1040.26" y="735.5" ></text> +</g> +<g > +<title>_IO_fprintf (10,101,010 samples, 0.10%)</title><rect x="10.0" y="901" width="1.3" height="15.0" fill="rgb(0,224,162)" rx="2" ry="2" /> +<text x="13.00" y="911.5" ></text> +</g> +<g > +<title>scsi_end_request (10,101,010 samples, 0.10%)</title><rect x="213.3" y="341" width="1.3" height="15.0" fill="rgb(0,203,12)" rx="2" ry="2" /> +<text x="216.30" y="351.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (111,111,110 samples, 1.07%)</title><rect x="1206.9" y="741" width="14.8" height="15.0" fill="rgb(0,221,36)" rx="2" ry="2" /> +<text x="1209.90" y="751.5" ></text> +</g> +<g > +<title>complete_walk (10,101,010 samples, 0.10%)</title><rect x="325.0" y="549" width="1.4" height="15.0" fill="rgb(0,196,157)" rx="2" ry="2" /> +<text x="328.04" y="559.5" ></text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="693.9" y="517" width="1.4" height="15.0" fill="rgb(0,214,204)" rx="2" ry="2" /> +<text x="696.94" y="527.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="111.0" y="885" width="2.7" height="15.0" fill="rgb(0,231,154)" rx="2" ry="2" /> +<text x="113.98" y="895.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="939.0" y="693" width="2.7" height="15.0" fill="rgb(0,211,95)" rx="2" ry="2" /> +<text x="941.98" y="703.5" ></text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.10%)</title><rect x="18.1" y="133" width="1.3" height="15.0" fill="rgb(0,212,117)" rx="2" ry="2" /> +<text x="21.08" y="143.5" ></text> +</g> +<g > +<title>_IO_file_xsputn (70,707,070 samples, 0.68%)</title><rect x="94.8" y="805" width="9.4" height="15.0" fill="rgb(0,208,168)" rx="2" ry="2" /> +<text x="97.82" y="815.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.10%)</title><rect x="443.5" y="533" width="1.4" height="15.0" fill="rgb(0,215,3)" rx="2" ry="2" /> +<text x="446.52" y="543.5" ></text> +</g> +<g > +<title>__dma_map_sg_attrs (10,101,010 samples, 0.10%)</title><rect x="440.8" y="245" width="1.4" height="15.0" fill="rgb(0,217,124)" rx="2" ry="2" /> +<text x="443.83" y="255.5" ></text> +</g> +<g > +<title>memset (10,101,010 samples, 0.10%)</title><rect x="547.2" y="549" width="1.3" height="15.0" fill="rgb(0,207,153)" rx="2" ry="2" /> +<text x="550.19" y="559.5" ></text> +</g> +<g > +<title>ext4_unlink (30,303,030 samples, 0.29%)</title><rect x="203.9" y="485" width="4.0" height="15.0" fill="rgb(0,216,69)" rx="2" ry="2" /> +<text x="206.87" y="495.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (50,505,050 samples, 0.49%)</title><rect x="1380.6" y="661" width="6.7" height="15.0" fill="rgb(0,224,100)" rx="2" ry="2" /> +<text x="1383.58" y="671.5" ></text> +</g> +<g > +<title>ci_run_git_repo (8,474,747,390 samples, 81.85%)</title><rect x="189.1" y="869" width="1129.5" height="15.0" fill="rgb(0,215,23)" rx="2" ry="2" /> +<text x="192.06" y="879.5" >ci_run_git_repo</text> +</g> +<g > +<title>dup_mm (303,030,300 samples, 2.93%)</title><rect x="1260.8" y="677" width="40.3" height="15.0" fill="rgb(0,231,54)" rx="2" ry="2" /> +<text x="1263.75" y="687.5" >dup..</text> +</g> +<g > +<title>nf_hook_slow (10,101,010 samples, 0.10%)</title><rect x="1333.5" y="485" width="1.3" height="15.0" fill="rgb(0,226,138)" rx="2" ry="2" /> +<text x="1336.45" y="495.5" ></text> +</g> +<g > +<title>__submit_bio (30,303,030 samples, 0.29%)</title><rect x="656.2" y="421" width="4.1" height="15.0" fill="rgb(0,217,62)" rx="2" ry="2" /> +<text x="659.24" y="431.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.10%)</title><rect x="959.2" y="453" width="1.3" height="15.0" fill="rgb(0,216,81)" rx="2" ry="2" /> +<text x="962.17" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (50,505,050 samples, 0.49%)</title><rect x="541.8" y="725" width="6.7" height="15.0" fill="rgb(0,197,35)" rx="2" ry="2" /> +<text x="544.80" y="735.5" ></text> +</g> +<g > +<title>get_acl (10,101,010 samples, 0.10%)</title><rect x="152.7" y="741" width="1.4" height="15.0" fill="rgb(0,197,129)" rx="2" ry="2" /> +<text x="155.71" y="751.5" ></text> +</g> +<g > +<title>__schedule (30,303,030 samples, 0.29%)</title><rect x="1305.2" y="645" width="4.0" height="15.0" fill="rgb(0,234,7)" rx="2" ry="2" /> +<text x="1308.18" y="655.5" ></text> +</g> +<g > +<title>ext4_block_write_begin (20,202,020 samples, 0.20%)</title><rect x="681.8" y="453" width="2.7" height="15.0" fill="rgb(0,213,181)" rx="2" ry="2" /> +<text x="684.82" y="463.5" ></text> +</g> +<g > +<title>mb_mark_used (10,101,010 samples, 0.10%)</title><rect x="959.2" y="325" width="1.3" height="15.0" fill="rgb(0,220,48)" rx="2" ry="2" /> +<text x="962.17" y="335.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (20,202,020 samples, 0.20%)</title><rect x="685.9" y="485" width="2.7" height="15.0" fill="rgb(0,213,200)" rx="2" ry="2" /> +<text x="688.86" y="495.5" ></text> +</g> +<g > +<title>vfs_open (10,101,010 samples, 0.10%)</title><rect x="502.8" y="613" width="1.3" height="15.0" fill="rgb(0,231,146)" rx="2" ry="2" /> +<text x="505.76" y="623.5" ></text> +</g> +<g > +<title>ext4_read_inode_bitmap (10,101,010 samples, 0.10%)</title><rect x="395.1" y="597" width="1.3" height="15.0" fill="rgb(0,238,89)" rx="2" ry="2" /> +<text x="398.05" y="607.5" ></text> +</g> +<g > +<title>lru_add_drain_cpu (10,101,010 samples, 0.10%)</title><rect x="846.1" y="453" width="1.3" height="15.0" fill="rgb(0,213,16)" rx="2" ry="2" /> +<text x="849.08" y="463.5" ></text> +</g> +<g > +<title>unlink (10,101,010 samples, 0.10%)</title><rect x="236.2" y="629" width="1.3" height="15.0" fill="rgb(0,239,63)" rx="2" ry="2" /> +<text x="239.19" y="639.5" ></text> +</g> +<g > +<title>inode_permission (10,101,010 samples, 0.10%)</title><rect x="883.8" y="549" width="1.3" height="15.0" fill="rgb(0,237,27)" rx="2" ry="2" /> +<text x="886.78" y="559.5" ></text> +</g> +<g > +<title>write (20,202,020 samples, 0.20%)</title><rect x="681.8" y="629" width="2.7" height="15.0" fill="rgb(0,214,57)" rx="2" ry="2" /> +<text x="684.82" y="639.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="482.6" y="677" width="1.3" height="15.0" fill="rgb(0,214,190)" rx="2" ry="2" /> +<text x="485.57" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="518.9" y="613" width="1.4" height="15.0" fill="rgb(0,237,93)" rx="2" ry="2" /> +<text x="521.92" y="623.5" ></text> +</g> +<g > +<title>worker_get_run (282,828,280 samples, 2.73%)</title><rect x="1352.3" y="885" width="37.7" height="15.0" fill="rgb(0,203,196)" rx="2" ry="2" /> +<text x="1355.30" y="895.5" >wor..</text> +</g> +<g > +<title>walk_component (10,101,010 samples, 0.10%)</title><rect x="909.4" y="581" width="1.3" height="15.0" fill="rgb(0,211,131)" rx="2" ry="2" /> +<text x="912.36" y="591.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1239.2" y="581" width="1.4" height="15.0" fill="rgb(0,214,128)" rx="2" ry="2" /> +<text x="1242.21" y="591.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (101,010,100 samples, 0.98%)</title><rect x="370.8" y="693" width="13.5" height="15.0" fill="rgb(0,222,131)" rx="2" ry="2" /> +<text x="373.82" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_openat (20,202,020 samples, 0.20%)</title><rect x="237.5" y="645" width="2.7" height="15.0" fill="rgb(0,236,72)" rx="2" ry="2" /> +<text x="240.53" y="655.5" ></text> +</g> +<g > +<title>obj_cgroup_uncharge (10,101,010 samples, 0.10%)</title><rect x="65.2" y="69" width="1.3" height="15.0" fill="rgb(0,190,78)" rx="2" ry="2" /> +<text x="68.20" y="79.5" ></text> +</g> +<g > +<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.10%)</title><rect x="1190.7" y="549" width="1.4" height="15.0" fill="rgb(0,226,39)" rx="2" ry="2" /> +<text x="1193.74" y="559.5" ></text> +</g> +<g > +<title>close (20,202,020 samples, 0.20%)</title><rect x="556.6" y="677" width="2.7" height="15.0" fill="rgb(0,201,48)" rx="2" ry="2" /> +<text x="559.61" y="687.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="757.2" y="581" width="2.7" height="15.0" fill="rgb(0,211,200)" rx="2" ry="2" /> +<text x="760.22" y="591.5" ></text> +</g> +<g > +<title>git_reference_create_matching (414,141,410 samples, 4.00%)</title><rect x="941.7" y="725" width="55.2" height="15.0" fill="rgb(0,223,50)" rx="2" ry="2" /> +<text x="944.67" y="735.5" >git_r..</text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="210.6" y="597" width="1.4" height="15.0" fill="rgb(0,227,68)" rx="2" ry="2" /> +<text x="213.60" y="607.5" ></text> +</g> +<g > +<title>path_lookupat (10,101,010 samples, 0.10%)</title><rect x="883.8" y="581" width="1.3" height="15.0" fill="rgb(0,203,143)" rx="2" ry="2" /> +<text x="886.78" y="591.5" ></text> +</g> +<g > +<title>pagecache_get_page (10,101,010 samples, 0.10%)</title><rect x="1099.2" y="453" width="1.3" height="15.0" fill="rgb(0,217,4)" rx="2" ry="2" /> +<text x="1102.19" y="463.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="483.9" y="565" width="1.4" height="15.0" fill="rgb(0,190,20)" rx="2" ry="2" /> +<text x="486.91" y="575.5" ></text> +</g> +<g > +<title>ext4_da_write_end (10,101,010 samples, 0.10%)</title><rect x="1004.9" y="533" width="1.4" height="15.0" fill="rgb(0,222,199)" rx="2" ry="2" /> +<text x="1007.95" y="543.5" ></text> +</g> +<g > +<title>ext4_dirty_inode (10,101,010 samples, 0.10%)</title><rect x="917.4" y="549" width="1.4" height="15.0" fill="rgb(0,221,64)" rx="2" ry="2" /> +<text x="920.43" y="559.5" ></text> +</g> +<g > +<title>__alloc_pages (10,101,010 samples, 0.10%)</title><rect x="1282.3" y="565" width="1.3" height="15.0" fill="rgb(0,202,31)" rx="2" ry="2" /> +<text x="1285.29" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="908.0" y="613" width="1.4" height="15.0" fill="rgb(0,233,8)" rx="2" ry="2" /> +<text x="911.01" y="623.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (30,303,030 samples, 0.29%)</title><rect x="356.0" y="533" width="4.0" height="15.0" fill="rgb(0,234,4)" rx="2" ry="2" /> +<text x="359.01" y="543.5" ></text> +</g> +<g > +<title>git_checkout_tree (656,565,650 samples, 6.34%)</title><rect x="465.1" y="821" width="87.5" height="15.0" fill="rgb(0,205,161)" rx="2" ry="2" /> +<text x="468.06" y="831.5" >git_checko..</text> +</g> +<g > +<title>kmem_cache_alloc (10,101,010 samples, 0.10%)</title><rect x="1180.0" y="501" width="1.3" height="15.0" fill="rgb(0,216,186)" rx="2" ry="2" /> +<text x="1182.97" y="511.5" ></text> +</g> +<g > +<title>ext4_ext_map_blocks (30,303,030 samples, 0.29%)</title><rect x="117.7" y="709" width="4.0" height="15.0" fill="rgb(0,213,45)" rx="2" ry="2" /> +<text x="120.71" y="719.5" ></text> +</g> +<g > +<title>ext4_free_inode (20,202,020 samples, 0.20%)</title><rect x="299.5" y="517" width="2.7" height="15.0" fill="rgb(0,224,121)" rx="2" ry="2" /> +<text x="302.46" y="527.5" ></text> +</g> +<g > +<title>write (10,101,010 samples, 0.10%)</title><rect x="831.3" y="661" width="1.3" height="15.0" fill="rgb(0,225,197)" rx="2" ry="2" /> +<text x="834.27" y="671.5" ></text> +</g> +<g > +<title>__x64_sys_rename (101,010,100 samples, 0.98%)</title><rect x="808.4" y="645" width="13.4" height="15.0" fill="rgb(0,193,40)" rx="2" ry="2" /> +<text x="811.38" y="655.5" ></text> +</g> +<g > +<title>git_config_free (20,202,020 samples, 0.20%)</title><rect x="774.7" y="677" width="2.7" height="15.0" fill="rgb(0,233,96)" rx="2" ry="2" /> +<text x="777.72" y="687.5" ></text> +</g> +<g > +<title>git_signature_default (20,202,020 samples, 0.20%)</title><rect x="796.3" y="725" width="2.7" height="15.0" fill="rgb(0,226,168)" rx="2" ry="2" /> +<text x="799.26" y="735.5" ></text> +</g> +<g > +<title>getname_flags.part.0 (10,101,010 samples, 0.10%)</title><rect x="871.7" y="501" width="1.3" height="15.0" fill="rgb(0,196,80)" rx="2" ry="2" /> +<text x="874.66" y="511.5" ></text> +</g> +<g > +<title>lookup_fast (10,101,010 samples, 0.10%)</title><rect x="909.4" y="565" width="1.3" height="15.0" fill="rgb(0,203,38)" rx="2" ry="2" /> +<text x="912.36" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (515,151,510 samples, 4.98%)</title><rect x="467.8" y="789" width="68.6" height="15.0" fill="rgb(0,226,87)" rx="2" ry="2" /> +<text x="470.76" y="799.5" >[libgit..</text> +</g> +<g > +<title>__d_lookup_rcu (10,101,010 samples, 0.10%)</title><rect x="482.6" y="517" width="1.3" height="15.0" fill="rgb(0,226,78)" rx="2" ry="2" /> +<text x="485.57" y="527.5" ></text> +</g> +<g > +<title>ext4_alloc_da_blocks (40,404,040 samples, 0.39%)</title><rect x="929.6" y="581" width="5.3" height="15.0" fill="rgb(0,239,116)" rx="2" ry="2" /> +<text x="932.55" y="591.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (10,101,010 samples, 0.10%)</title><rect x="1373.8" y="149" width="1.4" height="15.0" fill="rgb(0,234,58)" rx="2" ry="2" /> +<text x="1376.84" y="159.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="730.3" y="501" width="1.3" height="15.0" fill="rgb(0,210,155)" rx="2" ry="2" /> +<text x="733.29" y="511.5" ></text> +</g> +<g > +<title>vfs_unlink (30,303,030 samples, 0.29%)</title><rect x="203.9" y="501" width="4.0" height="15.0" fill="rgb(0,212,107)" rx="2" ry="2" /> +<text x="206.87" y="511.5" ></text> +</g> +<g > +<title>ext4_handle_dirty_dirblock (10,101,010 samples, 0.10%)</title><rect x="586.2" y="549" width="1.4" height="15.0" fill="rgb(0,228,12)" rx="2" ry="2" /> +<text x="589.23" y="559.5" ></text> +</g> +<g > +<title>__napi_poll (30,303,030 samples, 0.29%)</title><rect x="1328.1" y="405" width="4.0" height="15.0" fill="rgb(0,217,71)" rx="2" ry="2" /> +<text x="1331.07" y="415.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (30,303,030 samples, 0.29%)</title><rect x="509.5" y="725" width="4.0" height="15.0" fill="rgb(0,225,71)" rx="2" ry="2" /> +<text x="512.49" y="735.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="454.3" y="613" width="2.7" height="15.0" fill="rgb(0,237,66)" rx="2" ry="2" /> +<text x="457.29" y="623.5" ></text> +</g> +<g > +<title>__ext4_mark_inode_dirty (40,404,040 samples, 0.39%)</title><rect x="276.6" y="533" width="5.4" height="15.0" fill="rgb(0,220,42)" rx="2" ry="2" /> +<text x="279.58" y="543.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="361.4" y="661" width="2.7" height="15.0" fill="rgb(0,194,131)" rx="2" ry="2" /> +<text x="364.40" y="671.5" ></text> +</g> +<g > +<title>zero_user_segments.constprop.0 (10,101,010 samples, 0.10%)</title><rect x="932.2" y="437" width="1.4" height="15.0" fill="rgb(0,192,203)" rx="2" ry="2" /> +<text x="935.24" y="447.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.10%)</title><rect x="1019.8" y="661" width="1.3" height="15.0" fill="rgb(0,239,82)" rx="2" ry="2" /> +<text x="1022.76" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="781.5" y="549" width="1.3" height="15.0" fill="rgb(0,239,4)" rx="2" ry="2" /> +<text x="784.45" y="559.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.10%)</title><rect x="396.4" y="629" width="1.3" height="15.0" fill="rgb(0,208,109)" rx="2" ry="2" /> +<text x="399.40" y="639.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.10%)</title><rect x="1209.6" y="565" width="1.3" height="15.0" fill="rgb(0,235,62)" rx="2" ry="2" /> +<text x="1212.59" y="575.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.10%)</title><rect x="1010.3" y="613" width="1.4" height="15.0" fill="rgb(0,239,207)" rx="2" ry="2" /> +<text x="1013.33" y="623.5" ></text> +</g> +<g > +<title>ext4_rename (30,303,030 samples, 0.29%)</title><rect x="1030.5" y="549" width="4.1" height="15.0" fill="rgb(0,196,96)" rx="2" ry="2" /> +<text x="1033.53" y="559.5" ></text> +</g> +<g > +<title>__pmd_alloc (20,202,020 samples, 0.20%)</title><rect x="1279.6" y="613" width="2.7" height="15.0" fill="rgb(0,239,114)" rx="2" ry="2" /> +<text x="1282.60" y="623.5" ></text> +</g> +<g > +<title>jbd2_journal_dirty_metadata (10,101,010 samples, 0.10%)</title><rect x="578.2" y="501" width="1.3" height="15.0" fill="rgb(0,202,143)" rx="2" ry="2" /> +<text x="581.16" y="511.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="862.2" y="661" width="1.4" height="15.0" fill="rgb(0,214,52)" rx="2" ry="2" /> +<text x="865.23" y="671.5" ></text> +</g> +<g > +<title>ext4_da_write_begin (10,101,010 samples, 0.10%)</title><rect x="633.4" y="485" width="1.3" height="15.0" fill="rgb(0,232,154)" rx="2" ry="2" /> +<text x="636.36" y="495.5" ></text> +</g> +<g > +<title>ext4_reserve_inode_write (10,101,010 samples, 0.10%)</title><rect x="269.8" y="533" width="1.4" height="15.0" fill="rgb(0,203,181)" rx="2" ry="2" /> +<text x="272.84" y="543.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="1136.9" y="533" width="1.3" height="15.0" fill="rgb(0,230,87)" rx="2" ry="2" /> +<text x="1139.89" y="543.5" ></text> +</g> +<g > +<title>vfs_read (10,101,010 samples, 0.10%)</title><rect x="478.5" y="581" width="1.4" height="15.0" fill="rgb(0,210,147)" rx="2" ry="2" /> +<text x="481.53" y="591.5" ></text> +</g> +<g > +<title>tcp_v4_do_rcv (10,101,010 samples, 0.10%)</title><rect x="1330.8" y="261" width="1.3" height="15.0" fill="rgb(0,222,23)" rx="2" ry="2" /> +<text x="1333.76" y="271.5" ></text> +</g> +<g > +<title>ext4_ext_rm_leaf (10,101,010 samples, 0.10%)</title><rect x="1120.7" y="437" width="1.4" height="15.0" fill="rgb(0,192,94)" rx="2" ry="2" /> +<text x="1123.73" y="447.5" ></text> +</g> +<g > +<title>__schedule (10,101,010 samples, 0.10%)</title><rect x="1027.8" y="357" width="1.4" height="15.0" fill="rgb(0,199,137)" rx="2" ry="2" /> +<text x="1030.83" y="367.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="423.3" y="677" width="2.7" height="15.0" fill="rgb(0,196,145)" rx="2" ry="2" /> +<text x="426.33" y="687.5" ></text> +</g> +<g > +<title>__ext4_ext_dirty (10,101,010 samples, 0.10%)</title><rect x="357.4" y="501" width="1.3" height="15.0" fill="rgb(0,238,187)" rx="2" ry="2" /> +<text x="360.36" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="552.6" y="709" width="8.1" height="15.0" fill="rgb(0,213,138)" rx="2" ry="2" /> +<text x="555.58" y="719.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="786.8" y="725" width="1.4" height="15.0" fill="rgb(0,204,145)" rx="2" ry="2" /> +<text x="789.84" y="735.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="564.7" y="565" width="1.3" height="15.0" fill="rgb(0,202,205)" rx="2" ry="2" /> +<text x="567.69" y="575.5" ></text> +</g> +<g > +<title>__tcp_transmit_skb (60,606,060 samples, 0.59%)</title><rect x="14.0" y="629" width="8.1" height="15.0" fill="rgb(0,201,106)" rx="2" ry="2" /> +<text x="17.04" y="639.5" ></text> +</g> +<g > +<title>task_work_run (10,101,010 samples, 0.10%)</title><rect x="1210.9" y="565" width="1.4" height="15.0" fill="rgb(0,195,199)" rx="2" ry="2" /> +<text x="1213.94" y="575.5" ></text> +</g> +<g > +<title>git_reference_create_matching (242,424,240 samples, 2.34%)</title><rect x="672.4" y="741" width="32.3" height="15.0" fill="rgb(0,232,15)" rx="2" ry="2" /> +<text x="675.40" y="751.5" >gi..</text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="785.5" y="741" width="1.3" height="15.0" fill="rgb(0,213,13)" rx="2" ry="2" /> +<text x="788.49" y="751.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="1171.9" y="661" width="1.3" height="15.0" fill="rgb(0,234,160)" rx="2" ry="2" /> +<text x="1174.89" y="671.5" ></text> +</g> +<g > +<title>__nf_conntrack_confirm (10,101,010 samples, 0.10%)</title><rect x="1386.0" y="565" width="1.3" height="15.0" fill="rgb(0,234,106)" rx="2" ry="2" /> +<text x="1388.96" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="894.5" y="645" width="1.4" height="15.0" fill="rgb(0,214,141)" rx="2" ry="2" /> +<text x="897.55" y="655.5" ></text> +</g> +<g > +<title>__ip_queue_xmit (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="533" width="2.6" height="15.0" fill="rgb(0,193,90)" rx="2" ry="2" /> +<text x="1336.45" y="543.5" ></text> +</g> +<g > +<title>ext4_truncate (10,101,010 samples, 0.10%)</title><rect x="649.5" y="485" width="1.4" height="15.0" fill="rgb(0,213,68)" rx="2" ry="2" /> +<text x="652.51" y="495.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="1232.5" y="661" width="1.3" height="15.0" fill="rgb(0,239,94)" rx="2" ry="2" /> +<text x="1235.48" y="671.5" ></text> +</g> +<g > +<title>down_write (10,101,010 samples, 0.10%)</title><rect x="1271.5" y="613" width="1.4" height="15.0" fill="rgb(0,214,57)" rx="2" ry="2" /> +<text x="1274.52" y="623.5" ></text> +</g> +<g > +<title>stop_this_handle (10,101,010 samples, 0.10%)</title><rect x="505.5" y="549" width="1.3" height="15.0" fill="rgb(0,231,171)" rx="2" ry="2" /> +<text x="508.45" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="910.7" y="757" width="1.3" height="15.0" fill="rgb(0,237,162)" rx="2" ry="2" /> +<text x="913.70" y="767.5" ></text> +</g> +<g > +<title>ext4_file_read_iter (10,101,010 samples, 0.10%)</title><rect x="632.0" y="533" width="1.4" height="15.0" fill="rgb(0,228,197)" rx="2" ry="2" /> +<text x="635.01" y="543.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1070.9" y="661" width="1.4" height="15.0" fill="rgb(0,199,180)" rx="2" ry="2" /> +<text x="1073.92" y="671.5" ></text> +</g> +<g > +<title>user_path_at_empty (20,202,020 samples, 0.20%)</title><rect x="621.2" y="629" width="2.7" height="15.0" fill="rgb(0,203,190)" rx="2" ry="2" /> +<text x="624.24" y="639.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (80,808,080 samples, 0.78%)</title><rect x="704.7" y="741" width="10.8" height="15.0" fill="rgb(0,208,67)" rx="2" ry="2" /> +<text x="707.71" y="751.5" ></text> +</g> +<g > +<title>__ext4_journal_stop (10,101,010 samples, 0.10%)</title><rect x="267.2" y="549" width="1.3" height="15.0" fill="rgb(0,234,91)" rx="2" ry="2" /> +<text x="270.15" y="559.5" ></text> +</g> +<g > +<title>__dentry_kill (50,505,050 samples, 0.49%)</title><rect x="646.8" y="565" width="6.8" height="15.0" fill="rgb(0,194,150)" rx="2" ry="2" /> +<text x="649.82" y="575.5" ></text> +</g> +<g > +<title>syscall_exit_to_user_mode (80,808,080 samples, 0.78%)</title><rect x="62.5" y="741" width="10.8" height="15.0" fill="rgb(0,207,140)" rx="2" ry="2" /> +<text x="65.51" y="751.5" ></text> +</g> +<g > +<title>unlink_cb (40,404,040 samples, 0.39%)</title><rect x="407.2" y="789" width="5.4" height="15.0" fill="rgb(0,236,204)" rx="2" ry="2" /> +<text x="410.17" y="799.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.10%)</title><rect x="524.3" y="693" width="1.3" height="15.0" fill="rgb(0,190,29)" rx="2" ry="2" /> +<text x="527.30" y="703.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="664.3" y="709" width="1.4" height="15.0" fill="rgb(0,238,57)" rx="2" ry="2" /> +<text x="667.32" y="719.5" ></text> +</g> +<g > +<title>__legitimize_mnt (10,101,010 samples, 0.10%)</title><rect x="325.0" y="501" width="1.4" height="15.0" fill="rgb(0,197,54)" rx="2" ry="2" /> +<text x="328.04" y="511.5" ></text> +</g> +<g > +<title>task_work_run (80,808,080 samples, 0.78%)</title><rect x="62.5" y="693" width="10.8" height="15.0" fill="rgb(0,209,15)" rx="2" ry="2" /> +<text x="65.51" y="703.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1250.0" y="757" width="1.3" height="15.0" fill="rgb(0,198,73)" rx="2" ry="2" /> +<text x="1252.98" y="767.5" ></text> +</g> +<g > +<title>__blk_mq_delay_run_hw_queue (10,101,010 samples, 0.10%)</title><rect x="440.8" y="437" width="1.4" height="15.0" fill="rgb(0,226,146)" rx="2" ry="2" /> +<text x="443.83" y="447.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.10%)</title><rect x="431.4" y="437" width="1.4" height="15.0" fill="rgb(0,191,164)" rx="2" ry="2" /> +<text x="434.40" y="447.5" ></text> +</g> +<g > +<title>getname_flags (10,101,010 samples, 0.10%)</title><rect x="434.1" y="501" width="1.3" height="15.0" fill="rgb(0,198,103)" rx="2" ry="2" /> +<text x="437.10" y="511.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="786.8" y="741" width="1.4" height="15.0" fill="rgb(0,217,193)" rx="2" ry="2" /> +<text x="789.84" y="751.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="692.6" y="645" width="1.3" height="15.0" fill="rgb(0,192,194)" rx="2" ry="2" /> +<text x="695.60" y="655.5" ></text> +</g> +<g > +<title>vfs_statx (10,101,010 samples, 0.10%)</title><rect x="718.2" y="453" width="1.3" height="15.0" fill="rgb(0,228,150)" rx="2" ry="2" /> +<text x="721.18" y="463.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (323,232,320 samples, 3.12%)</title><rect x="563.3" y="709" width="43.1" height="15.0" fill="rgb(0,237,2)" rx="2" ry="2" /> +<text x="566.35" y="719.5" >[lib..</text> +</g> +<g > +<title>free (10,101,010 samples, 0.10%)</title><rect x="827.2" y="741" width="1.4" height="15.0" fill="rgb(0,233,157)" rx="2" ry="2" /> +<text x="830.23" y="751.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1220.4" y="661" width="1.3" height="15.0" fill="rgb(0,209,196)" rx="2" ry="2" /> +<text x="1223.36" y="671.5" ></text> +</g> +<g > +<title>ext4_bread (10,101,010 samples, 0.10%)</title><rect x="959.2" y="469" width="1.3" height="15.0" fill="rgb(0,226,106)" rx="2" ry="2" /> +<text x="962.17" y="479.5" ></text> +</g> +<g > +<title>do_filp_open (10,101,010 samples, 0.10%)</title><rect x="419.3" y="629" width="1.3" height="15.0" fill="rgb(0,236,59)" rx="2" ry="2" /> +<text x="422.29" y="639.5" ></text> +</g> +<g > +<title>ftrace_graph_init_task (10,101,010 samples, 0.10%)</title><rect x="1301.1" y="693" width="1.4" height="15.0" fill="rgb(0,239,94)" rx="2" ry="2" /> +<text x="1304.14" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (40,404,040 samples, 0.39%)</title><rect x="334.5" y="661" width="5.4" height="15.0" fill="rgb(0,221,34)" rx="2" ry="2" /> +<text x="337.47" y="671.5" ></text> +</g> +<g > +<title>ext4_mb_mark_diskspace_used (10,101,010 samples, 0.10%)</title><rect x="1255.4" y="565" width="1.3" height="15.0" fill="rgb(0,223,209)" rx="2" ry="2" /> +<text x="1258.37" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="860.9" y="709" width="2.7" height="15.0" fill="rgb(0,201,161)" rx="2" ry="2" /> +<text x="863.89" y="719.5" ></text> +</g> +<g > +<title>do_syscall_64 (30,303,030 samples, 0.29%)</title><rect x="203.9" y="549" width="4.0" height="15.0" fill="rgb(0,223,77)" rx="2" ry="2" /> +<text x="206.87" y="559.5" ></text> +</g> +<g > +<title>jsonrpc_request_recv (70,707,070 samples, 0.68%)</title><rect x="1361.7" y="821" width="9.5" height="15.0" fill="rgb(0,192,151)" rx="2" ry="2" /> +<text x="1364.73" y="831.5" ></text> +</g> +<g > +<title>__x64_sys_write (10,101,010 samples, 0.10%)</title><rect x="922.8" y="629" width="1.4" height="15.0" fill="rgb(0,194,142)" rx="2" ry="2" /> +<text x="925.82" y="639.5" ></text> +</g> +<g > +<title>filemap_flush (50,505,050 samples, 0.49%)</title><rect x="815.1" y="549" width="6.7" height="15.0" fill="rgb(0,207,54)" rx="2" ry="2" /> +<text x="818.11" y="559.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="451.6" y="597" width="1.3" height="15.0" fill="rgb(0,236,6)" rx="2" ry="2" /> +<text x="454.60" y="607.5" ></text> +</g> +<g > +<title>generic_file_read_iter (10,101,010 samples, 0.10%)</title><rect x="632.0" y="517" width="1.4" height="15.0" fill="rgb(0,213,23)" rx="2" ry="2" /> +<text x="635.01" y="527.5" ></text> +</g> +<g > +<title>filename_lookup (20,202,020 samples, 0.20%)</title><rect x="947.1" y="501" width="2.6" height="15.0" fill="rgb(0,231,99)" rx="2" ry="2" /> +<text x="950.05" y="511.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1068.2" y="645" width="1.4" height="15.0" fill="rgb(0,198,152)" rx="2" ry="2" /> +<text x="1071.22" y="655.5" ></text> +</g> +<g > +<title>net_rx_action (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="517" width="5.4" height="15.0" fill="rgb(0,219,150)" rx="2" ry="2" /> +<text x="1383.58" y="527.5" ></text> +</g> +<g > +<title>tcp_send_fin (20,202,020 samples, 0.20%)</title><rect x="1333.5" y="613" width="2.6" height="15.0" fill="rgb(0,231,202)" rx="2" ry="2" /> +<text x="1336.45" y="623.5" ></text> +</g> +<g > +<title>map_id_up (10,101,010 samples, 0.10%)</title><rect x="401.8" y="661" width="1.3" height="15.0" fill="rgb(0,195,128)" rx="2" ry="2" /> +<text x="404.79" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="689.9" y="645" width="2.7" height="15.0" fill="rgb(0,208,150)" rx="2" ry="2" /> +<text x="692.90" y="655.5" ></text> +</g> +<g > +<title>__ext4_forget (10,101,010 samples, 0.10%)</title><rect x="312.9" y="421" width="1.4" height="15.0" fill="rgb(0,192,141)" rx="2" ry="2" /> +<text x="315.93" y="431.5" ></text> +</g> +<g > +<title>evict (10,101,010 samples, 0.10%)</title><rect x="330.4" y="581" width="1.4" height="15.0" fill="rgb(0,223,137)" rx="2" ry="2" /> +<text x="333.43" y="591.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="882.4" y="565" width="1.4" height="15.0" fill="rgb(0,208,161)" rx="2" ry="2" /> +<text x="885.43" y="575.5" ></text> +</g> +<g > +<title>access (10,101,010 samples, 0.10%)</title><rect x="1188.0" y="693" width="1.4" height="15.0" fill="rgb(0,233,164)" rx="2" ry="2" /> +<text x="1191.05" y="703.5" ></text> +</g> +<g > +<title>tcp_create_openreq_child (10,101,010 samples, 0.10%)</title><rect x="1377.9" y="229" width="1.3" height="15.0" fill="rgb(0,239,191)" rx="2" ry="2" /> +<text x="1380.88" y="239.5" ></text> +</g> +<g > +<title>ext4_mb_complex_scan_group (30,303,030 samples, 0.29%)</title><rect x="1149.0" y="501" width="4.0" height="15.0" fill="rgb(0,201,13)" rx="2" ry="2" /> +<text x="1152.00" y="511.5" ></text> +</g> +<g > +<title>do_faccessat (10,101,010 samples, 0.10%)</title><rect x="751.8" y="629" width="1.4" height="15.0" fill="rgb(0,236,10)" rx="2" ry="2" /> +<text x="754.83" y="639.5" ></text> +</g> +<g > +<title>security_path_mkdir (10,101,010 samples, 0.10%)</title><rect x="116.4" y="821" width="1.3" height="15.0" fill="rgb(0,204,13)" rx="2" ry="2" /> +<text x="119.36" y="831.5" ></text> +</g> +<g > +<title>vfs_mkdir (40,404,040 samples, 0.39%)</title><rect x="676.4" y="549" width="5.4" height="15.0" fill="rgb(0,195,36)" rx="2" ry="2" /> +<text x="679.44" y="559.5" ></text> +</g> +<g > +<title>nf_nat_inet_fn (10,101,010 samples, 0.10%)</title><rect x="18.1" y="101" width="1.3" height="15.0" fill="rgb(0,212,108)" rx="2" ry="2" /> +<text x="21.08" y="111.5" ></text> +</g> +<g > +<title>filename_lookup (10,101,010 samples, 0.10%)</title><rect x="902.6" y="501" width="1.4" height="15.0" fill="rgb(0,207,181)" rx="2" ry="2" /> +<text x="905.62" y="511.5" ></text> +</g> +<g > +<title>alloc_empty_file (20,202,020 samples, 0.20%)</title><rect x="128.5" y="805" width="2.7" height="15.0" fill="rgb(0,206,121)" rx="2" ry="2" /> +<text x="131.48" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="430.1" y="677" width="2.7" height="15.0" fill="rgb(0,239,162)" rx="2" ry="2" /> +<text x="433.06" y="687.5" ></text> +</g> +<g > +<title>add_to_page_cache_lru (10,101,010 samples, 0.10%)</title><rect x="1054.8" y="517" width="1.3" height="15.0" fill="rgb(0,200,202)" rx="2" ry="2" /> +<text x="1057.76" y="527.5" ></text> +</g> +<g > +<title>write (70,707,070 samples, 0.68%)</title><rect x="1092.5" y="645" width="9.4" height="15.0" fill="rgb(0,227,205)" rx="2" ry="2" /> +<text x="1095.46" y="655.5" ></text> +</g> +<g > +<title>__lookup_hash (10,101,010 samples, 0.10%)</title><rect x="1111.3" y="581" width="1.4" height="15.0" fill="rgb(0,201,20)" rx="2" ry="2" /> +<text x="1114.31" y="591.5" ></text> +</g> +<g > +<title>ext4_inode_block_valid (10,101,010 samples, 0.10%)</title><rect x="574.1" y="469" width="1.4" height="15.0" fill="rgb(0,239,26)" rx="2" ry="2" /> +<text x="577.12" y="479.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="488.0" y="613" width="1.3" height="15.0" fill="rgb(0,217,38)" rx="2" ry="2" /> +<text x="490.95" y="623.5" ></text> +</g> +<g > +<title>__fput (10,101,010 samples, 0.10%)</title><rect x="607.8" y="581" width="1.3" height="15.0" fill="rgb(0,233,122)" rx="2" ry="2" /> +<text x="610.78" y="591.5" ></text> +</g> +<g > +<title>jbd2_write_access_granted.part.0 (10,101,010 samples, 0.10%)</title><rect x="929.6" y="389" width="1.3" height="15.0" fill="rgb(0,196,23)" rx="2" ry="2" /> +<text x="932.55" y="399.5" ></text> +</g> +<g > +<title>iterate_dir (30,303,030 samples, 0.29%)</title><rect x="224.1" y="581" width="4.0" height="15.0" fill="rgb(0,223,56)" rx="2" ry="2" /> +<text x="227.07" y="591.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="863.6" y="581" width="1.3" height="15.0" fill="rgb(0,219,64)" rx="2" ry="2" /> +<text x="866.58" y="591.5" ></text> +</g> +<g > +<title>malloc (10,101,010 samples, 0.10%)</title><rect x="1367.1" y="773" width="1.4" height="15.0" fill="rgb(0,207,57)" rx="2" ry="2" /> +<text x="1370.11" y="783.5" ></text> +</g> +<g > +<title>__libc_calloc (10,101,010 samples, 0.10%)</title><rect x="1232.5" y="645" width="1.3" height="15.0" fill="rgb(0,226,154)" rx="2" ry="2" /> +<text x="1235.48" y="655.5" ></text> +</g> +<g > +<title>strncpy_from_user (10,101,010 samples, 0.10%)</title><rect x="980.7" y="565" width="1.4" height="15.0" fill="rgb(0,212,92)" rx="2" ry="2" /> +<text x="983.71" y="575.5" ></text> +</g> +<g > +<title>unlink_cb (60,606,060 samples, 0.59%)</title><rect x="392.4" y="773" width="8.0" height="15.0" fill="rgb(0,216,110)" rx="2" ry="2" /> +<text x="395.36" y="783.5" ></text> +</g> +<g > +<title>do_accept (30,303,030 samples, 0.29%)</title><rect x="88.1" y="709" width="4.0" height="15.0" fill="rgb(0,218,156)" rx="2" ry="2" /> +<text x="91.09" y="719.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (10,101,010 samples, 0.10%)</title><rect x="1044.0" y="565" width="1.3" height="15.0" fill="rgb(0,191,56)" rx="2" ry="2" /> +<text x="1046.99" y="575.5" ></text> +</g> +<g > +<title>submit_bio_noacct (10,101,010 samples, 0.10%)</title><rect x="768.0" y="421" width="1.3" height="15.0" fill="rgb(0,222,0)" rx="2" ry="2" /> +<text x="770.99" y="431.5" ></text> +</g> +<g > +<title>vfs_read (30,303,030 samples, 0.29%)</title><rect x="1305.2" y="709" width="4.0" height="15.0" fill="rgb(0,217,22)" rx="2" ry="2" /> +<text x="1308.18" y="719.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="529.7" y="661" width="1.3" height="15.0" fill="rgb(0,239,73)" rx="2" ry="2" /> +<text x="532.69" y="671.5" ></text> +</g> +<g > +<title>unlink (20,202,020 samples, 0.20%)</title><rect x="361.4" y="693" width="2.7" height="15.0" fill="rgb(0,198,137)" rx="2" ry="2" /> +<text x="364.40" y="703.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (60,606,060 samples, 0.59%)</title><rect x="1194.8" y="709" width="8.1" height="15.0" fill="rgb(0,214,146)" rx="2" ry="2" /> +<text x="1197.78" y="719.5" ></text> +</g> +<g > +<title>do_faccessat (20,202,020 samples, 0.20%)</title><rect x="1190.7" y="597" width="2.7" height="15.0" fill="rgb(0,201,199)" rx="2" ry="2" /> +<text x="1193.74" y="607.5" ></text> +</g> +<g > +<title>generic_perform_write (20,202,020 samples, 0.20%)</title><rect x="681.8" y="485" width="2.7" height="15.0" fill="rgb(0,192,149)" rx="2" ry="2" /> +<text x="684.82" y="495.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (20,202,020 samples, 0.20%)</title><rect x="28.8" y="853" width="2.7" height="15.0" fill="rgb(0,213,187)" rx="2" ry="2" /> +<text x="31.85" y="863.5" ></text> +</g> +<g > +<title>ip_rcv (40,404,040 samples, 0.39%)</title><rect x="1380.6" y="437" width="5.4" height="15.0" fill="rgb(0,217,165)" rx="2" ry="2" /> +<text x="1383.58" y="447.5" ></text> +</g> +<g > +<title>ext4_alloc_inode (10,101,010 samples, 0.10%)</title><rect x="572.8" y="517" width="1.3" height="15.0" fill="rgb(0,238,150)" rx="2" ry="2" /> +<text x="575.77" y="527.5" ></text> +</g> +<g > +<title>touch_atime (10,101,010 samples, 0.10%)</title><rect x="788.2" y="661" width="1.3" height="15.0" fill="rgb(0,239,156)" rx="2" ry="2" /> +<text x="791.19" y="671.5" ></text> +</g> +<g > +<title>__getblk_gfp (10,101,010 samples, 0.10%)</title><rect x="1309.2" y="565" width="1.4" height="15.0" fill="rgb(0,208,95)" rx="2" ry="2" /> +<text x="1312.22" y="575.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="127.1" y="901" width="1.4" height="15.0" fill="rgb(0,212,54)" rx="2" ry="2" /> +<text x="130.13" y="911.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="703.4" y="597" width="1.3" height="15.0" fill="rgb(0,191,36)" rx="2" ry="2" /> +<text x="706.37" y="607.5" ></text> +</g> +<g > +<title>ext4_ext_truncate (30,303,030 samples, 0.29%)</title><rect x="232.1" y="469" width="4.1" height="15.0" fill="rgb(0,191,42)" rx="2" ry="2" /> +<text x="235.15" y="479.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="380.2" y="549" width="1.4" height="15.0" fill="rgb(0,238,20)" rx="2" ry="2" /> +<text x="383.24" y="559.5" ></text> +</g> +<g > +<title>clear_inode (10,101,010 samples, 0.10%)</title><rect x="1041.3" y="565" width="1.3" height="15.0" fill="rgb(0,237,0)" rx="2" ry="2" /> +<text x="1044.30" y="575.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.39%)</title><rect x="222.7" y="613" width="5.4" height="15.0" fill="rgb(0,214,61)" rx="2" ry="2" /> +<text x="225.72" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="551.2" y="693" width="1.4" height="15.0" fill="rgb(0,204,92)" rx="2" ry="2" /> +<text x="554.23" y="703.5" ></text> +</g> +<g > +<title>security_inode_alloc (10,101,010 samples, 0.10%)</title><rect x="956.5" y="437" width="1.3" height="15.0" fill="rgb(0,205,200)" rx="2" ry="2" /> +<text x="959.48" y="447.5" ></text> +</g> +<g > +<title>ext4_inode_csum (10,101,010 samples, 0.10%)</title><rect x="1030.5" y="469" width="1.4" height="15.0" fill="rgb(0,218,163)" rx="2" ry="2" /> +<text x="1033.53" y="479.5" ></text> +</g> +<g > +<title>git_remote_is_valid_name (10,101,010 samples, 0.10%)</title><rect x="852.8" y="757" width="1.4" height="15.0" fill="rgb(0,193,86)" rx="2" ry="2" /> +<text x="855.81" y="767.5" ></text> +</g> +<g > +<title>__x64_sys_read (10,101,010 samples, 0.10%)</title><rect x="805.7" y="613" width="1.3" height="15.0" fill="rgb(0,202,78)" rx="2" ry="2" /> +<text x="808.69" y="623.5" ></text> +</g> +<g > +<title>[libc.so.6] (20,202,020 samples, 0.20%)</title><rect x="195.8" y="725" width="2.7" height="15.0" fill="rgb(0,205,18)" rx="2" ry="2" /> +<text x="198.80" y="735.5" ></text> +</g> +<g > +<title>do_user_addr_fault (10,101,010 samples, 0.10%)</title><rect x="191.8" y="741" width="1.3" height="15.0" fill="rgb(0,196,197)" rx="2" ry="2" /> +<text x="194.76" y="751.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.10%)</title><rect x="505.5" y="565" width="1.3" height="15.0" fill="rgb(0,230,80)" rx="2" ry="2" /> +<text x="508.45" y="575.5" ></text> +</g> +<g > +<title>__ext4_handle_dirty_metadata (10,101,010 samples, 0.10%)</title><rect x="578.2" y="517" width="1.3" height="15.0" fill="rgb(0,215,44)" rx="2" ry="2" /> +<text x="581.16" y="527.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="218.7" y="469" width="1.3" height="15.0" fill="rgb(0,191,160)" rx="2" ry="2" /> +<text x="221.68" y="479.5" ></text> +</g> +<g > +<title>json_recv (70,707,070 samples, 0.68%)</title><rect x="1361.7" y="805" width="9.5" height="15.0" fill="rgb(0,204,122)" rx="2" ry="2" /> +<text x="1364.73" y="815.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="715.5" y="565" width="1.3" height="15.0" fill="rgb(0,211,20)" rx="2" ry="2" /> +<text x="718.48" y="575.5" ></text> +</g> +<g > +<title>user_path_at_empty (10,101,010 samples, 0.10%)</title><rect x="751.8" y="613" width="1.4" height="15.0" fill="rgb(0,207,190)" rx="2" ry="2" /> +<text x="754.83" y="623.5" ></text> +</g> +<g > +<title>readlink (20,202,020 samples, 0.20%)</title><rect x="881.1" y="661" width="2.7" height="15.0" fill="rgb(0,221,37)" rx="2" ry="2" /> +<text x="884.08" y="671.5" ></text> +</g> +<g > +<title>jsonrpc_request_set_param_int (10,101,010 samples, 0.10%)</title><rect x="1321.3" y="853" width="1.4" height="15.0" fill="rgb(0,220,77)" rx="2" ry="2" /> +<text x="1324.34" y="863.5" ></text> +</g> +<g > +<title>git_config_snapshot (80,808,080 samples, 0.78%)</title><rect x="450.3" y="741" width="10.7" height="15.0" fill="rgb(0,221,108)" rx="2" ry="2" /> +<text x="453.25" y="751.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="564.7" y="613" width="1.3" height="15.0" fill="rgb(0,236,191)" rx="2" ry="2" /> +<text x="567.69" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="481.2" y="645" width="1.4" height="15.0" fill="rgb(0,237,172)" rx="2" ry="2" /> +<text x="484.22" y="655.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.39%)</title><rect x="334.5" y="677" width="5.4" height="15.0" fill="rgb(0,223,90)" rx="2" ry="2" /> +<text x="337.47" y="687.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (40,404,040 samples, 0.39%)</title><rect x="407.2" y="741" width="5.4" height="15.0" fill="rgb(0,198,184)" rx="2" ry="2" /> +<text x="410.17" y="751.5" ></text> +</g> +<g > +<title>__x64_sys_getdents64 (10,101,010 samples, 0.10%)</title><rect x="917.4" y="613" width="1.4" height="15.0" fill="rgb(0,231,163)" rx="2" ry="2" /> +<text x="920.43" y="623.5" ></text> +</g> +<g > +<title>do_syscall_64 (10,101,010 samples, 0.10%)</title><rect x="364.1" y="725" width="1.3" height="15.0" fill="rgb(0,194,162)" rx="2" ry="2" /> +<text x="367.09" y="735.5" ></text> +</g> +<g > +<title>_raw_spin_lock (10,101,010 samples, 0.10%)</title><rect x="387.0" y="597" width="1.3" height="15.0" fill="rgb(0,202,21)" rx="2" ry="2" /> +<text x="389.98" y="607.5" ></text> +</g> +<g > +<title>close (10,101,010 samples, 0.10%)</title><rect x="1077.6" y="661" width="1.4" height="15.0" fill="rgb(0,226,13)" rx="2" ry="2" /> +<text x="1080.65" y="671.5" ></text> +</g> +<g > +<title>__ext4_find_entry (10,101,010 samples, 0.10%)</title><rect x="1060.1" y="533" width="1.4" height="15.0" fill="rgb(0,207,122)" rx="2" ry="2" /> +<text x="1063.15" y="543.5" ></text> +</g> +<g > +<title>__rq_qos_track (10,101,010 samples, 0.10%)</title><rect x="658.9" y="389" width="1.4" height="15.0" fill="rgb(0,229,84)" rx="2" ry="2" /> +<text x="661.94" y="399.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="761.3" y="501" width="1.3" height="15.0" fill="rgb(0,209,207)" rx="2" ry="2" /> +<text x="764.26" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="531.0" y="741" width="5.4" height="15.0" fill="rgb(0,224,178)" rx="2" ry="2" /> +<text x="534.03" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="704.7" y="613" width="2.7" height="15.0" fill="rgb(0,230,166)" rx="2" ry="2" /> +<text x="707.71" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (40,404,040 samples, 0.39%)</title><rect x="887.8" y="661" width="5.4" height="15.0" fill="rgb(0,216,203)" rx="2" ry="2" /> +<text x="890.81" y="671.5" ></text> +</g> +<g > +<title>tcp_sendmsg_locked (20,202,020 samples, 0.20%)</title><rect x="1372.5" y="661" width="2.7" height="15.0" fill="rgb(0,190,118)" rx="2" ry="2" /> +<text x="1375.50" y="671.5" ></text> +</g> +<g > +<title>log_entry_start (10,101,010 samples, 0.10%)</title><rect x="1351.0" y="853" width="1.3" height="15.0" fill="rgb(0,222,190)" rx="2" ry="2" /> +<text x="1353.96" y="863.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="1171.9" y="645" width="1.3" height="15.0" fill="rgb(0,215,160)" rx="2" ry="2" /> +<text x="1174.89" y="655.5" ></text> +</g> +<g > +<title>ext4_find_extent (10,101,010 samples, 0.10%)</title><rect x="680.5" y="453" width="1.3" height="15.0" fill="rgb(0,203,48)" rx="2" ry="2" /> +<text x="683.48" y="463.5" ></text> +</g> +<g > +<title>jbd2_journal_stop (10,101,010 samples, 0.10%)</title><rect x="815.1" y="469" width="1.4" height="15.0" fill="rgb(0,201,148)" rx="2" ry="2" /> +<text x="818.11" y="479.5" ></text> +</g> +<g > +<title>get_page_from_freelist (10,101,010 samples, 0.10%)</title><rect x="1282.3" y="549" width="1.3" height="15.0" fill="rgb(0,218,126)" rx="2" ry="2" /> +<text x="1285.29" y="559.5" ></text> +</g> +<g > +<title>do_writepages (10,101,010 samples, 0.10%)</title><rect x="440.8" y="549" width="1.4" height="15.0" fill="rgb(0,191,105)" rx="2" ry="2" /> +<text x="443.83" y="559.5" ></text> +</g> +<g > +<title>new_sync_write (80,808,080 samples, 0.78%)</title><rect x="1045.3" y="629" width="10.8" height="15.0" fill="rgb(0,210,165)" rx="2" ry="2" /> +<text x="1048.34" y="639.5" ></text> +</g> +<g > +<title>inet_sendmsg (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="693" width="5.4" height="15.0" fill="rgb(0,229,31)" rx="2" ry="2" /> +<text x="1331.07" y="703.5" ></text> +</g> +<g > +<title>ext4_mark_iloc_dirty (10,101,010 samples, 0.10%)</title><rect x="922.8" y="437" width="1.4" height="15.0" fill="rgb(0,220,120)" rx="2" ry="2" /> +<text x="925.82" y="447.5" ></text> +</g> +<g > +<title>irqentry_exit (10,101,010 samples, 0.10%)</title><rect x="1167.9" y="485" width="1.3" height="15.0" fill="rgb(0,222,5)" rx="2" ry="2" /> +<text x="1170.85" y="495.5" ></text> +</g> +<g > +<title>ext4_release_dir (10,101,010 samples, 0.10%)</title><rect x="400.4" y="645" width="1.4" height="15.0" fill="rgb(0,227,107)" rx="2" ry="2" /> +<text x="403.44" y="655.5" ></text> +</g> +<g > +<title>__tcp_send_ack.part.0 (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="629" width="2.7" height="15.0" fill="rgb(0,210,164)" rx="2" ry="2" /> +<text x="1341.84" y="639.5" ></text> +</g> +<g > +<title>__netif_receive_skb (20,202,020 samples, 0.20%)</title><rect x="1338.8" y="389" width="2.7" height="15.0" fill="rgb(0,195,152)" rx="2" ry="2" /> +<text x="1341.84" y="399.5" ></text> +</g> +<g > +<title>do_syscall_64 (20,202,020 samples, 0.20%)</title><rect x="834.0" y="661" width="2.7" height="15.0" fill="rgb(0,219,62)" rx="2" ry="2" /> +<text x="836.96" y="671.5" ></text> +</g> +<g > +<title>do_open (10,101,010 samples, 0.10%)</title><rect x="541.8" y="565" width="1.4" height="15.0" fill="rgb(0,190,117)" rx="2" ry="2" /> +<text x="544.80" y="575.5" ></text> +</g> +<g > +<title>storvsc_queuecommand (20,202,020 samples, 0.20%)</title><rect x="1124.8" y="245" width="2.7" height="15.0" fill="rgb(0,195,108)" rx="2" ry="2" /> +<text x="1127.77" y="255.5" ></text> +</g> +<g > +<title>fstatat (10,101,010 samples, 0.10%)</title><rect x="890.5" y="613" width="1.4" height="15.0" fill="rgb(0,235,203)" rx="2" ry="2" /> +<text x="893.51" y="623.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="739.7" y="645" width="1.4" height="15.0" fill="rgb(0,221,171)" rx="2" ry="2" /> +<text x="742.72" y="655.5" ></text> +</g> +<g > +<title>tcp_v4_send_synack (20,202,020 samples, 0.20%)</title><rect x="1381.9" y="277" width="2.7" height="15.0" fill="rgb(0,225,57)" rx="2" ry="2" /> +<text x="1384.92" y="287.5" ></text> +</g> +<g > +<title>__find_get_block (10,101,010 samples, 0.10%)</title><rect x="280.6" y="453" width="1.4" height="15.0" fill="rgb(0,195,77)" rx="2" ry="2" /> +<text x="283.61" y="463.5" ></text> +</g> +<g > +<title>opendir (20,202,020 samples, 0.20%)</title><rect x="609.1" y="709" width="2.7" height="15.0" fill="rgb(0,206,29)" rx="2" ry="2" /> +<text x="612.12" y="719.5" ></text> +</g> +<g > +<title>__do_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="925.5" y="645" width="1.4" height="15.0" fill="rgb(0,203,146)" rx="2" ry="2" /> +<text x="928.51" y="655.5" ></text> +</g> +<g > +<title>git_config_snapshot (30,303,030 samples, 0.29%)</title><rect x="730.3" y="693" width="4.0" height="15.0" fill="rgb(0,222,157)" rx="2" ry="2" /> +<text x="733.29" y="703.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (20,202,020 samples, 0.20%)</title><rect x="621.2" y="677" width="2.7" height="15.0" fill="rgb(0,221,15)" rx="2" ry="2" /> +<text x="624.24" y="687.5" ></text> +</g> +<g > +<title>do_syscall_64 (40,404,040 samples, 0.39%)</title><rect x="1328.1" y="757" width="5.4" height="15.0" fill="rgb(0,228,154)" rx="2" ry="2" /> +<text x="1331.07" y="767.5" ></text> +</g> +<g > +<title>memcg_slab_post_alloc_hook (10,101,010 samples, 0.10%)</title><rect x="1017.1" y="469" width="1.3" height="15.0" fill="rgb(0,215,37)" rx="2" ry="2" /> +<text x="1020.06" y="479.5" ></text> +</g> +<g > +<title>asm_sysvec_hyperv_callback (10,101,010 samples, 0.10%)</title><rect x="1197.5" y="629" width="1.3" height="15.0" fill="rgb(0,190,6)" rx="2" ry="2" /> +<text x="1200.47" y="639.5" ></text> +</g> +<g > +<title>inet_stream_connect (101,010,100 samples, 0.98%)</title><rect x="1336.1" y="757" width="13.5" height="15.0" fill="rgb(0,214,96)" rx="2" ry="2" /> +<text x="1339.15" y="767.5" ></text> +</g> +<g > +<title>start_request_parse (10,101,010 samples, 0.10%)</title><rect x="1357.7" y="789" width="1.3" height="15.0" fill="rgb(0,235,83)" rx="2" ry="2" /> +<text x="1360.69" y="799.5" ></text> +</g> +<g > +<title>dput (30,303,030 samples, 0.29%)</title><rect x="436.8" y="645" width="4.0" height="15.0" fill="rgb(0,233,141)" rx="2" ry="2" /> +<text x="439.79" y="655.5" ></text> +</g> +<g > +<title>ip_output (50,505,050 samples, 0.49%)</title><rect x="14.0" y="565" width="6.8" height="15.0" fill="rgb(0,232,54)" rx="2" ry="2" /> +<text x="17.04" y="575.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (30,303,030 samples, 0.29%)</title><rect x="552.6" y="645" width="4.0" height="15.0" fill="rgb(0,200,38)" rx="2" ry="2" /> +<text x="555.58" y="655.5" ></text> +</g> +<g > +<title>__softirqentry_text_start (50,505,050 samples, 0.49%)</title><rect x="65.2" y="341" width="6.7" height="15.0" fill="rgb(0,228,125)" rx="2" ry="2" /> +<text x="68.20" y="351.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (20,202,020 samples, 0.20%)</title><rect x="1345.6" y="453" width="2.7" height="15.0" fill="rgb(0,193,106)" rx="2" ry="2" /> +<text x="1348.57" y="463.5" ></text> +</g> +<g > +<title>__netif_receive_skb_one_core (50,505,050 samples, 0.49%)</title><rect x="65.2" y="261" width="6.7" height="15.0" fill="rgb(0,217,158)" rx="2" ry="2" /> +<text x="68.20" y="271.5" ></text> +</g> +<g > +<title>vfs_rename (60,606,060 samples, 0.59%)</title><rect x="842.0" y="613" width="8.1" height="15.0" fill="rgb(0,231,103)" rx="2" ry="2" /> +<text x="845.04" y="623.5" ></text> +</g> +<g > +<title>__close_nocancel (10,101,010 samples, 0.10%)</title><rect x="1210.9" y="661" width="1.4" height="15.0" fill="rgb(0,222,198)" rx="2" ry="2" /> +<text x="1213.94" y="671.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="871.7" y="581" width="1.3" height="15.0" fill="rgb(0,204,155)" rx="2" ry="2" /> +<text x="874.66" y="591.5" ></text> +</g> +<g > +<title>ext4_htree_fill_tree (10,101,010 samples, 0.10%)</title><rect x="265.8" y="565" width="1.4" height="15.0" fill="rgb(0,198,152)" rx="2" ry="2" /> +<text x="268.80" y="575.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="551.2" y="741" width="1.4" height="15.0" fill="rgb(0,215,48)" rx="2" ry="2" /> +<text x="554.23" y="751.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (20,202,020 samples, 0.20%)</title><rect x="893.2" y="693" width="2.7" height="15.0" fill="rgb(0,237,39)" rx="2" ry="2" /> +<text x="896.20" y="703.5" ></text> +</g> +<g > +<title>memcpy_erms (10,101,010 samples, 0.10%)</title><rect x="41.0" y="837" width="1.3" height="15.0" fill="rgb(0,223,171)" rx="2" ry="2" /> +<text x="43.97" y="847.5" ></text> +</g> +<g > +<title>entry_SYSCALL_64_after_hwframe (10,101,010 samples, 0.10%)</title><rect x="236.2" y="613" width="1.3" height="15.0" fill="rgb(0,219,71)" rx="2" ry="2" /> +<text x="239.19" y="623.5" ></text> +</g> +<g > +<title>__x64_sys_newfstatat (10,101,010 samples, 0.10%)</title><rect x="708.8" y="581" width="1.3" height="15.0" fill="rgb(0,220,30)" rx="2" ry="2" /> +<text x="711.75" y="591.5" ></text> +</g> +<g > +<title>opendir (20,202,020 samples, 0.20%)</title><rect x="914.7" y="677" width="2.7" height="15.0" fill="rgb(0,225,209)" rx="2" ry="2" /> +<text x="917.74" y="687.5" ></text> +</g> +<g > +<title>ext4_getblk (10,101,010 samples, 0.10%)</title><rect x="385.6" y="549" width="1.4" height="15.0" fill="rgb(0,227,35)" rx="2" ry="2" /> +<text x="388.63" y="559.5" ></text> +</g> +<g > +<title>rcu_do_batch (10,101,010 samples, 0.10%)</title><rect x="284.7" y="357" width="1.3" height="15.0" fill="rgb(0,237,82)" rx="2" ry="2" /> +<text x="287.65" y="367.5" ></text> +</g> +<g > +<title>crypto_shash_update (10,101,010 samples, 0.10%)</title><rect x="438.1" y="501" width="1.4" height="15.0" fill="rgb(0,219,189)" rx="2" ry="2" /> +<text x="441.14" y="511.5" ></text> +</g> +<g > +<title>[libgit2.so.1.1.0] (10,101,010 samples, 0.10%)</title><rect x="703.4" y="645" width="1.3" height="15.0" fill="rgb(0,231,161)" rx="2" ry="2" /> +<text x="706.37" y="655.5" ></text> +</g> +<g > +<title>[libc.so.6] (10,101,010 samples, 0.10%)</title><rect x="1167.9" y="533" width="1.3" height="15.0" fill="rgb(0,224,46)" rx="2" ry="2" /> +<text x="1170.85" y="543.5" ></text> +</g> +<g > +<title>copy_user_enhanced_fast_string (10,101,010 samples, 0.10%)</title><rect x="82.7" y="693" width="1.3" height="15.0" fill="rgb(0,234,201)" rx="2" ry="2" /> +<text x="85.70" y="703.5" ></text> +</g> +</g> +</svg> |