Created
February 13, 2019 23:41
-
-
Save SergejIsbrecht/83c89c66caa9b06cc3e457db82546b17 to your computer and use it in GitHub Desktop.
issues974
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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="1200" height="774" onload="init(evt)" viewBox="0 0 1200 774" 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="#eeeeee" offset="5%" /> | |
| <stop stop-color="#eeeeb0" offset="95%" /> | |
| </linearGradient> | |
| </defs> | |
| <style type="text/css"> | |
| .func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; } | |
| </style> | |
| <script type="text/ecmascript"> | |
| <![CDATA[ | |
| var details, searchbtn, matchedtxt, svg; | |
| function init(evt) { | |
| details = document.getElementById("details").firstChild; | |
| searchbtn = document.getElementById("search"); | |
| matchedtxt = document.getElementById("matched"); | |
| svg = document.getElementsByTagName("svg")[0]; | |
| searching = 0; | |
| } | |
| // mouse-over for info | |
| function s(node) { // show | |
| info = g_to_text(node); | |
| details.nodeValue = "Function: " + info; | |
| } | |
| function c() { // clear | |
| details.nodeValue = ' '; | |
| } | |
| // ctrl-F for search | |
| window.addEventListener("keydown",function (e) { | |
| if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { | |
| e.preventDefault(); | |
| search_prompt(); | |
| } | |
| }) | |
| // functions | |
| function find_child(parent, name, attr) { | |
| var children = parent.childNodes; | |
| for (var i=0; i<children.length;i++) { | |
| if (children[i].tagName == name) | |
| return (attr != undefined) ? children[i].attributes[attr].value : children[i]; | |
| } | |
| return; | |
| } | |
| 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; | |
| // Fit in full text width | |
| if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w) | |
| return; | |
| for (var x=txt.length-2; x>0; x--) { | |
| 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") + 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; | |
| var unzoombtn = document.getElementById("unzoom"); | |
| unzoombtn.style["opacity"] = "1.0"; | |
| var el = document.getElementsByTagName("g"); | |
| 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); | |
| // Is it an ancestor | |
| if (0 == 0) { | |
| var upstack = parseFloat(a["y"].value) > ymin; | |
| } else { | |
| var upstack = parseFloat(a["y"].value) < ymin; | |
| } | |
| if (upstack) { | |
| // Direct ancestor | |
| if (ex <= xmin && (ex+ew+fudge) >= xmax) { | |
| e.style["opacity"] = "0.5"; | |
| zoom_parent(e); | |
| e.onclick = function(e){unzoom(); zoom(this);}; | |
| update_text(e); | |
| } | |
| // not in current path | |
| else | |
| e.style["display"] = "none"; | |
| } | |
| // Children maybe | |
| else { | |
| // no common path | |
| if (ex < xmin || ex + fudge >= xmax) { | |
| e.style["display"] = "none"; | |
| } | |
| else { | |
| zoom_child(e, xmin, ratio); | |
| e.onclick = function(e){zoom(this);}; | |
| update_text(e); | |
| } | |
| } | |
| } | |
| } | |
| function unzoom() { | |
| var unzoombtn = document.getElementById("unzoom"); | |
| unzoombtn.style["opacity"] = "0.0"; | |
| var el = document.getElementsByTagName("g"); | |
| for(i=0;i<el.length;i++) { | |
| el[i].style["display"] = "block"; | |
| el[i].style["opacity"] = "1"; | |
| zoom_reset(el[i]); | |
| update_text(el[i]); | |
| } | |
| } | |
| // search | |
| function reset_search() { | |
| var el = document.getElementsByTagName("rect"); | |
| for (var i=0; i < el.length; i++) { | |
| orig_load(el[i], "fill") | |
| } | |
| } | |
| function search_prompt() { | |
| if (!searching) { | |
| var term = prompt("Enter a search term (regexp " + | |
| "allowed, eg: ^ext4_)", ""); | |
| if (term != null) { | |
| search(term) | |
| } | |
| } else { | |
| reset_search(); | |
| searching = 0; | |
| searchbtn.style["opacity"] = "0.1"; | |
| searchbtn.firstChild.nodeValue = "Search" | |
| matchedtxt.style["opacity"] = "0.0"; | |
| matchedtxt.firstChild.nodeValue = "" | |
| } | |
| } | |
| function search(term) { | |
| var re = new RegExp(term); | |
| var el = document.getElementsByTagName("g"); | |
| var matches = new Object(); | |
| var maxwidth = 0; | |
| for (var i = 0; i < el.length; i++) { | |
| var e = el[i]; | |
| if (e.attributes["class"].value != "func_g") | |
| continue; | |
| var func = g_to_func(e); | |
| var rect = find_child(e, "rect"); | |
| if (rect == null) { | |
| // the rect might be wrapped in an anchor | |
| // if nameattr href is being used | |
| if (rect = find_child(e, "a")) { | |
| rect = find_child(r, "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; | |
| searchbtn.style["opacity"] = "1.0"; | |
| 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.style["opacity"] = "1.0"; | |
| pct = 100 * count / maxwidth; | |
| if (pct == 100) | |
| pct = "100" | |
| else | |
| pct = pct.toFixed(1) | |
| matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; | |
| } | |
| function searchover(e) { | |
| searchbtn.style["opacity"] = "1.0"; | |
| } | |
| function searchout(e) { | |
| if (searching) { | |
| searchbtn.style["opacity"] = "1.0"; | |
| } else { | |
| searchbtn.style["opacity"] = "0.1"; | |
| } | |
| } | |
| ]]> | |
| </script> | |
| <rect x="0.0" y="0" width="1200.0" height="774.0" fill="url(#background)" /> | |
| <text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text> | |
| <text text-anchor="" x="10.00" y="757" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text> | |
| <text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text> | |
| <text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text> | |
| <text text-anchor="" x="1090.00" y="757" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>clear_page_erms (19 samples, 0.19%)</title><rect x="1077.8" y="389" width="2.2" height="15.0" fill="rgb(236,85,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1080.79" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kmem_cache_alloc (1 samples, 0.01%)</title><rect x="1017.9" y="309" width="0.1" height="15.0" fill="rgb(242,129,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.91" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__fget_light (1 samples, 0.01%)</title><rect x="1156.4" y="389" width="0.1" height="15.0" fill="rgb(213,163,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.40" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ret_from_intr (2 samples, 0.02%)</title><rect x="209.9" y="581" width="0.2" height="15.0" fill="rgb(208,3,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__dec_node_page_state (1 samples, 0.01%)</title><rect x="1058.7" y="117" width="0.1" height="15.0" fill="rgb(216,29,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1061.72" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_map_blocks (9 samples, 0.09%)</title><rect x="1008.1" y="293" width="1.1" height="15.0" fill="rgb(252,75,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.14" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq (2 samples, 0.02%)</title><rect x="655.7" y="517" width="0.2" height="15.0" fill="rgb(248,94,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.70" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__slab_free (1 samples, 0.01%)</title><rect x="1022.7" y="197" width="0.1" height="15.0" fill="rgb(207,154,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1025.67" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>OldGeneration_releaseSpaces_92f31c7a9645056e7a2865b6edb2c7c660a90479 (1 samples, 0.01%)</title><rect x="836.6" y="325" width="0.1" height="15.0" fill="rgb(217,79,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__softirqentry_text_start (2 samples, 0.02%)</title><rect x="656.2" y="517" width="0.2" height="15.0" fill="rgb(236,138,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.16" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_pcppages_bulk (1 samples, 0.01%)</title><rect x="837.6" y="69" width="0.1" height="15.0" fill="rgb(228,226,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.56" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>workingset_update_node (1 samples, 0.01%)</title><rect x="1020.6" y="341" width="0.1" height="15.0" fill="rgb(243,169,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1023.58" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_iloc_dirty (18 samples, 0.18%)</title><rect x="1164.9" y="229" width="2.1" height="15.0" fill="rgb(232,17,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.88" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>rcu_process_callbacks (1 samples, 0.01%)</title><rect x="324.7" y="501" width="0.1" height="15.0" fill="rgb(208,42,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.65" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__radix_tree_create (1 samples, 0.01%)</title><rect x="1163.6" y="213" width="0.1" height="15.0" fill="rgb(234,66,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.60" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kblockd_schedule_work (1 samples, 0.01%)</title><rect x="522.8" y="341" width="0.1" height="15.0" fill="rgb(216,142,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_munmap (40 samples, 0.39%)</title><rect x="1054.2" y="213" width="4.6" height="15.0" fill="rgb(249,28,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.19" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__x64_sys_write (131 samples, 1.29%)</title><rect x="1156.4" y="437" width="15.2" height="15.0" fill="rgb(251,145,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.40" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>find_get_pages_range (1 samples, 0.01%)</title><rect x="1007.1" y="261" width="0.1" height="15.0" fill="rgb(216,94,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.09" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_pte_fault (1 samples, 0.01%)</title><rect x="836.3" y="453" width="0.1" height="15.0" fill="rgb(232,45,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.28" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kmem_cache_alloc (1 samples, 0.01%)</title><rect x="1163.6" y="165" width="0.1" height="15.0" fill="rgb(210,192,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.60" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock_irq (2 samples, 0.02%)</title><rect x="1162.7" y="229" width="0.2" height="15.0" fill="rgb(216,160,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1165.67" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>UTF_8_newEncoder_f41b854b1a679f6455a67f744c3e4728eadbec6f (2 samples, 0.02%)</title><rect x="1024.5" y="549" width="0.3" height="15.0" fill="rgb(217,99,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.53" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__pagevec_lru_add_fn (10 samples, 0.10%)</title><rect x="892.2" y="373" width="1.2" height="15.0" fill="rgb(220,176,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="895.21" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>jbd2_journal_try_to_free_buffers (5 samples, 0.05%)</title><rect x="1022.2" y="261" width="0.6" height="15.0" fill="rgb(252,49,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1025.21" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>jbd2_journal_stop (1 samples, 0.01%)</title><rect x="1005.8" y="277" width="0.1" height="15.0" fill="rgb(231,202,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.81" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StreamEncoder_write_4e97cd1520a323814d68f46102d125cd9f9d97f5 (32 samples, 0.32%)</title><rect x="1001.4" y="581" width="3.7" height="15.0" fill="rgb(227,60,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1004.40" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>syscall_return_via_sysret (1 samples, 0.01%)</title><rect x="1171.6" y="469" width="0.1" height="15.0" fill="rgb(225,204,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1174.63" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>node_tag_clear (2 samples, 0.02%)</title><rect x="1010.2" y="213" width="0.3" height="15.0" fill="rgb(244,114,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.23" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (1 samples, 0.01%)</title><rect x="1014.7" y="501" width="0.1" height="15.0" fill="rgb(223,225,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.65" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mem_cgroup_charge_statistics (1 samples, 0.01%)</title><rect x="893.6" y="405" width="0.1" height="15.0" fill="rgb(220,151,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="896.60" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>add_to_page_cache_lru (17 samples, 0.17%)</title><rect x="1162.4" y="261" width="2.0" height="15.0" fill="rgb(239,6,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1165.44" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mem_cgroup_try_charge (6 samples, 0.06%)</title><rect x="1082.4" y="421" width="0.7" height="15.0" fill="rgb(219,154,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1085.44" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_tag_clear (2 samples, 0.02%)</title><rect x="1010.2" y="229" width="0.3" height="15.0" fill="rgb(249,83,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.23" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>error_entry (2 samples, 0.02%)</title><rect x="835.0" y="517" width="0.2" height="15.0" fill="rgb(243,31,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="838.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StringCoding_encode_8551aed6af46af6177516d5521cd2b2e405ffbc6 (2 samples, 0.02%)</title><rect x="1014.8" y="485" width="0.2" height="15.0" fill="rgb(231,70,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.77" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_inode_dirty (1 samples, 0.01%)</title><rect x="1016.9" y="309" width="0.1" height="15.0" fill="rgb(245,31,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.86" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__alloc_pages_nodemask (9 samples, 0.09%)</title><rect x="1161.3" y="229" width="1.0" height="15.0" fill="rgb(210,9,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1164.28" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>alloc_pages_vma (1 samples, 0.01%)</title><rect x="1076.4" y="437" width="0.1" height="15.0" fill="rgb(232,142,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1079.40" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_da_write_begin (8 samples, 0.08%)</title><rect x="1003.1" y="325" width="1.0" height="15.0" fill="rgb(206,162,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__intel_pmu_enable_all.constprop.19 (4 samples, 0.04%)</title><rect x="834.1" y="389" width="0.4" height="15.0" fill="rgb(250,139,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.07" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__sched_text_start (1 samples, 0.01%)</title><rect x="656.5" y="501" width="0.1" height="15.0" fill="rgb(208,120,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.51" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>CharsetEncoder_encode_7691a6bc7f462b860dfc0a0441903c472a6bde44 (13 samples, 0.13%)</title><rect x="1001.6" y="549" width="1.5" height="15.0" fill="rgb(220,204,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1004.63" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>[unknown] (1 samples, 0.01%)</title><rect x="10.0" y="661" width="0.1" height="15.0" fill="rgb(232,150,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_block_write_begin (29 samples, 0.29%)</title><rect x="1157.7" y="293" width="3.3" height="15.0" fill="rgb(245,47,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.67" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>vfs_write (8 samples, 0.08%)</title><rect x="1012.4" y="437" width="1.0" height="15.0" fill="rgb(211,187,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.44" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_write_lock (1 samples, 0.01%)</title><rect x="1012.8" y="277" width="0.1" height="15.0" fill="rgb(226,138,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.79" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_ext_dirty (1 samples, 0.01%)</title><rect x="1008.1" y="245" width="0.2" height="15.0" fill="rgb(226,65,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.14" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_da_write_end (36 samples, 0.35%)</title><rect x="1164.8" y="309" width="4.2" height="15.0" fill="rgb(221,208,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.77" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>BufferedWriter_write_52b6ace74d1ef5487f0b678d474a58152660ddaa (788 samples, 7.77%)</title><rect x="1095.5" y="597" width="91.6" height="15.0" fill="rgb(217,194,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.47" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >BufferedWr..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_handle_port_intr (2 samples, 0.02%)</title><rect x="655.7" y="421" width="0.2" height="15.0" fill="rgb(244,182,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.70" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>MonitorSupport_monitorEnter_d39078bc763c911eab8ef2b2f718ffd7ef1a725d (1 samples, 0.01%)</title><rect x="1005.1" y="581" width="0.1" height="15.0" fill="rgb(252,27,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.12" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StreamEncoder_constructor_da029add1b58913f3c4e3ecfa14d021922b67543 (2 samples, 0.02%)</title><rect x="1024.5" y="565" width="0.3" height="15.0" fill="rgb(254,150,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.53" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mempool_alloc_slab (1 samples, 0.01%)</title><rect x="1010.5" y="197" width="0.1" height="15.0" fill="rgb(238,49,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.47" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>CharBuffer_array_8e75fa2caca432db52da5a4260ea68d35d304088 (2 samples, 0.02%)</title><rect x="1154.4" y="485" width="0.3" height="15.0" fill="rgb(238,105,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.42" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>x86_pmu_enable (4 samples, 0.04%)</title><rect x="988.5" y="453" width="0.5" height="15.0" fill="rgb(215,115,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.49" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_exit_to_usermode (4 samples, 0.04%)</title><rect x="834.1" y="533" width="0.4" height="15.0" fill="rgb(246,168,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.07" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mod_node_page_state (2 samples, 0.02%)</title><rect x="895.2" y="405" width="0.3" height="15.0" fill="rgb(211,60,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.23" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>copy_user_enhanced_fast_string (16 samples, 0.16%)</title><rect x="1169.3" y="293" width="1.9" height="15.0" fill="rgb(221,36,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1172.30" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_es_insert_extent (1 samples, 0.01%)</title><rect x="1012.8" y="293" width="0.1" height="15.0" fill="rgb(220,39,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.79" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>lru_add_drain_cpu (4 samples, 0.04%)</title><rect x="1011.0" y="261" width="0.5" height="15.0" fill="rgb(248,105,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.05" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>userfaultfd_unmap_complete (1 samples, 0.01%)</title><rect x="1188.8" y="597" width="0.2" height="15.0" fill="rgb(210,223,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1191.84" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq (2 samples, 0.02%)</title><rect x="666.0" y="565" width="0.3" height="15.0" fill="rgb(228,84,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.05" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>AbstractQueuedSynchronizer_release_a6f0f81643a4166b53eeaa75bf587c535be7bad9 (1 samples, 0.01%)</title><rect x="1001.4" y="533" width="0.1" height="15.0" fill="rgb(239,199,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1004.40" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_inode_dirty (2 samples, 0.02%)</title><rect x="1004.3" y="261" width="0.2" height="15.0" fill="rgb(251,73,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.30" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mod_zone_page_state (1 samples, 0.01%)</title><rect x="1055.7" y="69" width="0.1" height="15.0" fill="rgb(249,30,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1058.70" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_IRQ (1 samples, 0.01%)</title><rect x="989.0" y="581" width="0.1" height="15.0" fill="rgb(217,17,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>vmacache_find (2 samples, 0.02%)</title><rect x="874.4" y="453" width="0.3" height="15.0" fill="rgb(221,125,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="877.42" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>native_irq_return_iret (1 samples, 0.01%)</title><rect x="1070.3" y="517" width="0.2" height="15.0" fill="rgb(225,70,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1073.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_end_bio (4 samples, 0.04%)</title><rect x="899.4" y="405" width="0.5" height="15.0" fill="rgb(217,113,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.42" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>vm_mmap_pgoff (14 samples, 0.14%)</title><rect x="1187.3" y="613" width="1.7" height="15.0" fill="rgb(213,23,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.33" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__wake_up (1 samples, 0.01%)</title><rect x="1015.5" y="357" width="0.1" height="15.0" fill="rgb(220,226,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.47" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_irq_event_percpu (2 samples, 0.02%)</title><rect x="666.0" y="501" width="0.3" height="15.0" fill="rgb(249,102,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.05" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>irq_exit (1 samples, 0.01%)</title><rect x="210.0" y="549" width="0.1" height="15.0" fill="rgb(226,73,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__intel_pmu_enable_all.constprop.19 (1 samples, 0.01%)</title><rect x="655.5" y="357" width="0.1" height="15.0" fill="rgb(209,165,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.47" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_exit_to_usermode (1 samples, 0.01%)</title><rect x="989.1" y="581" width="0.1" height="15.0" fill="rgb(229,130,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="992.07" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>note_gp_changes (1 samples, 0.01%)</title><rect x="655.6" y="469" width="0.1" height="15.0" fill="rgb(227,88,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.58" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_mm_fault (69 samples, 0.68%)</title><rect x="1075.5" y="469" width="8.0" height="15.0" fill="rgb(223,55,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1078.47" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadingSupportImpl_resumeRecurringCallback_6c6a64896acb6734190cec19be9000424f93efea (1 samples, 0.01%)</title><rect x="1171.7" y="565" width="0.2" height="15.0" fill="rgb(209,97,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1174.74" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_page_from_freelist (9 samples, 0.09%)</title><rect x="1080.0" y="389" width="1.0" height="15.0" fill="rgb(251,13,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1083.00" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="324.7" y="565" width="0.1" height="15.0" fill="rgb(233,79,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.65" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event (2 samples, 0.02%)</title><rect x="666.0" y="533" width="0.3" height="15.0" fill="rgb(243,57,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.05" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>unmap_region (41 samples, 0.40%)</title><rect x="837.4" y="197" width="4.8" height="15.0" fill="rgb(206,225,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.44" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__inc_numa_state (2 samples, 0.02%)</title><rect x="1077.6" y="389" width="0.2" height="15.0" fill="rgb(222,85,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1080.56" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocalAllocation_disableThreadLocalAllocation_be9dc408a03f99fc9aab27e9ca39d943fc592d0e (1 samples, 0.01%)</title><rect x="842.3" y="373" width="0.1" height="15.0" fill="rgb(233,190,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="845.33" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sata_async_notification (1 samples, 0.01%)</title><rect x="666.2" y="437" width="0.1" height="15.0" fill="rgb(245,168,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.16" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>vmacache_find (2 samples, 0.02%)</title><rect x="1075.2" y="453" width="0.3" height="15.0" fill="rgb(232,44,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1078.23" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_pte_fault (159 samples, 1.57%)</title><rect x="877.2" y="437" width="18.5" height="15.0" fill="rgb(238,229,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="880.21" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_finish_command (7 samples, 0.07%)</title><rect x="899.2" y="485" width="0.8" height="15.0" fill="rgb(225,39,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.19" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ret_from_intr (2 samples, 0.02%)</title><rect x="656.2" y="565" width="0.2" height="15.0" fill="rgb(206,152,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.16" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="1018.3" y="325" width="0.1" height="15.0" fill="rgb(223,30,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.26" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Buffer_position_542e9d12d78d28ae335243c3729c7f4a18caa5f2 (1 samples, 0.01%)</title><rect x="1154.8" y="469" width="0.1" height="15.0" fill="rgb(221,37,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.77" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>vm_munmap (41 samples, 0.40%)</title><rect x="1054.2" y="229" width="4.8" height="15.0" fill="rgb(211,198,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.19" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (51 samples, 0.50%)</title><rect x="836.5" y="405" width="5.9" height="15.0" fill="rgb(252,155,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__block_commit_write.isra.37 (1 samples, 0.01%)</title><rect x="1013.1" y="293" width="0.2" height="15.0" fill="rgb(248,159,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.14" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>finish_task_switch (4 samples, 0.04%)</title><rect x="988.5" y="501" width="0.5" height="15.0" fill="rgb(231,26,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.49" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_pte_fault (1 samples, 0.01%)</title><rect x="1189.4" y="597" width="0.1" height="15.0" fill="rgb(236,198,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.42" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_fault (115 samples, 1.13%)</title><rect x="1070.5" y="517" width="13.3" height="15.0" fill="rgb(243,78,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1073.47" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_sync_write (8 samples, 0.08%)</title><rect x="1012.4" y="405" width="1.0" height="15.0" fill="rgb(221,54,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.44" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mempool_alloc (1 samples, 0.01%)</title><rect x="1010.5" y="213" width="0.1" height="15.0" fill="rgb(237,92,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.47" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getblk_gfp (1 samples, 0.01%)</title><rect x="1018.1" y="325" width="0.2" height="15.0" fill="rgb(237,186,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.14" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="24.3" y="597" width="0.1" height="15.0" fill="rgb(252,147,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.30" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq (1 samples, 0.01%)</title><rect x="1095.3" y="565" width="0.2" height="15.0" fill="rgb(209,110,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.35" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileOutputStream_close0_362853bc107a46b03ca53cb5e7bddcc71a7356b3 (59 samples, 0.58%)</title><rect x="1005.3" y="517" width="6.9" height="15.0" fill="rgb(254,35,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>memcg_check_events (1 samples, 0.01%)</title><rect x="895.0" y="421" width="0.1" height="15.0" fill="rgb(217,34,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.00" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_do_update_inode (1 samples, 0.01%)</title><rect x="1004.3" y="229" width="0.1" height="15.0" fill="rgb(216,12,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.30" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_reserve_inode_write (1 samples, 0.01%)</title><rect x="1008.1" y="213" width="0.2" height="15.0" fill="rgb(230,6,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.14" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ctx_resched (4 samples, 0.04%)</title><rect x="1189.5" y="549" width="0.5" height="15.0" fill="rgb(208,224,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>node_tag_clear (1 samples, 0.01%)</title><rect x="1010.1" y="229" width="0.1" height="15.0" fill="rgb(237,12,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.12" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__hrtimer_next_event_base (1 samples, 0.01%)</title><rect x="899.0" y="517" width="0.1" height="15.0" fill="rgb(211,28,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="901.95" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocalAllocation_allocateNewArray_6872ef260866016ebc81dcc29eed7b36e33e807d (284 samples, 2.80%)</title><rect x="1052.8" y="549" width="33.0" height="15.0" fill="rgb(236,225,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1055.79" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Th..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_iloc_dirty (1 samples, 0.01%)</title><rect x="1004.3" y="245" width="0.1" height="15.0" fill="rgb(237,168,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.30" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq (1 samples, 0.01%)</title><rect x="988.3" y="549" width="0.1" height="15.0" fill="rgb(230,121,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.26" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>delete_node (1 samples, 0.01%)</title><rect x="1163.7" y="197" width="0.1" height="15.0" fill="rgb(239,187,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.72" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>File_isInvalid_a67c3292982019abd96b0673acc378520ce091ed (1 samples, 0.01%)</title><rect x="1024.1" y="565" width="0.1" height="15.0" fill="rgb(224,214,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.07" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ReentrantLock_unlock_86cdca028e9dd52644b7822ba738ec004cf0c360 (1 samples, 0.01%)</title><rect x="1001.4" y="549" width="0.1" height="15.0" fill="rgb(231,188,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1004.40" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>PosixUtils_writeBytes_9bbafb3099ccd07c958c0c9b902946849d0d1b4b (1 samples, 0.01%)</title><rect x="1012.3" y="517" width="0.1" height="15.0" fill="rgb(224,151,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.33" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_IRQ (1 samples, 0.01%)</title><rect x="988.3" y="565" width="0.1" height="15.0" fill="rgb(206,12,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.26" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sd_setup_read_write_cmnd (2 samples, 0.02%)</title><rect x="1006.9" y="149" width="0.2" height="15.0" fill="rgb(215,190,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.86" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>timekeeping_update (1 samples, 0.01%)</title><rect x="665.8" y="453" width="0.1" height="15.0" fill="rgb(233,139,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="668.81" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__munmap (45 samples, 0.44%)</title><rect x="837.1" y="293" width="5.2" height="15.0" fill="rgb(216,87,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.09" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_do_update_inode (5 samples, 0.05%)</title><rect x="1017.1" y="245" width="0.6" height="15.0" fill="rgb(252,157,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.09" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tlb_flush_mmu_free (22 samples, 0.22%)</title><rect x="837.7" y="149" width="2.5" height="15.0" fill="rgb(205,181,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.67" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__lru_cache_add (4 samples, 0.04%)</title><rect x="1164.0" y="229" width="0.4" height="15.0" fill="rgb(234,110,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.95" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>String_getChars_c1abef6cde0009d1f55ec852da6e07b19eb1cade (131 samples, 1.29%)</title><rect x="1171.9" y="581" width="15.2" height="15.0" fill="rgb(249,124,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1174.86" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__hrtimer_run_queues (2 samples, 0.02%)</title><rect x="655.3" y="501" width="0.3" height="15.0" fill="rgb(219,101,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.35" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wake_up_process (1 samples, 0.01%)</title><rect x="210.0" y="309" width="0.1" height="15.0" fill="rgb(247,163,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_end_request (2 samples, 0.02%)</title><rect x="655.9" y="421" width="0.3" height="15.0" fill="rgb(225,64,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.93" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_IRQ (1 samples, 0.01%)</title><rect x="1187.1" y="597" width="0.1" height="15.0" fill="rgb(253,219,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_init_io (2 samples, 0.02%)</title><rect x="1006.9" y="133" width="0.2" height="15.0" fill="rgb(254,64,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.86" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="892.0" y="341" width="0.1" height="15.0" fill="rgb(248,177,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="894.98" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (211 samples, 2.08%)</title><rect x="810.0" y="565" width="24.5" height="15.0" fill="rgb(212,213,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="813.00" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ksys_write (8 samples, 0.08%)</title><rect x="1012.4" y="453" width="1.0" height="15.0" fill="rgb(238,73,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.44" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Arrays_copyOfRange_44af6801cd3e4d3e23710818bfffaaa061f120b5 (423 samples, 4.17%)</title><rect x="1036.6" y="597" width="49.2" height="15.0" fill="rgb(243,29,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1039.63" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Arra..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_ext_map_blocks (4 samples, 0.04%)</title><rect x="1160.5" y="261" width="0.4" height="15.0" fill="rgb(223,69,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1163.47" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_cond_resched (1 samples, 0.01%)</title><rect x="1083.7" y="485" width="0.1" height="15.0" fill="rgb(209,109,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1086.72" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>down_read_trylock (1 samples, 0.01%)</title><rect x="1075.1" y="469" width="0.1" height="15.0" fill="rgb(208,175,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1078.12" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__entry_trampoline_start (1 samples, 0.01%)</title><rect x="10.0" y="629" width="0.1" height="15.0" fill="rgb(229,133,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>link_path_walk (1 samples, 0.01%)</title><rect x="1023.0" y="437" width="0.1" height="15.0" fill="rgb(210,183,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.02" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tlb_finish_mmu (24 samples, 0.24%)</title><rect x="837.4" y="181" width="2.8" height="15.0" fill="rgb(220,214,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.44" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mem_cgroup_uncharge_list (1 samples, 0.01%)</title><rect x="1019.8" y="325" width="0.1" height="15.0" fill="rgb(237,129,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1022.77" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>unmap_vmas (17 samples, 0.17%)</title><rect x="840.2" y="181" width="2.0" height="15.0" fill="rgb(216,127,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="843.23" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>queue_work_on (1 samples, 0.01%)</title><rect x="1187.1" y="389" width="0.1" height="15.0" fill="rgb(212,96,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>workingset_update_node (1 samples, 0.01%)</title><rect x="1163.8" y="213" width="0.2" height="15.0" fill="rgb(205,162,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.84" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>alloc_pages_vma (1 samples, 0.01%)</title><rect x="1053.0" y="421" width="0.1" height="15.0" fill="rgb(223,179,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.02" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__perf_event_task_sched_in (4 samples, 0.04%)</title><rect x="988.5" y="485" width="0.5" height="15.0" fill="rgb(237,162,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.49" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__x64_sys_write (8 samples, 0.08%)</title><rect x="1012.4" y="469" width="1.0" height="15.0" fill="rgb(240,148,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.44" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_finish_request (1 samples, 0.01%)</title><rect x="1187.1" y="469" width="0.1" height="15.0" fill="rgb(246,149,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tick_do_update_jiffies64.part.15 (1 samples, 0.01%)</title><rect x="665.8" y="485" width="0.1" height="15.0" fill="rgb(243,154,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="668.81" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Space_extractUnalignedHeapChunkUninterruptibly_7a1e0add9b45670a72e53262bd46bbb6d72fdf7d (1 samples, 0.01%)</title><rect x="1053.8" y="261" width="0.2" height="15.0" fill="rgb(215,200,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.84" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mark_buffer_dirty (8 samples, 0.08%)</title><rect x="1167.9" y="245" width="0.9" height="15.0" fill="rgb(206,108,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1170.91" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_discard_preallocations (1 samples, 0.01%)</title><rect x="1012.0" y="373" width="0.1" height="15.0" fill="rgb(218,228,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.98" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_update_request (4 samples, 0.04%)</title><rect x="899.4" y="437" width="0.5" height="15.0" fill="rgb(211,62,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.42" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>current_time (2 samples, 0.02%)</title><rect x="1016.4" y="373" width="0.2" height="15.0" fill="rgb(208,7,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.40" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_vma_policy.part.37 (1 samples, 0.01%)</title><rect x="890.3" y="405" width="0.2" height="15.0" fill="rgb(238,139,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="893.35" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_single_level_irq_intr (2 samples, 0.02%)</title><rect x="655.7" y="437" width="0.2" height="15.0" fill="rgb(230,167,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.70" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kmem_cache_alloc (1 samples, 0.01%)</title><rect x="1010.5" y="181" width="0.1" height="15.0" fill="rgb(232,210,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.47" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>exit_to_usermode_loop (1 samples, 0.01%)</title><rect x="656.5" y="533" width="0.1" height="15.0" fill="rgb(240,186,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.51" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>alloc_pages_current (10 samples, 0.10%)</title><rect x="1161.3" y="245" width="1.1" height="15.0" fill="rgb(220,146,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1164.28" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_next_chunk (1 samples, 0.01%)</title><rect x="1021.3" y="341" width="0.1" height="15.0" fill="rgb(234,33,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1024.28" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>truncate_pagecache (35 samples, 0.34%)</title><rect x="1018.7" y="389" width="4.1" height="15.0" fill="rgb(253,48,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.72" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>elv_rqhash_add (1 samples, 0.01%)</title><rect x="1006.3" y="261" width="0.1" height="15.0" fill="rgb(236,21,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.28" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ttwu_do_activate (1 samples, 0.01%)</title><rect x="899.3" y="277" width="0.1" height="15.0" fill="rgb(239,126,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.30" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_fault (11 samples, 0.11%)</title><rect x="835.2" y="517" width="1.3" height="15.0" fill="rgb(214,102,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="838.23" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_alloc_da_blocks (54 samples, 0.53%)</title><rect x="1005.7" y="373" width="6.3" height="15.0" fill="rgb(209,203,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.70" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__dec_node_page_state (1 samples, 0.01%)</title><rect x="842.1" y="117" width="0.1" height="15.0" fill="rgb(250,108,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="845.09" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>AbstractStringBuilder_ensureCapacityInternal_6c1965fadc041359c5b520824fb0c3149b756fa7 (105 samples, 1.03%)</title><rect x="989.2" y="613" width="12.2" height="15.0" fill="rgb(254,22,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="992.19" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_finish_bio (2 samples, 0.02%)</title><rect x="655.9" y="357" width="0.3" height="15.0" fill="rgb(243,98,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.93" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event (1 samples, 0.01%)</title><rect x="24.4" y="549" width="0.1" height="15.0" fill="rgb(241,52,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.42" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>percpu_counter_add_batch (1 samples, 0.01%)</title><rect x="1009.0" y="229" width="0.1" height="15.0" fill="rgb(245,178,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.95" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__add_to_page_cache_locked (2 samples, 0.02%)</title><rect x="1003.7" y="261" width="0.3" height="15.0" fill="rgb(240,144,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.72" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_task_policy.part.33 (1 samples, 0.01%)</title><rect x="890.3" y="389" width="0.2" height="15.0" fill="rgb(236,128,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="893.35" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>jbd2__journal_start (1 samples, 0.01%)</title><rect x="1003.1" y="293" width="0.2" height="15.0" fill="rgb(229,94,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocalAllocation_allocateLargeArray_046612c37d1e778673ff8e8e07c89bdf84cd3443 (231 samples, 2.28%)</title><rect x="1059.0" y="533" width="26.8" height="15.0" fill="rgb(225,58,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1061.95" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >T..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kmem_cache_alloc (1 samples, 0.01%)</title><rect x="1160.6" y="197" width="0.1" height="15.0" fill="rgb(249,9,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1163.58" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="988.3" y="501" width="0.1" height="15.0" fill="rgb(249,135,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.26" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>irq_exit (1 samples, 0.01%)</title><rect x="324.7" y="533" width="0.1" height="15.0" fill="rgb(233,135,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.65" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>end_page_writeback (1 samples, 0.01%)</title><rect x="666.3" y="389" width="0.1" height="15.0" fill="rgb(225,126,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.28" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_ext_search_right (1 samples, 0.01%)</title><rect x="1008.3" y="261" width="0.1" height="15.0" fill="rgb(231,1,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.26" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_block_bitmap_csum_set (3 samples, 0.03%)</title><rect x="1008.6" y="229" width="0.4" height="15.0" fill="rgb(220,113,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.60" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>exit_to_usermode_loop (4 samples, 0.04%)</title><rect x="988.5" y="549" width="0.5" height="15.0" fill="rgb(212,59,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.49" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_IRQ (2 samples, 0.02%)</title><rect x="656.2" y="549" width="0.2" height="15.0" fill="rgb(245,60,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.16" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_journal_stop (1 samples, 0.01%)</title><rect x="1015.5" y="389" width="0.1" height="15.0" fill="rgb(233,186,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.47" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__es_insert_extent (2 samples, 0.02%)</title><rect x="1159.7" y="245" width="0.2" height="15.0" fill="rgb(247,78,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1162.65" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>put_prev_entity (1 samples, 0.01%)</title><rect x="656.5" y="469" width="0.1" height="15.0" fill="rgb(242,220,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.51" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>memset_erms (1 samples, 0.01%)</title><rect x="1157.2" y="261" width="0.1" height="15.0" fill="rgb(242,151,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.21" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileOutputStream_write_77a961b31b4bf135a96f887cf8e3edd3bf440ac1 (17 samples, 0.17%)</title><rect x="1003.1" y="533" width="2.0" height="15.0" fill="rgb(223,38,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>HeapChunkProvider_resetAlignedHeapChunk_3b0d29e3728eb7a6fc10e5e8f65655e2b0d220ca (1 samples, 0.01%)</title><rect x="898.8" y="501" width="0.2" height="15.0" fill="rgb(209,95,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="901.84" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_end_request (1 samples, 0.01%)</title><rect x="210.0" y="453" width="0.1" height="15.0" fill="rgb(216,228,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>rcu_irq_enter (1 samples, 0.01%)</title><rect x="892.0" y="309" width="0.1" height="15.0" fill="rgb(241,173,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="894.98" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_reserve_inode_write (5 samples, 0.05%)</title><rect x="1167.0" y="229" width="0.6" height="15.0" fill="rgb(251,20,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1169.98" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>raw_notifier_call_chain (1 samples, 0.01%)</title><rect x="655.3" y="405" width="0.2" height="15.0" fill="rgb(252,29,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.35" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_get_inode_loc (1 samples, 0.01%)</title><rect x="1008.1" y="197" width="0.2" height="15.0" fill="rgb(245,5,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.14" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ttwu_do_activate (1 samples, 0.01%)</title><rect x="210.0" y="277" width="0.1" height="15.0" fill="rgb(248,148,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>exit_to_usermode_loop (4 samples, 0.04%)</title><rect x="1154.9" y="453" width="0.4" height="15.0" fill="rgb(208,111,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.88" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_handle_port_intr (1 samples, 0.01%)</title><rect x="989.0" y="469" width="0.1" height="15.0" fill="rgb(218,68,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_syscall_64 (1 samples, 0.01%)</title><rect x="1187.2" y="677" width="0.1" height="15.0" fill="rgb(238,49,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.21" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scheduler_tick (1 samples, 0.01%)</title><rect x="655.5" y="437" width="0.1" height="15.0" fill="rgb(205,75,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.47" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sync_regs (1 samples, 0.01%)</title><rect x="835.1" y="501" width="0.1" height="15.0" fill="rgb(251,116,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="838.12" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>find_get_entry (2 samples, 0.02%)</title><rect x="1164.4" y="261" width="0.3" height="15.0" fill="rgb(251,194,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.42" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StreamEncoder_implWrite_48b8c9563303fbfb3ecc4133f4cb253ae9ad5c52 (650 samples, 6.41%)</title><rect x="1096.2" y="549" width="75.5" height="15.0" fill="rgb(250,93,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1099.16" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >StreamEn..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>irq_enter (1 samples, 0.01%)</title><rect x="892.0" y="325" width="0.1" height="15.0" fill="rgb(213,229,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="894.98" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>try_to_wake_up (1 samples, 0.01%)</title><rect x="899.3" y="293" width="0.1" height="15.0" fill="rgb(213,206,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.30" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mod_zone_page_state (1 samples, 0.01%)</title><rect x="1082.0" y="357" width="0.1" height="15.0" fill="rgb(253,156,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1084.98" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>find_get_pages_range_tag (1 samples, 0.01%)</title><rect x="1011.7" y="261" width="0.2" height="15.0" fill="rgb(225,201,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.74" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_releasepage (5 samples, 0.05%)</title><rect x="1022.2" y="277" width="0.6" height="15.0" fill="rgb(252,44,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1025.21" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>down_write_killable (1 samples, 0.01%)</title><rect x="1058.8" y="213" width="0.2" height="15.0" fill="rgb(228,105,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1061.84" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>security_capable (1 samples, 0.01%)</title><rect x="1023.5" y="373" width="0.1" height="15.0" fill="rgb(222,160,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.49" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_journal_start_sb (5 samples, 0.05%)</title><rect x="1157.1" y="293" width="0.6" height="15.0" fill="rgb(218,50,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.09" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>security_file_permission (1 samples, 0.01%)</title><rect x="1005.0" y="389" width="0.1" height="15.0" fill="rgb(227,71,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.00" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (75 samples, 0.74%)</title><rect x="210.1" y="597" width="8.7" height="15.0" fill="rgb(240,118,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.12" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>release_pages (1 samples, 0.01%)</title><rect x="1164.3" y="197" width="0.1" height="15.0" fill="rgb(235,33,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.30" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_IRQ (4 samples, 0.04%)</title><rect x="655.7" y="533" width="0.5" height="15.0" fill="rgb(248,120,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.70" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_pcppages_bulk (6 samples, 0.06%)</title><rect x="839.3" y="69" width="0.7" height="15.0" fill="rgb(236,16,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="842.30" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_ext_rm_leaf (12 samples, 0.12%)</title><rect x="1016.7" y="341" width="1.4" height="15.0" fill="rgb(238,120,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.74" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_bio_write_page (14 samples, 0.14%)</title><rect x="1009.3" y="261" width="1.6" height="15.0" fill="rgb(210,181,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1012.30" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_evictable (1 samples, 0.01%)</title><rect x="1011.3" y="213" width="0.1" height="15.0" fill="rgb(244,117,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.28" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_inode_dirty (1 samples, 0.01%)</title><rect x="1013.0" y="277" width="0.1" height="15.0" fill="rgb(235,210,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.02" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_finish_command (1 samples, 0.01%)</title><rect x="522.8" y="453" width="0.1" height="15.0" fill="rgb(238,27,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>HeapCharBuffer_constructor_54f4635367554c2867d3f4c4ecedd3a286e348d8 (1 samples, 0.01%)</title><rect x="1096.3" y="517" width="0.1" height="15.0" fill="rgb(220,181,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1099.28" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GraalIssue974_main_0bcfb65da40aa24ef57e64e58045c93e8c1a7ff2 (9,998 samples, 98.52%)</title><rect x="24.7" y="629" width="1162.5" height="15.0" fill="rgb(240,92,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.65" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >GraalIssue974_main_0bcfb65da40aa24ef57e64e58045c93e8c1a7ff2</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_mapping (1 samples, 0.01%)</title><rect x="1004.8" y="245" width="0.1" height="15.0" fill="rgb(242,13,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.77" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>arch_tlb_finish_mmu (23 samples, 0.23%)</title><rect x="837.6" y="165" width="2.6" height="15.0" fill="rgb(209,2,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.56" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_dirty_inode (23 samples, 0.23%)</title><rect x="1164.9" y="261" width="2.7" height="15.0" fill="rgb(254,64,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.88" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_softirq_done (7 samples, 0.07%)</title><rect x="899.2" y="501" width="0.8" height="15.0" fill="rgb(249,209,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.19" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileOutputStream_write_77a961b31b4bf135a96f887cf8e3edd3bf440ac1 (141 samples, 1.39%)</title><rect x="1155.3" y="517" width="16.4" height="15.0" fill="rgb(214,181,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1158.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mod_node_page_state (1 samples, 0.01%)</title><rect x="1083.3" y="405" width="0.1" height="15.0" fill="rgb(227,109,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1086.26" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_unref_page_list (6 samples, 0.06%)</title><rect x="1055.3" y="101" width="0.7" height="15.0" fill="rgb(241,214,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1058.35" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>truncate_inode_pages_range (34 samples, 0.34%)</title><rect x="1018.8" y="373" width="4.0" height="15.0" fill="rgb(212,212,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.84" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>grab_cache_page_write_begin (30 samples, 0.30%)</title><rect x="1161.2" y="293" width="3.5" height="15.0" fill="rgb(219,69,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1164.16" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__filemap_fdatawrite_range (54 samples, 0.53%)</title><rect x="1005.7" y="341" width="6.3" height="15.0" fill="rgb(248,198,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.70" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>task_work_run (57 samples, 0.56%)</title><rect x="1005.6" y="437" width="6.6" height="15.0" fill="rgb(212,22,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.58" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__softirqentry_text_start (1 samples, 0.01%)</title><rect x="522.8" y="501" width="0.1" height="15.0" fill="rgb(241,95,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Space_releaseUnalignedHeapChunks_e7221d17760242bb1ff4d4339ca865890c2da625 (47 samples, 0.46%)</title><rect x="836.9" y="309" width="5.4" height="15.0" fill="rgb(243,68,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.86" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_vma_policy.part.37 (1 samples, 0.01%)</title><rect x="890.7" y="421" width="0.1" height="15.0" fill="rgb(216,87,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="893.70" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>JavaMainWrapper_run_5087f5482cc9a6abc971913ece43acb471d2631b (10,123 samples, 99.75%)</title><rect x="10.1" y="645" width="1177.1" height="15.0" fill="rgb(251,63,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.12" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >JavaMainWrapper_run_5087f5482cc9a6abc971913ece43acb471d2631b</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_pte_fault (4 samples, 0.04%)</title><rect x="835.8" y="437" width="0.5" height="15.0" fill="rgb(217,80,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="838.81" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>UTF_8$Encoder_encodeLoop_43b2c5e18c09dbd0ecfea76c24981625fe474c29 (506 samples, 4.99%)</title><rect x="1096.5" y="517" width="58.8" height="15.0" fill="rgb(215,41,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1099.51" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >UTF_8$..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>update_wall_time (1 samples, 0.01%)</title><rect x="655.3" y="437" width="0.2" height="15.0" fill="rgb(220,33,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.35" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>release_pages (1 samples, 0.01%)</title><rect x="1082.2" y="373" width="0.1" height="15.0" fill="rgb(214,227,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1085.21" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="841.7" y="133" width="0.2" height="15.0" fill="rgb(241,146,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="844.74" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ret_from_intr (1 samples, 0.01%)</title><rect x="988.3" y="581" width="0.1" height="15.0" fill="rgb(215,72,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.26" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>jbd2_journal_stop (1 samples, 0.01%)</title><rect x="1015.5" y="373" width="0.1" height="15.0" fill="rgb(252,64,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.47" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_pcppages_bulk (1 samples, 0.01%)</title><rect x="836.6" y="53" width="0.1" height="15.0" fill="rgb(208,93,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bio_endio (2 samples, 0.02%)</title><rect x="655.9" y="389" width="0.3" height="15.0" fill="rgb(205,172,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.93" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generic_make_request_checks (1 samples, 0.01%)</title><rect x="1008.0" y="245" width="0.1" height="15.0" fill="rgb(246,128,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.02" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ReentrantLock_unlock_86cdca028e9dd52644b7822ba738ec004cf0c360 (1 samples, 0.01%)</title><rect x="1096.0" y="533" width="0.2" height="15.0" fill="rgb(238,222,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1099.05" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>try_to_wake_up (1 samples, 0.01%)</title><rect x="1187.1" y="325" width="0.1" height="15.0" fill="rgb(218,163,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>x86_pmu_enable (4 samples, 0.04%)</title><rect x="1154.9" y="357" width="0.4" height="15.0" fill="rgb(251,183,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.88" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__slab_alloc (1 samples, 0.01%)</title><rect x="1157.9" y="213" width="0.1" height="15.0" fill="rgb(239,49,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.91" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_inode_csum_set (2 samples, 0.02%)</title><rect x="1018.4" y="325" width="0.2" height="15.0" fill="rgb(215,74,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.37" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_es_find_delayed_extent_range (1 samples, 0.01%)</title><rect x="1160.5" y="229" width="0.1" height="15.0" fill="rgb(215,41,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1163.47" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_handle_port_interrupt (2 samples, 0.02%)</title><rect x="655.7" y="405" width="0.2" height="15.0" fill="rgb(218,226,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.70" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_update_request (1 samples, 0.01%)</title><rect x="666.3" y="453" width="0.1" height="15.0" fill="rgb(233,108,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.28" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_ext_remove_space (13 samples, 0.13%)</title><rect x="1016.6" y="357" width="1.5" height="15.0" fill="rgb(249,163,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.63" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crc32c_pcl_intel_update (1 samples, 0.01%)</title><rect x="1017.7" y="277" width="0.1" height="15.0" fill="rgb(235,118,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.67" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_dirty_inode (5 samples, 0.05%)</title><rect x="1017.1" y="293" width="0.6" height="15.0" fill="rgb(234,182,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.09" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_truncate (20 samples, 0.20%)</title><rect x="1016.3" y="389" width="2.3" height="15.0" fill="rgb(247,121,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.28" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_handle_port_intr (1 samples, 0.01%)</title><rect x="666.2" y="469" width="0.1" height="15.0" fill="rgb(235,90,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.16" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__page_set_anon_rmap (1 samples, 0.01%)</title><rect x="1083.4" y="405" width="0.1" height="15.0" fill="rgb(239,190,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1086.37" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_evictable (1 samples, 0.01%)</title><rect x="1082.1" y="373" width="0.1" height="15.0" fill="rgb(244,36,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1085.09" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_handle_port_intr (1 samples, 0.01%)</title><rect x="1095.3" y="469" width="0.2" height="15.0" fill="rgb(239,194,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.35" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>entry_SYSCALL_64_after_hwframe (8 samples, 0.08%)</title><rect x="1012.4" y="501" width="1.0" height="15.0" fill="rgb(212,197,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.44" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>___slab_alloc (1 samples, 0.01%)</title><rect x="1157.9" y="197" width="0.1" height="15.0" fill="rgb(216,183,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.91" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_journal_stop (1 samples, 0.01%)</title><rect x="1164.8" y="293" width="0.1" height="15.0" fill="rgb(229,203,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.77" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="665.8" y="581" width="0.1" height="15.0" fill="rgb(237,209,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="668.81" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ata_qc_complete (1 samples, 0.01%)</title><rect x="209.9" y="405" width="0.1" height="15.0" fill="rgb(246,186,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tick_sched_do_timer (1 samples, 0.01%)</title><rect x="655.3" y="469" width="0.2" height="15.0" fill="rgb(208,19,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.35" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_unref_page (1 samples, 0.01%)</title><rect x="837.6" y="101" width="0.1" height="15.0" fill="rgb(233,8,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.56" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>jbd2_journal_stop (1 samples, 0.01%)</title><rect x="1016.3" y="357" width="0.1" height="15.0" fill="rgb(233,201,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.28" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>HeapPolicy_getMaximumHeapSize_88c8b25e403f9f04be36fd6193deb0da43c25a47 (1 samples, 0.01%)</title><rect x="842.4" y="533" width="0.2" height="15.0" fill="rgb(211,199,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="845.44" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__set_page_dirty (1 samples, 0.01%)</title><rect x="1013.1" y="261" width="0.2" height="15.0" fill="rgb(221,201,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.14" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_ext_dirty (1 samples, 0.01%)</title><rect x="1016.9" y="325" width="0.1" height="15.0" fill="rgb(223,17,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.86" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_ext_check (1 samples, 0.01%)</title><rect x="1016.6" y="341" width="0.1" height="15.0" fill="rgb(217,204,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.63" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileDescriptor_closeAll_118f22c38727d7d8ef026031c35a5b8d8d4bd011 (60 samples, 0.59%)</title><rect x="1005.2" y="549" width="7.0" height="15.0" fill="rgb(233,208,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.23" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_extend (1 samples, 0.01%)</title><rect x="1163.6" y="197" width="0.1" height="15.0" fill="rgb(237,115,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.60" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event (1 samples, 0.01%)</title><rect x="1095.3" y="533" width="0.2" height="15.0" fill="rgb(232,23,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.35" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock_irqsave (1 samples, 0.01%)</title><rect x="899.8" y="341" width="0.1" height="15.0" fill="rgb(232,207,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.77" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_request_fn (6 samples, 0.06%)</title><rect x="1006.4" y="229" width="0.7" height="15.0" fill="rgb(233,148,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.40" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>arch_tlb_finish_mmu (1 samples, 0.01%)</title><rect x="836.6" y="149" width="0.1" height="15.0" fill="rgb(221,56,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>jbd2__journal_start (5 samples, 0.05%)</title><rect x="1157.1" y="277" width="0.6" height="15.0" fill="rgb(218,225,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.09" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>perf_event_mmap (5 samples, 0.05%)</title><rect x="1187.4" y="565" width="0.6" height="15.0" fill="rgb(245,161,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.44" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_pcppages_bulk (2 samples, 0.02%)</title><rect x="1055.8" y="69" width="0.2" height="15.0" fill="rgb(237,165,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1058.81" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crypto_shash_update (3 samples, 0.03%)</title><rect x="1017.3" y="197" width="0.4" height="15.0" fill="rgb(208,70,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.33" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>x86_pmu_enable (4 samples, 0.04%)</title><rect x="1189.5" y="517" width="0.5" height="15.0" fill="rgb(243,99,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_queue_split (4 samples, 0.04%)</title><rect x="1007.2" y="229" width="0.5" height="15.0" fill="rgb(207,221,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.21" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ret_from_intr (1 samples, 0.01%)</title><rect x="24.4" y="613" width="0.1" height="15.0" fill="rgb(250,128,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.42" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mod_node_page_state (1 samples, 0.01%)</title><rect x="839.0" y="101" width="0.1" height="15.0" fill="rgb(212,95,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="841.95" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kernel_poison_pages (3 samples, 0.03%)</title><rect x="889.9" y="389" width="0.3" height="15.0" fill="rgb(217,191,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="892.88" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>entry_SYSCALL_64_after_hwframe (78 samples, 0.77%)</title><rect x="1015.0" y="533" width="9.1" height="15.0" fill="rgb(218,115,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="899.1" y="485" width="0.1" height="15.0" fill="rgb(254,155,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.07" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>swapgs_restore_regs_and_return_to_usermode (5 samples, 0.05%)</title><rect x="988.4" y="581" width="0.6" height="15.0" fill="rgb(218,183,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.37" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock_irqsave (1 samples, 0.01%)</title><rect x="1010.0" y="229" width="0.1" height="15.0" fill="rgb(213,43,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.00" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kblockd_schedule_work (1 samples, 0.01%)</title><rect x="1187.1" y="405" width="0.1" height="15.0" fill="rgb(231,165,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>clean_bdev_aliases (1 samples, 0.01%)</title><rect x="1007.1" y="293" width="0.1" height="15.0" fill="rgb(246,158,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.09" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__pagevec_lru_add_fn (2 samples, 0.02%)</title><rect x="1019.1" y="309" width="0.2" height="15.0" fill="rgb(210,124,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1022.07" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (2 samples, 0.02%)</title><rect x="1053.3" y="341" width="0.2" height="15.0" fill="rgb(237,123,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event (1 samples, 0.01%)</title><rect x="899.1" y="517" width="0.1" height="15.0" fill="rgb(225,103,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.07" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mb_new_blocks (7 samples, 0.07%)</title><rect x="1008.4" y="261" width="0.8" height="15.0" fill="rgb(224,214,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.37" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_done_softirq (2 samples, 0.02%)</title><rect x="656.2" y="501" width="0.2" height="15.0" fill="rgb(225,224,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.16" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>i8042_interrupt (1 samples, 0.01%)</title><rect x="895.9" y="357" width="0.1" height="15.0" fill="rgb(238,98,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.93" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>memcg_check_events (2 samples, 0.02%)</title><rect x="893.7" y="405" width="0.3" height="15.0" fill="rgb(211,170,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="896.72" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mb_mark_diskspace_used (4 samples, 0.04%)</title><rect x="1008.6" y="245" width="0.5" height="15.0" fill="rgb(249,116,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.60" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>irq_exit (1 samples, 0.01%)</title><rect x="666.3" y="565" width="0.1" height="15.0" fill="rgb(252,108,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.28" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_cache_tree_insert (3 samples, 0.03%)</title><rect x="1163.6" y="229" width="0.4" height="15.0" fill="rgb(239,216,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.60" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_cond_resched (1 samples, 0.01%)</title><rect x="1167.2" y="197" width="0.1" height="15.0" fill="rgb(208,33,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1170.21" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_edge_irq (1 samples, 0.01%)</title><rect x="1095.3" y="549" width="0.2" height="15.0" fill="rgb(218,152,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.35" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="1157.7" y="277" width="0.1" height="15.0" fill="rgb(208,133,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.67" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_cache_free_page.isra.31 (2 samples, 0.02%)</title><rect x="1020.3" y="341" width="0.3" height="15.0" fill="rgb(234,222,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1023.35" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__lru_cache_add (1 samples, 0.01%)</title><rect x="1004.0" y="245" width="0.1" height="15.0" fill="rgb(250,224,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.95" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>grab_cache_page_write_begin (7 samples, 0.07%)</title><rect x="1003.3" y="309" width="0.8" height="15.0" fill="rgb(229,214,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.26" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_counter_cancel (1 samples, 0.01%)</title><rect x="1019.8" y="277" width="0.1" height="15.0" fill="rgb(210,141,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1022.77" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>String_indexOf_fd51eaf67581a1aef7138531dcc47ff2cf05138c (1 samples, 0.01%)</title><rect x="1024.1" y="549" width="0.1" height="15.0" fill="rgb(237,22,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.07" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_pte_fault (60 samples, 0.59%)</title><rect x="1076.5" y="437" width="7.0" height="15.0" fill="rgb(206,89,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1079.51" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tick_sched_timer (1 samples, 0.01%)</title><rect x="24.3" y="549" width="0.1" height="15.0" fill="rgb(218,94,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.30" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>swapgs_restore_regs_and_return_to_usermode (2 samples, 0.02%)</title><rect x="656.4" y="565" width="0.2" height="15.0" fill="rgb(218,12,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.40" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>node_dirty_ok (1 samples, 0.01%)</title><rect x="1003.6" y="213" width="0.1" height="15.0" fill="rgb(241,111,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.60" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__wake_up_common_lock (1 samples, 0.01%)</title><rect x="1015.5" y="341" width="0.1" height="15.0" fill="rgb(217,171,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.47" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_IRQ (3 samples, 0.03%)</title><rect x="666.0" y="581" width="0.4" height="15.0" fill="rgb(211,194,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.05" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_edge_irq (2 samples, 0.02%)</title><rect x="666.0" y="549" width="0.3" height="15.0" fill="rgb(223,57,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.05" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (51 samples, 0.50%)</title><rect x="836.5" y="453" width="5.9" height="15.0" fill="rgb(211,44,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kmem_cache_alloc (1 samples, 0.01%)</title><rect x="1054.3" y="165" width="0.1" height="15.0" fill="rgb(233,98,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.30" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocal$ThreadLocalMap_getEntry_4af9115056b8e3810deb26f84b6e52e5c1410038 (1 samples, 0.01%)</title><rect x="1014.9" y="437" width="0.1" height="15.0" fill="rgb(241,1,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.88" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>try_charge (2 samples, 0.02%)</title><rect x="1082.9" y="405" width="0.2" height="15.0" fill="rgb(207,22,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1085.91" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_evictable (1 samples, 0.01%)</title><rect x="893.4" y="373" width="0.1" height="15.0" fill="rgb(236,93,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="896.37" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_done_softirq (7 samples, 0.07%)</title><rect x="899.2" y="517" width="0.8" height="15.0" fill="rgb(210,115,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.19" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>MonitorSupport_monitorExit_04daa9017da69170a81dec9e2100551226ab5b8a (1 samples, 0.01%)</title><rect x="1095.6" y="565" width="0.1" height="15.0" fill="rgb(220,49,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.58" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_pcp_prepare (1 samples, 0.01%)</title><rect x="839.2" y="85" width="0.1" height="15.0" fill="rgb(208,43,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="842.19" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>OSCommittedMemoryProvider_free_c2bc7dae826b0ce6c30783fd18ce36ba9ebdae91 (1 samples, 0.01%)</title><rect x="836.9" y="293" width="0.1" height="15.0" fill="rgb(217,150,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.86" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_finish_command (1 samples, 0.01%)</title><rect x="666.3" y="501" width="0.1" height="15.0" fill="rgb(232,98,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.28" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (50 samples, 0.49%)</title><rect x="836.5" y="373" width="5.8" height="15.0" fill="rgb(234,105,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inode_permission (4 samples, 0.04%)</title><rect x="1023.3" y="421" width="0.4" height="15.0" fill="rgb(251,117,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.26" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kmem_cache_alloc (1 samples, 0.01%)</title><rect x="1010.6" y="197" width="0.1" height="15.0" fill="rgb(222,18,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.58" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_scr_read (1 samples, 0.01%)</title><rect x="666.2" y="405" width="0.1" height="15.0" fill="rgb(241,101,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.16" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>intel_pmu_enable_all (4 samples, 0.04%)</title><rect x="834.1" y="405" width="0.4" height="15.0" fill="rgb(226,188,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.07" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_inode_csum.isra.60 (3 samples, 0.03%)</title><rect x="1017.3" y="213" width="0.4" height="15.0" fill="rgb(233,166,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.33" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crypto_shash_update (9 samples, 0.09%)</title><rect x="1165.9" y="165" width="1.1" height="15.0" fill="rgb(247,83,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1168.93" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_add_new_anon_rmap (3 samples, 0.03%)</title><rect x="895.1" y="421" width="0.4" height="15.0" fill="rgb(247,85,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.12" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__radix_tree_replace (1 samples, 0.01%)</title><rect x="1020.1" y="341" width="0.1" height="15.0" fill="rgb(216,119,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1023.12" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>memcg_kmem_get_cache (1 samples, 0.01%)</title><rect x="1054.3" y="149" width="0.1" height="15.0" fill="rgb(239,195,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.30" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pte_alloc_one (1 samples, 0.01%)</title><rect x="836.0" y="405" width="0.2" height="15.0" fill="rgb(253,112,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.05" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ata_qc_free (1 samples, 0.01%)</title><rect x="989.0" y="373" width="0.1" height="15.0" fill="rgb(236,0,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>PosixUtils_fileClose_75ad9cf74d5500c331615bdad2db3c0d649047d0 (1 samples, 0.01%)</title><rect x="1005.3" y="501" width="0.2" height="15.0" fill="rgb(244,128,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.35" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocalAllocation_prepareNewAllocationChunk_7581e655f0ed09af52be5d4b8b7166d80cefd67b (1 samples, 0.01%)</title><rect x="898.8" y="533" width="0.2" height="15.0" fill="rgb(207,172,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="901.84" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sata_async_notification (1 samples, 0.01%)</title><rect x="655.8" y="389" width="0.1" height="15.0" fill="rgb(219,59,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.81" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pagevec_lru_move_fn (3 samples, 0.03%)</title><rect x="1011.2" y="245" width="0.3" height="15.0" fill="rgb(222,81,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.16" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_softirq_done (2 samples, 0.02%)</title><rect x="656.2" y="485" width="0.2" height="15.0" fill="rgb(243,97,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.16" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wake_up_process (1 samples, 0.01%)</title><rect x="1187.1" y="341" width="0.1" height="15.0" fill="rgb(213,49,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>PosixUtils_fileOpen_83095de926ab445cc77f1ed583c2a623c83c035d (4 samples, 0.04%)</title><rect x="1014.5" y="549" width="0.5" height="15.0" fill="rgb(228,40,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.53" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sata_scr_read (1 samples, 0.01%)</title><rect x="655.8" y="373" width="0.1" height="15.0" fill="rgb(244,101,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.81" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mb_free_blocks (1 samples, 0.01%)</title><rect x="1012.0" y="341" width="0.1" height="15.0" fill="rgb(228,57,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.98" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>error_exit (1 samples, 0.01%)</title><rect x="1070.1" y="517" width="0.1" height="15.0" fill="rgb(236,149,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1073.12" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__vfs_write (16 samples, 0.16%)</title><rect x="1003.1" y="405" width="1.9" height="15.0" fill="rgb(222,76,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_page_fault (1 samples, 0.01%)</title><rect x="1189.4" y="661" width="0.1" height="15.0" fill="rgb(252,193,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.42" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock (4 samples, 0.04%)</title><rect x="1076.6" y="421" width="0.5" height="15.0" fill="rgb(236,127,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1079.63" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__perf_event_task_sched_in (4 samples, 0.04%)</title><rect x="1154.9" y="389" width="0.4" height="15.0" fill="rgb(241,211,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.88" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>perf_iterate_sb (1 samples, 0.01%)</title><rect x="1188.0" y="565" width="0.1" height="15.0" fill="rgb(205,59,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1191.02" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__generic_file_write_iter (8 samples, 0.08%)</title><rect x="1012.4" y="373" width="1.0" height="15.0" fill="rgb(244,157,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.44" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadingSupportImpl_resumeRecurringCallback_6c6a64896acb6734190cec19be9000424f93efea (1 samples, 0.01%)</title><rect x="1012.2" y="549" width="0.1" height="15.0" fill="rgb(209,158,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.21" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Space_extractUnalignedHeapChunk_00ea32070144de151a899d86802342457a80127e (1 samples, 0.01%)</title><rect x="1053.8" y="277" width="0.2" height="15.0" fill="rgb(241,43,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.84" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_exit_to_usermode (2 samples, 0.02%)</title><rect x="898.1" y="501" width="0.3" height="15.0" fill="rgb(244,204,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="901.14" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Space_releaseAlignedHeapChunks_81cdfd6a8d7f4f808f05ee36dac2439862336984 (1 samples, 0.01%)</title><rect x="1053.5" y="309" width="0.1" height="15.0" fill="rgb(212,103,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.49" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_counter_uncharge (1 samples, 0.01%)</title><rect x="1019.8" y="293" width="0.1" height="15.0" fill="rgb(215,124,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1022.77" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>String_getChars_c1abef6cde0009d1f55ec852da6e07b19eb1cade (83 samples, 0.82%)</title><rect x="1085.8" y="613" width="9.7" height="15.0" fill="rgb(220,59,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1088.81" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__blk_put_request (1 samples, 0.01%)</title><rect x="656.2" y="405" width="0.1" height="15.0" fill="rgb(236,46,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.16" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_unref_page_prepare.part.70 (1 samples, 0.01%)</title><rect x="840.0" y="101" width="0.1" height="15.0" fill="rgb(254,41,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="843.00" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>filemap_map_pages (1 samples, 0.01%)</title><rect x="1189.4" y="581" width="0.1" height="15.0" fill="rgb(252,121,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.42" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tlb_finish_mmu (1 samples, 0.01%)</title><rect x="836.6" y="165" width="0.1" height="15.0" fill="rgb(245,229,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>lru_cache_add (4 samples, 0.04%)</title><rect x="1164.0" y="245" width="0.4" height="15.0" fill="rgb(212,15,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.95" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>elv_completed_request (1 samples, 0.01%)</title><rect x="899.3" y="405" width="0.1" height="15.0" fill="rgb(245,132,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.30" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__queue_work (1 samples, 0.01%)</title><rect x="899.3" y="341" width="0.1" height="15.0" fill="rgb(254,113,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.30" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_single_level_irq_intr (2 samples, 0.02%)</title><rect x="666.0" y="485" width="0.3" height="15.0" fill="rgb(236,183,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.05" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__blk_put_request (1 samples, 0.01%)</title><rect x="899.3" y="421" width="0.1" height="15.0" fill="rgb(250,172,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.30" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_edge_irq (1 samples, 0.01%)</title><rect x="899.1" y="533" width="0.1" height="15.0" fill="rgb(250,105,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.07" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="895.9" y="373" width="0.1" height="15.0" fill="rgb(235,91,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.93" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__lru_cache_add (20 samples, 0.20%)</title><rect x="891.3" y="405" width="2.3" height="15.0" fill="rgb(235,155,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="894.28" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_device (1 samples, 0.01%)</title><rect x="1006.7" y="197" width="0.2" height="15.0" fill="rgb(226,221,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.74" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>VMOperationControl$Worklist_drain_bd05e0cfa93c9783e0e51889cd332780fb1c35b5 (49 samples, 0.48%)</title><rect x="1053.3" y="453" width="5.7" height="15.0" fill="rgb(230,95,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_dentry_open (1 samples, 0.01%)</title><rect x="1023.8" y="421" width="0.2" height="15.0" fill="rgb(248,159,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.84" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mod_zone_page_state (1 samples, 0.01%)</title><rect x="1055.1" y="101" width="0.1" height="15.0" fill="rgb(242,169,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1058.12" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>alloc_buffer_head (1 samples, 0.01%)</title><rect x="1157.9" y="245" width="0.1" height="15.0" fill="rgb(226,141,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.91" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>start_this_handle (1 samples, 0.01%)</title><rect x="1015.3" y="357" width="0.2" height="15.0" fill="rgb(244,219,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.35" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_single_level_irq_intr (1 samples, 0.01%)</title><rect x="899.1" y="469" width="0.1" height="15.0" fill="rgb(232,111,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.07" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_tag_clear (2 samples, 0.02%)</title><rect x="1010.7" y="245" width="0.2" height="15.0" fill="rgb(249,96,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.70" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>fput (1 samples, 0.01%)</title><rect x="1005.5" y="405" width="0.1" height="15.0" fill="rgb(247,59,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.47" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocalAllocation_allocateLargeArray_046612c37d1e778673ff8e8e07c89bdf84cd3443 (483 samples, 4.76%)</title><rect x="842.6" y="533" width="56.1" height="15.0" fill="rgb(220,182,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="845.56" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Threa..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_exit_to_usermode (1 samples, 0.01%)</title><rect x="656.5" y="549" width="0.1" height="15.0" fill="rgb(253,69,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.51" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Space_releaseAlignedHeapChunks_81cdfd6a8d7f4f808f05ee36dac2439862336984 (1 samples, 0.01%)</title><rect x="836.7" y="309" width="0.2" height="15.0" fill="rgb(213,164,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.74" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="989.0" y="517" width="0.1" height="15.0" fill="rgb(252,134,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kblockd_schedule_work (1 samples, 0.01%)</title><rect x="210.0" y="373" width="0.1" height="15.0" fill="rgb(205,192,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_start_plug (1 samples, 0.01%)</title><rect x="1005.7" y="309" width="0.1" height="15.0" fill="rgb(245,100,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.70" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>AbstractQueuedSynchronizer_release_a6f0f81643a4166b53eeaa75bf587c535be7bad9 (1 samples, 0.01%)</title><rect x="1096.0" y="517" width="0.2" height="15.0" fill="rgb(209,93,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1099.05" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (1 samples, 0.01%)</title><rect x="1095.9" y="533" width="0.1" height="15.0" fill="rgb(226,219,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.93" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_buffer_head (1 samples, 0.01%)</title><rect x="1022.7" y="229" width="0.1" height="15.0" fill="rgb(251,167,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1025.67" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_dirty_inode (1 samples, 0.01%)</title><rect x="1013.0" y="293" width="0.1" height="15.0" fill="rgb(217,36,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.02" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>raw_notifier_call_chain (1 samples, 0.01%)</title><rect x="665.8" y="437" width="0.1" height="15.0" fill="rgb(243,68,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="668.81" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__add_to_page_cache_locked (13 samples, 0.13%)</title><rect x="1162.4" y="245" width="1.6" height="15.0" fill="rgb(215,120,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1165.44" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ret_from_intr (8 samples, 0.08%)</title><rect x="899.1" y="581" width="0.9" height="15.0" fill="rgb(230,114,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.07" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event (1 samples, 0.01%)</title><rect x="895.9" y="405" width="0.1" height="15.0" fill="rgb(251,78,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.93" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileOutputStream_constructor_621bc966c0c190df1013054328e1e44eb6f33627 (85 samples, 0.84%)</title><rect x="1014.3" y="581" width="9.9" height="15.0" fill="rgb(206,119,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.30" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__x64_sys_write (17 samples, 0.17%)</title><rect x="1003.1" y="453" width="2.0" height="15.0" fill="rgb(210,210,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_page_from_freelist (4 samples, 0.04%)</title><rect x="1003.3" y="229" width="0.4" height="15.0" fill="rgb(231,145,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.26" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mmap (19 samples, 0.19%)</title><rect x="1187.2" y="693" width="2.2" height="15.0" fill="rgb(247,194,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.21" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_finish_command (1 samples, 0.01%)</title><rect x="210.0" y="485" width="0.1" height="15.0" fill="rgb(245,224,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_syscall_64 (41 samples, 0.40%)</title><rect x="1054.2" y="261" width="4.8" height="15.0" fill="rgb(253,41,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.19" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileOutputStream_writeBytes_0f5ff6259fd4b0ea6b80bf2411b95ee76cfaadc3 (10 samples, 0.10%)</title><rect x="1012.3" y="533" width="1.2" height="15.0" fill="rgb(207,191,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.33" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ret_from_intr (1 samples, 0.01%)</title><rect x="1095.3" y="597" width="0.2" height="15.0" fill="rgb(217,0,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.35" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>block_write_end (1 samples, 0.01%)</title><rect x="1013.1" y="309" width="0.2" height="15.0" fill="rgb(228,41,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.14" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ata_qc_complete_multiple (1 samples, 0.01%)</title><rect x="989.0" y="437" width="0.1" height="15.0" fill="rgb(216,6,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__perf_event_task_sched_in (4 samples, 0.04%)</title><rect x="834.1" y="453" width="0.4" height="15.0" fill="rgb(253,178,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.07" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>try_to_release_page (5 samples, 0.05%)</title><rect x="1022.2" y="293" width="0.6" height="15.0" fill="rgb(211,177,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1025.21" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>propagate_protected_usage (1 samples, 0.01%)</title><rect x="1056.0" y="37" width="0.2" height="15.0" fill="rgb(215,203,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1059.05" y="47.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>swapgs_restore_regs_and_return_to_usermode (1 samples, 0.01%)</title><rect x="666.4" y="597" width="0.1" height="15.0" fill="rgb(226,193,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.40" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pagevec_lookup_range (1 samples, 0.01%)</title><rect x="1157.8" y="261" width="0.1" height="15.0" fill="rgb(247,124,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.79" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_unref_page_list (1 samples, 0.01%)</title><rect x="1019.7" y="325" width="0.1" height="15.0" fill="rgb(215,130,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1022.65" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_counter_uncharge (1 samples, 0.01%)</title><rect x="840.1" y="69" width="0.1" height="15.0" fill="rgb(213,8,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="843.12" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bvec_alloc (1 samples, 0.01%)</title><rect x="1010.5" y="229" width="0.1" height="15.0" fill="rgb(229,63,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.47" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>CharsetEncoder_encode_7691a6bc7f462b860dfc0a0441903c472a6bde44 (507 samples, 5.00%)</title><rect x="1096.4" y="533" width="58.9" height="15.0" fill="rgb(242,197,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1099.40" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Charse..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__libc_write (17 samples, 0.17%)</title><rect x="1003.1" y="501" width="2.0" height="15.0" fill="rgb(214,225,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_finish_command (2 samples, 0.02%)</title><rect x="656.2" y="469" width="0.2" height="15.0" fill="rgb(235,196,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.16" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__x64_sys_openat (78 samples, 0.77%)</title><rect x="1015.0" y="501" width="9.1" height="15.0" fill="rgb(232,208,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.00" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_irq_event_percpu (2 samples, 0.02%)</title><rect x="655.7" y="453" width="0.2" height="15.0" fill="rgb(244,71,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.70" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_ext_map_blocks (9 samples, 0.09%)</title><rect x="1008.1" y="277" width="1.1" height="15.0" fill="rgb(245,27,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.14" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pagevec_lookup_range (1 samples, 0.01%)</title><rect x="1007.1" y="277" width="0.1" height="15.0" fill="rgb(222,7,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.09" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>vm_munmap (1 samples, 0.01%)</title><rect x="836.6" y="213" width="0.1" height="15.0" fill="rgb(232,152,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>cfq_completed_request (1 samples, 0.01%)</title><rect x="1187.1" y="421" width="0.1" height="15.0" fill="rgb(242,74,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>PosixVirtualMemoryProvider_commit_9aa7fc44c70177db46488e00268c856970d185aa (2 samples, 0.02%)</title><rect x="834.8" y="501" width="0.2" height="15.0" fill="rgb(222,223,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_filp_open (78 samples, 0.77%)</title><rect x="1015.0" y="469" width="9.1" height="15.0" fill="rgb(252,112,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.00" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>MonitorSupport_monitorExit_04daa9017da69170a81dec9e2100551226ab5b8a (2 samples, 0.02%)</title><rect x="1095.9" y="549" width="0.3" height="15.0" fill="rgb(245,229,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.93" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_get_group_desc (1 samples, 0.01%)</title><rect x="1004.4" y="213" width="0.1" height="15.0" fill="rgb(254,223,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.42" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>AbstractStringBuilder_newCapacity_d43ce688a8a374b868e20a02af9e886a6b6a408c (1 samples, 0.01%)</title><rect x="809.9" y="581" width="0.1" height="15.0" fill="rgb(250,89,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="812.88" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>unmap_vmas (21 samples, 0.21%)</title><rect x="1056.4" y="181" width="2.4" height="15.0" fill="rgb(246,61,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1059.40" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_unref_page_list (1 samples, 0.01%)</title><rect x="836.6" y="85" width="0.1" height="15.0" fill="rgb(233,170,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="989.0" y="501" width="0.1" height="15.0" fill="rgb(250,135,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ata_qc_complete (1 samples, 0.01%)</title><rect x="989.0" y="405" width="0.1" height="15.0" fill="rgb(250,136,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>up_read (3 samples, 0.03%)</title><rect x="896.0" y="469" width="0.4" height="15.0" fill="rgb(250,217,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="899.05" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>[unknown] (10,123 samples, 99.75%)</title><rect x="10.1" y="693" width="1177.1" height="15.0" fill="rgb(212,133,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.12" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>read_tsc (1 samples, 0.01%)</title><rect x="24.3" y="485" width="0.1" height="15.0" fill="rgb(216,161,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.30" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>unmap_page_range (17 samples, 0.17%)</title><rect x="840.2" y="149" width="2.0" height="15.0" fill="rgb(240,90,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="843.23" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pmd_pfn (1 samples, 0.01%)</title><rect x="895.6" y="421" width="0.1" height="15.0" fill="rgb(216,71,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.58" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_page_fault (10 samples, 0.10%)</title><rect x="835.3" y="501" width="1.2" height="15.0" fill="rgb(244,145,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="838.35" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ReentrantLock$Sync_tryRelease_a66c341958d8201110d2de33406f88fc73bac424 (1 samples, 0.01%)</title><rect x="1096.0" y="501" width="0.2" height="15.0" fill="rgb(207,57,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1099.05" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_unref_page_commit (6 samples, 0.06%)</title><rect x="839.3" y="85" width="0.7" height="15.0" fill="rgb(230,162,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="842.30" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_munmap (42 samples, 0.41%)</title><rect x="837.3" y="213" width="4.9" height="15.0" fill="rgb(228,216,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.33" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>lookup_open (1 samples, 0.01%)</title><rect x="1023.1" y="437" width="0.2" height="15.0" fill="rgb(214,48,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.14" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="892.0" y="357" width="0.1" height="15.0" fill="rgb(237,130,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="894.98" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__wake_up_common_lock (1 samples, 0.01%)</title><rect x="1016.3" y="325" width="0.1" height="15.0" fill="rgb(207,56,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.28" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (49 samples, 0.48%)</title><rect x="1053.3" y="485" width="5.7" height="15.0" fill="rgb(237,64,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>error_entry (25 samples, 0.25%)</title><rect x="1067.2" y="517" width="2.9" height="15.0" fill="rgb(249,174,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1070.21" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StreamEncoder_implClose_fe02d3a6cbe1af9b50ceea6c5f14827dd03d30e6 (71 samples, 0.70%)</title><rect x="1005.2" y="581" width="8.3" height="15.0" fill="rgb(220,13,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.23" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__pagevec_lru_add_fn (2 samples, 0.02%)</title><rect x="1011.2" y="229" width="0.2" height="15.0" fill="rgb(223,12,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.16" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileOutputStream$1_close_20dcd409bc0f5c4001698b1558423710c23fd468 (60 samples, 0.59%)</title><rect x="1005.2" y="533" width="7.0" height="15.0" fill="rgb(206,40,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.23" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__x64_sys_munmap (41 samples, 0.40%)</title><rect x="1054.2" y="245" width="4.8" height="15.0" fill="rgb(236,31,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.19" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>swapgs_restore_regs_and_return_to_usermode (1 samples, 0.01%)</title><rect x="989.1" y="597" width="0.1" height="15.0" fill="rgb(223,7,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="992.07" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crc32c_pcl_intel_update (4 samples, 0.04%)</title><rect x="1165.5" y="165" width="0.4" height="15.0" fill="rgb(236,221,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1168.47" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (51 samples, 0.50%)</title><rect x="836.5" y="517" width="5.9" height="15.0" fill="rgb(248,228,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mem_cgroup_commit_charge (3 samples, 0.03%)</title><rect x="1162.9" y="229" width="0.4" height="15.0" fill="rgb(249,197,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1165.91" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pagevec_lookup_range_tag (1 samples, 0.01%)</title><rect x="1011.7" y="277" width="0.2" height="15.0" fill="rgb(233,141,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.74" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mod_zone_page_state (1 samples, 0.01%)</title><rect x="1054.5" y="117" width="0.2" height="15.0" fill="rgb(223,33,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.53" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (131 samples, 1.29%)</title><rect x="1171.9" y="549" width="15.2" height="15.0" fill="rgb(209,211,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1174.86" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__softirqentry_text_start (1 samples, 0.01%)</title><rect x="655.6" y="501" width="0.1" height="15.0" fill="rgb(215,175,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.58" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>alloc_pages_vma (34 samples, 0.34%)</title><rect x="1077.1" y="421" width="3.9" height="15.0" fill="rgb(243,92,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1080.09" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crc32c_pcl_intel_update (1 samples, 0.01%)</title><rect x="1008.6" y="197" width="0.1" height="15.0" fill="rgb(249,113,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.60" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__pagevec_release (6 samples, 0.06%)</title><rect x="1011.0" y="277" width="0.7" height="15.0" fill="rgb(217,174,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.05" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>release_pages (1 samples, 0.01%)</title><rect x="1019.3" y="309" width="0.1" height="15.0" fill="rgb(217,200,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1022.30" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_fault (4 samples, 0.04%)</title><rect x="1052.8" y="517" width="0.5" height="15.0" fill="rgb(207,130,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1055.79" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocalAllocation_allocateSmallArray_d22b0fb7f94ccfb02b7a0b6ee0d71bb2936c28ab (1 samples, 0.01%)</title><rect x="898.7" y="533" width="0.1" height="15.0" fill="rgb(240,196,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="901.72" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Space_release_974313a5122e8333f52d54fdfc3cd70634f9bdf3 (1 samples, 0.01%)</title><rect x="836.6" y="309" width="0.1" height="15.0" fill="rgb(229,174,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mempool_alloc (2 samples, 0.02%)</title><rect x="1007.8" y="213" width="0.2" height="15.0" fill="rgb(221,88,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.79" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sata_scr_read (1 samples, 0.01%)</title><rect x="666.2" y="421" width="0.1" height="15.0" fill="rgb(208,140,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.16" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event_percpu (2 samples, 0.02%)</title><rect x="666.0" y="517" width="0.3" height="15.0" fill="rgb(211,148,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.05" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__entry_trampoline_start (2 samples, 0.02%)</title><rect x="1054.0" y="277" width="0.2" height="15.0" fill="rgb(209,20,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.95" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_dirty_inode (2 samples, 0.02%)</title><rect x="1004.3" y="277" width="0.2" height="15.0" fill="rgb(217,223,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.30" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mem_cgroup_charge_statistics (1 samples, 0.01%)</title><rect x="1082.3" y="421" width="0.1" height="15.0" fill="rgb(216,94,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1085.33" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>queue_unplugged (6 samples, 0.06%)</title><rect x="1006.4" y="261" width="0.7" height="15.0" fill="rgb(212,153,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.40" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_edge_irq (1 samples, 0.01%)</title><rect x="989.0" y="549" width="0.1" height="15.0" fill="rgb(226,189,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>BufferedWriter_close_039135ec38c5cc822fc21c06becea14e06b9793c (104 samples, 1.02%)</title><rect x="1001.4" y="613" width="12.1" height="15.0" fill="rgb(240,195,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1004.40" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_inode_csum.isra.60 (13 samples, 0.13%)</title><rect x="1165.5" y="181" width="1.5" height="15.0" fill="rgb(239,102,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1168.47" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>may_open.isra.61 (4 samples, 0.04%)</title><rect x="1023.3" y="437" width="0.4" height="15.0" fill="rgb(240,12,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.26" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>HeapChunkProvider_consumeAlignedChunk_0cca3da1d99d9ae41a40f77cf33e3a7f2165f8c9 (1 samples, 0.01%)</title><rect x="836.7" y="293" width="0.2" height="15.0" fill="rgb(212,126,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.74" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>finish_task_switch (1 samples, 0.01%)</title><rect x="666.4" y="517" width="0.1" height="15.0" fill="rgb(240,76,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.40" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_file_write_iter (8 samples, 0.08%)</title><rect x="1012.4" y="389" width="1.0" height="15.0" fill="rgb(223,39,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.44" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock_irqsave (1 samples, 0.01%)</title><rect x="1016.3" y="309" width="0.1" height="15.0" fill="rgb(239,68,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.28" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>finish_task_switch (4 samples, 0.04%)</title><rect x="1154.9" y="405" width="0.4" height="15.0" fill="rgb(207,190,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.88" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_mem_cgroup_from_mm (1 samples, 0.01%)</title><rect x="1081.0" y="421" width="0.2" height="15.0" fill="rgb(218,46,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1084.05" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_releaseSpaces_641969b81cd483bcf6b361a07e9c7f7c5a35d412 (49 samples, 0.48%)</title><rect x="836.6" y="341" width="5.7" height="15.0" fill="rgb(251,201,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (1 samples, 0.01%)</title><rect x="1014.7" y="517" width="0.1" height="15.0" fill="rgb(215,128,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.65" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileOutputStream_writeBytes_0f5ff6259fd4b0ea6b80bf2411b95ee76cfaadc3 (17 samples, 0.17%)</title><rect x="1003.1" y="517" width="2.0" height="15.0" fill="rgb(248,92,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>intel_pmu_enable_all (1 samples, 0.01%)</title><rect x="655.5" y="373" width="0.1" height="15.0" fill="rgb(245,150,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.47" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>UnixFileSystem_normalize_ebed3a51208ba78aa672071dd58d9198ff6f7c8d (1 samples, 0.01%)</title><rect x="1024.2" y="565" width="0.1" height="15.0" fill="rgb(235,135,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.19" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_invalidatepage (7 samples, 0.07%)</title><rect x="1022.0" y="325" width="0.8" height="15.0" fill="rgb(216,142,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1024.98" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>try_to_wake_up (1 samples, 0.01%)</title><rect x="210.0" y="293" width="0.1" height="15.0" fill="rgb(213,23,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>error_exit (1 samples, 0.01%)</title><rect x="865.1" y="517" width="0.1" height="15.0" fill="rgb(228,216,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="868.12" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocalAllocation_slowPathNewArray_bea3ceda65bd7efe45e06a6c9d05ba3532dba364 (554 samples, 5.46%)</title><rect x="834.5" y="581" width="64.5" height="15.0" fill="rgb(207,207,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.53" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ThreadL..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__alloc_pages_nodemask (4 samples, 0.04%)</title><rect x="1003.3" y="245" width="0.4" height="15.0" fill="rgb(220,206,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.26" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_mm_fault (1 samples, 0.01%)</title><rect x="1189.4" y="629" width="0.1" height="15.0" fill="rgb(250,56,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.42" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="324.7" y="549" width="0.1" height="15.0" fill="rgb(222,216,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.65" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_edge_irq (1 samples, 0.01%)</title><rect x="209.9" y="533" width="0.1" height="15.0" fill="rgb(241,188,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq (1 samples, 0.01%)</title><rect x="209.9" y="549" width="0.1" height="15.0" fill="rgb(233,126,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="24.4" y="517" width="0.1" height="15.0" fill="rgb(205,131,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.42" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_handle_port_intr (1 samples, 0.01%)</title><rect x="24.4" y="485" width="0.1" height="15.0" fill="rgb(238,124,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.42" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="895.9" y="389" width="0.1" height="15.0" fill="rgb(224,61,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.93" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>vfs_open (2 samples, 0.02%)</title><rect x="1023.8" y="437" width="0.3" height="15.0" fill="rgb(231,171,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.84" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>lru_cache_add_active_or_unevictable (24 samples, 0.24%)</title><rect x="890.8" y="421" width="2.8" height="15.0" fill="rgb(252,15,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="893.81" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>find_vma (1 samples, 0.01%)</title><rect x="835.5" y="469" width="0.1" height="15.0" fill="rgb(208,2,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="838.47" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_finish_plug (10 samples, 0.10%)</title><rect x="1005.9" y="293" width="1.2" height="15.0" fill="rgb(235,68,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.93" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>unmap_single_vma (17 samples, 0.17%)</title><rect x="840.2" y="165" width="2.0" height="15.0" fill="rgb(250,170,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="843.23" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>VMOperation_enqueue_8646be4f473da8fe19fcb8f3c16b6fcf76f4b10a (51 samples, 0.50%)</title><rect x="836.5" y="501" width="5.9" height="15.0" fill="rgb(218,50,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_es_can_be_merged (1 samples, 0.01%)</title><rect x="1160.1" y="245" width="0.1" height="15.0" fill="rgb(254,152,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1163.12" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>entry_SYSCALL_64_after_hwframe (1 samples, 0.01%)</title><rect x="836.6" y="261" width="0.1" height="15.0" fill="rgb(233,66,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__alloc_pages_nodemask (99 samples, 0.98%)</title><rect x="878.8" y="405" width="11.5" height="15.0" fill="rgb(224,121,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="881.84" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_cond_resched (1 samples, 0.01%)</title><rect x="1015.6" y="389" width="0.1" height="15.0" fill="rgb(229,76,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.58" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__vma_adjust (1 samples, 0.01%)</title><rect x="837.3" y="181" width="0.1" height="15.0" fill="rgb(227,31,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.33" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tick_sched_do_timer (1 samples, 0.01%)</title><rect x="665.8" y="501" width="0.1" height="15.0" fill="rgb(233,204,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="668.81" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>intel_pmu_enable_all (4 samples, 0.04%)</title><rect x="1154.9" y="341" width="0.4" height="15.0" fill="rgb(240,106,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.88" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_inode_dirty (1 samples, 0.01%)</title><rect x="1018.1" y="373" width="0.2" height="15.0" fill="rgb(242,1,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.14" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_unref_page_list (1 samples, 0.01%)</title><rect x="1019.3" y="293" width="0.1" height="15.0" fill="rgb(205,22,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1022.30" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_journal_stop (1 samples, 0.01%)</title><rect x="1004.2" y="309" width="0.1" height="15.0" fill="rgb(243,13,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.19" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__inc_numa_state (1 samples, 0.01%)</title><rect x="880.1" y="389" width="0.1" height="15.0" fill="rgb(205,143,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="883.12" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>entry_SYSCALL_64_after_hwframe (43 samples, 0.42%)</title><rect x="837.2" y="277" width="5.0" height="15.0" fill="rgb(221,128,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.21" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_page_fault (78 samples, 0.77%)</title><rect x="1074.8" y="501" width="9.0" height="15.0" fill="rgb(215,138,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1077.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__pagevec_lru_add_fn (3 samples, 0.03%)</title><rect x="891.5" y="389" width="0.4" height="15.0" fill="rgb(221,70,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="894.51" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl$CollectionVMOperation_operate_7263e75afb71f5ac2f80cb935e9b70807c366c55 (49 samples, 0.48%)</title><rect x="1053.3" y="405" width="5.7" height="15.0" fill="rgb(208,74,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>truncate_cleanup_page (12 samples, 0.12%)</title><rect x="1021.4" y="357" width="1.4" height="15.0" fill="rgb(220,89,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1024.40" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__d_lookup (1 samples, 0.01%)</title><rect x="1023.1" y="405" width="0.2" height="15.0" fill="rgb(226,164,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.14" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ret_from_intr (1 samples, 0.01%)</title><rect x="989.0" y="597" width="0.1" height="15.0" fill="rgb(237,100,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__do_execve_file.isra.41 (4 samples, 0.04%)</title><rect x="1189.5" y="629" width="0.5" height="15.0" fill="rgb(249,194,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__open64 (78 samples, 0.77%)</title><rect x="1015.0" y="549" width="9.1" height="15.0" fill="rgb(247,189,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.00" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__x64_sys_close (1 samples, 0.01%)</title><rect x="1005.5" y="453" width="0.1" height="15.0" fill="rgb(240,90,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.47" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_da_invalidatepage (10 samples, 0.10%)</title><rect x="1021.6" y="341" width="1.2" height="15.0" fill="rgb(251,94,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1024.63" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock_irqsave (1 samples, 0.01%)</title><rect x="1020.2" y="341" width="0.1" height="15.0" fill="rgb(223,206,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1023.23" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_group_desc_csum_set (1 samples, 0.01%)</title><rect x="1017.7" y="309" width="0.1" height="15.0" fill="rgb(243,194,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.67" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>percpu_counter_add_batch (1 samples, 0.01%)</title><rect x="1159.4" y="245" width="0.1" height="15.0" fill="rgb(231,136,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1162.42" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>PosixUtils_writeBytes_9bbafb3099ccd07c958c0c9b902946849d0d1b4b (2 samples, 0.02%)</title><rect x="1155.5" y="485" width="0.2" height="15.0" fill="rgb(241,129,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1158.47" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_handle_port_interrupt (1 samples, 0.01%)</title><rect x="666.2" y="453" width="0.1" height="15.0" fill="rgb(221,43,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.16" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>schedule (4 samples, 0.04%)</title><rect x="988.5" y="533" width="0.5" height="15.0" fill="rgb(224,33,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.49" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ioc_lookup_icq (1 samples, 0.01%)</title><rect x="1007.7" y="213" width="0.1" height="15.0" fill="rgb(233,205,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.67" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>elv_completed_request (1 samples, 0.01%)</title><rect x="1187.1" y="437" width="0.1" height="15.0" fill="rgb(233,25,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>grab_cache_page_write_begin (1 samples, 0.01%)</title><rect x="1169.1" y="309" width="0.1" height="15.0" fill="rgb(212,104,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1172.07" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (1,146 samples, 11.29%)</title><rect x="522.9" y="565" width="133.3" height="15.0" fill="rgb(228,151,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.91" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ArraycopySnippet..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>read_tsc (1 samples, 0.01%)</title><rect x="1006.6" y="181" width="0.1" height="15.0" fill="rgb(234,78,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.63" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>alloc_pages_current (1 samples, 0.01%)</title><rect x="836.0" y="389" width="0.2" height="15.0" fill="rgb(224,167,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.05" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_sync_write (129 samples, 1.27%)</title><rect x="1156.6" y="373" width="15.0" height="15.0" fill="rgb(251,15,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.63" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>BufferedWriter_constructor_675a35360ad605099dfa0abe0205bd1dd150b792 (7 samples, 0.07%)</title><rect x="1013.5" y="613" width="0.8" height="15.0" fill="rgb(208,73,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.49" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>cfq_completed_request (1 samples, 0.01%)</title><rect x="210.0" y="389" width="0.1" height="15.0" fill="rgb(243,115,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_edge_irq (1 samples, 0.01%)</title><rect x="895.9" y="421" width="0.1" height="15.0" fill="rgb(222,88,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.93" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>rw_verify_area (1 samples, 0.01%)</title><rect x="1005.0" y="405" width="0.1" height="15.0" fill="rgb(226,120,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.00" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__fdget_pos (1 samples, 0.01%)</title><rect x="1156.4" y="405" width="0.1" height="15.0" fill="rgb(208,229,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.40" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>put_cpu_partial (1 samples, 0.01%)</title><rect x="1022.7" y="181" width="0.1" height="15.0" fill="rgb(220,203,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1025.67" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StringCoding_deref_44f5cdd74efa99313b9bf4f9c5d889190d5e746b (1 samples, 0.01%)</title><rect x="1014.9" y="469" width="0.1" height="15.0" fill="rgb(232,32,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.88" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>AbstractStringBuilder_append_1340115408cd391d537ecf822a01629777191f12 (5,380 samples, 53.02%)</title><rect x="40.9" y="613" width="625.6" height="15.0" fill="rgb(246,80,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="43.93" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >AbstractStringBuilder_append_1340115408cd391d537ecf822a01629777191f12</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>MonitorSupport_monitorEnter_d39078bc763c911eab8ef2b2f718ffd7ef1a725d (1 samples, 0.01%)</title><rect x="1014.3" y="549" width="0.1" height="15.0" fill="rgb(228,221,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.30" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__do_page_fault (9 samples, 0.09%)</title><rect x="835.5" y="485" width="1.0" height="15.0" fill="rgb(234,43,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="838.47" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_writepages (54 samples, 0.53%)</title><rect x="1005.7" y="325" width="6.3" height="15.0" fill="rgb(221,42,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.70" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__hrtimer_get_next_event (1 samples, 0.01%)</title><rect x="899.0" y="533" width="0.1" height="15.0" fill="rgb(228,206,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="901.95" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__generic_file_write_iter (16 samples, 0.16%)</title><rect x="1003.1" y="357" width="1.9" height="15.0" fill="rgb(214,22,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>HeapChunkProvider_resetAlignedHeapChunk_3b0d29e3728eb7a6fc10e5e8f65655e2b0d220ca (1 samples, 0.01%)</title><rect x="1053.5" y="277" width="0.1" height="15.0" fill="rgb(237,52,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.49" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mark_inode_dirty (2 samples, 0.02%)</title><rect x="1004.3" y="293" width="0.2" height="15.0" fill="rgb(226,80,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.30" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_finish_request (1 samples, 0.01%)</title><rect x="210.0" y="437" width="0.1" height="15.0" fill="rgb(252,133,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_do_update_inode (1 samples, 0.01%)</title><rect x="1015.7" y="357" width="0.1" height="15.0" fill="rgb(223,219,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.70" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>activate_task (1 samples, 0.01%)</title><rect x="1187.1" y="293" width="0.1" height="15.0" fill="rgb(254,60,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_page_fault (198 samples, 1.95%)</title><rect x="873.5" y="501" width="23.0" height="15.0" fill="rgb(247,2,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="876.49" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >d..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_tag_clear (1 samples, 0.01%)</title><rect x="666.3" y="373" width="0.1" height="15.0" fill="rgb(213,63,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.28" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_single_level_irq_intr (1 samples, 0.01%)</title><rect x="1095.3" y="485" width="0.2" height="15.0" fill="rgb(213,152,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.35" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__sched_text_start (4 samples, 0.04%)</title><rect x="834.1" y="485" width="0.4" height="15.0" fill="rgb(217,107,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.07" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>HeapChunkProvider_consumeAlignedChunk_0cca3da1d99d9ae41a40f77cf33e3a7f2165f8c9 (1 samples, 0.01%)</title><rect x="1053.5" y="293" width="0.1" height="15.0" fill="rgb(254,208,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.49" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mem_cgroup_uncharge_list (2 samples, 0.02%)</title><rect x="1056.0" y="101" width="0.3" height="15.0" fill="rgb(208,200,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1059.05" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>perf_pmu_enable.part.105 (4 samples, 0.04%)</title><rect x="988.5" y="469" width="0.5" height="15.0" fill="rgb(212,40,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.49" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>perf_pmu_enable.part.105 (4 samples, 0.04%)</title><rect x="834.1" y="437" width="0.4" height="15.0" fill="rgb(222,93,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.07" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>String_getBytes_5b10aaa5db1a714618fb6a1766b4167b55e3f410 (2 samples, 0.02%)</title><rect x="1014.8" y="517" width="0.2" height="15.0" fill="rgb(227,90,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.77" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileWriter_constructor_4d008567e87e46ca777f41748ca3737e4d1d8d30 (1 samples, 0.01%)</title><rect x="24.5" y="629" width="0.2" height="15.0" fill="rgb(215,119,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.53" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="24.3" y="581" width="0.1" height="15.0" fill="rgb(245,17,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.30" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_syscall_64 (133 samples, 1.31%)</title><rect x="1156.2" y="453" width="15.4" height="15.0" fill="rgb(225,2,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.16" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iov_iter_copy_from_user_atomic (1 samples, 0.01%)</title><rect x="1013.3" y="341" width="0.1" height="15.0" fill="rgb(242,99,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.26" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_IRQ (1 samples, 0.01%)</title><rect x="895.9" y="453" width="0.1" height="15.0" fill="rgb(214,211,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.93" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>entry_SYSCALL_64_after_hwframe (41 samples, 0.40%)</title><rect x="1054.2" y="277" width="4.8" height="15.0" fill="rgb(220,160,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.19" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>update_load_avg (1 samples, 0.01%)</title><rect x="656.5" y="453" width="0.1" height="15.0" fill="rgb(225,152,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.51" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>native_write_msr (4 samples, 0.04%)</title><rect x="1154.9" y="309" width="0.4" height="15.0" fill="rgb(244,166,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.88" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (49 samples, 0.48%)</title><rect x="1053.3" y="437" width="5.7" height="15.0" fill="rgb(221,229,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_unref_page_commit (1 samples, 0.01%)</title><rect x="1019.5" y="325" width="0.2" height="15.0" fill="rgb(208,26,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1022.53" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_cheneyScanFromDirtyRoots_38e2f549830d39bed60fc139ea601adffadffc8a (1 samples, 0.01%)</title><rect x="836.5" y="341" width="0.1" height="15.0" fill="rgb(235,17,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__es_tree_search.isra.16 (1 samples, 0.01%)</title><rect x="1159.9" y="229" width="0.1" height="15.0" fill="rgb(243,18,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1162.88" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>entry_SYSCALL_64_after_hwframe (17 samples, 0.17%)</title><rect x="1003.1" y="485" width="2.0" height="15.0" fill="rgb(229,161,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Space_release_974313a5122e8333f52d54fdfc3cd70634f9bdf3 (47 samples, 0.46%)</title><rect x="1053.5" y="325" width="5.5" height="15.0" fill="rgb(233,205,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.49" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mark_buffer_dirty (1 samples, 0.01%)</title><rect x="1013.1" y="277" width="0.2" height="15.0" fill="rgb(244,39,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.14" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>schedule (4 samples, 0.04%)</title><rect x="834.1" y="501" width="0.4" height="15.0" fill="rgb(207,113,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.07" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (1 samples, 0.01%)</title><rect x="1095.6" y="549" width="0.1" height="15.0" fill="rgb(211,67,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.58" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_handle_dirty_super (1 samples, 0.01%)</title><rect x="1016.0" y="373" width="0.2" height="15.0" fill="rgb(239,205,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.05" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>vfs_write (17 samples, 0.17%)</title><rect x="1003.1" y="421" width="2.0" height="15.0" fill="rgb(239,169,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iov_iter_advance (1 samples, 0.01%)</title><rect x="1169.2" y="309" width="0.1" height="15.0" fill="rgb(217,55,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1172.19" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_tag_set (1 samples, 0.01%)</title><rect x="1168.7" y="213" width="0.1" height="15.0" fill="rgb(236,50,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1171.72" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generic_permission (3 samples, 0.03%)</title><rect x="1023.3" y="405" width="0.3" height="15.0" fill="rgb(225,205,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.26" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>irq_exit (1 samples, 0.01%)</title><rect x="1187.1" y="581" width="0.1" height="15.0" fill="rgb(218,149,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ttwu_do_activate (1 samples, 0.01%)</title><rect x="1187.1" y="309" width="0.1" height="15.0" fill="rgb(253,77,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileOutputStream_close_f754d78e6379f64d78b214192e8577689f66d12a (61 samples, 0.60%)</title><rect x="1005.2" y="565" width="7.1" height="15.0" fill="rgb(213,205,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.23" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>x86_pmu_enable (4 samples, 0.04%)</title><rect x="834.1" y="421" width="0.4" height="15.0" fill="rgb(233,137,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.07" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_unref_page_list (7 samples, 0.07%)</title><rect x="839.2" y="101" width="0.8" height="15.0" fill="rgb(230,85,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="842.19" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>PinnedObjectImpl_pushPinnedObject_5abb089ae1fc87c07a0b45a3c4213fa1d4d84c05 (1 samples, 0.01%)</title><rect x="1155.6" y="469" width="0.1" height="15.0" fill="rgb(252,86,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1158.58" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_reserve_inode_write (1 samples, 0.01%)</title><rect x="1016.2" y="389" width="0.1" height="15.0" fill="rgb(215,170,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.16" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prefetch_freepointer (1 samples, 0.01%)</title><rect x="1010.6" y="181" width="0.1" height="15.0" fill="rgb(232,196,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.58" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pick_next_task_fair (1 samples, 0.01%)</title><rect x="656.5" y="485" width="0.1" height="15.0" fill="rgb(212,24,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.51" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_fault (269 samples, 2.65%)</title><rect x="865.2" y="517" width="31.3" height="15.0" fill="rgb(235,57,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="868.23" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >pa..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>AbstractStringBuilder_append_5488923cc849183f0525c23695d6326c7735ac5a (2,775 samples, 27.35%)</title><rect x="666.5" y="613" width="322.7" height="15.0" fill="rgb(214,55,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.51" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >AbstractStringBuilder_append_5488923cc84918..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ns_capable_common (2 samples, 0.02%)</title><rect x="1023.3" y="373" width="0.2" height="15.0" fill="rgb(219,78,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.26" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>VMOperation_enqueue_8646be4f473da8fe19fcb8f3c16b6fcf76f4b10a (49 samples, 0.48%)</title><rect x="1053.3" y="501" width="5.7" height="15.0" fill="rgb(234,194,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_fault (1 samples, 0.01%)</title><rect x="1189.4" y="677" width="0.1" height="15.0" fill="rgb(249,192,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.42" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_scr_read (1 samples, 0.01%)</title><rect x="655.8" y="357" width="0.1" height="15.0" fill="rgb(254,192,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.81" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>smp_apic_timer_interrupt (3 samples, 0.03%)</title><rect x="655.3" y="533" width="0.4" height="15.0" fill="rgb(226,22,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.35" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>add_to_page_cache_lru (3 samples, 0.03%)</title><rect x="1003.7" y="277" width="0.4" height="15.0" fill="rgb(227,212,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.72" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_exit_to_usermode (1 samples, 0.01%)</title><rect x="666.4" y="581" width="0.1" height="15.0" fill="rgb(219,162,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.40" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_inode_csum_set (1 samples, 0.01%)</title><rect x="1015.7" y="341" width="0.1" height="15.0" fill="rgb(214,197,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.70" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__vfs_write (130 samples, 1.28%)</title><rect x="1156.5" y="389" width="15.1" height="15.0" fill="rgb(253,214,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.51" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>entry_SYSCALL_64_after_hwframe (15 samples, 0.15%)</title><rect x="1187.3" y="677" width="1.8" height="15.0" fill="rgb(238,226,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.33" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_iloc_dirty (3 samples, 0.03%)</title><rect x="1018.3" y="357" width="0.3" height="15.0" fill="rgb(235,196,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.26" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>queue_work_on (1 samples, 0.01%)</title><rect x="522.8" y="325" width="0.1" height="15.0" fill="rgb(215,67,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_io_completion (1 samples, 0.01%)</title><rect x="666.3" y="485" width="0.1" height="15.0" fill="rgb(223,226,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.28" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sd_init_command (2 samples, 0.02%)</title><rect x="1006.9" y="165" width="0.2" height="15.0" fill="rgb(249,77,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.86" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tlb_flush_mmu_free (16 samples, 0.16%)</title><rect x="1054.4" y="149" width="1.9" height="15.0" fill="rgb(236,145,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.42" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mpage_submit_page (15 samples, 0.15%)</title><rect x="1009.2" y="277" width="1.7" height="15.0" fill="rgb(232,208,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1012.19" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_io_completion (1 samples, 0.01%)</title><rect x="1187.1" y="501" width="0.1" height="15.0" fill="rgb(233,192,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>release_pages (1 samples, 0.01%)</title><rect x="893.5" y="373" width="0.1" height="15.0" fill="rgb(231,147,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="896.49" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="1158.8" y="245" width="0.2" height="15.0" fill="rgb(235,204,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1161.84" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>perf (4 samples, 0.04%)</title><rect x="1189.5" y="709" width="0.5" height="15.0" fill="rgb(229,6,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>irq_exit (1 samples, 0.01%)</title><rect x="655.6" y="517" width="0.1" height="15.0" fill="rgb(205,121,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.58" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__getblk_gfp (1 samples, 0.01%)</title><rect x="1008.1" y="181" width="0.2" height="15.0" fill="rgb(244,113,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.14" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_superblock_csum_set (1 samples, 0.01%)</title><rect x="1016.0" y="357" width="0.2" height="15.0" fill="rgb(240,165,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.05" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_mm_fault (1 samples, 0.01%)</title><rect x="1189.4" y="613" width="0.1" height="15.0" fill="rgb(234,184,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.42" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__test_set_page_writeback (6 samples, 0.06%)</title><rect x="1009.8" y="245" width="0.7" height="15.0" fill="rgb(227,169,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1012.77" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_end_bio (2 samples, 0.02%)</title><rect x="655.9" y="373" width="0.3" height="15.0" fill="rgb(234,95,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.93" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_mm_fault (171 samples, 1.69%)</title><rect x="875.9" y="453" width="19.9" height="15.0" fill="rgb(246,40,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="878.93" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocalAllocation_allocateNewArray_6872ef260866016ebc81dcc29eed7b36e33e807d (553 samples, 5.45%)</title><rect x="834.7" y="549" width="64.3" height="15.0" fill="rgb(249,169,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.65" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ThreadL..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pagevec_lookup_entries (6 samples, 0.06%)</title><rect x="1020.7" y="357" width="0.7" height="15.0" fill="rgb(223,89,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1023.70" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq (1 samples, 0.01%)</title><rect x="989.0" y="565" width="0.1" height="15.0" fill="rgb(237,124,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="24.3" y="613" width="0.1" height="15.0" fill="rgb(226,9,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.30" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>perf_pmu_enable.part.105 (4 samples, 0.04%)</title><rect x="1189.5" y="533" width="0.5" height="15.0" fill="rgb(226,41,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>MonitorSupport_monitorExit_04daa9017da69170a81dec9e2100551226ab5b8a (1 samples, 0.01%)</title><rect x="1001.4" y="565" width="0.1" height="15.0" fill="rgb(238,62,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1004.40" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pagecache_get_page (30 samples, 0.30%)</title><rect x="1161.2" y="277" width="3.5" height="15.0" fill="rgb(218,64,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1164.16" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_reserve_inode_write (1 samples, 0.01%)</title><rect x="1016.9" y="293" width="0.1" height="15.0" fill="rgb(221,123,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.86" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>irq_exit (1 samples, 0.01%)</title><rect x="522.8" y="517" width="0.1" height="15.0" fill="rgb(220,195,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sg_free_table_chained (1 samples, 0.01%)</title><rect x="899.9" y="437" width="0.1" height="15.0" fill="rgb(206,161,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.88" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__blk_run_queue (6 samples, 0.06%)</title><rect x="1006.4" y="245" width="0.7" height="15.0" fill="rgb(219,195,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.40" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>all (10,148 samples, 100%)</title><rect x="10.0" y="725" width="1180.0" height="15.0" fill="rgb(229,121,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="735.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>block_invalidatepage (7 samples, 0.07%)</title><rect x="1022.0" y="309" width="0.8" height="15.0" fill="rgb(247,119,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1024.98" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_da_write_end (2 samples, 0.02%)</title><rect x="1013.0" y="341" width="0.3" height="15.0" fill="rgb(249,95,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.02" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>common_file_perm (1 samples, 0.01%)</title><rect x="1005.0" y="357" width="0.1" height="15.0" fill="rgb(241,110,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.00" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_promoteAllPinnedObjects_18ed0c2aaabf58f7ac9f2da6c29b77498a39130c (2 samples, 0.02%)</title><rect x="1053.3" y="325" width="0.2" height="15.0" fill="rgb(238,31,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ReentrantLock_unlock_86cdca028e9dd52644b7822ba738ec004cf0c360 (1 samples, 0.01%)</title><rect x="1014.4" y="533" width="0.1" height="15.0" fill="rgb(205,54,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.42" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>perf_event_task_tick (1 samples, 0.01%)</title><rect x="655.5" y="421" width="0.1" height="15.0" fill="rgb(243,84,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.47" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mem_cgroup_try_charge (3 samples, 0.03%)</title><rect x="1163.3" y="229" width="0.3" height="15.0" fill="rgb(235,19,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.26" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_inode_csum.isra.60 (2 samples, 0.02%)</title><rect x="1018.4" y="309" width="0.2" height="15.0" fill="rgb(224,146,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.37" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>swapgs_restore_regs_and_return_to_usermode (16 samples, 0.16%)</title><rect x="896.5" y="517" width="1.9" height="15.0" fill="rgb(214,139,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="899.51" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>String_constructor_bea7661f4e328798935339561607b4a139be1527 (423 samples, 4.17%)</title><rect x="1036.6" y="613" width="49.2" height="15.0" fill="rgb(225,165,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1039.63" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Stri..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_vma_policy.part.37 (1 samples, 0.01%)</title><rect x="1053.1" y="421" width="0.2" height="15.0" fill="rgb(234,169,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.14" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>find_get_pages_range (1 samples, 0.01%)</title><rect x="1157.8" y="245" width="0.1" height="15.0" fill="rgb(241,118,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.79" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_syscall_64 (58 samples, 0.57%)</title><rect x="1005.5" y="469" width="6.7" height="15.0" fill="rgb(210,142,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.47" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (50 samples, 0.49%)</title><rect x="836.5" y="357" width="5.8" height="15.0" fill="rgb(225,27,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>insert_work (1 samples, 0.01%)</title><rect x="210.0" y="325" width="0.1" height="15.0" fill="rgb(213,5,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tick_do_update_jiffies64.part.15 (1 samples, 0.01%)</title><rect x="24.3" y="517" width="0.1" height="15.0" fill="rgb(254,66,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.30" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_node_alloc.constprop.19 (1 samples, 0.01%)</title><rect x="1163.6" y="181" width="0.1" height="15.0" fill="rgb(248,171,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.60" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ReentrantLock$NonfairSync_lock_e32a97fa140cf6c249ef378da246138ec0db4101 (1 samples, 0.01%)</title><rect x="1095.8" y="533" width="0.1" height="15.0" fill="rgb(226,59,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.81" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__close_fd (1 samples, 0.01%)</title><rect x="1005.5" y="437" width="0.1" height="15.0" fill="rgb(254,92,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.47" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>insert_work (1 samples, 0.01%)</title><rect x="899.3" y="325" width="0.1" height="15.0" fill="rgb(242,213,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.30" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>release_pages (20 samples, 0.20%)</title><rect x="837.9" y="117" width="2.3" height="15.0" fill="rgb(240,103,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.91" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Space_releaseUnalignedHeapChunks_e7221d17760242bb1ff4d4339ca865890c2da625 (1 samples, 0.01%)</title><rect x="836.6" y="293" width="0.1" height="15.0" fill="rgb(233,110,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocalAllocation_retireToSpace_1da1a9c6ad5d63dc10ebc1755f9c6dc13aed7666 (1 samples, 0.01%)</title><rect x="842.3" y="341" width="0.1" height="15.0" fill="rgb(229,16,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="845.33" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_next_chunk (1 samples, 0.01%)</title><rect x="1011.7" y="245" width="0.2" height="15.0" fill="rgb(238,21,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.74" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>irq_exit (7 samples, 0.07%)</title><rect x="899.2" y="549" width="0.8" height="15.0" fill="rgb(215,109,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.19" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (211 samples, 2.08%)</title><rect x="810.0" y="581" width="24.5" height="15.0" fill="rgb(223,139,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="813.00" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >A..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__munmap (43 samples, 0.42%)</title><rect x="1054.0" y="293" width="5.0" height="15.0" fill="rgb(245,60,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.95" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_io_completion (7 samples, 0.07%)</title><rect x="899.2" y="469" width="0.8" height="15.0" fill="rgb(238,202,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.19" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pagevec_lru_move_fn (3 samples, 0.03%)</title><rect x="1019.1" y="325" width="0.3" height="15.0" fill="rgb(209,164,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1022.07" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_scr_read (1 samples, 0.01%)</title><rect x="24.4" y="421" width="0.1" height="15.0" fill="rgb(250,1,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.42" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pagecache_get_page (7 samples, 0.07%)</title><rect x="1003.3" y="293" width="0.8" height="15.0" fill="rgb(253,207,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.26" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__do_page_fault (197 samples, 1.94%)</title><rect x="873.5" y="485" width="22.9" height="15.0" fill="rgb(207,199,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="876.49" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crc32c_pcl_intel_update (1 samples, 0.01%)</title><rect x="1016.0" y="325" width="0.2" height="15.0" fill="rgb(242,94,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.05" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>flush_tlb_batched_pending (1 samples, 0.01%)</title><rect x="1056.4" y="149" width="0.1" height="15.0" fill="rgb(216,82,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1059.40" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mark_inode_dirty (2 samples, 0.02%)</title><rect x="1168.1" y="229" width="0.3" height="15.0" fill="rgb(234,155,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1171.14" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>filp_close (1 samples, 0.01%)</title><rect x="1005.5" y="421" width="0.1" height="15.0" fill="rgb(227,128,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.47" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>UTF_8$Encoder_encodeArrayLoop_03b2b5daf0b1f3b480000bdc57f957561d05eaef (13 samples, 0.13%)</title><rect x="1001.6" y="517" width="1.5" height="15.0" fill="rgb(237,128,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1004.63" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_poisoning_enabled (1 samples, 0.01%)</title><rect x="890.2" y="389" width="0.1" height="15.0" fill="rgb(208,192,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="893.23" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sata_scr_read (1 samples, 0.01%)</title><rect x="24.4" y="437" width="0.1" height="15.0" fill="rgb(205,81,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.42" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kthread_data (1 samples, 0.01%)</title><rect x="899.3" y="261" width="0.1" height="15.0" fill="rgb(227,106,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.30" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (49 samples, 0.48%)</title><rect x="1053.3" y="389" width="5.7" height="15.0" fill="rgb(238,65,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>entry_SYSCALL_64_after_hwframe (135 samples, 1.33%)</title><rect x="1155.9" y="469" width="15.7" height="15.0" fill="rgb(230,13,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1158.93" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>start_this_handle (3 samples, 0.03%)</title><rect x="1157.3" y="261" width="0.4" height="15.0" fill="rgb(250,75,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.33" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>VMOperationControl_enqueue_39761dd9ec48374cbb76bed9d631ff449ddbd20b (51 samples, 0.50%)</title><rect x="836.5" y="485" width="5.9" height="15.0" fill="rgb(226,18,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ledtrig_disk_activity (1 samples, 0.01%)</title><rect x="209.9" y="389" width="0.1" height="15.0" fill="rgb(210,110,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>unmap_single_vma (21 samples, 0.21%)</title><rect x="1056.4" y="165" width="2.4" height="15.0" fill="rgb(210,111,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1059.40" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>flush_tlb_mm_range (1 samples, 0.01%)</title><rect x="1056.3" y="133" width="0.1" height="15.0" fill="rgb(235,112,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1059.28" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_IRQ (1 samples, 0.01%)</title><rect x="1095.3" y="581" width="0.2" height="15.0" fill="rgb(228,65,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.35" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ret_from_intr (1 samples, 0.01%)</title><rect x="1187.1" y="613" width="0.1" height="15.0" fill="rgb(242,73,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>find_vma (2 samples, 0.02%)</title><rect x="1075.2" y="469" width="0.3" height="15.0" fill="rgb(226,30,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1078.23" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apparmor_file_permission (1 samples, 0.01%)</title><rect x="1005.0" y="373" width="0.1" height="15.0" fill="rgb(213,66,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.00" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_releaseSpaces_641969b81cd483bcf6b361a07e9c7f7c5a35d412 (47 samples, 0.46%)</title><rect x="1053.5" y="341" width="5.5" height="15.0" fill="rgb(219,63,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.49" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>copy_user_enhanced_fast_string (1 samples, 0.01%)</title><rect x="1004.9" y="309" width="0.1" height="15.0" fill="rgb(244,29,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.88" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_da_get_block_prep (2 samples, 0.02%)</title><rect x="1012.7" y="309" width="0.2" height="15.0" fill="rgb(235,11,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.67" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_single_level_irq_intr (1 samples, 0.01%)</title><rect x="24.4" y="501" width="0.1" height="15.0" fill="rgb(226,189,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.42" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__fput (57 samples, 0.56%)</title><rect x="1005.6" y="405" width="6.6" height="15.0" fill="rgb(244,209,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.58" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>cap_vm_enough_memory (1 samples, 0.01%)</title><rect x="1187.3" y="565" width="0.1" height="15.0" fill="rgb(217,100,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.33" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__dec_node_state (1 samples, 0.01%)</title><rect x="1058.7" y="101" width="0.1" height="15.0" fill="rgb(236,102,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1061.72" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__pagevec_lru_add_fn (4 samples, 0.04%)</title><rect x="1081.6" y="373" width="0.5" height="15.0" fill="rgb(235,12,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1084.63" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Charset_lookup_906b2ff134a6e988f1cd5ca17bc49baba5f5b77a (1 samples, 0.01%)</title><rect x="1024.4" y="565" width="0.1" height="15.0" fill="rgb(205,59,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.42" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__libc_write (138 samples, 1.36%)</title><rect x="1155.7" y="485" width="16.0" height="15.0" fill="rgb(220,111,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1158.70" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (49 samples, 0.48%)</title><rect x="1053.3" y="533" width="5.7" height="15.0" fill="rgb(247,172,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_request (2 samples, 0.02%)</title><rect x="1007.8" y="229" width="0.2" height="15.0" fill="rgb(216,24,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.79" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileOutputStream_open_b658c0e7809a722c2096803f1c4478059c90eec4 (82 samples, 0.81%)</title><rect x="1014.5" y="565" width="9.6" height="15.0" fill="rgb(233,188,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.53" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_ext_insert_extent (1 samples, 0.01%)</title><rect x="1008.1" y="261" width="0.2" height="15.0" fill="rgb(224,145,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.14" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>queue_work_on (1 samples, 0.01%)</title><rect x="899.3" y="357" width="0.1" height="15.0" fill="rgb(211,160,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.30" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>UTF_8$Encoder_encodeArrayLoop_03b2b5daf0b1f3b480000bdc57f957561d05eaef (506 samples, 4.99%)</title><rect x="1096.5" y="501" width="58.8" height="15.0" fill="rgb(240,7,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1099.51" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >UTF_8$..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>unmap_region (1 samples, 0.01%)</title><rect x="836.6" y="181" width="0.1" height="15.0" fill="rgb(227,6,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__close (58 samples, 0.57%)</title><rect x="1005.5" y="501" width="6.7" height="15.0" fill="rgb(230,135,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.47" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_da_write_begin (67 samples, 0.66%)</title><rect x="1157.0" y="309" width="7.8" height="15.0" fill="rgb(233,127,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.98" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>anon_vma_interval_tree_insert (2 samples, 0.02%)</title><rect x="1188.4" y="533" width="0.2" height="15.0" fill="rgb(244,112,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1191.37" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>unmap_region (38 samples, 0.37%)</title><rect x="1054.4" y="197" width="4.4" height="15.0" fill="rgb(210,117,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.42" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_writepages (53 samples, 0.52%)</title><rect x="1005.8" y="309" width="6.2" height="15.0" fill="rgb(222,66,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.81" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (51 samples, 0.50%)</title><rect x="836.5" y="469" width="5.9" height="15.0" fill="rgb(207,87,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__pte_alloc (1 samples, 0.01%)</title><rect x="836.0" y="421" width="0.2" height="15.0" fill="rgb(239,137,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.05" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_io_completion (2 samples, 0.02%)</title><rect x="655.9" y="437" width="0.3" height="15.0" fill="rgb(225,217,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.93" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_prep_fn (2 samples, 0.02%)</title><rect x="1006.9" y="197" width="0.2" height="15.0" fill="rgb(205,109,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.86" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_queue_bio (7 samples, 0.07%)</title><rect x="1007.2" y="245" width="0.8" height="15.0" fill="rgb(233,8,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.21" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>submit_bio (8 samples, 0.08%)</title><rect x="1007.2" y="277" width="0.9" height="15.0" fill="rgb(235,140,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.21" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>OutputStreamWriter_constructor_cd9bb7a3be0e4fcc89a4a62ae29aba1ecc8342f8 (4 samples, 0.04%)</title><rect x="1024.3" y="597" width="0.5" height="15.0" fill="rgb(245,8,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.30" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pmd_pfn (1 samples, 0.01%)</title><rect x="895.7" y="437" width="0.1" height="15.0" fill="rgb(238,0,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.70" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>intel_pmu_enable_all (4 samples, 0.04%)</title><rect x="988.5" y="437" width="0.5" height="15.0" fill="rgb(230,92,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.49" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>setup_new_exec (4 samples, 0.04%)</title><rect x="1189.5" y="581" width="0.5" height="15.0" fill="rgb(238,188,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>end_page_writeback (2 samples, 0.02%)</title><rect x="899.7" y="373" width="0.2" height="15.0" fill="rgb(245,62,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.65" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_group_desc_csum (1 samples, 0.01%)</title><rect x="1017.7" y="293" width="0.1" height="15.0" fill="rgb(231,84,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.67" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_collectOperation_fe62e9e851887eaa004b303d3c0ff53e933472f2 (51 samples, 0.50%)</title><rect x="836.5" y="389" width="5.9" height="15.0" fill="rgb(234,62,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq (1 samples, 0.01%)</title><rect x="24.4" y="581" width="0.1" height="15.0" fill="rgb(239,58,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.42" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event_percpu (2 samples, 0.02%)</title><rect x="655.7" y="469" width="0.2" height="15.0" fill="rgb(235,91,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.70" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>find_get_entries (5 samples, 0.05%)</title><rect x="1020.7" y="341" width="0.6" height="15.0" fill="rgb(223,178,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1023.70" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_init_sgtable (2 samples, 0.02%)</title><rect x="1006.9" y="117" width="0.2" height="15.0" fill="rgb(215,160,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.86" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_finish_request (2 samples, 0.02%)</title><rect x="656.2" y="421" width="0.2" height="15.0" fill="rgb(229,16,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.16" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_syscall_64 (78 samples, 0.77%)</title><rect x="1015.0" y="517" width="9.1" height="15.0" fill="rgb(226,135,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>queue_work_on (1 samples, 0.01%)</title><rect x="210.0" y="357" width="0.1" height="15.0" fill="rgb(238,167,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__kernel_fpu_begin (1 samples, 0.01%)</title><rect x="1008.6" y="181" width="0.1" height="15.0" fill="rgb(233,115,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.60" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>[[kernel.kallsyms]] (1 samples, 0.01%)</title><rect x="10.0" y="693" width="0.1" height="15.0" fill="rgb(244,42,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__hrtimer_run_queues (1 samples, 0.01%)</title><rect x="665.8" y="533" width="0.1" height="15.0" fill="rgb(227,54,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="668.81" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_boundsCheck_350aa7a80b81c8ca3d27094442ef90051f4351e5 (71 samples, 0.70%)</title><rect x="316.5" y="581" width="8.3" height="15.0" fill="rgb(238,42,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="319.51" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_es_lookup_extent (2 samples, 0.02%)</title><rect x="1160.2" y="261" width="0.3" height="15.0" fill="rgb(219,37,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1163.23" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crc_95 (1 samples, 0.01%)</title><rect x="1008.8" y="197" width="0.2" height="15.0" fill="rgb(219,92,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.84" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="1012.7" y="293" width="0.1" height="15.0" fill="rgb(254,140,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.67" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_munmap (1 samples, 0.01%)</title><rect x="836.6" y="197" width="0.1" height="15.0" fill="rgb(220,208,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>x86_pmu_enable (1 samples, 0.01%)</title><rect x="655.5" y="389" width="0.1" height="15.0" fill="rgb(239,177,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.47" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apic_timer_interrupt (1 samples, 0.01%)</title><rect x="899.0" y="581" width="0.1" height="15.0" fill="rgb(242,83,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="901.95" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>AbstractQueuedSynchronizer_acquire_d7c03c3cee25dd5a735b5a4334799f668f70ef36 (1 samples, 0.01%)</title><rect x="1095.8" y="517" width="0.1" height="15.0" fill="rgb(217,208,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.81" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_cache_tree_insert (2 samples, 0.02%)</title><rect x="1003.7" y="245" width="0.3" height="15.0" fill="rgb(206,86,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.72" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>jbd2_journal_stop (1 samples, 0.01%)</title><rect x="1164.8" y="277" width="0.1" height="15.0" fill="rgb(221,37,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.77" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>search_binary_handler (4 samples, 0.04%)</title><rect x="1189.5" y="613" width="0.5" height="15.0" fill="rgb(215,188,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>jbd2__journal_start (1 samples, 0.01%)</title><rect x="1015.3" y="373" width="0.2" height="15.0" fill="rgb(224,124,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.35" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocal_get_89205c86d6fa365525945ac732abfddef7dd46f7 (1 samples, 0.01%)</title><rect x="1014.9" y="453" width="0.1" height="15.0" fill="rgb(234,154,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.88" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>alloc_page_buffers (1 samples, 0.01%)</title><rect x="1157.9" y="261" width="0.1" height="15.0" fill="rgb(252,66,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.91" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mb_release_inode_pa.isra.33 (1 samples, 0.01%)</title><rect x="1012.0" y="357" width="0.1" height="15.0" fill="rgb(247,61,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.98" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pagevec_lru_move_fn (4 samples, 0.04%)</title><rect x="1164.0" y="213" width="0.4" height="15.0" fill="rgb(217,3,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.95" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>schedule (1 samples, 0.01%)</title><rect x="666.4" y="549" width="0.1" height="15.0" fill="rgb(211,108,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.40" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>arch_tlb_finish_mmu (17 samples, 0.17%)</title><rect x="1054.4" y="165" width="2.0" height="15.0" fill="rgb(218,130,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.42" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__entry_trampoline_start (2 samples, 0.02%)</title><rect x="1155.7" y="469" width="0.2" height="15.0" fill="rgb(212,189,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1158.70" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>vma_merge (4 samples, 0.04%)</title><rect x="1188.1" y="565" width="0.5" height="15.0" fill="rgb(205,32,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1191.14" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__rb_insert_augmented (1 samples, 0.01%)</title><rect x="1054.2" y="149" width="0.1" height="15.0" fill="rgb(243,34,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.19" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StreamEncoder_implWrite_48b8c9563303fbfb3ecc4133f4cb253ae9ad5c52 (31 samples, 0.31%)</title><rect x="1001.5" y="565" width="3.6" height="15.0" fill="rgb(244,93,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1004.51" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_add_new_anon_rmap (3 samples, 0.03%)</title><rect x="1083.1" y="421" width="0.4" height="15.0" fill="rgb(219,191,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1086.14" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_get_inode_loc (1 samples, 0.01%)</title><rect x="1004.4" y="229" width="0.1" height="15.0" fill="rgb(254,129,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.42" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>CharBuffer_wrap_d1370e22d6c5731c9f8c498e1c14ed745e92e245 (1 samples, 0.01%)</title><rect x="1001.5" y="549" width="0.1" height="15.0" fill="rgb(252,18,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1004.51" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__kmalloc_node (1 samples, 0.01%)</title><rect x="1007.9" y="181" width="0.1" height="15.0" fill="rgb(220,216,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.91" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_promoteAllPinnedObjects_18ed0c2aaabf58f7ac9f2da6c29b77498a39130c (1 samples, 0.01%)</title><rect x="836.5" y="325" width="0.1" height="15.0" fill="rgb(243,70,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__do_page_fault (2 samples, 0.02%)</title><rect x="1053.0" y="485" width="0.3" height="15.0" fill="rgb(207,111,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.02" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event (2 samples, 0.02%)</title><rect x="655.7" y="485" width="0.2" height="15.0" fill="rgb(223,208,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.70" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>unmap_page_range (20 samples, 0.20%)</title><rect x="1056.5" y="149" width="2.3" height="15.0" fill="rgb(238,95,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1059.51" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_handle_port_interrupt (1 samples, 0.01%)</title><rect x="209.9" y="437" width="0.1" height="15.0" fill="rgb(230,153,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_handle_dirty_metadata (1 samples, 0.01%)</title><rect x="1165.3" y="197" width="0.2" height="15.0" fill="rgb(250,213,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1168.35" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tick_sched_handle (1 samples, 0.01%)</title><rect x="655.5" y="469" width="0.1" height="15.0" fill="rgb(252,66,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.47" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>vm_munmap (42 samples, 0.41%)</title><rect x="837.3" y="229" width="4.9" height="15.0" fill="rgb(249,175,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.33" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>CharsetEncoder_constructor_4a2d3e8698a40d3a727d6eb850950eb59c4787d6 (2 samples, 0.02%)</title><rect x="1024.5" y="533" width="0.3" height="15.0" fill="rgb(215,112,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.53" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>create_empty_buffers (2 samples, 0.02%)</title><rect x="1157.9" y="277" width="0.2" height="15.0" fill="rgb(251,111,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.91" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>OSCommittedMemoryProvider_free_c2bc7dae826b0ce6c30783fd18ce36ba9ebdae91 (2 samples, 0.02%)</title><rect x="1053.6" y="293" width="0.2" height="15.0" fill="rgb(230,60,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.60" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>String_getChars_c1abef6cde0009d1f55ec852da6e07b19eb1cade (3,845 samples, 37.89%)</title><rect x="218.8" y="597" width="447.1" height="15.0" fill="rgb(228,28,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="221.84" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >String_getChars_c1abef6cde0009d1f55ec852da6e07b19eb1cade</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__sched_text_start (4 samples, 0.04%)</title><rect x="988.5" y="517" width="0.5" height="15.0" fill="rgb(244,108,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.49" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prefetch_freepointer (1 samples, 0.01%)</title><rect x="1163.6" y="149" width="0.1" height="15.0" fill="rgb(232,5,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.60" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_done_softirq (1 samples, 0.01%)</title><rect x="522.8" y="485" width="0.1" height="15.0" fill="rgb(253,135,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>native_write_msr (4 samples, 0.04%)</title><rect x="1189.5" y="469" width="0.5" height="15.0" fill="rgb(212,9,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_edge_irq (2 samples, 0.02%)</title><rect x="655.7" y="501" width="0.2" height="15.0" fill="rgb(206,190,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.70" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__intel_pmu_enable_all.constprop.19 (4 samples, 0.04%)</title><rect x="1154.9" y="325" width="0.4" height="15.0" fill="rgb(226,95,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.88" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mark_inode_dirty (23 samples, 0.23%)</title><rect x="1164.9" y="277" width="2.7" height="15.0" fill="rgb(215,24,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.88" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_finish_request (1 samples, 0.01%)</title><rect x="522.8" y="405" width="0.1" height="15.0" fill="rgb(224,53,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_done_softirq (1 samples, 0.01%)</title><rect x="210.0" y="517" width="0.1" height="15.0" fill="rgb(222,215,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (49 samples, 0.48%)</title><rect x="1053.3" y="421" width="5.7" height="15.0" fill="rgb(233,124,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="665.8" y="549" width="0.1" height="15.0" fill="rgb(220,181,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="668.81" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crypto_shash_update (1 samples, 0.01%)</title><rect x="1016.0" y="341" width="0.2" height="15.0" fill="rgb(236,136,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.05" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Space_release_974313a5122e8333f52d54fdfc3cd70634f9bdf3 (48 samples, 0.47%)</title><rect x="836.7" y="325" width="5.6" height="15.0" fill="rgb(205,169,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.74" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>block_write_end (11 samples, 0.11%)</title><rect x="1167.6" y="277" width="1.2" height="15.0" fill="rgb(216,188,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1170.56" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileOutputStream_writeBytes_0f5ff6259fd4b0ea6b80bf2411b95ee76cfaadc3 (141 samples, 1.39%)</title><rect x="1155.3" y="501" width="16.4" height="15.0" fill="rgb(240,134,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1158.35" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>try_charge (6 samples, 0.06%)</title><rect x="894.3" y="405" width="0.7" height="15.0" fill="rgb(224,204,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="897.30" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__pagevec_release (8 samples, 0.08%)</title><rect x="1019.0" y="357" width="0.9" height="15.0" fill="rgb(246,67,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.95" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_softirq_done (1 samples, 0.01%)</title><rect x="210.0" y="501" width="0.1" height="15.0" fill="rgb(245,62,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>irq_exit (2 samples, 0.02%)</title><rect x="655.9" y="517" width="0.3" height="15.0" fill="rgb(235,0,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.93" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_next_chunk (1 samples, 0.01%)</title><rect x="1157.8" y="229" width="0.1" height="15.0" fill="rgb(254,73,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.79" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>node_page_state (1 samples, 0.01%)</title><rect x="1162.0" y="197" width="0.1" height="15.0" fill="rgb(240,178,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1164.98" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pick_next_task_fair (1 samples, 0.01%)</title><rect x="989.1" y="517" width="0.1" height="15.0" fill="rgb(217,140,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="992.07" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="209.9" y="485" width="0.1" height="15.0" fill="rgb(245,83,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_setattr (64 samples, 0.63%)</title><rect x="1015.3" y="405" width="7.5" height="15.0" fill="rgb(235,142,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.35" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_handle_port_interrupt (1 samples, 0.01%)</title><rect x="24.4" y="469" width="0.1" height="15.0" fill="rgb(237,120,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.42" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_unprep_fn (1 samples, 0.01%)</title><rect x="656.3" y="405" width="0.1" height="15.0" fill="rgb(251,55,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.28" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_counter_uncharge (1 samples, 0.01%)</title><rect x="1056.0" y="69" width="0.2" height="15.0" fill="rgb(217,68,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1059.05" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>anon_vma_clone (1 samples, 0.01%)</title><rect x="1054.3" y="181" width="0.1" height="15.0" fill="rgb(252,146,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.30" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>up_read (1 samples, 0.01%)</title><rect x="836.4" y="469" width="0.1" height="15.0" fill="rgb(254,55,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.40" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sata_async_notification (1 samples, 0.01%)</title><rect x="24.4" y="453" width="0.1" height="15.0" fill="rgb(250,107,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.42" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>path_openat (77 samples, 0.76%)</title><rect x="1015.1" y="453" width="9.0" height="15.0" fill="rgb(233,21,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.12" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_file_write_iter (16 samples, 0.16%)</title><rect x="1003.1" y="373" width="1.9" height="15.0" fill="rgb(233,211,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__page_cache_alloc (10 samples, 0.10%)</title><rect x="1161.3" y="261" width="1.1" height="15.0" fill="rgb(215,70,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1164.28" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_peek_request (5 samples, 0.05%)</title><rect x="1006.5" y="213" width="0.6" height="15.0" fill="rgb(239,182,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.51" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_nonda_switch (1 samples, 0.01%)</title><rect x="1169.0" y="309" width="0.1" height="15.0" fill="rgb(209,139,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1171.95" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tlb_flush_mmu_free (1 samples, 0.01%)</title><rect x="836.6" y="133" width="0.1" height="15.0" fill="rgb(219,168,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock (1 samples, 0.01%)</title><rect x="1159.1" y="261" width="0.1" height="15.0" fill="rgb(230,71,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1162.07" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>account_page_dirtied (2 samples, 0.02%)</title><rect x="1168.5" y="213" width="0.2" height="15.0" fill="rgb(223,62,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1171.49" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ret_from_intr (1 samples, 0.01%)</title><rect x="522.8" y="549" width="0.1" height="15.0" fill="rgb(227,213,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>syscall_return_via_sysret (1 samples, 0.01%)</title><rect x="842.2" y="277" width="0.1" height="15.0" fill="rgb(225,31,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="845.21" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__entry_trampoline_start (1 samples, 0.01%)</title><rect x="837.1" y="277" width="0.1" height="15.0" fill="rgb(249,80,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.09" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>UTF_8$Encoder_encodeLoop_43b2c5e18c09dbd0ecfea76c24981625fe474c29 (13 samples, 0.13%)</title><rect x="1001.6" y="533" width="1.5" height="15.0" fill="rgb(222,148,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1004.63" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>find_get_entry (1 samples, 0.01%)</title><rect x="1017.8" y="277" width="0.1" height="15.0" fill="rgb(236,208,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.79" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_inode_dirty (1 samples, 0.01%)</title><rect x="1015.7" y="389" width="0.1" height="15.0" fill="rgb(210,219,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.70" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_iloc_dirty (1 samples, 0.01%)</title><rect x="1013.0" y="261" width="0.1" height="15.0" fill="rgb(241,166,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.02" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_reserve_inode_write (1 samples, 0.01%)</title><rect x="1004.4" y="245" width="0.1" height="15.0" fill="rgb(246,185,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.42" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_setup_cmnd (2 samples, 0.02%)</title><rect x="1006.9" y="181" width="0.2" height="15.0" fill="rgb(209,222,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.86" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__brelse (1 samples, 0.01%)</title><rect x="1017.2" y="229" width="0.1" height="15.0" fill="rgb(220,48,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.21" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="209.9" y="501" width="0.1" height="15.0" fill="rgb(254,20,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_page_from_freelist (24 samples, 0.24%)</title><rect x="887.1" y="389" width="2.8" height="15.0" fill="rgb(251,102,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="890.09" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>CCharPointerHolderImpl_constructor_41991d6a047b91a89639096a31f75b84e43b7fff (3 samples, 0.03%)</title><rect x="1014.7" y="533" width="0.3" height="15.0" fill="rgb(235,145,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.65" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>test_clear_page_writeback (1 samples, 0.01%)</title><rect x="899.8" y="357" width="0.1" height="15.0" fill="rgb(252,202,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.77" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__dquot_alloc_space (3 samples, 0.03%)</title><rect x="1158.7" y="261" width="0.4" height="15.0" fill="rgb(248,118,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1161.72" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iov_iter_init (1 samples, 0.01%)</title><rect x="1156.5" y="373" width="0.1" height="15.0" fill="rgb(225,168,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.51" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__x64_sys_mmap (15 samples, 0.15%)</title><rect x="1187.3" y="645" width="1.8" height="15.0" fill="rgb(215,114,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.33" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__get_vma_policy (1 samples, 0.01%)</title><rect x="1076.5" y="421" width="0.1" height="15.0" fill="rgb(247,185,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1079.51" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crc32c_pcl_intel_update (1 samples, 0.01%)</title><rect x="1015.7" y="309" width="0.1" height="15.0" fill="rgb(209,171,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.70" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iov_iter_fault_in_readable (3 samples, 0.03%)</title><rect x="1171.2" y="309" width="0.3" height="15.0" fill="rgb(221,121,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1174.16" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_mm_fault (2 samples, 0.02%)</title><rect x="1053.0" y="453" width="0.3" height="15.0" fill="rgb(253,150,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.02" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_journal_start_sb (1 samples, 0.01%)</title><rect x="1003.1" y="309" width="0.2" height="15.0" fill="rgb(243,174,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>schedule (1 samples, 0.01%)</title><rect x="989.1" y="549" width="0.1" height="15.0" fill="rgb(240,150,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="992.07" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_next_chunk (1 samples, 0.01%)</title><rect x="1007.1" y="245" width="0.1" height="15.0" fill="rgb(223,133,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.09" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>new_sync_write (16 samples, 0.16%)</title><rect x="1003.1" y="389" width="1.9" height="15.0" fill="rgb(210,219,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_exit_to_usermode (4 samples, 0.04%)</title><rect x="988.5" y="565" width="0.5" height="15.0" fill="rgb(236,226,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.49" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sg_alloc_table_chained (1 samples, 0.01%)</title><rect x="1007.0" y="101" width="0.1" height="15.0" fill="rgb(233,146,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.98" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>capable_wrt_inode_uidgid (3 samples, 0.03%)</title><rect x="1023.3" y="389" width="0.3" height="15.0" fill="rgb(223,54,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.26" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crc_63 (1 samples, 0.01%)</title><rect x="1008.7" y="197" width="0.1" height="15.0" fill="rgb(234,5,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.72" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_sys_open (78 samples, 0.77%)</title><rect x="1015.0" y="485" width="9.1" height="15.0" fill="rgb(214,35,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.00" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>lru_cache_add (1 samples, 0.01%)</title><rect x="1004.0" y="261" width="0.1" height="15.0" fill="rgb(245,98,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.95" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>lock_page_memcg (1 samples, 0.01%)</title><rect x="1004.7" y="245" width="0.1" height="15.0" fill="rgb(222,97,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.65" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>AbstractStringBuilder_append_1340115408cd391d537ecf822a01629777191f12 (53 samples, 0.52%)</title><rect x="10.1" y="629" width="6.2" height="15.0" fill="rgb(243,99,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.12" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocalAllocation_slowPathNewArray_bea3ceda65bd7efe45e06a6c9d05ba3532dba364 (284 samples, 2.80%)</title><rect x="1052.8" y="581" width="33.0" height="15.0" fill="rgb(247,60,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1055.79" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Th..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pvclock_gtod_notify (1 samples, 0.01%)</title><rect x="655.3" y="389" width="0.2" height="15.0" fill="rgb(243,211,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.35" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__set_page_dirty (4 samples, 0.04%)</title><rect x="1168.4" y="229" width="0.4" height="15.0" fill="rgb(217,117,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1171.37" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_pte_fault (2 samples, 0.02%)</title><rect x="1053.0" y="437" width="0.3" height="15.0" fill="rgb(235,226,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.02" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>notify_change (64 samples, 0.63%)</title><rect x="1015.3" y="421" width="7.5" height="15.0" fill="rgb(243,80,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.35" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>rcu_all_qs (1 samples, 0.01%)</title><rect x="1162.2" y="213" width="0.1" height="15.0" fill="rgb(205,12,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1165.21" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (138 samples, 1.36%)</title><rect x="1036.7" y="581" width="16.1" height="15.0" fill="rgb(232,197,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1039.74" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hrtimer_interrupt (1 samples, 0.01%)</title><rect x="899.0" y="549" width="0.1" height="15.0" fill="rgb(221,135,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="901.95" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_iloc_dirty (1 samples, 0.01%)</title><rect x="1015.7" y="373" width="0.1" height="15.0" fill="rgb(219,24,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.70" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileWriter_constructor_4d008567e87e46ca777f41748ca3737e4d1d8d30 (90 samples, 0.89%)</title><rect x="1014.3" y="613" width="10.5" height="15.0" fill="rgb(234,81,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.30" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (2,854 samples, 28.12%)</title><rect x="324.8" y="581" width="331.8" height="15.0" fill="rgb(230,71,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.77" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ArraycopySnippets_doArraycopy_043961c4b8a78c..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kblockd_schedule_work (1 samples, 0.01%)</title><rect x="899.3" y="373" width="0.1" height="15.0" fill="rgb(232,136,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.30" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__libc_start_main (10,123 samples, 99.75%)</title><rect x="10.1" y="677" width="1177.1" height="15.0" fill="rgb(232,200,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.12" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>d_lookup (1 samples, 0.01%)</title><rect x="1023.1" y="421" width="0.2" height="15.0" fill="rgb(233,146,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.14" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_finish_command (1 samples, 0.01%)</title><rect x="1187.1" y="517" width="0.1" height="15.0" fill="rgb(245,225,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>start_this_handle (1 samples, 0.01%)</title><rect x="1003.1" y="277" width="0.2" height="15.0" fill="rgb(205,129,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>memcg_kmem_get_cache (2 samples, 0.02%)</title><rect x="1022.8" y="405" width="0.2" height="15.0" fill="rgb(207,100,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1025.79" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>memset_erms (1 samples, 0.01%)</title><rect x="1012.9" y="325" width="0.1" height="15.0" fill="rgb(239,102,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.91" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>clear_page_dirty_for_io (1 samples, 0.01%)</title><rect x="1009.2" y="261" width="0.1" height="15.0" fill="rgb(244,227,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1012.19" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_end_bio (1 samples, 0.01%)</title><rect x="666.3" y="421" width="0.1" height="15.0" fill="rgb(246,111,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.28" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mod_zone_page_state (1 samples, 0.01%)</title><rect x="1019.0" y="341" width="0.1" height="15.0" fill="rgb(245,221,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.95" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_end_request (1 samples, 0.01%)</title><rect x="666.3" y="469" width="0.1" height="15.0" fill="rgb(252,121,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.28" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generic_perform_write (8 samples, 0.08%)</title><rect x="1012.4" y="357" width="1.0" height="15.0" fill="rgb(223,51,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.44" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_IRQ (8 samples, 0.08%)</title><rect x="899.1" y="565" width="0.9" height="15.0" fill="rgb(235,132,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.07" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_handle_port_intr (1 samples, 0.01%)</title><rect x="209.9" y="453" width="0.1" height="15.0" fill="rgb(214,126,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_counter_cancel (1 samples, 0.01%)</title><rect x="1056.0" y="53" width="0.2" height="15.0" fill="rgb(238,33,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1059.05" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="1095.3" y="501" width="0.2" height="15.0" fill="rgb(224,173,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.35" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tick_sched_do_timer (1 samples, 0.01%)</title><rect x="24.3" y="533" width="0.1" height="15.0" fill="rgb(225,30,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.30" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__block_commit_write.isra.37 (2 samples, 0.02%)</title><rect x="1004.7" y="277" width="0.2" height="15.0" fill="rgb(234,70,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.65" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_next_chunk (2 samples, 0.02%)</title><rect x="1021.0" y="325" width="0.3" height="15.0" fill="rgb(251,39,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1024.05" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__es_insert_extent (1 samples, 0.01%)</title><rect x="1160.6" y="213" width="0.1" height="15.0" fill="rgb(224,46,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1163.58" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bio_endio (4 samples, 0.04%)</title><rect x="899.4" y="421" width="0.5" height="15.0" fill="rgb(230,116,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.42" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iov_iter_copy_from_user_atomic (1 samples, 0.01%)</title><rect x="1004.9" y="325" width="0.1" height="15.0" fill="rgb(249,226,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.88" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mempool_alloc_slab (1 samples, 0.01%)</title><rect x="1010.6" y="213" width="0.1" height="15.0" fill="rgb(236,84,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.58" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_done_softirq (1 samples, 0.01%)</title><rect x="1187.1" y="549" width="0.1" height="15.0" fill="rgb(205,15,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_handle_port_intr (1 samples, 0.01%)</title><rect x="899.1" y="453" width="0.1" height="15.0" fill="rgb(235,18,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.07" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_finish_bio (4 samples, 0.04%)</title><rect x="899.4" y="389" width="0.5" height="15.0" fill="rgb(227,103,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.42" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_unref_page_commit (1 samples, 0.01%)</title><rect x="837.6" y="85" width="0.1" height="15.0" fill="rgb(233,23,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.56" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>update_wall_time (1 samples, 0.01%)</title><rect x="665.8" y="469" width="0.1" height="15.0" fill="rgb(247,225,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="668.81" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>perf_pmu_enable.part.105 (4 samples, 0.04%)</title><rect x="1154.9" y="373" width="0.4" height="15.0" fill="rgb(240,185,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.88" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_io_submit (8 samples, 0.08%)</title><rect x="1007.2" y="293" width="0.9" height="15.0" fill="rgb(212,115,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.21" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="988.3" y="485" width="0.1" height="15.0" fill="rgb(231,14,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.26" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__libc_write (9 samples, 0.09%)</title><rect x="1012.4" y="517" width="1.1" height="15.0" fill="rgb(219,28,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.44" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>jbd2_journal_grab_journal_head (3 samples, 0.03%)</title><rect x="1022.2" y="245" width="0.4" height="15.0" fill="rgb(237,76,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1025.21" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mark_inode_dirty (1 samples, 0.01%)</title><rect x="1013.0" y="309" width="0.1" height="15.0" fill="rgb(231,122,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.02" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generic_write_end (35 samples, 0.34%)</title><rect x="1164.9" y="293" width="4.1" height="15.0" fill="rgb(230,219,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.88" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__radix_tree_create (1 samples, 0.01%)</title><rect x="1003.7" y="229" width="0.1" height="15.0" fill="rgb(213,174,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.72" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>elv_merge (1 samples, 0.01%)</title><rect x="1007.7" y="229" width="0.1" height="15.0" fill="rgb(229,139,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.67" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_promoteIndividualPinnedObjects_d5cefd7052bfbb1fb7e1e20bf4f2030d774d06f9 (1 samples, 0.01%)</title><rect x="836.5" y="309" width="0.1" height="15.0" fill="rgb(213,35,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_end_request (1 samples, 0.01%)</title><rect x="1187.1" y="485" width="0.1" height="15.0" fill="rgb(228,216,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mpage_map_and_submit_buffers (15 samples, 0.15%)</title><rect x="1009.2" y="293" width="1.7" height="15.0" fill="rgb(250,90,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1012.19" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>cfq_completed_request (1 samples, 0.01%)</title><rect x="522.8" y="357" width="0.1" height="15.0" fill="rgb(221,49,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>alloc_pages_current (4 samples, 0.04%)</title><rect x="1003.3" y="261" width="0.4" height="15.0" fill="rgb(232,193,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.26" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>inode_newsize_ok (1 samples, 0.01%)</title><rect x="1018.6" y="389" width="0.1" height="15.0" fill="rgb(228,139,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.60" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq (1 samples, 0.01%)</title><rect x="895.9" y="437" width="0.1" height="15.0" fill="rgb(207,88,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.93" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="24.4" y="533" width="0.1" height="15.0" fill="rgb(217,197,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.42" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>perf_iterate_ctx (1 samples, 0.01%)</title><rect x="1187.9" y="533" width="0.1" height="15.0" fill="rgb(247,150,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.91" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (79 samples, 0.78%)</title><rect x="656.6" y="581" width="9.2" height="15.0" fill="rgb(216,209,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.63" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__wake_up_common (1 samples, 0.01%)</title><rect x="1015.5" y="325" width="0.1" height="15.0" fill="rgb(229,159,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.47" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_release_file (55 samples, 0.54%)</title><rect x="1005.7" y="389" width="6.4" height="15.0" fill="rgb(225,140,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.70" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>elv_completed_request (1 samples, 0.01%)</title><rect x="522.8" y="373" width="0.1" height="15.0" fill="rgb(235,81,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_io_completion (1 samples, 0.01%)</title><rect x="210.0" y="469" width="0.1" height="15.0" fill="rgb(227,18,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_syscall_64 (15 samples, 0.15%)</title><rect x="1187.3" y="661" width="1.8" height="15.0" fill="rgb(215,182,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.33" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>perf_event_exec (4 samples, 0.04%)</title><rect x="1189.5" y="565" width="0.5" height="15.0" fill="rgb(252,218,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>block_write_end (3 samples, 0.03%)</title><rect x="1004.5" y="293" width="0.4" height="15.0" fill="rgb(234,188,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.53" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_start (1 samples, 0.01%)</title><rect x="1189.4" y="693" width="0.1" height="15.0" fill="rgb(250,27,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.42" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mod_node_page_state (1 samples, 0.01%)</title><rect x="892.1" y="373" width="0.1" height="15.0" fill="rgb(221,54,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="895.09" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__hrtimer_run_queues (1 samples, 0.01%)</title><rect x="24.3" y="565" width="0.1" height="15.0" fill="rgb(207,144,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.30" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>set_bh_page (1 samples, 0.01%)</title><rect x="1158.0" y="261" width="0.1" height="15.0" fill="rgb(241,67,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1161.02" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>UTF_8_updatePositions_39f4b3731b7d789ab12c0b08629e6304badea736 (2 samples, 0.02%)</title><rect x="1154.7" y="485" width="0.2" height="15.0" fill="rgb(229,121,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.65" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>IsolateEnterStub_JavaMainWrapper_run_5087f5482cc9a6abc971913ece43acb471d2631b_a61fe6c26e84dd4037e4629852b5488bfcc16e7e (10,123 samples, 99.75%)</title><rect x="10.1" y="661" width="1177.1" height="15.0" fill="rgb(208,55,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.12" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >IsolateEnterStub_JavaMainWrapper_run_5087f5482cc9a6abc971913ece43acb471d2631b_a61fe6c26e84dd4037e4629852b5488bfcc16e7e</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mpage_prepare_extent_to_map (8 samples, 0.08%)</title><rect x="1010.9" y="293" width="1.0" height="15.0" fill="rgb(236,208,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.93" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>VMOperation_execute_cf32653d50f77acd1b0e5e2f0134344d0d1ef4ba (51 samples, 0.50%)</title><rect x="836.5" y="437" width="5.9" height="15.0" fill="rgb(214,176,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__es_remove_extent (1 samples, 0.01%)</title><rect x="1159.9" y="245" width="0.1" height="15.0" fill="rgb(206,174,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1162.88" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>HeapChunkProvider_produceUnalignedChunk_9156fe54c116e1ae2ef465614ba32ed09923fbf2 (16 samples, 0.16%)</title><rect x="834.7" y="533" width="1.8" height="15.0" fill="rgb(219,212,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.65" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prefetch_freepointer (1 samples, 0.01%)</title><rect x="1010.5" y="165" width="0.1" height="15.0" fill="rgb(231,31,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.47" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>irq_exit (2 samples, 0.02%)</title><rect x="656.2" y="533" width="0.2" height="15.0" fill="rgb(236,201,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.16" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_syscall_64 (1 samples, 0.01%)</title><rect x="836.6" y="245" width="0.1" height="15.0" fill="rgb(223,141,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_single_level_irq_intr (1 samples, 0.01%)</title><rect x="989.0" y="485" width="0.1" height="15.0" fill="rgb(207,205,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>syscall_return_via_sysret (1 samples, 0.01%)</title><rect x="1013.4" y="501" width="0.1" height="15.0" fill="rgb(254,12,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.37" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_pages_and_swap_cache (1 samples, 0.01%)</title><rect x="836.6" y="117" width="0.1" height="15.0" fill="rgb(252,187,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_fault (1 samples, 0.01%)</title><rect x="1189.2" y="677" width="0.1" height="15.0" fill="rgb(208,68,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.19" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sd_uninit_command (1 samples, 0.01%)</title><rect x="656.3" y="389" width="0.1" height="15.0" fill="rgb(224,41,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.28" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__blk_put_request (1 samples, 0.01%)</title><rect x="210.0" y="421" width="0.1" height="15.0" fill="rgb(221,188,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_cond_resched (1 samples, 0.01%)</title><rect x="896.4" y="485" width="0.1" height="15.0" fill="rgb(253,223,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="899.40" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__softirqentry_text_start (1 samples, 0.01%)</title><rect x="1187.1" y="565" width="0.1" height="15.0" fill="rgb(210,160,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StreamEncoder_writeBytes_f4ec1fb2031c34079586c2ca398830a90064f89b (10 samples, 0.10%)</title><rect x="1012.3" y="565" width="1.2" height="15.0" fill="rgb(245,93,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.33" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>native_iret (1 samples, 0.01%)</title><rect x="1070.2" y="517" width="0.1" height="15.0" fill="rgb(216,101,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1073.23" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_inode_attach_jinode (1 samples, 0.01%)</title><rect x="1023.8" y="405" width="0.2" height="15.0" fill="rgb(216,136,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.84" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>____fput (57 samples, 0.56%)</title><rect x="1005.6" y="421" width="6.6" height="15.0" fill="rgb(239,66,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.58" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_lookup_slot (2 samples, 0.02%)</title><rect x="1164.4" y="245" width="0.3" height="15.0" fill="rgb(212,144,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.42" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generic_write_end (5 samples, 0.05%)</title><rect x="1004.3" y="309" width="0.6" height="15.0" fill="rgb(224,164,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.30" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock_irqsave (1 samples, 0.01%)</title><rect x="839.1" y="101" width="0.1" height="15.0" fill="rgb(234,97,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="842.07" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_da_write_begin (5 samples, 0.05%)</title><rect x="1012.4" y="341" width="0.6" height="15.0" fill="rgb(216,167,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.44" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_free_group_clusters_set (1 samples, 0.01%)</title><rect x="1008.5" y="245" width="0.1" height="15.0" fill="rgb(248,6,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.49" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__sched_text_start (1 samples, 0.01%)</title><rect x="666.4" y="533" width="0.1" height="15.0" fill="rgb(235,44,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.40" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__free_pages (1 samples, 0.01%)</title><rect x="837.6" y="117" width="0.1" height="15.0" fill="rgb(230,198,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.56" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kmem_cache_alloc (2 samples, 0.02%)</title><rect x="1022.8" y="421" width="0.2" height="15.0" fill="rgb(214,210,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1025.79" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocalAllocation_disableThreadLocalAllocation_c638158edbbbf04deb806f47319e080057718698 (1 samples, 0.01%)</title><rect x="842.3" y="357" width="0.1" height="15.0" fill="rgb(220,59,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="845.33" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq (1 samples, 0.01%)</title><rect x="899.1" y="549" width="0.1" height="15.0" fill="rgb(217,65,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.07" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__blk_put_request (1 samples, 0.01%)</title><rect x="1187.1" y="453" width="0.1" height="15.0" fill="rgb(210,174,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_handle_port_interrupt (1 samples, 0.01%)</title><rect x="989.0" y="453" width="0.1" height="15.0" fill="rgb(235,38,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>release_pages (14 samples, 0.14%)</title><rect x="1054.7" y="117" width="1.6" height="15.0" fill="rgb(249,208,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.65" y="127.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>AbstractStringBuilder_ensureCapacityInternal_6c1965fadc041359c5b520824fb0c3149b756fa7 (467 samples, 4.60%)</title><rect x="155.8" y="597" width="54.3" height="15.0" fill="rgb(252,48,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="158.81" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Abstr..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_end_request (6 samples, 0.06%)</title><rect x="899.3" y="453" width="0.7" height="15.0" fill="rgb(250,166,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.30" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Integer_getChars_82f199dea097809c4d36418efa9b830b8602768a (765 samples, 7.54%)</title><rect x="900.0" y="597" width="89.0" height="15.0" fill="rgb(245,95,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="903.00" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Integer_ge..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_single_level_irq_intr (1 samples, 0.01%)</title><rect x="209.9" y="469" width="0.1" height="15.0" fill="rgb(220,176,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__update_load_avg_se.isra.45 (1 samples, 0.01%)</title><rect x="656.5" y="437" width="0.1" height="15.0" fill="rgb(229,75,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.51" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_inode_table (1 samples, 0.01%)</title><rect x="1167.4" y="213" width="0.2" height="15.0" fill="rgb(209,202,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1170.44" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>MonitorSupport_monitorEnter_d39078bc763c911eab8ef2b2f718ffd7ef1a725d (1 samples, 0.01%)</title><rect x="1095.8" y="549" width="0.1" height="15.0" fill="rgb(235,73,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.81" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_finish_command (2 samples, 0.02%)</title><rect x="655.9" y="453" width="0.3" height="15.0" fill="rgb(217,101,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.93" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>update_process_times (1 samples, 0.01%)</title><rect x="655.5" y="453" width="0.1" height="15.0" fill="rgb(222,103,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.47" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__split_vma (2 samples, 0.02%)</title><rect x="1054.2" y="197" width="0.2" height="15.0" fill="rgb(208,159,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.19" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tick_sched_timer (2 samples, 0.02%)</title><rect x="655.3" y="485" width="0.3" height="15.0" fill="rgb(250,209,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.35" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_remove_rmap (3 samples, 0.03%)</title><rect x="841.9" y="133" width="0.3" height="15.0" fill="rgb(216,98,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="844.86" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_file_write_iter (129 samples, 1.27%)</title><rect x="1156.6" y="357" width="15.0" height="15.0" fill="rgb(222,28,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.63" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>BufferedWriter_flushBuffer_7c3a66a35b46b511271173aca996ebb5a0fd2684 (657 samples, 6.47%)</title><rect x="1095.5" y="581" width="76.4" height="15.0" fill="rgb(250,2,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.47" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Buffered..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__lock_text_start (1 samples, 0.01%)</title><rect x="892.0" y="373" width="0.1" height="15.0" fill="rgb(228,40,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="894.98" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>BufferedWriter_flushBuffer_7c3a66a35b46b511271173aca996ebb5a0fd2684 (32 samples, 0.32%)</title><rect x="1001.4" y="597" width="3.7" height="15.0" fill="rgb(220,199,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1004.40" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__softirqentry_text_start (1 samples, 0.01%)</title><rect x="324.7" y="517" width="0.1" height="15.0" fill="rgb(211,58,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.65" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_boundsCheck_350aa7a80b81c8ca3d27094442ef90051f4351e5 (683 samples, 6.73%)</title><rect x="443.5" y="565" width="79.4" height="15.0" fill="rgb(247,209,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="446.49" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Arraycopy..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>drop_buffers (1 samples, 0.01%)</title><rect x="1022.6" y="229" width="0.1" height="15.0" fill="rgb(238,142,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1025.56" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ret_from_intr (1 samples, 0.01%)</title><rect x="895.9" y="469" width="0.1" height="15.0" fill="rgb(223,217,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.93" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>clear_page_erms (59 samples, 0.58%)</title><rect x="880.2" y="389" width="6.9" height="15.0" fill="rgb(237,91,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="883.23" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__vma_adjust (1 samples, 0.01%)</title><rect x="1054.2" y="181" width="0.1" height="15.0" fill="rgb(223,146,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.19" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_pages_and_swap_cache (21 samples, 0.21%)</title><rect x="837.8" y="133" width="2.4" height="15.0" fill="rgb(243,118,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.79" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ktime_get_coarse_real_ts64 (2 samples, 0.02%)</title><rect x="1016.4" y="357" width="0.2" height="15.0" fill="rgb(246,139,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.40" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>CharBuffer_arrayOffset_246ce7336e91062eafb53fcceb70daee3551d440 (1 samples, 0.01%)</title><rect x="1154.3" y="485" width="0.1" height="15.0" fill="rgb(237,214,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.30" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>rcu_all_qs (1 samples, 0.01%)</title><rect x="895.8" y="469" width="0.1" height="15.0" fill="rgb(206,33,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.81" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>uncharge_batch (1 samples, 0.01%)</title><rect x="1019.8" y="309" width="0.1" height="15.0" fill="rgb(207,43,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1022.77" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__generic_file_write_iter (129 samples, 1.27%)</title><rect x="1156.6" y="341" width="15.0" height="15.0" fill="rgb(251,158,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.63" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crypto_shash_update (1 samples, 0.01%)</title><rect x="1018.5" y="293" width="0.1" height="15.0" fill="rgb(247,136,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.49" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_empty_filp (2 samples, 0.02%)</title><rect x="1022.8" y="437" width="0.2" height="15.0" fill="rgb(207,141,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1025.79" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ret_from_intr (3 samples, 0.03%)</title><rect x="666.0" y="597" width="0.4" height="15.0" fill="rgb(220,13,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.05" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_flush_plug_list (9 samples, 0.09%)</title><rect x="1006.0" y="277" width="1.1" height="15.0" fill="rgb(221,87,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.05" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_block_write_begin (4 samples, 0.04%)</title><rect x="1012.4" y="325" width="0.5" height="15.0" fill="rgb(217,223,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.44" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>swapgs_restore_regs_and_return_to_usermode (4 samples, 0.04%)</title><rect x="834.1" y="549" width="0.4" height="15.0" fill="rgb(245,224,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.07" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>VMOperation_operateUnderIndicator_0322751a96ab5854ed8c08688d60ba08e3c0c4c6 (51 samples, 0.50%)</title><rect x="836.5" y="421" width="5.9" height="15.0" fill="rgb(241,205,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generic_write_end (2 samples, 0.02%)</title><rect x="1013.0" y="325" width="0.3" height="15.0" fill="rgb(253,225,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1016.02" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>aa_file_perm (1 samples, 0.01%)</title><rect x="1005.0" y="341" width="0.1" height="15.0" fill="rgb(209,45,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.00" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>perf_iterate_sb (2 samples, 0.02%)</title><rect x="1187.8" y="549" width="0.2" height="15.0" fill="rgb(214,167,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.79" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>release_pages (4 samples, 0.04%)</title><rect x="1019.4" y="341" width="0.5" height="15.0" fill="rgb(216,134,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1022.42" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>exit_to_usermode_loop (1 samples, 0.01%)</title><rect x="666.4" y="565" width="0.1" height="15.0" fill="rgb(249,160,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.40" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__entry_trampoline_start (1 samples, 0.01%)</title><rect x="665.9" y="597" width="0.1" height="15.0" fill="rgb(253,191,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="668.93" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event (1 samples, 0.01%)</title><rect x="209.9" y="517" width="0.1" height="15.0" fill="rgb(241,84,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>find_vma (2 samples, 0.02%)</title><rect x="874.4" y="469" width="0.3" height="15.0" fill="rgb(240,122,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="877.42" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__do_page_fault (75 samples, 0.74%)</title><rect x="1075.0" y="485" width="8.7" height="15.0" fill="rgb(245,54,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1078.00" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__softirqentry_text_start (7 samples, 0.07%)</title><rect x="899.2" y="533" width="0.8" height="15.0" fill="rgb(249,160,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.19" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>finish_task_switch (4 samples, 0.04%)</title><rect x="834.1" y="469" width="0.4" height="15.0" fill="rgb(207,27,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.07" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>vm_mmap_pgoff (1 samples, 0.01%)</title><rect x="1189.0" y="629" width="0.1" height="15.0" fill="rgb(237,99,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1191.95" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crc32c_pcl_intel_update (1 samples, 0.01%)</title><rect x="1018.5" y="277" width="0.1" height="15.0" fill="rgb(205,225,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.49" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_read_lock (1 samples, 0.01%)</title><rect x="1157.6" y="245" width="0.1" height="15.0" fill="rgb(250,138,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.56" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mmap_region (11 samples, 0.11%)</title><rect x="1187.3" y="581" width="1.3" height="15.0" fill="rgb(206,90,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.33" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_do_update_inode (17 samples, 0.17%)</title><rect x="1165.0" y="213" width="2.0" height="15.0" fill="rgb(233,72,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1168.00" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mempool_alloc (1 samples, 0.01%)</title><rect x="1010.6" y="229" width="0.1" height="15.0" fill="rgb(216,32,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.58" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_inode_csum_set (3 samples, 0.03%)</title><rect x="1017.3" y="229" width="0.4" height="15.0" fill="rgb(232,203,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.33" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__x64_sys_execve (4 samples, 0.04%)</title><rect x="1189.5" y="645" width="0.5" height="15.0" fill="rgb(225,200,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_reserve_inode_write (1 samples, 0.01%)</title><rect x="1018.1" y="357" width="0.2" height="15.0" fill="rgb(237,62,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.14" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>[unknown] (1 samples, 0.01%)</title><rect x="10.0" y="677" width="0.1" height="15.0" fill="rgb(247,59,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__softirqentry_text_start (1 samples, 0.01%)</title><rect x="666.3" y="549" width="0.1" height="15.0" fill="rgb(234,30,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.28" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>error_entry (40 samples, 0.39%)</title><rect x="860.5" y="517" width="4.6" height="15.0" fill="rgb(228,91,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="863.47" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__pagevec_lru_add_fn (2 samples, 0.02%)</title><rect x="1164.1" y="197" width="0.2" height="15.0" fill="rgb(209,149,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.07" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__vma_link_rb (1 samples, 0.01%)</title><rect x="1054.2" y="165" width="0.1" height="15.0" fill="rgb(212,114,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.19" y="175.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mem_cgroup_uncharge_list (1 samples, 0.01%)</title><rect x="840.1" y="101" width="0.1" height="15.0" fill="rgb(206,220,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="843.12" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_lookup_slot (1 samples, 0.01%)</title><rect x="1017.8" y="261" width="0.1" height="15.0" fill="rgb(214,163,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.79" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tick_sched_timer (1 samples, 0.01%)</title><rect x="665.8" y="517" width="0.1" height="15.0" fill="rgb(211,35,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="668.81" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hello-world (10,144 samples, 99.96%)</title><rect x="10.0" y="709" width="1179.5" height="15.0" fill="rgb(212,105,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="719.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >hello-world</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>security_mmap_file (1 samples, 0.01%)</title><rect x="1188.7" y="597" width="0.1" height="15.0" fill="rgb(222,121,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1191.72" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apic_timer_interrupt (3 samples, 0.03%)</title><rect x="655.3" y="549" width="0.4" height="15.0" fill="rgb(224,2,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.35" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__alloc_pages_nodemask (33 samples, 0.33%)</title><rect x="1077.2" y="405" width="3.8" height="15.0" fill="rgb(214,122,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1080.21" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_pages (1 samples, 0.01%)</title><rect x="837.6" y="149" width="0.1" height="15.0" fill="rgb(234,208,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.56" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>security_file_free (1 samples, 0.01%)</title><rect x="1012.1" y="389" width="0.1" height="15.0" fill="rgb(233,27,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.09" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__blk_run_queue (1 samples, 0.01%)</title><rect x="1006.0" y="261" width="0.2" height="15.0" fill="rgb(220,105,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.05" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event (1 samples, 0.01%)</title><rect x="988.3" y="517" width="0.1" height="15.0" fill="rgb(237,124,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.26" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_truncate (1 samples, 0.01%)</title><rect x="1015.0" y="453" width="0.1" height="15.0" fill="rgb(222,209,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.00" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>alloc_pages_vma (100 samples, 0.99%)</title><rect x="878.8" y="421" width="11.7" height="15.0" fill="rgb(212,59,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="881.84" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>security_capable (1 samples, 0.01%)</title><rect x="1023.4" y="357" width="0.1" height="15.0" fill="rgb(207,169,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.37" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mem_cgroup_commit_charge (3 samples, 0.03%)</title><rect x="893.6" y="421" width="0.4" height="15.0" fill="rgb(239,67,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="896.60" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>HeapChunkProvider_resetAlignedHeapChunk_3b0d29e3728eb7a6fc10e5e8f65655e2b0d220ca (1 samples, 0.01%)</title><rect x="836.7" y="277" width="0.2" height="15.0" fill="rgb(218,213,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.74" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__queue_work (1 samples, 0.01%)</title><rect x="1187.1" y="373" width="0.1" height="15.0" fill="rgb(219,191,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_syscall_64 (17 samples, 0.17%)</title><rect x="1003.1" y="469" width="2.0" height="15.0" fill="rgb(241,57,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>uncharge_page (1 samples, 0.01%)</title><rect x="1056.2" y="85" width="0.1" height="15.0" fill="rgb(246,167,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1059.16" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>clear_page_erms (1 samples, 0.01%)</title><rect x="836.0" y="357" width="0.2" height="15.0" fill="rgb(240,17,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.05" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_scavenge_b7271340e4da983a7681bb635dfa2dfffa6ce7ba (49 samples, 0.48%)</title><rect x="1053.3" y="357" width="5.7" height="15.0" fill="rgb(249,66,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>swapgs_restore_regs_and_return_to_usermode (4 samples, 0.04%)</title><rect x="1154.9" y="485" width="0.4" height="15.0" fill="rgb(242,151,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.88" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>vfs_write (130 samples, 1.28%)</title><rect x="1156.5" y="405" width="15.1" height="15.0" fill="rgb(242,185,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.51" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Space_releaseUnalignedHeapChunks_e7221d17760242bb1ff4d4339ca865890c2da625 (46 samples, 0.45%)</title><rect x="1053.6" y="309" width="5.4" height="15.0" fill="rgb(227,86,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.60" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_nonda_switch (1 samples, 0.01%)</title><rect x="1161.0" y="293" width="0.2" height="15.0" fill="rgb(227,52,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1164.05" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>release_pages (1 samples, 0.01%)</title><rect x="1011.4" y="229" width="0.1" height="15.0" fill="rgb(225,167,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.40" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>exit_to_usermode_loop (57 samples, 0.56%)</title><rect x="1005.6" y="453" width="6.6" height="15.0" fill="rgb(229,37,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.58" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__x64_sys_munmap (1 samples, 0.01%)</title><rect x="836.6" y="229" width="0.1" height="15.0" fill="rgb(214,87,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>swapgs_restore_regs_and_return_to_usermode (15 samples, 0.15%)</title><rect x="1083.8" y="517" width="1.8" height="15.0" fill="rgb(254,213,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1086.84" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>VMOperationControl_drain_c7af54eea925213ad0ceb00c95a1be3f393564dc (49 samples, 0.48%)</title><rect x="1053.3" y="469" width="5.7" height="15.0" fill="rgb(206,163,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>uncharge_batch (1 samples, 0.01%)</title><rect x="840.1" y="85" width="0.1" height="15.0" fill="rgb(219,143,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="843.12" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sync_regs (3 samples, 0.03%)</title><rect x="898.4" y="517" width="0.3" height="15.0" fill="rgb(252,189,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="901.37" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>lru_cache_add_active_or_unevictable (10 samples, 0.10%)</title><rect x="1081.2" y="421" width="1.1" height="15.0" fill="rgb(207,117,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1084.16" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mnt_drop_write (1 samples, 0.01%)</title><rect x="1023.7" y="437" width="0.1" height="15.0" fill="rgb(216,166,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.72" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__lru_cache_add (8 samples, 0.08%)</title><rect x="1081.4" y="405" width="0.9" height="15.0" fill="rgb(211,54,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1084.40" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>timekeeping_update (1 samples, 0.01%)</title><rect x="655.3" y="421" width="0.2" height="15.0" fill="rgb(249,101,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.35" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_es_insert_extent (6 samples, 0.06%)</title><rect x="1159.5" y="261" width="0.7" height="15.0" fill="rgb(238,55,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1162.53" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__bio_try_merge_page (1 samples, 0.01%)</title><rect x="1009.7" y="245" width="0.1" height="15.0" fill="rgb(223,127,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1012.65" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>[unknown] (4 samples, 0.04%)</title><rect x="1189.5" y="693" width="0.5" height="15.0" fill="rgb(210,74,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="703.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>delete_from_page_cache_batch (7 samples, 0.07%)</title><rect x="1019.9" y="357" width="0.8" height="15.0" fill="rgb(231,150,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1022.88" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>MonitorSupport_getOrCreateMonitor_6239e9d3e7fd6b08c80fff1e2ca6bc227e1f22e6 (1 samples, 0.01%)</title><rect x="1014.3" y="533" width="0.1" height="15.0" fill="rgb(224,90,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.30" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Space_popUnalignedHeapChunk_ca16cb70829f272aaeb7ed44f545986cb6da1127 (1 samples, 0.01%)</title><rect x="837.0" y="293" width="0.1" height="15.0" fill="rgb(220,147,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.98" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_edge_irq (1 samples, 0.01%)</title><rect x="988.3" y="533" width="0.1" height="15.0" fill="rgb(246,183,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.26" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>up_write (1 samples, 0.01%)</title><rect x="1011.9" y="293" width="0.1" height="15.0" fill="rgb(218,35,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.86" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>enqueue_entity (1 samples, 0.01%)</title><rect x="1187.1" y="261" width="0.1" height="15.0" fill="rgb(205,223,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kernel_fpu_begin (1 samples, 0.01%)</title><rect x="1016.0" y="309" width="0.2" height="15.0" fill="rgb(241,162,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.05" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kmem_cache_free (1 samples, 0.01%)</title><rect x="1022.7" y="213" width="0.1" height="15.0" fill="rgb(214,56,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1025.67" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_collectWithoutAllocating_e8597d9f8e59263a882a66bf2c123fd3763020c0 (49 samples, 0.48%)</title><rect x="1053.3" y="517" width="5.7" height="15.0" fill="rgb(236,160,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_journal_start_sb (1 samples, 0.01%)</title><rect x="1015.3" y="389" width="0.2" height="15.0" fill="rgb(252,19,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.35" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_primitiveCopyForward_c91c5c7c46023d36de4518851f3859ace4c81005 (138 samples, 1.36%)</title><rect x="1036.7" y="565" width="16.1" height="15.0" fill="rgb(227,174,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1039.74" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__softirqentry_text_start (2 samples, 0.02%)</title><rect x="655.9" y="501" width="0.3" height="15.0" fill="rgb(205,1,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.93" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_do_update_inode (3 samples, 0.03%)</title><rect x="1018.3" y="341" width="0.3" height="15.0" fill="rgb(227,151,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.26" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kick_process (1 samples, 0.01%)</title><rect x="1005.5" y="373" width="0.1" height="15.0" fill="rgb(216,50,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.47" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>CharBuffer_wrap_d1370e22d6c5731c9f8c498e1c14ed745e92e245 (1 samples, 0.01%)</title><rect x="1096.3" y="533" width="0.1" height="15.0" fill="rgb(216,163,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1099.28" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_pages_and_swap_cache (16 samples, 0.16%)</title><rect x="1054.4" y="133" width="1.9" height="15.0" fill="rgb(253,201,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.42" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Writer_write_6d330cb362ba95e97774cd1e5b34b6f81df74f73 (788 samples, 7.77%)</title><rect x="1095.5" y="613" width="91.6" height="15.0" fill="rgb(251,189,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.47" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Writer_wri..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (51 samples, 0.50%)</title><rect x="836.5" y="533" width="5.9" height="15.0" fill="rgb(248,69,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.51" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>locked_inode_to_wb_and_lock_list (1 samples, 0.01%)</title><rect x="1018.0" y="309" width="0.1" height="15.0" fill="rgb(237,54,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.02" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ArraycopySnippets_doArraycopy_043961c4b8a78c521bb6ac0bcc8243e2da5fd903 (131 samples, 1.29%)</title><rect x="1171.9" y="565" width="15.2" height="15.0" fill="rgb(208,83,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1174.86" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>UTF_8_updatePositions_39f4b3731b7d789ab12c0b08629e6304badea736 (1 samples, 0.01%)</title><rect x="1003.0" y="501" width="0.1" height="15.0" fill="rgb(239,125,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.02" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>File_constructor_d4403e30d04d73714247407462cbebb4a63caa59 (1 samples, 0.01%)</title><rect x="1024.2" y="581" width="0.1" height="15.0" fill="rgb(232,215,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.19" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>update_wall_time (1 samples, 0.01%)</title><rect x="24.3" y="501" width="0.1" height="15.0" fill="rgb(239,142,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.30" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>try_to_free_buffers (2 samples, 0.02%)</title><rect x="1022.6" y="245" width="0.2" height="15.0" fill="rgb(231,145,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1025.56" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generic_perform_write (128 samples, 1.26%)</title><rect x="1156.7" y="325" width="14.9" height="15.0" fill="rgb(247,190,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.74" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mem_cgroup_try_charge (9 samples, 0.09%)</title><rect x="894.0" y="421" width="1.0" height="15.0" fill="rgb(238,52,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="896.95" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mem_cgroup_charge_statistics (1 samples, 0.01%)</title><rect x="1162.9" y="213" width="0.1" height="15.0" fill="rgb(222,10,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1165.91" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kmem_cache_alloc (1 samples, 0.01%)</title><rect x="1159.8" y="229" width="0.1" height="15.0" fill="rgb(250,110,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1162.77" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileOutputStream_write_77a961b31b4bf135a96f887cf8e3edd3bf440ac1 (10 samples, 0.10%)</title><rect x="1012.3" y="549" width="1.2" height="15.0" fill="rgb(209,110,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.33" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_handle_port_interrupt (1 samples, 0.01%)</title><rect x="1095.3" y="453" width="0.2" height="15.0" fill="rgb(246,154,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.35" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_pcp_prepare (1 samples, 0.01%)</title><rect x="1055.3" y="85" width="0.2" height="15.0" fill="rgb(213,179,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1058.35" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_mm_fault (182 samples, 1.79%)</title><rect x="874.7" y="469" width="21.1" height="15.0" fill="rgb(231,56,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="877.65" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_unref_page_commit (1 samples, 0.01%)</title><rect x="836.6" y="69" width="0.1" height="15.0" fill="rgb(222,88,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="79.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_io_completion (2 samples, 0.02%)</title><rect x="656.2" y="453" width="0.2" height="15.0" fill="rgb(232,62,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.16" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>elv_completed_request (1 samples, 0.01%)</title><rect x="210.0" y="405" width="0.1" height="15.0" fill="rgb(222,107,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__sched_text_start (4 samples, 0.04%)</title><rect x="1154.9" y="421" width="0.4" height="15.0" fill="rgb(208,198,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.88" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__queue_work (1 samples, 0.01%)</title><rect x="210.0" y="341" width="0.1" height="15.0" fill="rgb(208,214,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sync_regs (13 samples, 0.13%)</title><rect x="1068.6" y="501" width="1.5" height="15.0" fill="rgb(235,162,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1071.60" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__perf_event_task_sched_in (1 samples, 0.01%)</title><rect x="666.4" y="501" width="0.1" height="15.0" fill="rgb(230,11,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.40" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kthread_data (1 samples, 0.01%)</title><rect x="210.0" y="261" width="0.1" height="15.0" fill="rgb(245,194,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sg_pool_alloc (1 samples, 0.01%)</title><rect x="1007.0" y="85" width="0.1" height="15.0" fill="rgb(216,20,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.98" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>apparmor_file_free_security (1 samples, 0.01%)</title><rect x="1012.1" y="373" width="0.1" height="15.0" fill="rgb(249,213,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.09" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ata_qc_complete (1 samples, 0.01%)</title><rect x="989.0" y="421" width="0.1" height="15.0" fill="rgb(219,205,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>schedule (4 samples, 0.04%)</title><rect x="1154.9" y="437" width="0.4" height="15.0" fill="rgb(223,24,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.88" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ksys_write (17 samples, 0.17%)</title><rect x="1003.1" y="437" width="2.0" height="15.0" fill="rgb(232,120,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Space_popUnalignedHeapChunk_ca16cb70829f272aaeb7ed44f545986cb6da1127 (1 samples, 0.01%)</title><rect x="1053.8" y="293" width="0.2" height="15.0" fill="rgb(236,13,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.84" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_da_get_block_prep (25 samples, 0.25%)</title><rect x="1158.1" y="277" width="2.9" height="15.0" fill="rgb(246,20,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1161.14" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__blk_put_request (1 samples, 0.01%)</title><rect x="522.8" y="389" width="0.1" height="15.0" fill="rgb(226,185,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>led_trigger_blink_oneshot (1 samples, 0.01%)</title><rect x="209.9" y="373" width="0.1" height="15.0" fill="rgb(250,51,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_mm_fault (2 samples, 0.02%)</title><rect x="1053.0" y="469" width="0.3" height="15.0" fill="rgb(248,173,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.02" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__vfs_write (8 samples, 0.08%)</title><rect x="1012.4" y="421" width="1.0" height="15.0" fill="rgb(241,175,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.44" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_done_softirq (2 samples, 0.02%)</title><rect x="655.9" y="485" width="0.3" height="15.0" fill="rgb(253,15,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.93" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>percpu_counter_add_batch (1 samples, 0.01%)</title><rect x="1168.6" y="197" width="0.1" height="15.0" fill="rgb(216,121,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1171.60" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mark_inode_dirty (6 samples, 0.06%)</title><rect x="1017.0" y="309" width="0.7" height="15.0" fill="rgb(214,103,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.98" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_write_lock (1 samples, 0.01%)</title><rect x="1160.0" y="245" width="0.1" height="15.0" fill="rgb(236,25,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1163.00" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>up_read (1 samples, 0.01%)</title><rect x="1083.6" y="469" width="0.1" height="15.0" fill="rgb(232,163,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1086.60" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tlb_finish_mmu (17 samples, 0.17%)</title><rect x="1054.4" y="181" width="2.0" height="15.0" fill="rgb(239,44,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1057.42" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>release_pages (2 samples, 0.02%)</title><rect x="1011.5" y="261" width="0.2" height="15.0" fill="rgb(205,218,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1014.51" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_acl (1 samples, 0.01%)</title><rect x="1023.6" y="405" width="0.1" height="15.0" fill="rgb(208,48,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.60" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generic_perform_write (16 samples, 0.16%)</title><rect x="1003.1" y="341" width="1.9" height="15.0" fill="rgb(218,41,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>rcu_cblist_dequeue (1 samples, 0.01%)</title><rect x="324.7" y="485" width="0.1" height="15.0" fill="rgb(223,193,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="327.65" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__softirqentry_text_start (1 samples, 0.01%)</title><rect x="210.0" y="533" width="0.1" height="15.0" fill="rgb(209,131,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="213.00" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ksys_mmap_pgoff (14 samples, 0.14%)</title><rect x="1187.3" y="629" width="1.7" height="15.0" fill="rgb(223,167,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.33" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_remove_rmap (3 samples, 0.03%)</title><rect x="1058.5" y="133" width="0.3" height="15.0" fill="rgb(254,38,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1061.49" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocalAllocation_slowPathNewArrayWithoutAllocating_ce2961851cecfc7dcbaab6989026c07eca467111 (284 samples, 2.80%)</title><rect x="1052.8" y="565" width="33.0" height="15.0" fill="rgb(229,123,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1055.79" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >Th..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="1095.3" y="517" width="0.2" height="15.0" fill="rgb(214,166,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_rq_map_sg (1 samples, 0.01%)</title><rect x="1006.9" y="101" width="0.1" height="15.0" fill="rgb(205,198,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.86" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_get_inode_loc (1 samples, 0.01%)</title><rect x="1018.1" y="341" width="0.2" height="15.0" fill="rgb(229,136,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.14" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__do_page_fault (1 samples, 0.01%)</title><rect x="1189.4" y="645" width="0.1" height="15.0" fill="rgb(235,214,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.42" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kernel_fpu_disable (1 samples, 0.01%)</title><rect x="1016.0" y="293" width="0.2" height="15.0" fill="rgb(243,149,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.05" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Integer_getChars_82f199dea097809c4d36418efa9b830b8602768a (102 samples, 1.01%)</title><rect x="1024.8" y="613" width="11.8" height="15.0" fill="rgb(208,208,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.77" y="623.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock (10 samples, 0.10%)</title><rect x="877.7" y="421" width="1.1" height="15.0" fill="rgb(210,222,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="880.67" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pagevec_lru_move_fn (6 samples, 0.06%)</title><rect x="1081.6" y="389" width="0.7" height="15.0" fill="rgb(253,201,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1084.63" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__x64_sys_munmap (1 samples, 0.01%)</title><rect x="837.2" y="261" width="0.1" height="15.0" fill="rgb(233,223,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.21" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crc32c_pcl_intel_update (3 samples, 0.03%)</title><rect x="1017.3" y="181" width="0.4" height="15.0" fill="rgb(244,140,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.33" y="191.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_softirq_done (1 samples, 0.01%)</title><rect x="666.3" y="517" width="0.1" height="15.0" fill="rgb(208,209,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.28" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_softirq_done (1 samples, 0.01%)</title><rect x="522.8" y="469" width="0.1" height="15.0" fill="rgb(252,99,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>MonitorSupport_monitorExit_04daa9017da69170a81dec9e2100551226ab5b8a (1 samples, 0.01%)</title><rect x="1014.4" y="549" width="0.1" height="15.0" fill="rgb(222,90,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.42" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__sched_text_start (1 samples, 0.01%)</title><rect x="989.1" y="533" width="0.1" height="15.0" fill="rgb(230,0,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="992.07" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pvclock_gtod_notify (1 samples, 0.01%)</title><rect x="665.8" y="421" width="0.1" height="15.0" fill="rgb(248,215,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="668.81" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_truncate (64 samples, 0.63%)</title><rect x="1015.3" y="437" width="7.5" height="15.0" fill="rgb(230,48,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.35" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_vm_normal_page (2 samples, 0.02%)</title><rect x="1058.3" y="133" width="0.2" height="15.0" fill="rgb(232,97,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1061.26" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kmem_cache_alloc (1 samples, 0.01%)</title><rect x="1157.1" y="261" width="0.1" height="15.0" fill="rgb(224,153,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.09" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__split_vma (1 samples, 0.01%)</title><rect x="837.3" y="197" width="0.1" height="15.0" fill="rgb(220,70,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.33" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_softirq_done (1 samples, 0.01%)</title><rect x="1187.1" y="533" width="0.1" height="15.0" fill="rgb(252,52,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ByteBuffer_arrayOffset_2fbdee03a131fb41df275fd715d94d5f0279d25d (2 samples, 0.02%)</title><rect x="1154.1" y="485" width="0.2" height="15.0" fill="rgb(223,5,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.07" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__mod_zone_page_state (1 samples, 0.01%)</title><rect x="839.9" y="53" width="0.1" height="15.0" fill="rgb(245,229,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="842.88" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ahci_single_level_irq_intr (1 samples, 0.01%)</title><rect x="988.3" y="469" width="0.1" height="15.0" fill="rgb(252,218,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.26" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sync_regs (2 samples, 0.02%)</title><rect x="1085.6" y="517" width="0.2" height="15.0" fill="rgb(236,172,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1088.58" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wait_for_stable_page (1 samples, 0.01%)</title><rect x="1171.5" y="309" width="0.1" height="15.0" fill="rgb(211,159,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1174.51" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__vma_adjust (4 samples, 0.04%)</title><rect x="1188.1" y="549" width="0.5" height="15.0" fill="rgb(229,111,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1191.14" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mem_cgroup_from_task (1 samples, 0.01%)</title><rect x="1083.5" y="469" width="0.1" height="15.0" fill="rgb(244,46,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1086.49" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>filemap_flush (54 samples, 0.53%)</title><rect x="1005.7" y="357" width="6.3" height="15.0" fill="rgb(233,90,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.70" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>String_toLowerCase_46014981866999e5cf0d6abe55dd9236e99cdb3f (1 samples, 0.01%)</title><rect x="1024.4" y="549" width="0.1" height="15.0" fill="rgb(210,23,38)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.42" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_inode_table (1 samples, 0.01%)</title><rect x="1167.3" y="197" width="0.1" height="15.0" fill="rgb(235,129,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1170.33" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_get_reserved_space (1 samples, 0.01%)</title><rect x="1159.0" y="245" width="0.1" height="15.0" fill="rgb(225,202,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1161.95" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_da_write_end (7 samples, 0.07%)</title><rect x="1004.1" y="325" width="0.8" height="15.0" fill="rgb(244,143,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.07" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_syscall_64 (42 samples, 0.41%)</title><rect x="837.3" y="261" width="4.9" height="15.0" fill="rgb(246,85,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.33" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_mm_fault (7 samples, 0.07%)</title><rect x="835.6" y="469" width="0.8" height="15.0" fill="rgb(249,16,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="838.58" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ksys_write (131 samples, 1.29%)</title><rect x="1156.4" y="421" width="15.2" height="15.0" fill="rgb(251,46,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.40" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StringCoding$StringEncoder_encode_948eb97edf551c2754b112d3d542ce9367262b16 (1 samples, 0.01%)</title><rect x="1014.8" y="469" width="0.1" height="15.0" fill="rgb(226,119,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.77" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_unref_page_commit (5 samples, 0.05%)</title><rect x="1055.5" y="85" width="0.5" height="15.0" fill="rgb(208,124,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1058.47" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>Space_extractUnalignedHeapChunk_00ea32070144de151a899d86802342457a80127e (1 samples, 0.01%)</title><rect x="837.0" y="277" width="0.1" height="15.0" fill="rgb(234,104,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.98" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>task_work_add (1 samples, 0.01%)</title><rect x="1005.5" y="389" width="0.1" height="15.0" fill="rgb(245,200,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.47" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tick_do_update_jiffies64.part.15 (1 samples, 0.01%)</title><rect x="655.3" y="453" width="0.2" height="15.0" fill="rgb(243,184,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.35" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>up_read (1 samples, 0.01%)</title><rect x="1160.9" y="261" width="0.1" height="15.0" fill="rgb(220,59,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1163.93" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_finish_request (1 samples, 0.01%)</title><rect x="899.3" y="437" width="0.1" height="15.0" fill="rgb(252,55,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.30" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_claim_free_clusters (1 samples, 0.01%)</title><rect x="1159.4" y="261" width="0.1" height="15.0" fill="rgb(226,209,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1162.42" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>errseq_sample (1 samples, 0.01%)</title><rect x="1024.0" y="421" width="0.1" height="15.0" fill="rgb(234,198,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1026.95" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crypto_shash_update (3 samples, 0.03%)</title><rect x="1008.6" y="213" width="0.4" height="15.0" fill="rgb(233,210,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.60" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>OSCommittedMemoryProvider_allocate_f8d80d596cf0c26612afa4c08c54998e761aa867 (3 samples, 0.03%)</title><rect x="834.7" y="517" width="0.3" height="15.0" fill="rgb(231,10,27)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.65" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_IRQ (1 samples, 0.01%)</title><rect x="24.4" y="597" width="0.1" height="15.0" fill="rgb(227,13,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.42" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>perf_pmu_enable.part.105 (1 samples, 0.01%)</title><rect x="655.5" y="405" width="0.1" height="15.0" fill="rgb(236,207,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.47" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_finish_bio (1 samples, 0.01%)</title><rect x="666.3" y="405" width="0.1" height="15.0" fill="rgb(211,160,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.28" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__entry_trampoline_start (1 samples, 0.01%)</title><rect x="860.3" y="517" width="0.2" height="15.0" fill="rgb(223,36,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="863.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mark_buffer_dirty (2 samples, 0.02%)</title><rect x="1004.7" y="261" width="0.2" height="15.0" fill="rgb(212,4,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.65" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kmem_cache_alloc (1 samples, 0.01%)</title><rect x="1157.9" y="229" width="0.1" height="15.0" fill="rgb(249,10,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.91" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>entry_SYSCALL_64_after_hwframe (4 samples, 0.04%)</title><rect x="1189.5" y="677" width="0.5" height="15.0" fill="rgb(237,220,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__intel_pmu_enable_all.constprop.19 (4 samples, 0.04%)</title><rect x="1189.5" y="485" width="0.5" height="15.0" fill="rgb(208,59,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>cfq_dispatch_requests (1 samples, 0.01%)</title><rect x="1006.6" y="197" width="0.1" height="15.0" fill="rgb(241,180,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.63" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_softirq_done (2 samples, 0.02%)</title><rect x="655.9" y="469" width="0.3" height="15.0" fill="rgb(230,170,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.93" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_journal_stop (1 samples, 0.01%)</title><rect x="1005.8" y="293" width="0.1" height="15.0" fill="rgb(211,187,11)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.81" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bio_alloc_bioset (2 samples, 0.02%)</title><rect x="1010.5" y="245" width="0.2" height="15.0" fill="rgb(224,1,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1013.47" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>error_entry (1 samples, 0.01%)</title><rect x="1189.1" y="677" width="0.1" height="15.0" fill="rgb(246,127,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.07" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_inode_csum.isra.60 (1 samples, 0.01%)</title><rect x="1015.7" y="325" width="0.1" height="15.0" fill="rgb(241,222,53)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.70" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileDescriptor_attach_f19fa429cda6632b886929376b28ab0b91cdc34f (2 samples, 0.02%)</title><rect x="1014.3" y="565" width="0.2" height="15.0" fill="rgb(226,196,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.30" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StringCoding_encode_1e272b66b7e5340459985f5084339a2c7b12a683 (2 samples, 0.02%)</title><rect x="1014.8" y="501" width="0.2" height="15.0" fill="rgb(232,19,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.77" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_end_request (2 samples, 0.02%)</title><rect x="656.2" y="437" width="0.2" height="15.0" fill="rgb(233,171,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.16" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>native_write_msr (1 samples, 0.01%)</title><rect x="655.5" y="341" width="0.1" height="15.0" fill="rgb(225,229,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.47" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>unlock_page (1 samples, 0.01%)</title><rect x="1168.8" y="277" width="0.2" height="15.0" fill="rgb(251,35,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1171.84" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__elv_add_request (1 samples, 0.01%)</title><rect x="1006.2" y="261" width="0.1" height="15.0" fill="rgb(228,34,7)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.16" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_update_request (2 samples, 0.02%)</title><rect x="655.9" y="405" width="0.3" height="15.0" fill="rgb(229,79,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.93" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_iloc_dirty (5 samples, 0.05%)</title><rect x="1017.1" y="261" width="0.6" height="15.0" fill="rgb(212,84,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.09" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_es_insert_extent (3 samples, 0.03%)</title><rect x="1160.6" y="229" width="0.3" height="15.0" fill="rgb(226,96,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1163.58" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>uncharge_batch (1 samples, 0.01%)</title><rect x="1056.0" y="85" width="0.2" height="15.0" fill="rgb(243,54,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1059.05" y="95.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>syscall_return_via_sysret (1 samples, 0.01%)</title><rect x="1189.3" y="677" width="0.1" height="15.0" fill="rgb(231,160,24)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.30" y="687.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_page_fault (2 samples, 0.02%)</title><rect x="1053.0" y="501" width="0.3" height="15.0" fill="rgb(249,168,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.02" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kmem_cache_free (1 samples, 0.01%)</title><rect x="1009.1" y="245" width="0.1" height="15.0" fill="rgb(245,32,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1012.07" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_syscall_64 (4 samples, 0.04%)</title><rect x="1189.5" y="661" width="0.5" height="15.0" fill="rgb(237,119,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="671.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>schedule (1 samples, 0.01%)</title><rect x="656.5" y="517" width="0.1" height="15.0" fill="rgb(236,164,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.51" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>memcg_check_events (2 samples, 0.02%)</title><rect x="1163.0" y="213" width="0.3" height="15.0" fill="rgb(223,77,45)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.02" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_syscall_64 (8 samples, 0.08%)</title><rect x="1012.4" y="485" width="1.0" height="15.0" fill="rgb(252,25,2)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1015.44" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>HeapChunkProvider_produceUnalignedChunk_9156fe54c116e1ae2ef465614ba32ed09923fbf2 (4 samples, 0.04%)</title><rect x="1052.8" y="533" width="0.5" height="15.0" fill="rgb(247,210,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1055.79" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StreamEncoder_write_4e97cd1520a323814d68f46102d125cd9f9d97f5 (654 samples, 6.44%)</title><rect x="1095.7" y="565" width="76.0" height="15.0" fill="rgb(238,42,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.70" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >StreamEn..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ret_from_intr (4 samples, 0.04%)</title><rect x="655.7" y="549" width="0.5" height="15.0" fill="rgb(218,53,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.70" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event (1 samples, 0.01%)</title><rect x="989.0" y="533" width="0.1" height="15.0" fill="rgb(245,83,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>bio_endio (1 samples, 0.01%)</title><rect x="666.3" y="437" width="0.1" height="15.0" fill="rgb(230,207,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.28" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>native_write_msr (4 samples, 0.04%)</title><rect x="834.1" y="373" width="0.4" height="15.0" fill="rgb(244,223,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.07" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_irq_event_percpu (1 samples, 0.01%)</title><rect x="899.1" y="501" width="0.1" height="15.0" fill="rgb(228,42,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.07" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>kernel_poison_pages (1 samples, 0.01%)</title><rect x="1162.1" y="213" width="0.1" height="15.0" fill="rgb(222,44,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1165.09" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__page_cache_alloc (4 samples, 0.04%)</title><rect x="1003.3" y="277" width="0.4" height="15.0" fill="rgb(219,168,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.26" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>rcu_process_callbacks (1 samples, 0.01%)</title><rect x="655.6" y="485" width="0.1" height="15.0" fill="rgb(244,123,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.58" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>prepare_exit_to_usermode (4 samples, 0.04%)</title><rect x="1154.9" y="469" width="0.4" height="15.0" fill="rgb(231,43,47)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1157.88" y="479.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>crc32c_pcl_intel_update (5 samples, 0.05%)</title><rect x="1166.4" y="149" width="0.6" height="15.0" fill="rgb(251,114,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1169.40" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>page_counter_cancel (1 samples, 0.01%)</title><rect x="840.1" y="53" width="0.1" height="15.0" fill="rgb(224,8,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="843.12" y="63.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_inode_csum_set (13 samples, 0.13%)</title><rect x="1165.5" y="197" width="1.5" height="15.0" fill="rgb(230,155,10)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1168.47" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>cfq_completed_request (1 samples, 0.01%)</title><rect x="899.3" y="389" width="0.1" height="15.0" fill="rgb(217,5,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.30" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>native_write_msr (4 samples, 0.04%)</title><rect x="988.5" y="405" width="0.5" height="15.0" fill="rgb(222,23,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.49" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ata_scsi_qc_complete (1 samples, 0.01%)</title><rect x="989.0" y="389" width="0.1" height="15.0" fill="rgb(207,11,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.95" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>handle_edge_irq (1 samples, 0.01%)</title><rect x="24.4" y="565" width="0.1" height="15.0" fill="rgb(231,108,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="27.42" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_IRQ (1 samples, 0.01%)</title><rect x="522.8" y="533" width="0.1" height="15.0" fill="rgb(242,26,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_mm_fault (66 samples, 0.65%)</title><rect x="1075.8" y="453" width="7.7" height="15.0" fill="rgb(214,47,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1078.81" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__handle_mm_fault (6 samples, 0.06%)</title><rect x="835.6" y="453" width="0.7" height="15.0" fill="rgb(230,6,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="838.58" y="463.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__alloc_pages_nodemask (1 samples, 0.01%)</title><rect x="1053.0" y="405" width="0.1" height="15.0" fill="rgb(244,163,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.02" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pmd_devmap_trans_unstable (1 samples, 0.01%)</title><rect x="895.5" y="421" width="0.1" height="15.0" fill="rgb(226,189,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="898.47" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="899.0" y="565" width="0.1" height="15.0" fill="rgb(207,116,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="901.95" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>clear_page_erms (1 samples, 0.01%)</title><rect x="1053.0" y="389" width="0.1" height="15.0" fill="rgb(230,152,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.02" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>HeapPolicy$CollectOnAllocationPolicy$Sometimes_maybeCauseCollection_ef11a551f43e0f91a356fbaa370c7876a438f1cb (1 samples, 0.01%)</title><rect x="834.5" y="549" width="0.2" height="15.0" fill="rgb(253,205,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.53" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_journal_stop (1 samples, 0.01%)</title><rect x="1016.3" y="373" width="0.1" height="15.0" fill="rgb(228,148,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.28" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>enqueue_task_fair (1 samples, 0.01%)</title><rect x="1187.1" y="277" width="0.1" height="15.0" fill="rgb(217,61,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_get_inode_loc (1 samples, 0.01%)</title><rect x="1016.9" y="277" width="0.1" height="15.0" fill="rgb(208,99,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.86" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>clean_bdev_aliases (1 samples, 0.01%)</title><rect x="1157.8" y="277" width="0.1" height="15.0" fill="rgb(250,222,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1160.79" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__block_commit_write.isra.37 (11 samples, 0.11%)</title><rect x="1167.6" y="261" width="1.2" height="15.0" fill="rgb(250,181,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1170.56" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>alloc_request_size (1 samples, 0.01%)</title><rect x="1007.9" y="197" width="0.1" height="15.0" fill="rgb(232,3,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.91" y="207.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>smp_apic_timer_interrupt (1 samples, 0.01%)</title><rect x="665.8" y="565" width="0.1" height="15.0" fill="rgb(240,155,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="668.81" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StreamEncoder_close_c6bb4bdb33b86308a0a1ee658d0e2506e5ac55a7 (72 samples, 0.71%)</title><rect x="1005.1" y="597" width="8.4" height="15.0" fill="rgb(253,40,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.12" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>release_pages (1 samples, 0.01%)</title><rect x="836.6" y="101" width="0.1" height="15.0" fill="rgb(225,125,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>sync_regs (17 samples, 0.17%)</title><rect x="863.1" y="501" width="2.0" height="15.0" fill="rgb(218,84,19)" rx="2" ry="2" /> | |
| <text text-anchor="" x="866.14" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>entry_SYSCALL_64_after_hwframe (58 samples, 0.57%)</title><rect x="1005.5" y="485" width="6.7" height="15.0" fill="rgb(249,184,48)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1008.47" y="495.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pagevec_lru_move_fn (15 samples, 0.15%)</title><rect x="891.9" y="389" width="1.7" height="15.0" fill="rgb(247,219,3)" rx="2" ry="2" /> | |
| <text text-anchor="" x="894.86" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_collectImpl_afe22fe9913de4337876f8a57409cb611ad8544e (49 samples, 0.48%)</title><rect x="1053.3" y="373" width="5.7" height="15.0" fill="rgb(218,100,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__radix_tree_replace (1 samples, 0.01%)</title><rect x="1163.7" y="213" width="0.1" height="15.0" fill="rgb(223,15,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1166.72" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mb_load_buddy_gfp (1 samples, 0.01%)</title><rect x="1017.8" y="309" width="0.1" height="15.0" fill="rgb(209,178,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.79" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__alloc_pages_nodemask (1 samples, 0.01%)</title><rect x="836.0" y="373" width="0.2" height="15.0" fill="rgb(210,155,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.05" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>wake_up_process (1 samples, 0.01%)</title><rect x="899.3" y="309" width="0.1" height="15.0" fill="rgb(252,211,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.30" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_mmap (12 samples, 0.12%)</title><rect x="1187.3" y="597" width="1.4" height="15.0" fill="rgb(239,11,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.33" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_orphan_add (3 samples, 0.03%)</title><rect x="1015.8" y="389" width="0.4" height="15.0" fill="rgb(254,189,16)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1018.81" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>iov_iter_copy_from_user_atomic (16 samples, 0.16%)</title><rect x="1169.3" y="309" width="1.9" height="15.0" fill="rgb(210,203,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1172.30" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_free_blocks (10 samples, 0.10%)</title><rect x="1017.0" y="325" width="1.1" height="15.0" fill="rgb(244,29,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.98" y="335.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StreamEncoder_writeBytes_f4ec1fb2031c34079586c2ca398830a90064f89b (17 samples, 0.17%)</title><rect x="1003.1" y="549" width="2.0" height="15.0" fill="rgb(232,201,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.14" y="559.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>workingset_update_node (1 samples, 0.01%)</title><rect x="1003.8" y="229" width="0.2" height="15.0" fill="rgb(225,175,5)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1006.84" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__munmap (1 samples, 0.01%)</title><rect x="836.6" y="277" width="0.1" height="15.0" fill="rgb(220,104,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.63" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__x64_sys_munmap (42 samples, 0.41%)</title><rect x="837.3" y="245" width="4.9" height="15.0" fill="rgb(239,187,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.33" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>exit_to_usermode_loop (1 samples, 0.01%)</title><rect x="989.1" y="565" width="0.1" height="15.0" fill="rgb(206,98,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="992.07" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ata_qc_complete_multiple (1 samples, 0.01%)</title><rect x="209.9" y="421" width="0.1" height="15.0" fill="rgb(233,105,30)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>MonitorSupport_monitorEnter_d39078bc763c911eab8ef2b2f718ffd7ef1a725d (1 samples, 0.01%)</title><rect x="1095.5" y="565" width="0.1" height="15.0" fill="rgb(232,160,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1098.47" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_inode_dirty (23 samples, 0.23%)</title><rect x="1164.9" y="245" width="2.7" height="15.0" fill="rgb(253,104,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.88" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>do_IRQ (2 samples, 0.02%)</title><rect x="209.9" y="565" width="0.2" height="15.0" fill="rgb(245,171,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="212.88" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>balance_dirty_pages_ratelimited (1 samples, 0.01%)</title><rect x="1156.9" y="309" width="0.1" height="15.0" fill="rgb(209,33,42)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1159.86" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>blk_done_softirq (1 samples, 0.01%)</title><rect x="666.3" y="533" width="0.1" height="15.0" fill="rgb(241,45,1)" rx="2" ry="2" /> | |
| <text text-anchor="" x="669.28" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_orphan_del (3 samples, 0.03%)</title><rect x="1018.3" y="373" width="0.3" height="15.0" fill="rgb(250,8,21)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1021.26" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_spin_lock_irq (1 samples, 0.01%)</title><rect x="1006.4" y="213" width="0.1" height="15.0" fill="rgb(233,27,40)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1009.40" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_task_policy.part.33 (1 samples, 0.01%)</title><rect x="1162.3" y="229" width="0.1" height="15.0" fill="rgb(236,102,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1165.33" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_io_completion (1 samples, 0.01%)</title><rect x="522.8" y="437" width="0.1" height="15.0" fill="rgb(208,43,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="447.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>radix_tree_tagged (1 samples, 0.01%)</title><rect x="899.7" y="357" width="0.1" height="15.0" fill="rgb(248,119,13)" rx="2" ry="2" /> | |
| <text text-anchor="" x="902.65" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>down_read (2 samples, 0.02%)</title><rect x="1159.2" y="261" width="0.2" height="15.0" fill="rgb(213,96,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1162.19" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>GCImpl_promoteIndividualPinnedObjects_d5cefd7052bfbb1fb7e1e20bf4f2030d774d06f9 (2 samples, 0.02%)</title><rect x="1053.3" y="309" width="0.2" height="15.0" fill="rgb(249,13,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1056.26" y="319.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>exit_to_usermode_loop (4 samples, 0.04%)</title><rect x="834.1" y="517" width="0.4" height="15.0" fill="rgb(233,169,8)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.07" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>put_io_context (1 samples, 0.01%)</title><rect x="656.2" y="389" width="0.1" height="15.0" fill="rgb(251,211,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="659.16" y="399.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_page_from_freelist (7 samples, 0.07%)</title><rect x="1161.3" y="213" width="0.8" height="15.0" fill="rgb(210,15,49)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1164.28" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>tlb_flush_mmu_tlbonly (1 samples, 0.01%)</title><rect x="1056.3" y="149" width="0.1" height="15.0" fill="rgb(214,128,52)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1059.28" y="159.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>jbd2_journal_stop (1 samples, 0.01%)</title><rect x="1004.2" y="293" width="0.1" height="15.0" fill="rgb(220,180,50)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1007.19" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__radix_tree_lookup (2 samples, 0.02%)</title><rect x="1164.4" y="229" width="0.3" height="15.0" fill="rgb(242,198,28)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.42" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>scsi_end_request (1 samples, 0.01%)</title><rect x="522.8" y="421" width="0.1" height="15.0" fill="rgb(220,113,25)" rx="2" ry="2" /> | |
| <text text-anchor="" x="525.79" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__intel_pmu_enable_all.constprop.19 (4 samples, 0.04%)</title><rect x="988.5" y="421" width="0.5" height="15.0" fill="rgb(242,66,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="991.49" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__ext4_get_inode_loc (3 samples, 0.03%)</title><rect x="1167.1" y="213" width="0.3" height="15.0" fill="rgb(237,70,41)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1170.09" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StreamEncoder_forOutputStreamWriter_4f263dfbacf7df3fc3084782b09cfa08bea44f7b (3 samples, 0.03%)</title><rect x="1024.4" y="581" width="0.4" height="15.0" fill="rgb(233,160,22)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1027.42" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_mem_cgroup_from_mm (1 samples, 0.01%)</title><rect x="836.2" y="421" width="0.1" height="15.0" fill="rgb(241,136,31)" rx="2" ry="2" /> | |
| <text text-anchor="" x="839.16" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>vma_set_page_prot (1 samples, 0.01%)</title><rect x="1188.6" y="581" width="0.1" height="15.0" fill="rgb(247,126,54)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1191.60" y="591.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_inode_dirty (1 samples, 0.01%)</title><rect x="1008.1" y="229" width="0.2" height="15.0" fill="rgb(233,113,23)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1011.14" y="239.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>pagecache_get_page (1 samples, 0.01%)</title><rect x="1017.8" y="293" width="0.1" height="15.0" fill="rgb(220,168,17)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.79" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_pages.part.94 (1 samples, 0.01%)</title><rect x="837.6" y="133" width="0.1" height="15.0" fill="rgb(206,58,12)" rx="2" ry="2" /> | |
| <text text-anchor="" x="840.56" y="143.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_mem_cgroup_from_mm (2 samples, 0.02%)</title><rect x="890.5" y="421" width="0.2" height="15.0" fill="rgb(212,101,18)" rx="2" ry="2" /> | |
| <text text-anchor="" x="893.47" y="431.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__wake_up (1 samples, 0.01%)</title><rect x="1016.3" y="341" width="0.1" height="15.0" fill="rgb(232,68,36)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.28" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>intel_pmu_enable_all (4 samples, 0.04%)</title><rect x="1189.5" y="501" width="0.5" height="15.0" fill="rgb(241,27,37)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="511.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>free_unref_page_commit (1 samples, 0.01%)</title><rect x="1055.2" y="101" width="0.1" height="15.0" fill="rgb(247,57,34)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1058.23" y="111.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>hrtimer_interrupt (2 samples, 0.02%)</title><rect x="655.3" y="517" width="0.3" height="15.0" fill="rgb(217,114,0)" rx="2" ry="2" /> | |
| <text text-anchor="" x="658.35" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>__libc_write (1 samples, 0.01%)</title><rect x="10.0" y="645" width="0.1" height="15.0" fill="rgb(205,142,4)" rx="2" ry="2" /> | |
| <text text-anchor="" x="13.00" y="655.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>load_elf_binary (4 samples, 0.04%)</title><rect x="1189.5" y="597" width="0.5" height="15.0" fill="rgb(212,61,43)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1192.53" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>insert_work (1 samples, 0.01%)</title><rect x="1187.1" y="357" width="0.1" height="15.0" fill="rgb(206,111,44)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1190.09" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>unlock_page (1 samples, 0.01%)</title><rect x="1164.7" y="293" width="0.1" height="15.0" fill="rgb(253,95,29)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1167.65" y="303.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>AbstractStringBuilder_append_5488923cc849183f0525c23695d6326c7735ac5a (71 samples, 0.70%)</title><rect x="16.3" y="629" width="8.2" height="15.0" fill="rgb(234,125,46)" rx="2" ry="2" /> | |
| <text text-anchor="" x="19.28" y="639.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_mark_inode_dirty (5 samples, 0.05%)</title><rect x="1017.1" y="277" width="0.6" height="15.0" fill="rgb(229,40,20)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1020.09" y="287.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>get_mem_cgroup_from_mm (1 samples, 0.01%)</title><rect x="1082.8" y="405" width="0.1" height="15.0" fill="rgb(219,146,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1085.79" y="415.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>lru_add_drain_cpu (3 samples, 0.03%)</title><rect x="1019.1" y="341" width="0.3" height="15.0" fill="rgb(254,129,6)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1022.07" y="351.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_ext_truncate (13 samples, 0.13%)</title><rect x="1016.6" y="373" width="1.5" height="15.0" fill="rgb(237,17,15)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1019.63" y="383.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ThreadLocalAllocation_slowPathNewArrayWithoutAllocating_ce2961851cecfc7dcbaab6989026c07eca467111 (554 samples, 5.46%)</title><rect x="834.5" y="565" width="64.5" height="15.0" fill="rgb(217,47,26)" rx="2" ry="2" /> | |
| <text text-anchor="" x="837.53" y="575.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >ThreadL..</text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>mem_cgroup_update_lru_size (2 samples, 0.02%)</title><rect x="893.1" y="357" width="0.3" height="15.0" fill="rgb(241,35,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="896.14" y="367.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>HeapChunkProvider_produceAlignedChunk_151eeb69b2ff04e5a10d422de20e777d95b68672 (1 samples, 0.01%)</title><rect x="898.8" y="517" width="0.2" height="15.0" fill="rgb(214,68,14)" rx="2" ry="2" /> | |
| <text text-anchor="" x="901.84" y="527.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>ext4_ext_put_gap_in_cache (4 samples, 0.04%)</title><rect x="1160.5" y="245" width="0.4" height="15.0" fill="rgb(240,62,33)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1163.47" y="255.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>_raw_write_lock (2 samples, 0.02%)</title><rect x="1160.7" y="213" width="0.2" height="15.0" fill="rgb(227,183,32)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1163.70" y="223.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>StreamEncoder_writeBytes_f4ec1fb2031c34079586c2ca398830a90064f89b (141 samples, 1.39%)</title><rect x="1155.3" y="533" width="16.4" height="15.0" fill="rgb(245,98,9)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1158.35" y="543.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>FileOutputStream_constructor_c4230f2c31d8a83d4f1119bbde5b45a631f85a37 (86 samples, 0.85%)</title><rect x="1014.3" y="597" width="10.0" height="15.0" fill="rgb(206,94,39)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1017.30" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>generic_make_request (8 samples, 0.08%)</title><rect x="1007.2" y="261" width="0.9" height="15.0" fill="rgb(215,139,51)" rx="2" ry="2" /> | |
| <text text-anchor="" x="1010.21" y="271.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text> | |
| </g> | |
| <g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"> | |
| <title>AbstractStringBuilder_ensureCapacityInternal_6c1965fadc041359c5b520824fb0c3149b756fa7 (1,203 samples, 11.85%)</title><rect x="760.1" y="597" width="139.9" height="15.0" fill="rgb(215,213,35)" rx="2" ry="2" /> | |
| <text text-anchor="" x="763.12" y="607.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >AbstractStringBui..</text> | |
| </g> | |
| </svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment