Created
September 21, 2024 12:20
-
-
Save passcod/03273fba1f9fb9e2bcc0799f27f91682 to your computer and use it in GitHub Desktop.
This file contains 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="598" onload="init(evt)" viewBox="0 0 1200 598" 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"> | |
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); } | |
#search, #ignorecase { opacity:0.1; cursor:pointer; } | |
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; } | |
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); } | |
#title { text-anchor:middle; font-size:17px} | |
#unzoom { cursor:pointer; } | |
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; } | |
.hide { display:none; } | |
.parent { opacity:0.5; } | |
</style> | |
<script type="text/ecmascript"> | |
<![CDATA[ | |
"use strict"; | |
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn; | |
function init(evt) { | |
details = document.getElementById("details").firstChild; | |
searchbtn = document.getElementById("search"); | |
ignorecaseBtn = document.getElementById("ignorecase"); | |
unzoombtn = document.getElementById("unzoom"); | |
matchedtxt = document.getElementById("matched"); | |
svg = document.getElementsByTagName("svg")[0]; | |
searching = 0; | |
currentSearchTerm = null; | |
// use GET parameters to restore a flamegraphs state. | |
var params = get_params(); | |
if (params.x && params.y) | |
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]'))); | |
if (params.s) search(params.s); | |
} | |
// event listeners | |
window.addEventListener("click", function(e) { | |
var target = find_group(e.target); | |
if (target) { | |
if (target.nodeName == "a") { | |
if (e.ctrlKey === false) return; | |
e.preventDefault(); | |
} | |
if (target.classList.contains("parent")) unzoom(true); | |
zoom(target); | |
if (!document.querySelector('.parent')) { | |
// we have basically done a clearzoom so clear the url | |
var params = get_params(); | |
if (params.x) delete params.x; | |
if (params.y) delete params.y; | |
history.replaceState(null, null, parse_params(params)); | |
unzoombtn.classList.add("hide"); | |
return; | |
} | |
// set parameters for zoom state | |
var el = target.querySelector("rect"); | |
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) { | |
var params = get_params() | |
params.x = el.attributes._orig_x.value; | |
params.y = el.attributes.y.value; | |
history.replaceState(null, null, parse_params(params)); | |
} | |
} | |
else if (e.target.id == "unzoom") clearzoom(); | |
else if (e.target.id == "search") search_prompt(); | |
else if (e.target.id == "ignorecase") toggle_ignorecase(); | |
}, false) | |
// mouse-over for info | |
// show | |
window.addEventListener("mouseover", function(e) { | |
var target = find_group(e.target); | |
if (target) details.nodeValue = "Function: " + g_to_text(target); | |
}, false) | |
// clear | |
window.addEventListener("mouseout", function(e) { | |
var target = find_group(e.target); | |
if (target) details.nodeValue = ' '; | |
}, false) | |
// ctrl-F for search | |
// ctrl-I to toggle case-sensitive search | |
window.addEventListener("keydown",function (e) { | |
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) { | |
e.preventDefault(); | |
search_prompt(); | |
} | |
else if (e.ctrlKey && e.keyCode === 73) { | |
e.preventDefault(); | |
toggle_ignorecase(); | |
} | |
}, false) | |
// functions | |
function get_params() { | |
var params = {}; | |
var paramsarr = window.location.search.substr(1).split('&'); | |
for (var i = 0; i < paramsarr.length; ++i) { | |
var tmp = paramsarr[i].split("="); | |
if (!tmp[0] || !tmp[1]) continue; | |
params[tmp[0]] = decodeURIComponent(tmp[1]); | |
} | |
return params; | |
} | |
function parse_params(params) { | |
var uri = "?"; | |
for (var key in params) { | |
uri += key + '=' + encodeURIComponent(params[key]) + '&'; | |
} | |
if (uri.slice(-1) == "&") | |
uri = uri.substring(0, uri.length - 1); | |
if (uri == '?') | |
uri = window.location.href.split('?')[0]; | |
return uri; | |
} | |
function find_child(node, selector) { | |
var children = node.querySelectorAll(selector); | |
if (children.length) return children[0]; | |
} | |
function find_group(node) { | |
var parent = node.parentElement; | |
if (!parent) return; | |
if (parent.id == "frames") return node; | |
return find_group(parent); | |
} | |
function orig_save(e, attr, val) { | |
if (e.attributes["_orig_" + attr] != undefined) return; | |
if (e.attributes[attr] == undefined) return; | |
if (val == undefined) val = e.attributes[attr].value; | |
e.setAttribute("_orig_" + attr, val); | |
} | |
function orig_load(e, attr) { | |
if (e.attributes["_orig_"+attr] == undefined) return; | |
e.attributes[attr].value = e.attributes["_orig_" + attr].value; | |
e.removeAttribute("_orig_"+attr); | |
} | |
function g_to_text(e) { | |
var text = find_child(e, "title").firstChild.nodeValue; | |
return (text) | |
} | |
function g_to_func(e) { | |
var func = g_to_text(e); | |
// if there's any manipulation we want to do to the function | |
// name before it's searched, do it here before returning. | |
return (func); | |
} | |
function update_text(e) { | |
var r = find_child(e, "rect"); | |
var t = find_child(e, "text"); | |
var w = parseFloat(r.attributes.width.value) -3; | |
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,""); | |
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3; | |
// Smaller than this size won't fit anything | |
if (w < 2 * 12 * 0.59) { | |
t.textContent = ""; | |
return; | |
} | |
t.textContent = txt; | |
var sl = t.getSubStringLength(0, txt.length); | |
// check if only whitespace or if we can fit the entire string into width w | |
if (/^ *$/.test(txt) || sl < w) | |
return; | |
// this isn't perfect, but gives a good starting point | |
// and avoids calling getSubStringLength too often | |
var start = Math.floor((w/sl) * txt.length); | |
for (var x = start; x > 0; x = x-2) { | |
if (t.getSubStringLength(0, x + 2) <= w) { | |
t.textContent = txt.substring(0, x) + ".."; | |
return; | |
} | |
} | |
t.textContent = ""; | |
} | |
// zoom | |
function zoom_reset(e) { | |
if (e.attributes != undefined) { | |
orig_load(e, "x"); | |
orig_load(e, "width"); | |
} | |
if (e.childNodes == undefined) return; | |
for (var i = 0, c = e.childNodes; i < c.length; i++) { | |
zoom_reset(c[i]); | |
} | |
} | |
function zoom_child(e, x, ratio) { | |
if (e.attributes != undefined) { | |
if (e.attributes.x != undefined) { | |
orig_save(e, "x"); | |
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10; | |
if (e.tagName == "text") | |
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3; | |
} | |
if (e.attributes.width != undefined) { | |
orig_save(e, "width"); | |
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio; | |
} | |
} | |
if (e.childNodes == undefined) return; | |
for (var i = 0, c = e.childNodes; i < c.length; i++) { | |
zoom_child(c[i], x - 10, ratio); | |
} | |
} | |
function zoom_parent(e) { | |
if (e.attributes) { | |
if (e.attributes.x != undefined) { | |
orig_save(e, "x"); | |
e.attributes.x.value = 10; | |
} | |
if (e.attributes.width != undefined) { | |
orig_save(e, "width"); | |
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2); | |
} | |
} | |
if (e.childNodes == undefined) return; | |
for (var i = 0, c = e.childNodes; i < c.length; i++) { | |
zoom_parent(c[i]); | |
} | |
} | |
function zoom(node) { | |
var attr = find_child(node, "rect").attributes; | |
var width = parseFloat(attr.width.value); | |
var xmin = parseFloat(attr.x.value); | |
var xmax = parseFloat(xmin + width); | |
var ymin = parseFloat(attr.y.value); | |
var ratio = (svg.width.baseVal.value - 2 * 10) / width; | |
// XXX: Workaround for JavaScript float issues (fix me) | |
var fudge = 0.0001; | |
unzoombtn.classList.remove("hide"); | |
var el = document.getElementById("frames").children; | |
for (var i = 0; i < el.length; i++) { | |
var e = el[i]; | |
var a = find_child(e, "rect").attributes; | |
var ex = parseFloat(a.x.value); | |
var ew = parseFloat(a.width.value); | |
var upstack; | |
// Is it an ancestor | |
if (0 == 0) { | |
upstack = parseFloat(a.y.value) > ymin; | |
} else { | |
upstack = parseFloat(a.y.value) < ymin; | |
} | |
if (upstack) { | |
// Direct ancestor | |
if (ex <= xmin && (ex+ew+fudge) >= xmax) { | |
e.classList.add("parent"); | |
zoom_parent(e); | |
update_text(e); | |
} | |
// not in current path | |
else | |
e.classList.add("hide"); | |
} | |
// Children maybe | |
else { | |
// no common path | |
if (ex < xmin || ex + fudge >= xmax) { | |
e.classList.add("hide"); | |
} | |
else { | |
zoom_child(e, xmin, ratio); | |
update_text(e); | |
} | |
} | |
} | |
search(); | |
} | |
function unzoom(dont_update_text) { | |
unzoombtn.classList.add("hide"); | |
var el = document.getElementById("frames").children; | |
for(var i = 0; i < el.length; i++) { | |
el[i].classList.remove("parent"); | |
el[i].classList.remove("hide"); | |
zoom_reset(el[i]); | |
if(!dont_update_text) update_text(el[i]); | |
} | |
search(); | |
} | |
function clearzoom() { | |
unzoom(); | |
// remove zoom state | |
var params = get_params(); | |
if (params.x) delete params.x; | |
if (params.y) delete params.y; | |
history.replaceState(null, null, parse_params(params)); | |
} | |
// search | |
function toggle_ignorecase() { | |
ignorecase = !ignorecase; | |
if (ignorecase) { | |
ignorecaseBtn.classList.add("show"); | |
} else { | |
ignorecaseBtn.classList.remove("show"); | |
} | |
reset_search(); | |
search(); | |
} | |
function reset_search() { | |
var el = document.querySelectorAll("#frames rect"); | |
for (var i = 0; i < el.length; i++) { | |
orig_load(el[i], "fill") | |
} | |
var params = get_params(); | |
delete params.s; | |
history.replaceState(null, null, parse_params(params)); | |
} | |
function search_prompt() { | |
if (!searching) { | |
var term = prompt("Enter a search term (regexp " + | |
"allowed, eg: ^ext4_)" | |
+ (ignorecase ? ", ignoring case" : "") | |
+ "\nPress Ctrl-i to toggle case sensitivity", ""); | |
if (term != null) search(term); | |
} else { | |
reset_search(); | |
searching = 0; | |
currentSearchTerm = null; | |
searchbtn.classList.remove("show"); | |
searchbtn.firstChild.nodeValue = "Search" | |
matchedtxt.classList.add("hide"); | |
matchedtxt.firstChild.nodeValue = "" | |
} | |
} | |
function search(term) { | |
if (term) currentSearchTerm = term; | |
var re = new RegExp(currentSearchTerm, ignorecase ? 'i' : ''); | |
var el = document.getElementById("frames").children; | |
var matches = new Object(); | |
var maxwidth = 0; | |
for (var i = 0; i < el.length; i++) { | |
var e = el[i]; | |
var func = g_to_func(e); | |
var rect = find_child(e, "rect"); | |
if (func == null || rect == null) | |
continue; | |
// Save max width. Only works as we have a root frame | |
var w = parseFloat(rect.attributes.width.value); | |
if (w > maxwidth) | |
maxwidth = w; | |
if (func.match(re)) { | |
// highlight | |
var x = parseFloat(rect.attributes.x.value); | |
orig_save(rect, "fill"); | |
rect.attributes.fill.value = "rgb(230,0,230)"; | |
// remember matches | |
if (matches[x] == undefined) { | |
matches[x] = w; | |
} else { | |
if (w > matches[x]) { | |
// overwrite with parent | |
matches[x] = w; | |
} | |
} | |
searching = 1; | |
} | |
} | |
if (!searching) | |
return; | |
var params = get_params(); | |
params.s = currentSearchTerm; | |
history.replaceState(null, null, parse_params(params)); | |
searchbtn.classList.add("show"); | |
searchbtn.firstChild.nodeValue = "Reset Search"; | |
// calculate percent matched, excluding vertical overlap | |
var count = 0; | |
var lastx = -1; | |
var lastw = 0; | |
var keys = Array(); | |
for (k in matches) { | |
if (matches.hasOwnProperty(k)) | |
keys.push(k); | |
} | |
// sort the matched frames by their x location | |
// ascending, then width descending | |
keys.sort(function(a, b){ | |
return a - b; | |
}); | |
// Step through frames saving only the biggest bottom-up frames | |
// thanks to the sort order. This relies on the tree property | |
// where children are always smaller than their parents. | |
var fudge = 0.0001; // JavaScript floating point | |
for (var k in keys) { | |
var x = parseFloat(keys[k]); | |
var w = matches[keys[k]]; | |
if (x >= lastx + lastw - fudge) { | |
count += w; | |
lastx = x; | |
lastw = w; | |
} | |
} | |
// display matched percent | |
matchedtxt.classList.remove("hide"); | |
var pct = 100 * count / maxwidth; | |
if (pct != 100) pct = pct.toFixed(1) | |
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%"; | |
} | |
]]> | |
</script> | |
<rect x="0.0" y="0" width="1200.0" height="598.0" fill="url(#background)" /> | |
<text id="title" x="600.00" y="24" >Flame Graph</text> | |
<text id="details" x="10.00" y="581" > </text> | |
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text> | |
<text id="search" x="1090.00" y="24" >Search</text> | |
<text id="ignorecase" x="1174.00" y="24" >ic</text> | |
<text id="matched" x="1090.00" y="581" > </text> | |
<g id="frames"> | |
<g > | |
<title>rwsem_wake.isra.0 (3,719 samples, 0.02%)</title><rect x="1123.5" y="421" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
<text x="1126.51" y="431.5" ></text> | |
</g> | |
<g > | |
<title>common_interrupt (3,987 samples, 0.02%)</title><rect x="1157.1" y="325" width="0.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" /> | |
<text x="1160.12" y="335.5" ></text> | |
</g> | |
<g > | |
<title>insert_vmap_area (857,243 samples, 4.81%)</title><rect x="311.5" y="293" width="56.8" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" /> | |
<text x="314.51" y="303.5" >insert..</text> | |
</g> | |
<g > | |
<title>do_syscall_64 (699,186 samples, 3.92%)</title><rect x="1051.4" y="181" width="46.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="1054.43" y="191.5" >do_s..</text> | |
</g> | |
<g > | |
<title>do_user_addr_fault (98,675 samples, 0.55%)</title><rect x="200.8" y="469" width="6.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
<text x="203.84" y="479.5" ></text> | |
</g> | |
<g > | |
<title>try_to_wake_up (3,719 samples, 0.02%)</title><rect x="1123.5" y="389" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
<text x="1126.51" y="399.5" ></text> | |
</g> | |
<g > | |
<title>[unknown] (772,200 samples, 4.33%)</title><rect x="511.3" y="485" width="51.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
<text x="514.33" y="495.5" >[unkn..</text> | |
</g> | |
<g > | |
<title>__ip_queue_xmit (1,912,728 samples, 10.73%)</title><rect x="762.1" y="341" width="126.7" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> | |
<text x="765.11" y="351.5" >__ip_queue_xmit</text> | |
</g> | |
<g > | |
<title>lock_vma_under_rcu (19,962 samples, 0.11%)</title><rect x="206.1" y="453" width="1.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
<text x="209.06" y="463.5" ></text> | |
</g> | |
<g > | |
<title>pthread_create (1,854 samples, 0.01%)</title><rect x="258.3" y="501" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> | |
<text x="261.31" y="511.5" ></text> | |
</g> | |
<g > | |
<title>do_fault (379,731 samples, 2.13%)</title><rect x="1097.7" y="133" width="25.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
<text x="1100.73" y="143.5" >d..</text> | |
</g> | |
<g > | |
<title>tcp_recvmsg (798,306 samples, 4.48%)</title><rect x="258.4" y="389" width="52.9" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" /> | |
<text x="261.43" y="399.5" >tcp_r..</text> | |
</g> | |
<g > | |
<title>do_vmi_align_munmap (109,647 samples, 0.62%)</title><rect x="663.6" y="389" width="7.2" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" /> | |
<text x="666.58" y="399.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (1,000,339 samples, 5.61%)</title><rect x="1123.8" y="501" width="66.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="1126.76" y="511.5" >entry_S..</text> | |
</g> | |
<g > | |
<title>folio_add_lru (196,176 samples, 1.10%)</title><rect x="888.8" y="405" width="13.0" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" /> | |
<text x="891.77" y="415.5" ></text> | |
</g> | |
<g > | |
<title>__handle_mm_fault (314,083 samples, 1.76%)</title><rect x="89.0" y="309" width="20.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
<text x="92.03" y="319.5" ></text> | |
</g> | |
<g > | |
<title>vmf_anon_prepare (785,875 samples, 4.41%)</title><rect x="459.3" y="373" width="52.0" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> | |
<text x="462.29" y="383.5" >vmf_a..</text> | |
</g> | |
<g > | |
<title>do_anonymous_page (314,083 samples, 1.76%)</title><rect x="89.0" y="293" width="20.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
<text x="92.03" y="303.5" ></text> | |
</g> | |
<g > | |
<title>finish_task_switch.isra.0 (13,833 samples, 0.08%)</title><rect x="1156.5" y="357" width="0.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
<text x="1159.47" y="367.5" ></text> | |
</g> | |
<g > | |
<title>ctx_groups_sched_in (1,700 samples, 0.01%)</title><rect x="686.9" y="293" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
<text x="689.92" y="303.5" ></text> | |
</g> | |
<g > | |
<title>_raw_spin_unlock (47,623 samples, 0.27%)</title><rect x="1153.3" y="309" width="3.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> | |
<text x="1156.32" y="319.5" ></text> | |
</g> | |
<g > | |
<title>nf_conntrack_in (1,912,728 samples, 10.73%)</title><rect x="762.1" y="277" width="126.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
<text x="765.11" y="287.5" >nf_conntrack_in</text> | |
</g> | |
<g > | |
<title>__sys_sendto (1,912,728 samples, 10.73%)</title><rect x="762.1" y="437" width="126.7" height="15.0" fill="rgb(243,175,42)" rx="2" ry="2" /> | |
<text x="765.11" y="447.5" >__sys_sendto</text> | |
</g> | |
<g > | |
<title>__mmap (323,549 samples, 1.82%)</title><rect x="67.6" y="373" width="21.4" height="15.0" fill="rgb(227,104,25)" rx="2" ry="2" /> | |
<text x="70.61" y="383.5" >_..</text> | |
</g> | |
<g > | |
<title>__vm_munmap (352,397 samples, 1.98%)</title><rect x="663.6" y="421" width="23.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" /> | |
<text x="666.58" y="431.5" >_..</text> | |
</g> | |
<g > | |
<title>[ld-linux-x86-64.so.2] (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="261" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
<text x="1054.43" y="271.5" >[ld-linu..</text> | |
</g> | |
<g > | |
<title>expand_downwards (39,967 samples, 0.22%)</title><rect x="562.5" y="389" width="2.6" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
<text x="565.46" y="399.5" ></text> | |
</g> | |
<g > | |
<title>_raw_spin_lock (785,875 samples, 4.41%)</title><rect x="459.3" y="341" width="52.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> | |
<text x="462.29" y="351.5" >_raw_..</text> | |
</g> | |
<g > | |
<title>do_syscall_64 (3,719 samples, 0.02%)</title><rect x="1123.5" y="501" width="0.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="1126.51" y="511.5" ></text> | |
</g> | |
<g > | |
<title>kmem_cache_alloc_noprof (314,083 samples, 1.76%)</title><rect x="89.0" y="245" width="20.8" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
<text x="92.03" y="255.5" ></text> | |
</g> | |
<g > | |
<title>vm_area_alloc (46,217 samples, 0.26%)</title><rect x="71.2" y="277" width="3.1" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> | |
<text x="74.23" y="287.5" ></text> | |
</g> | |
<g > | |
<title>[ld-linux-x86-64.so.2] (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="325" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
<text x="1054.43" y="335.5" >[ld-linu..</text> | |
</g> | |
<g > | |
<title>__handle_mm_fault (58,762 samples, 0.33%)</title><rect x="202.2" y="437" width="3.9" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
<text x="205.16" y="447.5" ></text> | |
</g> | |
<g > | |
<title>visit_groups_merge.constprop.0.isra.0 (11,838 samples, 0.07%)</title><rect x="458.4" y="325" width="0.7" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
<text x="461.36" y="335.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (622,594 samples, 3.49%)</title><rect x="10.4" y="405" width="41.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="13.37" y="415.5" >do_..</text> | |
</g> | |
<g > | |
<title>schedule_tail (1,521 samples, 0.01%)</title><rect x="207.4" y="405" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
<text x="210.38" y="415.5" ></text> | |
</g> | |
<g > | |
<title>mas_wr_bnode (60,757 samples, 0.34%)</title><rect x="152.5" y="229" width="4.0" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
<text x="155.49" y="239.5" ></text> | |
</g> | |
<g > | |
<title>drain_stock (6,614 samples, 0.04%)</title><rect x="204.6" y="277" width="0.4" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
<text x="207.55" y="287.5" ></text> | |
</g> | |
<g > | |
<title>asm_exc_page_fault (379,731 samples, 2.13%)</title><rect x="1097.7" y="213" width="25.2" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
<text x="1100.73" y="223.5" >a..</text> | |
</g> | |
<g > | |
<title>x64_sys_call (29,365 samples, 0.16%)</title><rect x="198.5" y="453" width="1.9" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> | |
<text x="201.45" y="463.5" ></text> | |
</g> | |
<g > | |
<title>futex_wait_setup (89,091 samples, 0.50%)</title><rect x="1157.4" y="405" width="5.9" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" /> | |
<text x="1160.39" y="415.5" ></text> | |
</g> | |
<g > | |
<title>event_sched_in (1,854 samples, 0.01%)</title><rect x="258.3" y="309" width="0.1" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" /> | |
<text x="261.31" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__vm_munmap (442,366 samples, 2.48%)</title><rect x="148.6" y="325" width="29.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" /> | |
<text x="151.65" y="335.5" >__..</text> | |
</g> | |
<g > | |
<title>[ld-linux-x86-64.so.2] (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="293" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
<text x="1054.43" y="303.5" >[ld-linu..</text> | |
</g> | |
<g > | |
<title>futex_wait_queue (503,846 samples, 2.83%)</title><rect x="1124.0" y="405" width="33.4" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
<text x="1127.02" y="415.5" >fu..</text> | |
</g> | |
<g > | |
<title>__perf_event_task_sched_in (1,521 samples, 0.01%)</title><rect x="207.4" y="373" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
<text x="210.38" y="383.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (352,397 samples, 1.98%)</title><rect x="663.6" y="469" width="23.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="666.58" y="479.5" >e..</text> | |
</g> | |
<g > | |
<title>do_execveat_common.isra.0 (39,967 samples, 0.22%)</title><rect x="562.5" y="453" width="2.6" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
<text x="565.46" y="463.5" ></text> | |
</g> | |
<g > | |
<title>sock_recvmsg (798,306 samples, 4.48%)</title><rect x="258.4" y="421" width="52.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> | |
<text x="261.43" y="431.5" >sock_..</text> | |
</g> | |
<g > | |
<title>perf_ibs_start (1,854 samples, 0.01%)</title><rect x="258.3" y="277" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
<text x="261.31" y="287.5" ></text> | |
</g> | |
<g > | |
<title>syscall (1,000,339 samples, 5.61%)</title><rect x="1123.8" y="517" width="66.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
<text x="1126.76" y="527.5" >syscall</text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (622,594 samples, 3.49%)</title><rect x="10.4" y="421" width="41.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="13.37" y="431.5" >ent..</text> | |
</g> | |
<g > | |
<title>perf_ctx_enable (2,100 samples, 0.01%)</title><rect x="459.1" y="341" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
<text x="462.15" y="351.5" ></text> | |
</g> | |
<g > | |
<title>[libc.so.6] (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="341" width="71.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="1054.43" y="351.5" >[libc.so..</text> | |
</g> | |
<g > | |
<title>perf_event_addr_filters_exec (4,886 samples, 0.03%)</title><rect x="10.0" y="357" width="0.4" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> | |
<text x="13.05" y="367.5" ></text> | |
</g> | |
<g > | |
<title>perf_event_update_userpage (7,768 samples, 0.04%)</title><rect x="458.5" y="261" width="0.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" /> | |
<text x="461.51" y="271.5" ></text> | |
</g> | |
<g > | |
<title>osq_lock (423,064 samples, 2.37%)</title><rect x="113.2" y="277" width="28.0" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
<text x="116.16" y="287.5" >o..</text> | |
</g> | |
<g > | |
<title>_dl_catch_exception (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="309" width="71.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
<text x="1054.43" y="319.5" >_dl_catc..</text> | |
</g> | |
<g > | |
<title>mas_spanning_rebalance.isra.0 (212,080 samples, 1.19%)</title><rect x="156.5" y="245" width="14.1" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" /> | |
<text x="159.52" y="255.5" ></text> | |
</g> | |
<g > | |
<title>[russh] (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="469" width="71.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="1054.43" y="479.5" >[russh]</text> | |
</g> | |
<g > | |
<title>tcp_mstamp_refresh (798,306 samples, 4.48%)</title><rect x="258.4" y="341" width="52.9" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> | |
<text x="261.43" y="351.5" >tcp_m..</text> | |
</g> | |
<g > | |
<title>up_write (309,757 samples, 1.74%)</title><rect x="177.9" y="389" width="20.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
<text x="180.94" y="399.5" ></text> | |
</g> | |
<g > | |
<title>[ld-linux-x86-64.so.2] (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="373" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
<text x="1054.43" y="383.5" >[ld-linu..</text> | |
</g> | |
<g > | |
<title>[libc.so.6] (637,632 samples, 3.58%)</title><rect x="67.6" y="389" width="42.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="70.61" y="399.5" >[li..</text> | |
</g> | |
<g > | |
<title>do_filp_open (767,627 samples, 4.31%)</title><rect x="207.5" y="357" width="50.8" height="15.0" fill="rgb(217,58,13)" rx="2" ry="2" /> | |
<text x="210.48" y="367.5" >do_fi..</text> | |
</g> | |
<g > | |
<title>perf_event_init_task (1,360,494 samples, 7.63%)</title><rect x="368.3" y="341" width="90.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" /> | |
<text x="371.27" y="351.5" >perf_event..</text> | |
</g> | |
<g > | |
<title>event_sched_in (7,648 samples, 0.04%)</title><rect x="1156.5" y="277" width="0.5" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" /> | |
<text x="1159.47" y="287.5" ></text> | |
</g> | |
<g > | |
<title>perf_ibs_add (6,291 samples, 0.04%)</title><rect x="1156.5" y="261" width="0.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
<text x="1159.54" y="271.5" ></text> | |
</g> | |
<g > | |
<title>merge_sched_in (1,521 samples, 0.01%)</title><rect x="207.4" y="325" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
<text x="210.38" y="335.5" ></text> | |
</g> | |
<g > | |
<title>mas_topiary_replace (622,594 samples, 3.49%)</title><rect x="10.4" y="261" width="41.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" /> | |
<text x="13.37" y="271.5" >mas..</text> | |
</g> | |
<g > | |
<title>event_sched_in (1,700 samples, 0.01%)</title><rect x="686.9" y="245" width="0.1" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" /> | |
<text x="689.92" y="255.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (5,620 samples, 0.03%)</title><rect x="10.0" y="501" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="13.00" y="511.5" ></text> | |
</g> | |
<g > | |
<title>open64 (767,627 samples, 4.31%)</title><rect x="207.5" y="437" width="50.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="210.48" y="447.5" >open64</text> | |
</g> | |
<g > | |
<title>__rseq_handle_notify_resume (3,448 samples, 0.02%)</title><rect x="1189.0" y="453" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" /> | |
<text x="1191.99" y="463.5" ></text> | |
</g> | |
<g > | |
<title>__handle_mm_fault (785,875 samples, 4.41%)</title><rect x="459.3" y="405" width="52.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
<text x="462.29" y="415.5" >__han..</text> | |
</g> | |
<g > | |
<title>handle_mm_fault (241,720 samples, 1.36%)</title><rect x="51.6" y="437" width="16.0" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" /> | |
<text x="54.60" y="447.5" ></text> | |
</g> | |
<g > | |
<title>do_mprotect_pkey (622,594 samples, 3.49%)</title><rect x="10.4" y="373" width="41.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
<text x="13.37" y="383.5" >do_..</text> | |
</g> | |
<g > | |
<title>can_vma_merge_before (54,780 samples, 0.31%)</title><rect x="67.6" y="277" width="3.6" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" /> | |
<text x="70.61" y="287.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (309,757 samples, 1.74%)</title><rect x="177.9" y="437" width="20.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="180.94" y="447.5" ></text> | |
</g> | |
<g > | |
<title>schedule (503,846 samples, 2.83%)</title><rect x="1124.0" y="389" width="33.4" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
<text x="1127.02" y="399.5" >sc..</text> | |
</g> | |
<g > | |
<title>do_syscall_64 (1,700 samples, 0.01%)</title><rect x="686.9" y="469" width="0.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="689.92" y="479.5" ></text> | |
</g> | |
<g > | |
<title>[libc.so.6] (1,521 samples, 0.01%)</title><rect x="207.4" y="485" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="210.38" y="495.5" ></text> | |
</g> | |
<g > | |
<title>__pte_alloc (19,991 samples, 0.11%)</title><rect x="203.7" y="405" width="1.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="206.67" y="415.5" ></text> | |
</g> | |
<g > | |
<title>mas_store_prealloc (622,594 samples, 3.49%)</title><rect x="10.4" y="293" width="41.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> | |
<text x="13.37" y="303.5" >mas..</text> | |
</g> | |
<g > | |
<title>ksys_mmap_pgoff (699,186 samples, 3.92%)</title><rect x="1051.4" y="165" width="46.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> | |
<text x="1054.43" y="175.5" >ksys..</text> | |
</g> | |
<g > | |
<title>mas_store_prealloc (699,186 samples, 3.92%)</title><rect x="1051.4" y="85" width="46.3" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> | |
<text x="1054.43" y="95.5" >mas_..</text> | |
</g> | |
<g > | |
<title>finish_task_switch.isra.0 (13,938 samples, 0.08%)</title><rect x="458.4" y="373" width="0.9" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
<text x="461.36" y="383.5" ></text> | |
</g> | |
<g > | |
<title>set_pte_range (379,731 samples, 2.13%)</title><rect x="1097.7" y="101" width="25.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" /> | |
<text x="1100.73" y="111.5" >s..</text> | |
</g> | |
<g > | |
<title>srso_alias_return_thunk (699,186 samples, 3.92%)</title><rect x="1051.4" y="53" width="46.3" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" /> | |
<text x="1054.43" y="63.5" >srso..</text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (632,198 samples, 3.55%)</title><rect x="616.2" y="501" width="41.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="619.24" y="511.5" >ent..</text> | |
</g> | |
<g > | |
<title>alloc_vmap_area (857,243 samples, 4.81%)</title><rect x="311.5" y="309" width="56.8" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> | |
<text x="314.51" y="319.5" >alloc_..</text> | |
</g> | |
<g > | |
<title>do_anonymous_page (196,176 samples, 1.10%)</title><rect x="888.8" y="421" width="13.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
<text x="891.77" y="431.5" ></text> | |
</g> | |
<g > | |
<title>perf_ibs_add (10,466 samples, 0.06%)</title><rect x="458.5" y="277" width="0.6" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
<text x="461.45" y="287.5" ></text> | |
</g> | |
<g > | |
<title>mas_store_prealloc (56,988 samples, 0.32%)</title><rect x="144.9" y="245" width="3.7" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> | |
<text x="147.87" y="255.5" ></text> | |
</g> | |
<g > | |
<title>mas_prev_range (103,403 samples, 0.58%)</title><rect x="663.6" y="373" width="6.8" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" /> | |
<text x="666.58" y="383.5" ></text> | |
</g> | |
<g > | |
<title>do_user_addr_fault (785,875 samples, 4.41%)</title><rect x="459.3" y="437" width="52.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
<text x="462.29" y="447.5" >do_us..</text> | |
</g> | |
<g > | |
<title>try_charge_memcg (9,738 samples, 0.05%)</title><rect x="203.0" y="389" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
<text x="206.02" y="399.5" ></text> | |
</g> | |
<g > | |
<title>bprm_execve (5,620 samples, 0.03%)</title><rect x="10.0" y="437" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
<text x="13.00" y="447.5" ></text> | |
</g> | |
<g > | |
<title>__x64_sys_sendto (1,912,728 samples, 10.73%)</title><rect x="762.1" y="453" width="126.7" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" /> | |
<text x="765.11" y="463.5" >__x64_sys_sendto</text> | |
</g> | |
<g > | |
<title>do_vmi_munmap (109,647 samples, 0.62%)</title><rect x="663.6" y="405" width="7.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> | |
<text x="666.58" y="415.5" ></text> | |
</g> | |
<g > | |
<title>rwsem_down_write_slowpath (111,444 samples, 0.63%)</title><rect x="170.6" y="293" width="7.3" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> | |
<text x="173.56" y="303.5" ></text> | |
</g> | |
<g > | |
<title>x64_sys_call (1,700 samples, 0.01%)</title><rect x="686.9" y="453" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> | |
<text x="689.92" y="463.5" ></text> | |
</g> | |
<g > | |
<title>exc_page_fault (196,176 samples, 1.10%)</title><rect x="888.8" y="485" width="13.0" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
<text x="891.77" y="495.5" ></text> | |
</g> | |
<g > | |
<title>dequeue_task_fair (47,623 samples, 0.27%)</title><rect x="1153.3" y="357" width="3.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" /> | |
<text x="1156.32" y="367.5" ></text> | |
</g> | |
<g > | |
<title>do_sys_openat2 (767,627 samples, 4.31%)</title><rect x="207.5" y="373" width="50.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> | |
<text x="210.48" y="383.5" >do_sy..</text> | |
</g> | |
<g > | |
<title>rwsem_down_write_slowpath (222,552 samples, 1.25%)</title><rect x="74.3" y="293" width="14.7" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> | |
<text x="77.29" y="303.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (586,230 samples, 3.29%)</title><rect x="109.8" y="373" width="38.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="112.83" y="383.5" >ent..</text> | |
</g> | |
<g > | |
<title>__handle_mm_fault (379,731 samples, 2.13%)</title><rect x="1097.7" y="149" width="25.2" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
<text x="1100.73" y="159.5" >_..</text> | |
</g> | |
<g > | |
<title>mas_store_prealloc (60,757 samples, 0.34%)</title><rect x="152.5" y="245" width="4.0" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> | |
<text x="155.49" y="255.5" ></text> | |
</g> | |
<g > | |
<title>finish_task_switch.isra.0 (1,700 samples, 0.01%)</title><rect x="686.9" y="325" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
<text x="689.92" y="335.5" ></text> | |
</g> | |
<g > | |
<title>[libc.so.6] (436,852 samples, 2.45%)</title><rect x="658.1" y="501" width="28.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="661.10" y="511.5" >[l..</text> | |
</g> | |
<g > | |
<title>__irqentry_text_end (3,214 samples, 0.02%)</title><rect x="311.3" y="421" width="0.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
<text x="314.29" y="431.5" ></text> | |
</g> | |
<g > | |
<title>__cgroup_account_cputime (9,652 samples, 0.05%)</title><rect x="1122.9" y="389" width="0.6" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
<text x="1125.87" y="399.5" ></text> | |
</g> | |
<g > | |
<title>select_task_rq_fair (632,198 samples, 3.55%)</title><rect x="616.2" y="389" width="41.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" /> | |
<text x="619.24" y="399.5" >sel..</text> | |
</g> | |
<g > | |
<title>schedule (1,700 samples, 0.01%)</title><rect x="686.9" y="357" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
<text x="689.92" y="367.5" ></text> | |
</g> | |
<g > | |
<title>[ld-linux-x86-64.so.2] (699,186 samples, 3.92%)</title><rect x="1051.4" y="213" width="46.3" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
<text x="1054.43" y="223.5" >[ld-..</text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (442,366 samples, 2.48%)</title><rect x="148.6" y="373" width="29.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="151.65" y="383.5" >en..</text> | |
</g> | |
<g > | |
<title>do_mmap (699,186 samples, 3.92%)</title><rect x="1051.4" y="133" width="46.3" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
<text x="1054.43" y="143.5" >do_m..</text> | |
</g> | |
<g > | |
<title>__anon_vma_prepare (785,875 samples, 4.41%)</title><rect x="459.3" y="357" width="52.0" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" /> | |
<text x="462.29" y="367.5" >__ano..</text> | |
</g> | |
<g > | |
<title>switch_fpu_return (11,826 samples, 0.07%)</title><rect x="1189.2" y="453" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> | |
<text x="1192.22" y="463.5" ></text> | |
</g> | |
<g > | |
<title>ret_from_fork_asm (1,854 samples, 0.01%)</title><rect x="258.3" y="437" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
<text x="261.31" y="447.5" ></text> | |
</g> | |
<g > | |
<title>handle_mm_fault (785,875 samples, 4.41%)</title><rect x="459.3" y="421" width="52.0" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" /> | |
<text x="462.29" y="431.5" >handl..</text> | |
</g> | |
<g > | |
<title>wake_q_add (309,757 samples, 1.74%)</title><rect x="177.9" y="341" width="20.6" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
<text x="180.94" y="351.5" ></text> | |
</g> | |
<g > | |
<title>do_vmi_align_munmap (330,922 samples, 1.86%)</title><rect x="148.6" y="293" width="22.0" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" /> | |
<text x="151.65" y="303.5" >d..</text> | |
</g> | |
<g > | |
<title>load_elf_binary (39,967 samples, 0.22%)</title><rect x="562.5" y="421" width="2.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
<text x="565.46" y="431.5" ></text> | |
</g> | |
<g > | |
<title>kernfs_iop_permission (767,627 samples, 4.31%)</title><rect x="207.5" y="293" width="50.8" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
<text x="210.48" y="303.5" >kernf..</text> | |
</g> | |
<g > | |
<title>[unknown] (2,991,645 samples, 16.79%)</title><rect x="924.8" y="501" width="198.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
<text x="927.77" y="511.5" >[unknown]</text> | |
</g> | |
<g > | |
<title>[libc.so.6] (1,854 samples, 0.01%)</title><rect x="258.3" y="485" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="261.31" y="495.5" ></text> | |
</g> | |
<g > | |
<title>__vmalloc_node_range_noprof (857,243 samples, 4.81%)</title><rect x="311.5" y="341" width="56.8" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
<text x="314.51" y="351.5" >__vmal..</text> | |
</g> | |
<g > | |
<title>do_futex (632,198 samples, 3.55%)</title><rect x="616.2" y="453" width="41.9" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> | |
<text x="619.24" y="463.5" >do_..</text> | |
</g> | |
<g > | |
<title>malloc (1,666,228 samples, 9.35%)</title><rect x="67.6" y="437" width="110.3" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" /> | |
<text x="70.61" y="447.5" >malloc</text> | |
</g> | |
<g > | |
<title>do_futex (592,937 samples, 3.33%)</title><rect x="1124.0" y="453" width="39.3" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" /> | |
<text x="1127.02" y="463.5" >do_..</text> | |
</g> | |
<g > | |
<title>do_syscall_64 (323,549 samples, 1.82%)</title><rect x="67.6" y="341" width="21.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="70.61" y="351.5" >d..</text> | |
</g> | |
<g > | |
<title>__perf_event_task_sched_in (9,846 samples, 0.06%)</title><rect x="1156.5" y="341" width="0.6" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
<text x="1159.47" y="351.5" ></text> | |
</g> | |
<g > | |
<title>mas_wr_node_store (56,988 samples, 0.32%)</title><rect x="144.9" y="213" width="3.7" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" /> | |
<text x="147.87" y="223.5" ></text> | |
</g> | |
<g > | |
<title>perf_iterate_ctx (4,886 samples, 0.03%)</title><rect x="10.0" y="373" width="0.4" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" /> | |
<text x="13.05" y="383.5" ></text> | |
</g> | |
<g > | |
<title>[libc.so.6] (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="389" width="71.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="1054.43" y="399.5" >[libc.so..</text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (29,365 samples, 0.16%)</title><rect x="198.5" y="485" width="1.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="201.45" y="495.5" ></text> | |
</g> | |
<g > | |
<title>[ld-linux-x86-64.so.2] (622,594 samples, 3.49%)</title><rect x="10.4" y="453" width="41.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
<text x="13.37" y="463.5" >[ld..</text> | |
</g> | |
<g > | |
<title>get_page_from_freelist (9,500 samples, 0.05%)</title><rect x="205.4" y="357" width="0.7" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" /> | |
<text x="208.43" y="367.5" ></text> | |
</g> | |
<g > | |
<title>do_anonymous_page (45,816 samples, 0.26%)</title><rect x="203.0" y="421" width="3.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
<text x="206.02" y="431.5" ></text> | |
</g> | |
<g > | |
<title>exc_page_fault (241,720 samples, 1.36%)</title><rect x="51.6" y="469" width="16.0" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
<text x="54.60" y="479.5" ></text> | |
</g> | |
<g > | |
<title>down_write_killable (242,750 samples, 1.36%)</title><rect x="670.8" y="405" width="16.1" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" /> | |
<text x="673.85" y="415.5" ></text> | |
</g> | |
<g > | |
<title>__x64_sys_sched_yield (9,652 samples, 0.05%)</title><rect x="1122.9" y="469" width="0.6" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
<text x="1125.87" y="479.5" ></text> | |
</g> | |
<g > | |
<title>mas_wr_store_entry.isra.0 (699,186 samples, 3.92%)</title><rect x="1051.4" y="69" width="46.3" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
<text x="1054.43" y="79.5" >mas_..</text> | |
</g> | |
<g > | |
<title>do_syscall_64 (352,397 samples, 1.98%)</title><rect x="663.6" y="453" width="23.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="666.58" y="463.5" >d..</text> | |
</g> | |
<g > | |
<title>__schedule (32,397 samples, 0.18%)</title><rect x="922.2" y="389" width="2.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" /> | |
<text x="925.21" y="399.5" ></text> | |
</g> | |
<g > | |
<title>kernfs_refresh_inode (767,627 samples, 4.31%)</title><rect x="207.5" y="277" width="50.8" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" /> | |
<text x="210.48" y="287.5" >kernf..</text> | |
</g> | |
<g > | |
<title>__schedule (9,652 samples, 0.05%)</title><rect x="1122.9" y="437" width="0.6" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" /> | |
<text x="1125.87" y="447.5" ></text> | |
</g> | |
<g > | |
<title>__anon_vma_prepare (314,083 samples, 1.76%)</title><rect x="89.0" y="261" width="20.8" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" /> | |
<text x="92.03" y="271.5" ></text> | |
</g> | |
<g > | |
<title>down_write_killable (222,552 samples, 1.25%)</title><rect x="74.3" y="309" width="14.7" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" /> | |
<text x="77.29" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__x64_sys_munmap (352,397 samples, 1.98%)</title><rect x="663.6" y="437" width="23.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" /> | |
<text x="666.58" y="447.5" >_..</text> | |
</g> | |
<g > | |
<title>mas_topiary_replace (60,757 samples, 0.34%)</title><rect x="152.5" y="213" width="4.0" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" /> | |
<text x="155.49" y="223.5" ></text> | |
</g> | |
<g > | |
<title>wake_up_q (3,719 samples, 0.02%)</title><rect x="1123.5" y="405" width="0.3" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" /> | |
<text x="1126.51" y="415.5" ></text> | |
</g> | |
<g > | |
<title>futex_wait (592,937 samples, 3.33%)</title><rect x="1124.0" y="437" width="39.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" /> | |
<text x="1127.02" y="447.5" >fut..</text> | |
</g> | |
<g > | |
<title>bprm_execve (39,967 samples, 0.22%)</title><rect x="562.5" y="437" width="2.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
<text x="565.46" y="447.5" ></text> | |
</g> | |
<g > | |
<title>__ip_local_out (1,912,728 samples, 10.73%)</title><rect x="762.1" y="309" width="126.7" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> | |
<text x="765.11" y="319.5" >__ip_local_out</text> | |
</g> | |
<g > | |
<title>[russh] (3,020,780 samples, 16.95%)</title><rect x="311.3" y="501" width="200.0" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="314.29" y="511.5" >[russh]</text> | |
</g> | |
<g > | |
<title>pthread_create (3,020,780 samples, 16.95%)</title><rect x="311.3" y="485" width="200.0" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> | |
<text x="314.29" y="495.5" >pthread_create</text> | |
</g> | |
<g > | |
<title>inode_permission (767,627 samples, 4.31%)</title><rect x="207.5" y="309" width="50.8" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
<text x="210.48" y="319.5" >inode..</text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (2,217,737 samples, 12.45%)</title><rect x="311.5" y="421" width="146.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="314.51" y="431.5" >entry_SYSCALL_64_a..</text> | |
</g> | |
<g > | |
<title>handle_mm_fault (314,083 samples, 1.76%)</title><rect x="89.0" y="325" width="20.8" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" /> | |
<text x="92.03" y="335.5" ></text> | |
</g> | |
<g > | |
<title>__mprotect (309,757 samples, 1.74%)</title><rect x="177.9" y="469" width="20.6" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
<text x="180.94" y="479.5" ></text> | |
</g> | |
<g > | |
<title>mas_store_gfp (6,244 samples, 0.04%)</title><rect x="670.4" y="373" width="0.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" /> | |
<text x="673.43" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__x64_sys_execve (5,620 samples, 0.03%)</title><rect x="10.0" y="469" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
<text x="13.00" y="479.5" ></text> | |
</g> | |
<g > | |
<title>rwsem_mark_wake (309,757 samples, 1.74%)</title><rect x="177.9" y="357" width="20.6" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> | |
<text x="180.94" y="367.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (1,000,339 samples, 5.61%)</title><rect x="1123.8" y="485" width="66.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="1126.76" y="495.5" >do_sysc..</text> | |
</g> | |
<g > | |
<title>[ld-linux-x86-64.so.2] (864,314 samples, 4.85%)</title><rect x="10.4" y="501" width="57.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
<text x="13.37" y="511.5" >[ld-li..</text> | |
</g> | |
<g > | |
<title>merge_sched_in (7,648 samples, 0.04%)</title><rect x="1156.5" y="293" width="0.5" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
<text x="1159.47" y="303.5" ></text> | |
</g> | |
<g > | |
<title>setup_arg_pages (39,967 samples, 0.22%)</title><rect x="562.5" y="405" width="2.6" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> | |
<text x="565.46" y="415.5" ></text> | |
</g> | |
<g > | |
<title>mprotect_fixup (622,594 samples, 3.49%)</title><rect x="10.4" y="357" width="41.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" /> | |
<text x="13.37" y="367.5" >mpr..</text> | |
</g> | |
<g > | |
<title>srso_alias_safe_ret (6,676 samples, 0.04%)</title><rect x="204.1" y="293" width="0.5" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
<text x="207.11" y="303.5" ></text> | |
</g> | |
<g > | |
<title>[ld-linux-x86-64.so.2] (622,594 samples, 3.49%)</title><rect x="10.4" y="469" width="41.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
<text x="13.37" y="479.5" >[ld..</text> | |
</g> | |
<g > | |
<title>update_load_avg (47,623 samples, 0.27%)</title><rect x="1153.3" y="325" width="3.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" /> | |
<text x="1156.32" y="335.5" ></text> | |
</g> | |
<g > | |
<title>do_exit (1,700 samples, 0.01%)</title><rect x="686.9" y="421" width="0.1" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" /> | |
<text x="689.92" y="431.5" ></text> | |
</g> | |
<g > | |
<title>ctx_groups_sched_in (11,838 samples, 0.07%)</title><rect x="458.4" y="341" width="0.7" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
<text x="461.36" y="351.5" ></text> | |
</g> | |
<g > | |
<title>kmem_cache_alloc_noprof (46,217 samples, 0.26%)</title><rect x="71.2" y="261" width="3.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> | |
<text x="74.23" y="271.5" ></text> | |
</g> | |
<g > | |
<title>handle_edge_irq (3,987 samples, 0.02%)</title><rect x="1157.1" y="293" width="0.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
<text x="1160.12" y="303.5" ></text> | |
</g> | |
<g > | |
<title>recv (798,306 samples, 4.48%)</title><rect x="258.4" y="501" width="52.9" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> | |
<text x="261.43" y="511.5" >recv</text> | |
</g> | |
<g > | |
<title>[libc.so.6] (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="437" width="71.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="1054.43" y="447.5" >[libc.so..</text> | |
</g> | |
<g > | |
<title>do_exit (3,719 samples, 0.02%)</title><rect x="1123.5" y="453" width="0.3" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" /> | |
<text x="1126.51" y="463.5" ></text> | |
</g> | |
<g > | |
<title>ret_from_fork (13,938 samples, 0.08%)</title><rect x="458.4" y="405" width="0.9" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
<text x="461.36" y="415.5" ></text> | |
</g> | |
<g > | |
<title>x64_sys_call (3,719 samples, 0.02%)</title><rect x="1123.5" y="485" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> | |
<text x="1126.51" y="495.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (29,365 samples, 0.16%)</title><rect x="198.5" y="469" width="1.9" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="201.45" y="479.5" ></text> | |
</g> | |
<g > | |
<title>__split_vma (60,757 samples, 0.34%)</title><rect x="152.5" y="277" width="4.0" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
<text x="155.49" y="287.5" ></text> | |
</g> | |
<g > | |
<title>[ld-linux-x86-64.so.2] (864,314 samples, 4.85%)</title><rect x="10.4" y="517" width="57.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
<text x="13.37" y="527.5" >[ld-li..</text> | |
</g> | |
<g > | |
<title>[russh] (767,627 samples, 4.31%)</title><rect x="207.5" y="485" width="50.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="210.48" y="495.5" >[russh]</text> | |
</g> | |
<g > | |
<title>[libc.so.6] (2,234,889 samples, 12.54%)</title><rect x="311.3" y="437" width="148.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="314.29" y="447.5" >[libc.so.6]</text> | |
</g> | |
<g > | |
<title>begin_new_exec (5,620 samples, 0.03%)</title><rect x="10.0" y="405" width="0.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
<text x="13.00" y="415.5" ></text> | |
</g> | |
<g > | |
<title>finish_task_switch.isra.0 (1,521 samples, 0.01%)</title><rect x="207.4" y="389" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
<text x="210.38" y="399.5" ></text> | |
</g> | |
<g > | |
<title>try_to_wake_up (632,198 samples, 3.55%)</title><rect x="616.2" y="405" width="41.9" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
<text x="619.24" y="415.5" >try..</text> | |
</g> | |
<g > | |
<title>vma_alloc_folio_noprof (9,500 samples, 0.05%)</title><rect x="205.4" y="405" width="0.7" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> | |
<text x="208.43" y="415.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (632,198 samples, 3.55%)</title><rect x="616.2" y="485" width="41.9" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="619.24" y="495.5" >do_..</text> | |
</g> | |
<g > | |
<title>ip_local_out (1,912,728 samples, 10.73%)</title><rect x="762.1" y="325" width="126.7" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
<text x="765.11" y="335.5" >ip_local_out</text> | |
</g> | |
<g > | |
<title>__memcg_kmem_charge_page (19,991 samples, 0.11%)</title><rect x="203.7" y="341" width="1.3" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" /> | |
<text x="206.67" y="351.5" ></text> | |
</g> | |
<g > | |
<title>asm_exc_page_fault (196,176 samples, 1.10%)</title><rect x="888.8" y="501" width="13.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
<text x="891.77" y="511.5" ></text> | |
</g> | |
<g > | |
<title>mab_mas_cp (212,080 samples, 1.19%)</title><rect x="156.5" y="229" width="14.1" height="15.0" fill="rgb(242,171,40)" rx="2" ry="2" /> | |
<text x="159.52" y="239.5" ></text> | |
</g> | |
<g > | |
<title>asm_exc_page_fault (241,720 samples, 1.36%)</title><rect x="51.6" y="485" width="16.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
<text x="54.60" y="495.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (309,757 samples, 1.74%)</title><rect x="177.9" y="453" width="20.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="180.94" y="463.5" ></text> | |
</g> | |
<g > | |
<title>nf_ct_get_tuple (1,912,728 samples, 10.73%)</title><rect x="762.1" y="261" width="126.7" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
<text x="765.11" y="271.5" >nf_ct_get_tuple</text> | |
</g> | |
<g > | |
<title>merge_sched_in (1,700 samples, 0.01%)</title><rect x="686.9" y="261" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
<text x="689.92" y="271.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (767,627 samples, 4.31%)</title><rect x="207.5" y="405" width="50.8" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="210.48" y="415.5" >do_sy..</text> | |
</g> | |
<g > | |
<title>[ld-linux-x86-64.so.2] (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="245" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
<text x="1054.43" y="255.5" >[ld-linu..</text> | |
</g> | |
<g > | |
<title>do_syscall_64 (39,967 samples, 0.22%)</title><rect x="562.5" y="485" width="2.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="565.46" y="495.5" ></text> | |
</g> | |
<g > | |
<title>__x64_sys_mprotect (586,230 samples, 3.29%)</title><rect x="109.8" y="341" width="38.8" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
<text x="112.83" y="351.5" >__x..</text> | |
</g> | |
<g > | |
<title>up_read (3,719 samples, 0.02%)</title><rect x="1123.5" y="437" width="0.3" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" /> | |
<text x="1126.51" y="447.5" ></text> | |
</g> | |
<g > | |
<title>do_user_addr_fault (196,176 samples, 1.10%)</title><rect x="888.8" y="469" width="13.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
<text x="891.77" y="479.5" ></text> | |
</g> | |
<g > | |
<title>__thp_vma_allowable_orders (7,036 samples, 0.04%)</title><rect x="202.6" y="421" width="0.4" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" /> | |
<text x="205.56" y="431.5" ></text> | |
</g> | |
<g > | |
<title>mas_walk (19,962 samples, 0.11%)</title><rect x="206.1" y="437" width="1.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
<text x="209.06" y="447.5" ></text> | |
</g> | |
<g > | |
<title>__call_rcu_common (60,757 samples, 0.34%)</title><rect x="152.5" y="197" width="4.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
<text x="155.49" y="207.5" ></text> | |
</g> | |
<g > | |
<title>__x64_sys_munmap (442,366 samples, 2.48%)</title><rect x="148.6" y="341" width="29.3" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" /> | |
<text x="151.65" y="351.5" >__..</text> | |
</g> | |
<g > | |
<title>ret_from_fork_asm (13,938 samples, 0.08%)</title><rect x="458.4" y="421" width="0.9" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
<text x="461.36" y="431.5" ></text> | |
</g> | |
<g > | |
<title>ret_from_fork (1,521 samples, 0.01%)</title><rect x="207.4" y="421" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
<text x="210.38" y="431.5" ></text> | |
</g> | |
<g > | |
<title>__x64_sys_epoll_wait (341,173 samples, 1.91%)</title><rect x="901.8" y="453" width="22.6" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" /> | |
<text x="904.76" y="463.5" >_..</text> | |
</g> | |
<g > | |
<title>x64_sys_call (772,200 samples, 4.33%)</title><rect x="565.1" y="485" width="51.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> | |
<text x="568.11" y="495.5" >x64_s..</text> | |
</g> | |
<g > | |
<title>visit_groups_merge.constprop.0.isra.0 (1,700 samples, 0.01%)</title><rect x="686.9" y="277" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
<text x="689.92" y="287.5" ></text> | |
</g> | |
<g > | |
<title>select_task_rq_fair (3,719 samples, 0.02%)</title><rect x="1123.5" y="373" width="0.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" /> | |
<text x="1126.51" y="383.5" ></text> | |
</g> | |
<g > | |
<title>[ld-linux-x86-64.so.2] (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="229" width="71.5" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
<text x="1054.43" y="239.5" >[ld-linu..</text> | |
</g> | |
<g > | |
<title>__libc_start_main (767,627 samples, 4.31%)</title><rect x="207.5" y="501" width="50.8" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> | |
<text x="210.48" y="511.5" >__lib..</text> | |
</g> | |
<g > | |
<title>schedule_tail (13,938 samples, 0.08%)</title><rect x="458.4" y="389" width="0.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
<text x="461.36" y="399.5" ></text> | |
</g> | |
<g > | |
<title>alloc_pages_mpol_noprof (9,500 samples, 0.05%)</title><rect x="205.4" y="389" width="0.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
<text x="208.43" y="399.5" ></text> | |
</g> | |
<g > | |
<title>refill_stock (6,614 samples, 0.04%)</title><rect x="204.6" y="309" width="0.4" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" /> | |
<text x="207.55" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__schedule (503,846 samples, 2.83%)</title><rect x="1124.0" y="373" width="33.4" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" /> | |
<text x="1127.02" y="383.5" >__..</text> | |
</g> | |
<g > | |
<title>vma_modify (56,988 samples, 0.32%)</title><rect x="144.9" y="293" width="3.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
<text x="147.87" y="303.5" ></text> | |
</g> | |
<g > | |
<title>inet_recvmsg (798,306 samples, 4.48%)</title><rect x="258.4" y="405" width="52.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> | |
<text x="261.43" y="415.5" >inet_..</text> | |
</g> | |
<g > | |
<title>mas_pop_node (6,244 samples, 0.04%)</title><rect x="670.4" y="341" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> | |
<text x="673.43" y="351.5" ></text> | |
</g> | |
<g > | |
<title>tcp_sendmsg (1,912,728 samples, 10.73%)</title><rect x="762.1" y="421" width="126.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
<text x="765.11" y="431.5" >tcp_sendmsg</text> | |
</g> | |
<g > | |
<title>try_charge_memcg (19,991 samples, 0.11%)</title><rect x="203.7" y="325" width="1.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
<text x="206.67" y="335.5" ></text> | |
</g> | |
<g > | |
<title>[libc.so.6] (1,521 samples, 0.01%)</title><rect x="207.4" y="469" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="210.38" y="479.5" ></text> | |
</g> | |
<g > | |
<title>do_execveat_common.isra.0 (5,620 samples, 0.03%)</title><rect x="10.0" y="453" width="0.4" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> | |
<text x="13.00" y="463.5" ></text> | |
</g> | |
<g > | |
<title>do_epoll_wait (341,173 samples, 1.91%)</title><rect x="901.8" y="437" width="22.6" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> | |
<text x="904.76" y="447.5" >d..</text> | |
</g> | |
<g > | |
<title>down_write_killable (529,242 samples, 2.97%)</title><rect x="109.8" y="309" width="35.1" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" /> | |
<text x="112.83" y="319.5" >do..</text> | |
</g> | |
<g > | |
<title>__perf_event_task_sched_in (13,938 samples, 0.08%)</title><rect x="458.4" y="357" width="0.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
<text x="461.36" y="367.5" ></text> | |
</g> | |
<g > | |
<title>asm_exc_page_fault (314,083 samples, 1.76%)</title><rect x="89.0" y="373" width="20.8" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
<text x="92.03" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__split_vma (622,594 samples, 3.49%)</title><rect x="10.4" y="325" width="41.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
<text x="13.37" y="335.5" >__s..</text> | |
</g> | |
<g > | |
<title>vma_expand (699,186 samples, 3.92%)</title><rect x="1051.4" y="101" width="46.3" height="15.0" fill="rgb(229,110,26)" rx="2" ry="2" /> | |
<text x="1054.43" y="111.5" >vma_..</text> | |
</g> | |
<g > | |
<title>all (17,819,741 samples, 100%)</title><rect x="10.0" y="549" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
<text x="13.00" y="559.5" ></text> | |
</g> | |
<g > | |
<title>vm_mmap_pgoff (323,549 samples, 1.82%)</title><rect x="67.6" y="325" width="21.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
<text x="70.61" y="335.5" >v..</text> | |
</g> | |
<g > | |
<title>clear_page_erms (9,500 samples, 0.05%)</title><rect x="205.4" y="341" width="0.7" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" /> | |
<text x="208.43" y="351.5" ></text> | |
</g> | |
<g > | |
<title>exc_page_fault (314,083 samples, 1.76%)</title><rect x="89.0" y="357" width="20.8" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
<text x="92.03" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__put_user_nocheck_8 (308,776 samples, 1.73%)</title><rect x="901.8" y="421" width="20.4" height="15.0" fill="rgb(251,213,51)" rx="2" ry="2" /> | |
<text x="904.76" y="431.5" ></text> | |
</g> | |
<g > | |
<title>perf_event_update_userpage (6,117 samples, 0.03%)</title><rect x="1156.5" y="245" width="0.4" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" /> | |
<text x="1159.54" y="255.5" ></text> | |
</g> | |
<g > | |
<title>ctx_groups_sched_in (1,854 samples, 0.01%)</title><rect x="258.3" y="357" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
<text x="261.31" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__do_sys_clone3 (2,217,737 samples, 12.45%)</title><rect x="311.5" y="389" width="146.9" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
<text x="314.51" y="399.5" >__do_sys_clone3</text> | |
</g> | |
<g > | |
<title>__munmap (352,397 samples, 1.98%)</title><rect x="663.6" y="485" width="23.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
<text x="666.58" y="495.5" >_..</text> | |
</g> | |
<g > | |
<title>do_syscall_64 (5,620 samples, 0.03%)</title><rect x="10.0" y="485" width="0.4" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="13.00" y="495.5" ></text> | |
</g> | |
<g > | |
<title>__futex_wait (592,937 samples, 3.33%)</title><rect x="1124.0" y="421" width="39.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" /> | |
<text x="1127.02" y="431.5" >__f..</text> | |
</g> | |
<g > | |
<title>asm_exc_page_fault (105,401 samples, 0.59%)</title><rect x="200.4" y="501" width="7.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
<text x="203.40" y="511.5" ></text> | |
</g> | |
<g > | |
<title>exc_page_fault (785,875 samples, 4.41%)</title><rect x="459.3" y="453" width="52.0" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
<text x="462.29" y="463.5" >exc_p..</text> | |
</g> | |
<g > | |
<title>tcp_write_xmit (1,912,728 samples, 10.73%)</title><rect x="762.1" y="373" width="126.7" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
<text x="765.11" y="383.5" >tcp_write_xmit</text> | |
</g> | |
<g > | |
<title>visit_groups_merge.constprop.0.isra.0 (1,854 samples, 0.01%)</title><rect x="258.3" y="341" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
<text x="261.31" y="351.5" ></text> | |
</g> | |
<g > | |
<title>[unknown] (772,200 samples, 4.33%)</title><rect x="511.3" y="501" width="51.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
<text x="514.33" y="511.5" >[unkn..</text> | |
</g> | |
<g > | |
<title>srso_alias_safe_ret (2,198 samples, 0.01%)</title><rect x="1157.0" y="325" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
<text x="1159.98" y="335.5" ></text> | |
</g> | |
<g > | |
<title>[unknown] (3,832,947 samples, 21.51%)</title><rect x="311.3" y="517" width="253.8" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
<text x="314.29" y="527.5" >[unknown]</text> | |
</g> | |
<g > | |
<title>psi_account_irqtime (32,397 samples, 0.18%)</title><rect x="922.2" y="373" width="2.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> | |
<text x="925.21" y="383.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (39,967 samples, 0.22%)</title><rect x="562.5" y="501" width="2.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="565.46" y="511.5" ></text> | |
</g> | |
<g > | |
<title>do_mmap (100,997 samples, 0.57%)</title><rect x="67.6" y="309" width="6.7" height="15.0" fill="rgb(234,137,32)" rx="2" ry="2" /> | |
<text x="70.61" y="319.5" ></text> | |
</g> | |
<g > | |
<title>srso_alias_return_thunk (39,967 samples, 0.22%)</title><rect x="562.5" y="373" width="2.6" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" /> | |
<text x="565.46" y="383.5" ></text> | |
</g> | |
<g > | |
<title>down_read (1,700 samples, 0.01%)</title><rect x="686.9" y="405" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> | |
<text x="689.92" y="415.5" ></text> | |
</g> | |
<g > | |
<title>mod_objcg_state (314,083 samples, 1.76%)</title><rect x="89.0" y="213" width="20.8" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" /> | |
<text x="92.03" y="223.5" ></text> | |
</g> | |
<g > | |
<title>__x64_sys_openat (767,627 samples, 4.31%)</title><rect x="207.5" y="389" width="50.8" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> | |
<text x="210.48" y="399.5" >__x64..</text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (699,186 samples, 3.92%)</title><rect x="1051.4" y="197" width="46.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="1054.43" y="207.5" >entr..</text> | |
</g> | |
<g > | |
<title>ret_from_fork (1,854 samples, 0.01%)</title><rect x="258.3" y="421" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
<text x="261.31" y="431.5" ></text> | |
</g> | |
<g > | |
<title>osq_lock (222,552 samples, 1.25%)</title><rect x="74.3" y="277" width="14.7" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
<text x="77.29" y="287.5" ></text> | |
</g> | |
<g > | |
<title>[libc.so.6] (2,234,889 samples, 12.54%)</title><rect x="311.3" y="453" width="148.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="314.29" y="463.5" >[libc.so.6]</text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (798,306 samples, 4.48%)</title><rect x="258.4" y="485" width="52.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="261.43" y="495.5" >entry..</text> | |
</g> | |
<g > | |
<title>[russh] (2,991,645 samples, 16.79%)</title><rect x="924.8" y="485" width="198.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="927.77" y="495.5" >[russh]</text> | |
</g> | |
<g > | |
<title>getaddrinfo (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="453" width="71.5" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" /> | |
<text x="1054.43" y="463.5" >getaddri..</text> | |
</g> | |
<g > | |
<title>[libc.so.6] (1,666,228 samples, 9.35%)</title><rect x="67.6" y="405" width="110.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="70.61" y="415.5" >[libc.so.6]</text> | |
</g> | |
<g > | |
<title>futex_get_value_locked (89,091 samples, 0.50%)</title><rect x="1157.4" y="389" width="5.9" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" /> | |
<text x="1160.39" y="399.5" ></text> | |
</g> | |
<g > | |
<title>rwsem_down_write_slowpath (529,242 samples, 2.97%)</title><rect x="109.8" y="293" width="35.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> | |
<text x="112.83" y="303.5" >rw..</text> | |
</g> | |
<g > | |
<title>perf_event_alloc (705,699 samples, 3.96%)</title><rect x="368.3" y="293" width="46.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" /> | |
<text x="371.27" y="303.5" >perf..</text> | |
</g> | |
<g > | |
<title>do_syscall_64 (1,912,728 samples, 10.73%)</title><rect x="762.1" y="469" width="126.7" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="765.11" y="479.5" >do_syscall_64</text> | |
</g> | |
<g > | |
<title>perf_ibs_add (1,854 samples, 0.01%)</title><rect x="258.3" y="293" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
<text x="261.31" y="303.5" ></text> | |
</g> | |
<g > | |
<title>[russh] (6,345 samples, 0.04%)</title><rect x="924.4" y="501" width="0.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="927.35" y="511.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (1,700 samples, 0.01%)</title><rect x="686.9" y="485" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="689.92" y="495.5" ></text> | |
</g> | |
<g > | |
<title>__x64_sys_futex (632,198 samples, 3.55%)</title><rect x="616.2" y="469" width="41.9" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> | |
<text x="619.24" y="479.5" >__x..</text> | |
</g> | |
<g > | |
<title>__mmput (772,200 samples, 4.33%)</title><rect x="565.1" y="421" width="51.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> | |
<text x="568.11" y="431.5" >__mmput</text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (9,652 samples, 0.05%)</title><rect x="1122.9" y="501" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="1125.87" y="511.5" ></text> | |
</g> | |
<g > | |
<title>__sys_recvfrom (798,306 samples, 4.48%)</title><rect x="258.4" y="437" width="52.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> | |
<text x="261.43" y="447.5" >__sys..</text> | |
</g> | |
<g > | |
<title>up_write (772,200 samples, 4.33%)</title><rect x="565.1" y="373" width="51.1" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> | |
<text x="568.11" y="383.5" >up_wr..</text> | |
</g> | |
<g > | |
<title>update_curr (9,652 samples, 0.05%)</title><rect x="1122.9" y="405" width="0.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
<text x="1125.87" y="415.5" ></text> | |
</g> | |
<g > | |
<title>__x64_sys_exit_group (772,200 samples, 4.33%)</title><rect x="565.1" y="469" width="51.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> | |
<text x="568.11" y="479.5" >__x64..</text> | |
</g> | |
<g > | |
<title>srso_alias_safe_ret (699,186 samples, 3.92%)</title><rect x="1051.4" y="37" width="46.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
<text x="1054.43" y="47.5" >srso..</text> | |
</g> | |
<g > | |
<title>path_openat (767,627 samples, 4.31%)</title><rect x="207.5" y="341" width="50.8" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" /> | |
<text x="210.48" y="351.5" >path_..</text> | |
</g> | |
<g > | |
<title>[libc.so.6] (1,854 samples, 0.01%)</title><rect x="258.3" y="453" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="261.31" y="463.5" ></text> | |
</g> | |
<g > | |
<title>[unknown] (5,620 samples, 0.03%)</title><rect x="10.0" y="517" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
<text x="13.00" y="527.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (2,217,737 samples, 12.45%)</title><rect x="311.5" y="405" width="146.9" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="314.51" y="415.5" >do_syscall_64</text> | |
</g> | |
<g > | |
<title>handle_mm_fault (196,176 samples, 1.10%)</title><rect x="888.8" y="453" width="13.0" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" /> | |
<text x="891.77" y="463.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (1,912,728 samples, 10.73%)</title><rect x="762.1" y="485" width="126.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="765.11" y="495.5" >entry_SYSCALL_6..</text> | |
</g> | |
<g > | |
<title>mmap_region (699,186 samples, 3.92%)</title><rect x="1051.4" y="117" width="46.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" /> | |
<text x="1054.43" y="127.5" >mmap..</text> | |
</g> | |
<g > | |
<title>rwsem_down_read_slowpath (1,700 samples, 0.01%)</title><rect x="686.9" y="389" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> | |
<text x="689.92" y="399.5" ></text> | |
</g> | |
<g > | |
<title>ret_from_fork_asm (1,521 samples, 0.01%)</title><rect x="207.4" y="437" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> | |
<text x="210.38" y="447.5" ></text> | |
</g> | |
<g > | |
<title>perf_ibs_start (1,908 samples, 0.01%)</title><rect x="459.0" y="261" width="0.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
<text x="462.02" y="271.5" ></text> | |
</g> | |
<g > | |
<title>exc_page_fault (105,401 samples, 0.59%)</title><rect x="200.4" y="485" width="7.0" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
<text x="203.40" y="495.5" ></text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (323,549 samples, 1.82%)</title><rect x="67.6" y="357" width="21.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="70.61" y="367.5" >e..</text> | |
</g> | |
<g > | |
<title>load_elf_binary (5,620 samples, 0.03%)</title><rect x="10.0" y="421" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> | |
<text x="13.00" y="431.5" ></text> | |
</g> | |
<g > | |
<title>asm_common_interrupt (3,987 samples, 0.02%)</title><rect x="1157.1" y="341" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> | |
<text x="1160.12" y="351.5" ></text> | |
</g> | |
<g > | |
<title>do_user_addr_fault (241,720 samples, 1.36%)</title><rect x="51.6" y="453" width="16.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
<text x="54.60" y="463.5" ></text> | |
</g> | |
<g > | |
<title>__refill_stock (6,614 samples, 0.04%)</title><rect x="204.6" y="293" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> | |
<text x="207.55" y="303.5" ></text> | |
</g> | |
<g > | |
<title>__x64_sys_execve (39,967 samples, 0.22%)</title><rect x="562.5" y="469" width="2.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
<text x="565.46" y="479.5" ></text> | |
</g> | |
<g > | |
<title>__alloc_pages_noprof (19,991 samples, 0.11%)</title><rect x="203.7" y="357" width="1.3" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
<text x="206.67" y="367.5" ></text> | |
</g> | |
<g > | |
<title>inherit_event.isra.0 (705,699 samples, 3.96%)</title><rect x="368.3" y="309" width="46.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> | |
<text x="371.27" y="319.5" >inhe..</text> | |
</g> | |
<g > | |
<title>free_pgtables (772,200 samples, 4.33%)</title><rect x="565.1" y="389" width="51.1" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" /> | |
<text x="568.11" y="399.5" >free_..</text> | |
</g> | |
<g > | |
<title>__x64_sys_exit (1,700 samples, 0.01%)</title><rect x="686.9" y="437" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> | |
<text x="689.92" y="447.5" ></text> | |
</g> | |
<g > | |
<title>__sched_yield (9,652 samples, 0.05%)</title><rect x="1122.9" y="517" width="0.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" /> | |
<text x="1125.87" y="527.5" ></text> | |
</g> | |
<g > | |
<title>[libc.so.6] (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="421" width="71.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="1054.43" y="431.5" >[libc.so..</text> | |
</g> | |
<g > | |
<title>__split_vma (56,988 samples, 0.32%)</title><rect x="144.9" y="277" width="3.7" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
<text x="147.87" y="287.5" ></text> | |
</g> | |
<g > | |
<title>alloc_pages_mpol_noprof (19,991 samples, 0.11%)</title><rect x="203.7" y="373" width="1.3" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> | |
<text x="206.67" y="383.5" ></text> | |
</g> | |
<g > | |
<title>kernel_clone (2,217,737 samples, 12.45%)</title><rect x="311.5" y="373" width="146.9" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> | |
<text x="314.51" y="383.5" >kernel_clone</text> | |
</g> | |
<g > | |
<title>copy_process (2,217,737 samples, 12.45%)</title><rect x="311.5" y="357" width="146.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> | |
<text x="314.51" y="367.5" >copy_process</text> | |
</g> | |
<g > | |
<title>__perf_event_task_sched_in (1,854 samples, 0.01%)</title><rect x="258.3" y="373" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
<text x="261.31" y="383.5" ></text> | |
</g> | |
<g > | |
<title>mas_wr_spanning_store.isra.0 (212,080 samples, 1.19%)</title><rect x="156.5" y="261" width="14.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" /> | |
<text x="159.52" y="271.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (341,173 samples, 1.91%)</title><rect x="901.8" y="469" width="22.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="904.76" y="479.5" >d..</text> | |
</g> | |
<g > | |
<title>[ld-linux-x86-64.so.2] (622,594 samples, 3.49%)</title><rect x="10.4" y="485" width="41.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
<text x="13.37" y="495.5" >[ld..</text> | |
</g> | |
<g > | |
<title>mmap_region (100,997 samples, 0.57%)</title><rect x="67.6" y="293" width="6.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" /> | |
<text x="70.61" y="303.5" ></text> | |
</g> | |
<g > | |
<title>finish_fault (379,731 samples, 2.13%)</title><rect x="1097.7" y="117" width="25.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
<text x="1100.73" y="127.5" >f..</text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (3,719 samples, 0.02%)</title><rect x="1123.5" y="517" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="1126.51" y="527.5" ></text> | |
</g> | |
<g > | |
<title>do_exit (772,200 samples, 4.33%)</title><rect x="565.1" y="437" width="51.1" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" /> | |
<text x="568.11" y="447.5" >do_exit</text> | |
</g> | |
<g > | |
<title>do_user_addr_fault (379,731 samples, 2.13%)</title><rect x="1097.7" y="181" width="25.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
<text x="1100.73" y="191.5" >d..</text> | |
</g> | |
<g > | |
<title>wake_up_q (632,198 samples, 3.55%)</title><rect x="616.2" y="421" width="41.9" height="15.0" fill="rgb(244,181,43)" rx="2" ry="2" /> | |
<text x="619.24" y="431.5" >wak..</text> | |
</g> | |
<g > | |
<title>rb_next (654,795 samples, 3.67%)</title><rect x="415.0" y="325" width="43.4" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> | |
<text x="418.00" y="335.5" >rb_n..</text> | |
</g> | |
<g > | |
<title>[libc.so.6] (2,005,350 samples, 11.25%)</title><rect x="67.6" y="501" width="132.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="70.61" y="511.5" >[libc.so.6]</text> | |
</g> | |
<g > | |
<title>__alloc_pages_noprof (9,500 samples, 0.05%)</title><rect x="205.4" y="373" width="0.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> | |
<text x="208.43" y="383.5" ></text> | |
</g> | |
<g > | |
<title>down_write_killable (111,444 samples, 0.63%)</title><rect x="170.6" y="309" width="7.3" height="15.0" fill="rgb(240,163,38)" rx="2" ry="2" /> | |
<text x="173.56" y="319.5" ></text> | |
</g> | |
<g > | |
<title>percpu_counter_add_batch (6,587 samples, 0.04%)</title><rect x="205.0" y="405" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> | |
<text x="207.99" y="415.5" ></text> | |
</g> | |
<g > | |
<title>access_error (6,695 samples, 0.04%)</title><rect x="201.3" y="453" width="0.4" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> | |
<text x="204.28" y="463.5" ></text> | |
</g> | |
<g > | |
<title>[libc.so.6] (1,521 samples, 0.01%)</title><rect x="207.4" y="453" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="210.38" y="463.5" ></text> | |
</g> | |
<g > | |
<title>osq_lock (241,771 samples, 1.36%)</title><rect x="670.8" y="373" width="16.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
<text x="673.85" y="383.5" ></text> | |
</g> | |
<g > | |
<title>[unknown] (2,997,990 samples, 16.82%)</title><rect x="924.4" y="517" width="198.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
<text x="927.35" y="527.5" >[unknown]</text> | |
</g> | |
<g > | |
<title>__x64_sys_mprotect (622,594 samples, 3.49%)</title><rect x="10.4" y="389" width="41.2" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
<text x="13.37" y="399.5" >__x..</text> | |
</g> | |
<g > | |
<title>dequeue_entity (47,623 samples, 0.27%)</title><rect x="1153.3" y="341" width="3.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> | |
<text x="1156.32" y="351.5" ></text> | |
</g> | |
<g > | |
<title>_dl_catch_exception (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="357" width="71.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
<text x="1054.43" y="367.5" >_dl_catc..</text> | |
</g> | |
<g > | |
<title>[russh] (3,583,851 samples, 20.11%)</title><rect x="687.0" y="517" width="237.4" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="690.03" y="527.5" >[russh]</text> | |
</g> | |
<g > | |
<title>[russh] (1,569,308 samples, 8.81%)</title><rect x="207.4" y="517" width="103.9" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="210.38" y="527.5" >[russh]</text> | |
</g> | |
<g > | |
<title>[unknown] (1,521 samples, 0.01%)</title><rect x="207.4" y="501" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> | |
<text x="210.38" y="511.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (586,230 samples, 3.29%)</title><rect x="109.8" y="357" width="38.8" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="112.83" y="367.5" >do_..</text> | |
</g> | |
<g > | |
<title>__x64_sys_exit (3,719 samples, 0.02%)</title><rect x="1123.5" y="469" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> | |
<text x="1126.51" y="479.5" ></text> | |
</g> | |
<g > | |
<title>__memcg_slab_post_alloc_hook (314,083 samples, 1.76%)</title><rect x="89.0" y="229" width="20.8" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
<text x="92.03" y="239.5" ></text> | |
</g> | |
<g > | |
<title>russh (9,781,718 samples, 54.89%)</title><rect x="10.4" y="533" width="647.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" /> | |
<text x="13.37" y="543.5" >russh</text> | |
</g> | |
<g > | |
<title>tcp_sendmsg_locked (1,912,728 samples, 10.73%)</title><rect x="762.1" y="405" width="126.7" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> | |
<text x="765.11" y="415.5" >tcp_sendmsg_loc..</text> | |
</g> | |
<g > | |
<title>__perf_event_task_sched_in (1,700 samples, 0.01%)</title><rect x="686.9" y="309" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
<text x="689.92" y="319.5" ></text> | |
</g> | |
<g > | |
<title>osq_lock (111,444 samples, 0.63%)</title><rect x="170.6" y="277" width="7.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> | |
<text x="173.56" y="287.5" ></text> | |
</g> | |
<g > | |
<title>mas_store_gfp (212,080 samples, 1.19%)</title><rect x="156.5" y="277" width="14.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" /> | |
<text x="159.52" y="287.5" ></text> | |
</g> | |
<g > | |
<title>visit_groups_merge.constprop.0.isra.0 (1,521 samples, 0.01%)</title><rect x="207.4" y="341" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
<text x="210.38" y="351.5" ></text> | |
</g> | |
<g > | |
<title>vma_complete (622,594 samples, 3.49%)</title><rect x="10.4" y="309" width="41.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
<text x="13.37" y="319.5" >vma..</text> | |
</g> | |
<g > | |
<title>visit_groups_merge.constprop.0.isra.0 (7,648 samples, 0.04%)</title><rect x="1156.5" y="309" width="0.5" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> | |
<text x="1159.47" y="319.5" ></text> | |
</g> | |
<g > | |
<title>__send (1,912,728 samples, 10.73%)</title><rect x="762.1" y="501" width="126.7" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" /> | |
<text x="765.11" y="511.5" >__send</text> | |
</g> | |
<g > | |
<title>ctx_groups_sched_in (1,521 samples, 0.01%)</title><rect x="207.4" y="357" width="0.1" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
<text x="210.38" y="367.5" ></text> | |
</g> | |
<g > | |
<title>schedule_tail (1,854 samples, 0.01%)</title><rect x="258.3" y="405" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> | |
<text x="261.31" y="415.5" ></text> | |
</g> | |
<g > | |
<title>[russh] (772,200 samples, 4.33%)</title><rect x="511.3" y="469" width="51.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="514.33" y="479.5" >[russh]</text> | |
</g> | |
<g > | |
<title>schedule_hrtimeout_range_clock (32,397 samples, 0.18%)</title><rect x="922.2" y="421" width="2.2" height="15.0" fill="rgb(229,111,26)" rx="2" ry="2" /> | |
<text x="925.21" y="431.5" ></text> | |
</g> | |
<g > | |
<title>[russh] (767,627 samples, 4.31%)</title><rect x="207.5" y="469" width="50.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="210.48" y="479.5" >[russh]</text> | |
</g> | |
<g > | |
<title>do_user_addr_fault (314,083 samples, 1.76%)</title><rect x="89.0" y="341" width="20.8" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> | |
<text x="92.03" y="351.5" ></text> | |
</g> | |
<g > | |
<title>restore_fpregs_from_fpstate (4,104 samples, 0.02%)</title><rect x="1189.7" y="437" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> | |
<text x="1192.73" y="447.5" ></text> | |
</g> | |
<g > | |
<title>tokio-runtime-w (8,032,403 samples, 45.08%)</title><rect x="658.1" y="533" width="531.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="661.10" y="543.5" >tokio-runtime-w</text> | |
</g> | |
<g > | |
<title>event_sched_in (11,838 samples, 0.07%)</title><rect x="458.4" y="293" width="0.7" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" /> | |
<text x="461.36" y="303.5" ></text> | |
</g> | |
<g > | |
<title>pthread_getattr_np (1,666,228 samples, 9.35%)</title><rect x="67.6" y="453" width="110.3" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" /> | |
<text x="70.61" y="463.5" >pthread_getat..</text> | |
</g> | |
<g > | |
<title>vm_mmap_pgoff (699,186 samples, 3.92%)</title><rect x="1051.4" y="149" width="46.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
<text x="1054.43" y="159.5" >vm_m..</text> | |
</g> | |
<g > | |
<title>asm_exc_page_fault (785,875 samples, 4.41%)</title><rect x="459.3" y="469" width="52.0" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
<text x="462.29" y="479.5" >asm_e..</text> | |
</g> | |
<g > | |
<title>vmf_anon_prepare (314,083 samples, 1.76%)</title><rect x="89.0" y="277" width="20.8" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> | |
<text x="92.03" y="287.5" ></text> | |
</g> | |
<g > | |
<title>link_path_walk.part.0.constprop.0 (767,627 samples, 4.31%)</title><rect x="207.5" y="325" width="50.8" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> | |
<text x="210.48" y="335.5" >link_..</text> | |
</g> | |
<g > | |
<title>[russh] (1,666,228 samples, 9.35%)</title><rect x="67.6" y="469" width="110.3" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="70.61" y="479.5" >[russh]</text> | |
</g> | |
<g > | |
<title>__memcg_slab_post_alloc_hook (46,217 samples, 0.26%)</title><rect x="71.2" y="245" width="3.1" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
<text x="74.23" y="255.5" ></text> | |
</g> | |
<g > | |
<title>__tcp_push_pending_frames (1,912,728 samples, 10.73%)</title><rect x="762.1" y="389" width="126.7" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" /> | |
<text x="765.11" y="399.5" >__tcp_push_pend..</text> | |
</g> | |
<g > | |
<title>__handle_mm_fault (196,176 samples, 1.10%)</title><rect x="888.8" y="437" width="13.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> | |
<text x="891.77" y="447.5" ></text> | |
</g> | |
<g > | |
<title>ctx_groups_sched_in (7,648 samples, 0.04%)</title><rect x="1156.5" y="325" width="0.5" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" /> | |
<text x="1159.47" y="335.5" ></text> | |
</g> | |
<g > | |
<title>schedule_preempt_disabled (1,700 samples, 0.01%)</title><rect x="686.9" y="373" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
<text x="689.92" y="383.5" ></text> | |
</g> | |
<g > | |
<title>__common_interrupt (3,987 samples, 0.02%)</title><rect x="1157.1" y="309" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> | |
<text x="1160.12" y="319.5" ></text> | |
</g> | |
<g > | |
<title>merge_sched_in (11,838 samples, 0.07%)</title><rect x="458.4" y="309" width="0.7" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
<text x="461.36" y="319.5" ></text> | |
</g> | |
<g > | |
<title>prctl (82,755 samples, 0.46%)</title><rect x="658.1" y="469" width="5.5" height="15.0" fill="rgb(217,55,13)" rx="2" ry="2" /> | |
<text x="661.10" y="479.5" ></text> | |
</g> | |
<g > | |
<title>exc_page_fault (379,731 samples, 2.13%)</title><rect x="1097.7" y="197" width="25.2" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> | |
<text x="1100.73" y="207.5" >e..</text> | |
</g> | |
<g > | |
<title>rwsem_wake.isra.0 (309,757 samples, 1.74%)</title><rect x="177.9" y="373" width="20.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> | |
<text x="180.94" y="383.5" ></text> | |
</g> | |
<g > | |
<title>pick_next_task_fair (9,652 samples, 0.05%)</title><rect x="1122.9" y="421" width="0.6" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
<text x="1125.87" y="431.5" ></text> | |
</g> | |
<g > | |
<title>__tcp_transmit_skb (1,912,728 samples, 10.73%)</title><rect x="762.1" y="357" width="126.7" height="15.0" fill="rgb(238,152,36)" rx="2" ry="2" /> | |
<text x="765.11" y="367.5" >__tcp_transmit_..</text> | |
</g> | |
<g > | |
<title>tcp_recvmsg_locked (798,306 samples, 4.48%)</title><rect x="258.4" y="373" width="52.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> | |
<text x="261.43" y="383.5" >tcp_r..</text> | |
</g> | |
<g > | |
<title>do_group_exit (772,200 samples, 4.33%)</title><rect x="565.1" y="453" width="51.1" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" /> | |
<text x="568.11" y="463.5" >do_gr..</text> | |
</g> | |
<g > | |
<title>tcp_rcv_space_adjust (798,306 samples, 4.48%)</title><rect x="258.4" y="357" width="52.9" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" /> | |
<text x="261.43" y="367.5" >tcp_r..</text> | |
</g> | |
<g > | |
<title>do_anonymous_page (785,875 samples, 4.41%)</title><rect x="459.3" y="389" width="52.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> | |
<text x="462.29" y="399.5" >do_an..</text> | |
</g> | |
<g > | |
<title>[libc.so.6] (436,852 samples, 2.45%)</title><rect x="658.1" y="517" width="28.9" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="661.10" y="527.5" >[l..</text> | |
</g> | |
<g > | |
<title>[libc.so.6] (2,234,889 samples, 12.54%)</title><rect x="311.3" y="469" width="148.0" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="314.29" y="479.5" >[libc.so.6]</text> | |
</g> | |
<g > | |
<title>futex_wake (632,198 samples, 3.55%)</title><rect x="616.2" y="437" width="41.9" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" /> | |
<text x="619.24" y="447.5" >fut..</text> | |
</g> | |
<g > | |
<title>[russh] (767,627 samples, 4.31%)</title><rect x="207.5" y="453" width="50.8" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="210.48" y="463.5" >[russh]</text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (772,200 samples, 4.33%)</title><rect x="565.1" y="517" width="51.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="568.11" y="527.5" >entry..</text> | |
</g> | |
<g > | |
<title>__rcu_read_unlock (241,720 samples, 1.36%)</title><rect x="51.6" y="421" width="16.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> | |
<text x="54.60" y="431.5" ></text> | |
</g> | |
<g > | |
<title>syscall_exit_to_user_mode (403,431 samples, 2.26%)</title><rect x="1163.3" y="469" width="26.7" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> | |
<text x="1166.29" y="479.5" >s..</text> | |
</g> | |
<g > | |
<title>do_syscall_64 (798,306 samples, 4.48%)</title><rect x="258.4" y="469" width="52.9" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="261.43" y="479.5" >do_sy..</text> | |
</g> | |
<g > | |
<title>inherit_task_group.isra.0 (705,699 samples, 3.96%)</title><rect x="368.3" y="325" width="46.7" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" /> | |
<text x="371.27" y="335.5" >inhe..</text> | |
</g> | |
<g > | |
<title>epoll_wait (341,173 samples, 1.91%)</title><rect x="901.8" y="501" width="22.6" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" /> | |
<text x="904.76" y="511.5" >e..</text> | |
</g> | |
<g > | |
<title>schedule (9,652 samples, 0.05%)</title><rect x="1122.9" y="453" width="0.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
<text x="1125.87" y="463.5" ></text> | |
</g> | |
<g > | |
<title>__x64_sys_recvfrom (798,306 samples, 4.48%)</title><rect x="258.4" y="453" width="52.9" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> | |
<text x="261.43" y="463.5" >__x64..</text> | |
</g> | |
<g > | |
<title>_dl_catch_exception (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="277" width="71.5" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> | |
<text x="1054.43" y="287.5" >_dl_catc..</text> | |
</g> | |
<g > | |
<title>__schedule (1,700 samples, 0.01%)</title><rect x="686.9" y="341" width="0.1" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" /> | |
<text x="689.92" y="351.5" ></text> | |
</g> | |
<g > | |
<title>mprotect_fixup (56,988 samples, 0.32%)</title><rect x="144.9" y="309" width="3.7" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" /> | |
<text x="147.87" y="319.5" ></text> | |
</g> | |
<g > | |
<title>page_counter_try_charge (6,676 samples, 0.04%)</title><rect x="204.1" y="309" width="0.5" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> | |
<text x="207.11" y="319.5" ></text> | |
</g> | |
<g > | |
<title>do_vmi_munmap (330,922 samples, 1.86%)</title><rect x="148.6" y="309" width="22.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> | |
<text x="151.65" y="319.5" >d..</text> | |
</g> | |
<g > | |
<title>[libc.so.6] (1,078,917 samples, 6.05%)</title><rect x="1051.4" y="405" width="71.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="1054.43" y="415.5" >[libc.so..</text> | |
</g> | |
<g > | |
<title>__mprotect (586,230 samples, 3.29%)</title><rect x="109.8" y="389" width="38.8" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" /> | |
<text x="112.83" y="399.5" >__m..</text> | |
</g> | |
<g > | |
<title>__munmap (442,366 samples, 2.48%)</title><rect x="148.6" y="389" width="29.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
<text x="151.65" y="399.5" >__..</text> | |
</g> | |
<g > | |
<title>do_mprotect_pkey (309,757 samples, 1.74%)</title><rect x="177.9" y="405" width="20.6" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
<text x="180.94" y="415.5" ></text> | |
</g> | |
<g > | |
<title>finish_task_switch.isra.0 (1,854 samples, 0.01%)</title><rect x="258.3" y="389" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> | |
<text x="261.31" y="399.5" ></text> | |
</g> | |
<g > | |
<title>[libc.so.6] (1,854 samples, 0.01%)</title><rect x="258.3" y="469" width="0.1" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="261.31" y="479.5" ></text> | |
</g> | |
<g > | |
<title>[libc.so.6] (2,110,751 samples, 11.85%)</title><rect x="67.6" y="517" width="139.8" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="70.61" y="527.5" >[libc.so.6]</text> | |
</g> | |
<g > | |
<title>[ld-linux-x86-64.so.2] (622,594 samples, 3.49%)</title><rect x="10.4" y="437" width="41.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" /> | |
<text x="13.37" y="447.5" >[ld..</text> | |
</g> | |
<g > | |
<title>asm_exc_page_fault (82,755 samples, 0.46%)</title><rect x="658.1" y="453" width="5.5" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
<text x="661.10" y="463.5" ></text> | |
</g> | |
<g > | |
<title>[libc.so.6] (1,666,228 samples, 9.35%)</title><rect x="67.6" y="421" width="110.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> | |
<text x="70.61" y="431.5" >[libc.so.6]</text> | |
</g> | |
<g > | |
<title>do_mprotect_pkey (586,230 samples, 3.29%)</title><rect x="109.8" y="325" width="38.8" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> | |
<text x="112.83" y="335.5" >do_..</text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (767,627 samples, 4.31%)</title><rect x="207.5" y="421" width="50.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="210.48" y="431.5" >entry..</text> | |
</g> | |
<g > | |
<title>mas_wr_store_entry.isra.0 (56,988 samples, 0.32%)</title><rect x="144.9" y="229" width="3.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
<text x="147.87" y="239.5" ></text> | |
</g> | |
<g > | |
<title>srso_alias_safe_ret (60,757 samples, 0.34%)</title><rect x="152.5" y="181" width="4.0" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
<text x="155.49" y="191.5" ></text> | |
</g> | |
<g > | |
<title>vma_complete (56,988 samples, 0.32%)</title><rect x="144.9" y="261" width="3.7" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
<text x="147.87" y="271.5" ></text> | |
</g> | |
<g > | |
<title>perf_event_exec (5,620 samples, 0.03%)</title><rect x="10.0" y="389" width="0.4" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
<text x="13.00" y="399.5" ></text> | |
</g> | |
<g > | |
<title>handle_irq_event (3,987 samples, 0.02%)</title><rect x="1157.1" y="277" width="0.3" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" /> | |
<text x="1160.12" y="287.5" ></text> | |
</g> | |
<g > | |
<title>schedule (32,397 samples, 0.18%)</title><rect x="922.2" y="405" width="2.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> | |
<text x="925.21" y="415.5" ></text> | |
</g> | |
<g > | |
<title>srso_alias_safe_ret (39,967 samples, 0.22%)</title><rect x="562.5" y="357" width="2.6" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> | |
<text x="565.46" y="367.5" ></text> | |
</g> | |
<g > | |
<title>__x64_sys_mprotect (309,757 samples, 1.74%)</title><rect x="177.9" y="421" width="20.6" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" /> | |
<text x="180.94" y="431.5" ></text> | |
</g> | |
<g > | |
<title>rwsem_spin_on_owner (55,828 samples, 0.31%)</title><rect x="141.2" y="277" width="3.7" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> | |
<text x="144.18" y="287.5" ></text> | |
</g> | |
<g > | |
<title>__mem_cgroup_charge (9,738 samples, 0.05%)</title><rect x="203.0" y="405" width="0.7" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" /> | |
<text x="206.02" y="415.5" ></text> | |
</g> | |
<g > | |
<title>vma_modify (622,594 samples, 3.49%)</title><rect x="10.4" y="341" width="41.2" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
<text x="13.37" y="351.5" >vma..</text> | |
</g> | |
<g > | |
<title>vma_complete (60,757 samples, 0.34%)</title><rect x="152.5" y="261" width="4.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> | |
<text x="155.49" y="271.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (772,200 samples, 4.33%)</title><rect x="565.1" y="501" width="51.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="568.11" y="511.5" >do_sy..</text> | |
</g> | |
<g > | |
<title>[russh] (82,755 samples, 0.46%)</title><rect x="658.1" y="485" width="5.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="661.10" y="495.5" ></text> | |
</g> | |
<g > | |
<title>[russh] (1,975,985 samples, 11.09%)</title><rect x="67.6" y="485" width="130.9" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" /> | |
<text x="70.61" y="495.5" >[russh]</text> | |
</g> | |
<g > | |
<title>rwsem_down_write_slowpath (242,750 samples, 1.36%)</title><rect x="670.8" y="389" width="16.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> | |
<text x="673.85" y="399.5" ></text> | |
</g> | |
<g > | |
<title>__get_vm_area_node (857,243 samples, 4.81%)</title><rect x="311.5" y="325" width="56.8" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" /> | |
<text x="314.51" y="335.5" >__get_..</text> | |
</g> | |
<g > | |
<title>mas_wr_bnode (622,594 samples, 3.49%)</title><rect x="10.4" y="277" width="41.2" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" /> | |
<text x="13.37" y="287.5" >mas..</text> | |
</g> | |
<g > | |
<title>perf-exec (5,620 samples, 0.03%)</title><rect x="10.0" y="533" width="0.4" height="15.0" fill="rgb(231,123,29)" rx="2" ry="2" /> | |
<text x="13.00" y="543.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (442,366 samples, 2.48%)</title><rect x="148.6" y="357" width="29.3" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="151.65" y="367.5" >do..</text> | |
</g> | |
<g > | |
<title>entry_SYSCALL_64_after_hwframe (341,173 samples, 1.91%)</title><rect x="901.8" y="485" width="22.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> | |
<text x="904.76" y="495.5" >e..</text> | |
</g> | |
<g > | |
<title>handle_mm_fault (65,391 samples, 0.37%)</title><rect x="201.7" y="453" width="4.4" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" /> | |
<text x="204.73" y="463.5" ></text> | |
</g> | |
<g > | |
<title>mas_wr_store_entry.isra.0 (6,244 samples, 0.04%)</title><rect x="670.4" y="357" width="0.4" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> | |
<text x="673.43" y="367.5" ></text> | |
</g> | |
<g > | |
<title>pte_alloc_one (19,991 samples, 0.11%)</title><rect x="203.7" y="389" width="1.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> | |
<text x="206.67" y="399.5" ></text> | |
</g> | |
<g > | |
<title>handle_mm_fault (379,731 samples, 2.13%)</title><rect x="1097.7" y="165" width="25.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" /> | |
<text x="1100.73" y="175.5" >h..</text> | |
</g> | |
<g > | |
<title>merge_sched_in (1,854 samples, 0.01%)</title><rect x="258.3" y="325" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> | |
<text x="261.31" y="335.5" ></text> | |
</g> | |
<g > | |
<title>do_syscall_64 (9,652 samples, 0.05%)</title><rect x="1122.9" y="485" width="0.6" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" /> | |
<text x="1125.87" y="495.5" ></text> | |
</g> | |
<g > | |
<title>exit_mmap (772,200 samples, 4.33%)</title><rect x="565.1" y="405" width="51.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> | |
<text x="568.11" y="415.5" >exit_..</text> | |
</g> | |
<g > | |
<title>nf_hook_slow (1,912,728 samples, 10.73%)</title><rect x="762.1" y="293" width="126.7" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" /> | |
<text x="765.11" y="303.5" >nf_hook_slow</text> | |
</g> | |
<g > | |
<title>syscall (632,198 samples, 3.55%)</title><rect x="616.2" y="517" width="41.9" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> | |
<text x="619.24" y="527.5" >sys..</text> | |
</g> | |
<g > | |
<title>__x64_sys_futex (592,937 samples, 3.33%)</title><rect x="1124.0" y="469" width="39.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> | |
<text x="1127.02" y="479.5" >__x..</text> | |
</g> | |
</g> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment