diff options
author | egor-tensin <Egor.Tensin@gmail.com> | 2023-08-28 07:43:34 +0000 |
---|---|---|
committer | egor-tensin <Egor.Tensin@gmail.com> | 2023-08-28 07:43:34 +0000 |
commit | 31ce147c50e853f63b70048b0bbf71bb8889ca18 (patch) | |
tree | 980a47eeac40fff4bdcd6d8726ac6285d7bf4a82 /flame_graphs/flame_graph_output_long.svg | |
download | cimple-31ce147c50e853f63b70048b0bbf71bb8889ca18.tar.gz cimple-31ce147c50e853f63b70048b0bbf71bb8889ca18.zip |
Deploying to gh-pages from @ egor-tensin/cimple@efb0a921609cf06080308a6a7c321d451489db8a 🚀
Diffstat (limited to '')
-rw-r--r-- | flame_graphs/flame_graph_output_long.svg | 24093 |
1 files changed, 24093 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> |