You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2561 lines
120 KiB
2561 lines
120 KiB
<?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="630" onload="init(evt)" viewBox="0 0 1200 630" 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="630.0" fill="url(#background)" />
|
|
<text id="title" x="600.00" y="24" >Flame Graph</text>
|
|
<text id="details" x="10.00" y="613" > </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="613" > </text>
|
|
<g id="frames">
|
|
<g >
|
|
<title>qi_submit_sync (5,274,943 samples, 0.05%)</title><rect x="1116.1" y="117" width="0.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
|
|
<text x="1119.09" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::thread::_M_start_thread (2,576,245 samples, 0.02%)</title><rect x="26.3" y="405" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
|
|
<text x="29.34" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (4,816,807 samples, 0.04%)</title><rect x="1114.2" y="373" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1117.23" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (7,832,406 samples, 0.07%)</title><rect x="1118.3" y="341" width="0.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1121.32" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>advise_stack_range (3,340,721 samples, 0.03%)</title><rect x="1124.7" y="517" width="0.3" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
|
|
<text x="1127.66" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>task_work_run (3,977,278 samples, 0.04%)</title><rect x="1114.3" y="309" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
|
|
<text x="1117.32" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_iterate_sb.constprop.0 (1,544,977 samples, 0.01%)</title><rect x="1116.7" y="165" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="1119.67" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_sysvec_apic_timer_interrupt (2,180,552 samples, 0.02%)</title><rect x="963.6" y="469" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
|
|
<text x="966.58" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_adjust_freq_unthr_context (8,995,452 samples, 0.08%)</title><rect x="202.3" y="309" width="1.0" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
|
|
<text x="205.34" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>down_write (2,575,917 samples, 0.02%)</title><rect x="1111.3" y="309" width="0.3" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
|
|
<text x="1114.29" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_start_call_main (6,715,787,788 samples, 61.85%)</title><rect x="10.7" y="517" width="729.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
|
|
<text x="13.68" y="527.5" >__libc_start_call_main</text>
|
|
</g>
|
|
<g >
|
|
<title>lru_gen_del_folio.constprop.0 (1,727,547 samples, 0.02%)</title><rect x="17.3" y="133" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
|
|
<text x="20.34" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mod_lruvec_page_state (3,747,166 samples, 0.03%)</title><rect x="1015.3" y="309" width="0.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
|
|
<text x="1018.32" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (1,418,159 samples, 0.01%)</title><rect x="1125.0" y="533" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1128.03" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exit_to_user_mode_prepare (1,005,518 samples, 0.01%)</title><rect x="1123.8" y="133" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
|
|
<text x="1126.82" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_openat64 (2,539,730 samples, 0.02%)</title><rect x="1123.4" y="181" width="0.3" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
|
|
<text x="1126.43" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>charge_memcg (1,731,219 samples, 0.02%)</title><rect x="250.1" y="357" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
|
|
<text x="253.14" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_submit_sync (14,767,685 samples, 0.14%)</title><rect x="1120.3" y="37" width="1.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
|
|
<text x="1123.29" y="47.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mem_cgroup_charge (1,731,219 samples, 0.02%)</title><rect x="250.1" y="373" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
|
|
<text x="253.14" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>syscall (3,456,757 samples, 0.03%)</title><rect x="880.4" y="453" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="883.42" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (29,370,212 samples, 0.27%)</title><rect x="1119.6" y="181" width="3.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1122.58" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_iterate_sb.constprop.0 (11,662,927 samples, 0.11%)</title><rect x="1111.8" y="293" width="1.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="1114.83" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mem_cgroup_uncharge (1,727,729 samples, 0.02%)</title><rect x="11.0" y="293" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="14.05" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_anonymous_page (1,731,219 samples, 0.02%)</title><rect x="250.1" y="389" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
|
|
<text x="253.14" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dev_attr_show (6,597,170 samples, 0.06%)</title><rect x="1117.4" y="261" width="0.8" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" />
|
|
<text x="1120.44" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vm_area_alloc (2,149,175 samples, 0.02%)</title><rect x="1113.3" y="309" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
|
|
<text x="1116.27" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>folio_batch_move_lru (1,728,947 samples, 0.02%)</title><rect x="286.9" y="357" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
|
|
<text x="289.94" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::handler<dml::mem_copy_operation, dml::execution_interface<dml::hardware, std::allocator<unsigned char> >::allocator_type> dml::submit<dml::hardware, dml::execution_interface<dml::hardware, std::allocator<unsigned char> > > (44,280,626 samples, 0.41%)</title><rect x="1119.5" y="437" width="4.8" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
|
|
<text x="1122.49" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>release_pages (12,951,918 samples, 0.12%)</title><rect x="11.0" y="325" width="1.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
|
|
<text x="14.05" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exit_mmap (1,418,159 samples, 0.01%)</title><rect x="1125.0" y="453" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
|
|
<text x="1128.03" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>numa_alloc_onnode (27,306,291 samples, 0.25%)</title><rect x="1111.2" y="437" width="2.9" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
|
|
<text x="1114.17" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mod_memcg_state (2,519,582 samples, 0.02%)</title><rect x="1014.6" y="277" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
|
|
<text x="1017.55" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfs_fstatat (1,412,403 samples, 0.01%)</title><rect x="1114.8" y="277" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
|
|
<text x="1117.81" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kernfs_fop_release (2,475,815 samples, 0.02%)</title><rect x="1114.4" y="277" width="0.3" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
|
|
<text x="1117.39" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mod_memcg_state (2,519,582 samples, 0.02%)</title><rect x="1014.6" y="261" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
|
|
<text x="1017.55" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (7,222,744 samples, 0.07%)</title><rect x="962.7" y="437" width="0.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
|
|
<text x="965.74" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sum_check (1,624,148,506 samples, 14.96%)</title><rect x="26.8" y="485" width="176.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
|
|
<text x="29.81" y="495.5" >sum_check</text>
|
|
</g>
|
|
<g >
|
|
<title>qi_flush_dev_iotlb_pasid (6,025,194 samples, 0.06%)</title><rect x="1119.6" y="53" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
|
|
<text x="1122.64" y="63.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Sum<unsigned long>::simd_agg (407,977,039 samples, 3.76%)</title><rect x="816.9" y="469" width="44.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
|
|
<text x="819.91" y="479.5" >Sum<..</text>
|
|
</g>
|
|
<g >
|
|
<title>_start (6,715,901,033 samples, 61.85%)</title><rect x="10.7" y="549" width="729.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
|
|
<text x="13.68" y="559.5" >_start</text>
|
|
</g>
|
|
<g >
|
|
<title>vma_alloc_folio (867,846,598 samples, 7.99%)</title><rect x="1015.7" y="341" width="94.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
|
|
<text x="1018.73" y="351.5" >vma_alloc_f..</text>
|
|
</g>
|
|
<g >
|
|
<title>syscall_exit_to_user_mode (1,005,518 samples, 0.01%)</title><rect x="1123.8" y="149" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
|
|
<text x="1126.82" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_new_file_close_it (4,816,807 samples, 0.04%)</title><rect x="1114.2" y="405" width="0.6" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
|
|
<text x="1117.23" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_huge_pmd_anonymous_page (1,850,694,882 samples, 17.05%)</title><rect x="250.3" y="389" width="201.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
|
|
<text x="253.33" y="399.5" >do_huge_pmd_anonymous_page</text>
|
|
</g>
|
|
<g >
|
|
<title>std::__new_allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> >::allocate (30,229,702 samples, 0.28%)</title><rect x="1119.5" y="309" width="3.3" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" />
|
|
<text x="1122.49" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::submit<dml::hardware, dml::execution_interface<dml::hardware, std::allocator<unsigned char> > > (30,983,963 samples, 0.29%)</title><rect x="1119.5" y="405" width="3.4" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
|
|
<text x="1122.49" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__fput (2,475,815 samples, 0.02%)</title><rect x="1114.4" y="293" width="0.3" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
|
|
<text x="1117.39" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unmap_vmas (2,592,830 samples, 0.02%)</title><rect x="12.5" y="357" width="0.2" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
|
|
<text x="15.46" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_dentry_open (1,013,775 samples, 0.01%)</title><rect x="1124.1" y="165" width="0.1" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
|
|
<text x="1127.09" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (1,717,471 samples, 0.02%)</title><rect x="1115.2" y="293" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
|
|
<text x="1118.23" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_iterate_ctx (11,662,927 samples, 0.11%)</title><rect x="1111.8" y="277" width="1.3" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
|
|
<text x="1114.83" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_unref_page (9,497,058 samples, 0.09%)</title><rect x="11.3" y="309" width="1.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
|
|
<text x="14.33" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mod_lruvec_page_state.constprop.0 (1,728,266 samples, 0.02%)</title><rect x="26.1" y="149" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
|
|
<text x="29.08" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__list_del_entry_valid (2,986,041 samples, 0.03%)</title><rect x="1035.2" y="261" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
|
|
<text x="1038.21" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (1,717,471 samples, 0.02%)</title><rect x="1115.2" y="277" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
|
|
<text x="1118.23" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sysvec_apic_timer_interrupt (2,180,552 samples, 0.02%)</title><rect x="963.6" y="453" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
|
|
<text x="966.58" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_open64 (1,013,775 samples, 0.01%)</title><rect x="1124.1" y="277" width="0.1" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
|
|
<text x="1127.09" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (1,412,403 samples, 0.01%)</title><rect x="1114.8" y="325" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1117.81" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_mprotect_pkey (12,999,915 samples, 0.12%)</title><rect x="1115.5" y="213" width="1.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
|
|
<text x="1118.51" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_unref_page_prepare (22,481,129 samples, 0.21%)</title><rect x="17.6" y="133" width="2.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
|
|
<text x="20.62" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>chrdev_open (1,013,775 samples, 0.01%)</title><rect x="1124.1" y="149" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
|
|
<text x="1127.09" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (1,852,943,584 samples, 17.07%)</title><rect x="250.1" y="469" width="201.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
|
|
<text x="253.14" y="479.5" >asm_exc_page_fault</text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (124,499,915 samples, 1.15%)</title><rect x="12.7" y="293" width="13.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="15.74" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (1,316,699,581 samples, 12.13%)</title><rect x="967.5" y="421" width="143.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
|
|
<text x="970.55" y="431.5" >exc_page_fault</text>
|
|
</g>
|
|
<g >
|
|
<title>memcg_check_events (1,812,415 samples, 0.02%)</title><rect x="968.2" y="309" width="0.2" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
|
|
<text x="971.17" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>intel_invalidate_range (37,178,741 samples, 0.34%)</title><rect x="13.0" y="165" width="4.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
|
|
<text x="16.02" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (3,456,757 samples, 0.03%)</title><rect x="880.4" y="421" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="883.42" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_flush_piotlb (14,767,685 samples, 0.14%)</title><rect x="1120.3" y="53" width="1.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="1123.29" y="63.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::detail::ml::task<std::allocator<unsigned char> >::task (30,229,702 samples, 0.28%)</title><rect x="1119.5" y="373" width="3.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
|
|
<text x="1122.49" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_preemption_disabled (1,474,772 samples, 0.01%)</title><rect x="968.2" y="293" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
|
|
<text x="971.20" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_sysvec_apic_timer_interrupt (2,241,589 samples, 0.02%)</title><rect x="1013.6" y="309" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
|
|
<text x="1016.61" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ksys_read (10,850,783 samples, 0.10%)</title><rect x="1117.0" y="325" width="1.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="1119.98" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>folio_add_lru (1,728,947 samples, 0.02%)</title><rect x="286.9" y="373" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
|
|
<text x="289.94" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>accfg_get_param_long (5,596,223 samples, 0.05%)</title><rect x="1123.2" y="213" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
|
|
<text x="1126.21" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mod_lruvec_state (1,728,947 samples, 0.02%)</title><rect x="286.9" y="309" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
|
|
<text x="289.94" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>[libstdc++.so.6.0.32] (3,527,419,633 samples, 32.49%)</title><rect x="741.3" y="517" width="383.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
|
|
<text x="744.31" y="527.5" >[libstdc++.so.6.0.32]</text>
|
|
</g>
|
|
<g >
|
|
<title>_mm512_stream_load_si512 (174,354,821 samples, 1.61%)</title><rect x="861.2" y="453" width="19.0" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
|
|
<text x="864.25" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (1,316,699,581 samples, 12.13%)</title><rect x="967.5" y="405" width="143.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
|
|
<text x="970.55" y="415.5" >do_user_addr_fault</text>
|
|
</g>
|
|
<g >
|
|
<title>__rmqueue_pcplist (1,232,673 samples, 0.01%)</title><rect x="1015.2" y="293" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
|
|
<text x="1018.18" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (3,382,035 samples, 0.03%)</title><rect x="1113.7" y="389" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1116.69" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___getdelim (30,878,762 samples, 0.28%)</title><rect x="1114.8" y="421" width="3.4" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
|
|
<text x="1117.81" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_timer (1,365,948 samples, 0.01%)</title><rect x="1013.7" y="229" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
|
|
<text x="1016.71" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (3,340,721 samples, 0.03%)</title><rect x="1124.7" y="485" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1127.66" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_futex (1,709,662 samples, 0.02%)</title><rect x="26.6" y="389" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
|
|
<text x="29.62" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__folio_alloc (2,215,907 samples, 0.02%)</title><rect x="963.3" y="357" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
|
|
<text x="966.28" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::thread& std::vector<std::thread, std::allocator<std::thread> >::emplace_back<void (2,576,245 samples, 0.02%)</title><rect x="26.3" y="485" width="0.3" height="15.0" fill="rgb(238,156,37)" rx="2" ry="2" />
|
|
<text x="29.34" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>link_path_walk.part.0.constprop.0 (4,734,613 samples, 0.04%)</title><rect x="1118.6" y="261" width="0.5" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
|
|
<text x="1121.56" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vma_merge (2,577,034 samples, 0.02%)</title><rect x="1122.5" y="101" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
|
|
<text x="1125.49" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_flush_piotlb (5,274,943 samples, 0.05%)</title><rect x="1116.1" y="133" width="0.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="1119.09" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (1,665,609 samples, 0.02%)</title><rect x="10.8" y="421" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="13.77" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>down_read_trylock (1,616,803 samples, 0.01%)</title><rect x="1110.3" y="373" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
|
|
<text x="1113.31" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::thread::thread<void (2,576,245 samples, 0.02%)</title><rect x="26.3" y="421" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
|
|
<text x="29.34" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_raw_spin_lock (1,729,481 samples, 0.02%)</title><rect x="16.8" y="117" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
|
|
<text x="19.78" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clear_page_erms (3,102,402 samples, 0.03%)</title><rect x="962.9" y="357" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="965.89" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__hrtimer_run_queues (1,300,420 samples, 0.01%)</title><rect x="963.6" y="405" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
|
|
<text x="966.60" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>node_read_meminfo (6,597,170 samples, 0.06%)</title><rect x="1117.4" y="245" width="0.8" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
|
|
<text x="1120.44" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kmem_cache_alloc_node (2,596,627 samples, 0.02%)</title><rect x="741.0" y="389" width="0.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
|
|
<text x="744.03" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>device_add (1,013,775 samples, 0.01%)</title><rect x="1124.1" y="117" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
|
|
<text x="1127.09" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>numa_node_size64 (49,206,680 samples, 0.45%)</title><rect x="1114.1" y="437" width="5.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
|
|
<text x="1117.14" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mmap_region (20,376,546 samples, 0.19%)</title><rect x="1111.3" y="325" width="2.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
|
|
<text x="1114.29" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_malloc (18,102,965 samples, 0.17%)</title><rect x="1115.0" y="341" width="1.9" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
|
|
<text x="1117.96" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>syscall_exit_to_user_mode (4,089,240 samples, 0.04%)</title><rect x="1114.3" y="341" width="0.5" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
|
|
<text x="1117.31" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__hrtimer_run_queues (1,365,948 samples, 0.01%)</title><rect x="1013.7" y="245" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
|
|
<text x="1016.71" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clear_page_erms (1,701,012 samples, 0.02%)</title><rect x="963.3" y="309" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="966.34" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inherit_event.isra.0 (6,922,986 samples, 0.06%)</title><rect x="740.6" y="421" width="0.7" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
|
|
<text x="743.56" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (1,717,471 samples, 0.02%)</title><rect x="1115.2" y="261" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
|
|
<text x="1118.23" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__alloc_pages (1,508,595,053 samples, 13.89%)</title><rect x="287.5" y="341" width="164.0" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
|
|
<text x="290.51" y="351.5" >__alloc_pages</text>
|
|
</g>
|
|
<g >
|
|
<title>__vm_munmap (16,406,617 samples, 0.15%)</title><rect x="11.0" y="421" width="1.7" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
|
|
<text x="13.95" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::CacheData::Deallocate (124,499,915 samples, 1.15%)</title><rect x="12.7" y="341" width="13.6" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
|
|
<text x="15.74" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mod_node_page_state (1,728,266 samples, 0.02%)</title><rect x="26.1" y="101" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
|
|
<text x="29.08" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_page_from_freelist (2,898,882 samples, 0.03%)</title><rect x="969.0" y="293" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
|
|
<text x="972.03" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mmu_notifier_invalidate_range_end (10,596,312 samples, 0.10%)</title><rect x="1115.5" y="165" width="1.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
|
|
<text x="1118.51" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>memcg_slab_post_alloc_hook (2,149,175 samples, 0.02%)</title><rect x="1113.3" y="277" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
|
|
<text x="1116.27" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>page_remove_rmap (1,729,439 samples, 0.02%)</title><rect x="12.5" y="325" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
|
|
<text x="15.46" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__pthread_clockjoin_ex (1,709,662 samples, 0.02%)</title><rect x="26.6" y="469" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
|
|
<text x="29.62" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>path_openat (1,014,603 samples, 0.01%)</title><rect x="1123.9" y="85" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
|
|
<text x="1126.92" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (1,412,403 samples, 0.01%)</title><rect x="1114.8" y="309" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1117.81" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kernel_clone (6,922,986 samples, 0.06%)</title><rect x="740.6" y="485" width="0.7" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
|
|
<text x="743.56" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__kmem_cache_alloc_node (1,664,645 samples, 0.02%)</title><rect x="1117.0" y="261" width="0.2" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
|
|
<text x="1120.05" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>QDPBench (10,857,675,450 samples, 100.00%)</title><rect x="10.0" y="565" width="1180.0" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
|
|
<text x="13.00" y="575.5" >QDPBench</text>
|
|
</g>
|
|
<g >
|
|
<title>sysfs_emit_at (4,018,619 samples, 0.04%)</title><rect x="1117.7" y="229" width="0.5" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" />
|
|
<text x="1120.72" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_munmap (16,406,617 samples, 0.15%)</title><rect x="11.0" y="437" width="1.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
|
|
<text x="13.95" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mbind_range (2,522,606 samples, 0.02%)</title><rect x="1113.8" y="325" width="0.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
|
|
<text x="1116.79" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unmap_page_range (2,592,830 samples, 0.02%)</title><rect x="12.5" y="341" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
|
|
<text x="15.46" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::CacheData::~CacheData (124,499,915 samples, 1.15%)</title><rect x="12.7" y="357" width="13.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
|
|
<text x="15.74" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scan_b (1,479,617,976 samples, 13.63%)</title><rect x="963.9" y="501" width="160.8" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
|
|
<text x="966.86" y="511.5" >scan_b</text>
|
|
</g>
|
|
<g >
|
|
<title>__folio_alloc (2,898,882 samples, 0.03%)</title><rect x="969.0" y="325" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
|
|
<text x="972.03" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_sys_openat2 (7,832,406 samples, 0.07%)</title><rect x="1118.3" y="309" width="0.9" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
|
|
<text x="1121.32" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_submit_sync (25,935,644 samples, 0.24%)</title><rect x="22.9" y="133" width="2.8" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
|
|
<text x="25.89" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_raw_spin_lock (1,728,713 samples, 0.02%)</title><rect x="250.5" y="373" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
|
|
<text x="253.51" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__alloc_pages (867,087,699 samples, 7.99%)</title><rect x="1015.8" y="309" width="94.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
|
|
<text x="1018.81" y="319.5" >__alloc_pages</text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_interrupt (8,995,452 samples, 0.08%)</title><rect x="202.3" y="421" width="1.0" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
|
|
<text x="205.34" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_mprotect (29,370,212 samples, 0.27%)</title><rect x="1119.6" y="197" width="3.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
|
|
<text x="1122.58" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sysvec_apic_timer_interrupt (2,241,589 samples, 0.02%)</title><rect x="1013.6" y="293" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
|
|
<text x="1016.61" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_file_doallocate (19,515,368 samples, 0.18%)</title><rect x="1114.8" y="357" width="2.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
|
|
<text x="1117.81" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inode_permission (2,233,658 samples, 0.02%)</title><rect x="1118.6" y="245" width="0.2" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" />
|
|
<text x="1121.56" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>copy_process (6,922,986 samples, 0.06%)</title><rect x="740.6" y="469" width="0.7" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
|
|
<text x="743.56" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vscnprintf (4,018,619 samples, 0.04%)</title><rect x="1117.7" y="213" width="0.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
|
|
<text x="1120.72" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___close (1,005,518 samples, 0.01%)</title><rect x="1123.8" y="197" width="0.1" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
|
|
<text x="1126.82" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_read (11,363,394 samples, 0.10%)</title><rect x="1116.9" y="389" width="1.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
|
|
<text x="1119.93" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_madvise (3,340,721 samples, 0.03%)</title><rect x="1124.7" y="501" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="1127.66" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_open64 (7,832,406 samples, 0.07%)</title><rect x="1118.3" y="373" width="0.9" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
|
|
<text x="1121.32" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (7,222,744 samples, 0.07%)</title><rect x="962.7" y="421" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
|
|
<text x="965.74" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__kmalloc_node (1,664,645 samples, 0.02%)</title><rect x="1117.0" y="277" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
|
|
<text x="1120.05" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__vm_munmap (124,499,915 samples, 1.15%)</title><rect x="12.7" y="261" width="13.6" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
|
|
<text x="15.74" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sysmalloc (29,370,212 samples, 0.27%)</title><rect x="1119.6" y="229" width="3.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
|
|
<text x="1122.58" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__rmqueue_pcplist (6,972,673 samples, 0.06%)</title><rect x="310.2" y="309" width="0.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
|
|
<text x="313.24" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unmap_region (121,905,385 samples, 1.12%)</title><rect x="13.0" y="213" width="13.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
|
|
<text x="16.02" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grow_heap (29,370,212 samples, 0.27%)</title><rect x="1119.6" y="213" width="3.2" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
|
|
<text x="1122.58" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>allocate_stack (2,576,245 samples, 0.02%)</title><rect x="26.3" y="373" width="0.3" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
|
|
<text x="29.34" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_munmap (124,499,915 samples, 1.15%)</title><rect x="12.7" y="325" width="13.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
|
|
<text x="15.74" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_submit_sync (2,478,462 samples, 0.02%)</title><rect x="1124.8" y="357" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
|
|
<text x="1127.76" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__futex_abstimed_wait_common (1,709,662 samples, 0.02%)</title><rect x="26.6" y="453" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
|
|
<text x="29.62" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (7,222,744 samples, 0.07%)</title><rect x="962.7" y="453" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
|
|
<text x="965.74" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_mm512_mask_add_epi64 (407,977,039 samples, 3.76%)</title><rect x="816.9" y="453" width="44.3" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
|
|
<text x="819.91" y="463.5" >_mm5..</text>
|
|
</g>
|
|
<g >
|
|
<title>do_mmap (21,476,337 samples, 0.20%)</title><rect x="1111.2" y="341" width="2.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
|
|
<text x="1114.17" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::Access (1,478,760,036 samples, 13.62%)</title><rect x="963.9" y="485" width="160.7" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
|
|
<text x="966.86" y="495.5" >dsacache::Cache::Acc..</text>
|
|
</g>
|
|
<g >
|
|
<title>__mem_cgroup_charge (8,853,813 samples, 0.08%)</title><rect x="969.6" y="341" width="0.9" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
|
|
<text x="972.57" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (1,013,775 samples, 0.01%)</title><rect x="1124.1" y="245" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1127.09" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_vmi_align_munmap (16,406,617 samples, 0.15%)</title><rect x="11.0" y="389" width="1.7" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
|
|
<text x="13.95" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>accfg_device_get_first (1,369,844 samples, 0.01%)</title><rect x="1122.9" y="309" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
|
|
<text x="1125.95" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_event_task_tick (1,365,948 samples, 0.01%)</title><rect x="1013.7" y="165" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
|
|
<text x="1016.71" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_file_open (7,832,406 samples, 0.07%)</title><rect x="1118.3" y="389" width="0.9" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
|
|
<text x="1121.32" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>internal_get_user_pages_fast (2,235,330 samples, 0.02%)</title><rect x="880.6" y="373" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
|
|
<text x="883.55" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::Clear (124,499,915 samples, 1.15%)</title><rect x="12.7" y="485" width="13.6" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
|
|
<text x="15.74" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lru_add_fn (3,945,551 samples, 0.04%)</title><rect x="1013.9" y="309" width="0.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
|
|
<text x="1016.86" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (957,900 samples, 0.01%)</title><rect x="10.2" y="373" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="13.25" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (1,014,603 samples, 0.01%)</title><rect x="1123.9" y="165" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1126.92" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>inherit_task_group.isra.0 (6,922,986 samples, 0.06%)</title><rect x="740.6" y="437" width="0.7" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
|
|
<text x="743.56" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>release_pages (29,397,390 samples, 0.27%)</title><rect x="17.2" y="165" width="3.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
|
|
<text x="20.15" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>void std::destroy_at<std::pair<unsigned char* const, dsacache::CacheData> > (124,499,915 samples, 1.15%)</title><rect x="12.7" y="389" width="13.6" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
|
|
<text x="15.74" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_interrupt (1,365,948 samples, 0.01%)</title><rect x="1013.7" y="261" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
|
|
<text x="1016.71" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (23,194,745 samples, 0.21%)</title><rect x="1111.2" y="373" width="2.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1114.17" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vma_merge (2,522,606 samples, 0.02%)</title><rect x="1113.8" y="309" width="0.3" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
|
|
<text x="1116.79" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unsigned int std::uniform_int_distribution<unsigned long>::_S_nd<unsigned long, std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>, unsigned int> (1,707,102,197 samples, 15.72%)</title><rect x="555.0" y="437" width="185.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
|
|
<text x="558.02" y="447.5" >unsigned int std::unifor..</text>
|
|
</g>
|
|
<g >
|
|
<title>do_vmi_align_munmap (124,499,915 samples, 1.15%)</title><rect x="12.7" y="229" width="13.6" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
|
|
<text x="15.74" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kernfs_iop_permission (1,719,405 samples, 0.02%)</title><rect x="1118.6" y="229" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
|
|
<text x="1121.62" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unmap_page_range (5,187,701 samples, 0.05%)</title><rect x="25.7" y="181" width="0.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
|
|
<text x="28.70" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>devices_init (1,369,844 samples, 0.01%)</title><rect x="1122.9" y="293" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1125.95" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_handle (1,365,948 samples, 0.01%)</title><rect x="1013.7" y="213" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
|
|
<text x="1016.71" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unsigned long std::uniform_int_distribution<unsigned long>::operator (2,651,695,239 samples, 24.42%)</title><rect x="452.4" y="453" width="288.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
|
|
<text x="455.36" y="463.5" >unsigned long std::uniform_int_distrib..</text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::SubmitTask (1,474,554,916 samples, 13.58%)</title><rect x="964.1" y="469" width="160.3" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
|
|
<text x="967.14" y="479.5" >dsacache::Cache::Sub..</text>
|
|
</g>
|
|
<g >
|
|
<title>__mmu_notifier_invalidate_range (37,178,741 samples, 0.34%)</title><rect x="13.0" y="181" width="4.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
|
|
<text x="16.02" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (4,816,807 samples, 0.04%)</title><rect x="1114.2" y="357" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1117.23" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>number (1,718,765 samples, 0.02%)</title><rect x="1118.0" y="181" width="0.2" height="15.0" fill="rgb(221,73,17)" rx="2" ry="2" />
|
|
<text x="1120.97" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___close_nocancel (4,816,807 samples, 0.04%)</title><rect x="1114.2" y="389" width="0.6" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
|
|
<text x="1117.23" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_openat (7,832,406 samples, 0.07%)</title><rect x="1118.3" y="325" width="0.9" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="1121.32" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__alloc_pages (2,215,907 samples, 0.02%)</title><rect x="963.3" y="341" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
|
|
<text x="966.28" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_filp_open (7,021,877 samples, 0.06%)</title><rect x="1118.4" y="293" width="0.8" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
|
|
<text x="1121.41" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>aggr_j (1,283,482,019 samples, 11.82%)</title><rect x="741.3" y="501" width="139.5" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" />
|
|
<text x="744.31" y="511.5" >aggr_j</text>
|
|
</g>
|
|
<g >
|
|
<title>format_decode (1,657,716 samples, 0.02%)</title><rect x="1117.8" y="181" width="0.2" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
|
|
<text x="1120.79" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::operator (990,880,606 samples, 9.13%)</title><rect x="632.9" y="421" width="107.6" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
|
|
<text x="635.86" y="431.5" >std::mersenne..</text>
|
|
</g>
|
|
<g >
|
|
<title>update_process_times (1,300,420 samples, 0.01%)</title><rect x="963.6" y="357" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
|
|
<text x="966.60" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>hrtimer_interrupt (2,020,732 samples, 0.02%)</title><rect x="963.6" y="421" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
|
|
<text x="966.60" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>futex_wait (1,709,662 samples, 0.02%)</title><rect x="26.6" y="357" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
|
|
<text x="29.62" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>uncharge_batch (1,727,729 samples, 0.02%)</title><rect x="11.0" y="277" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
|
|
<text x="14.05" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::core::dispatcher::hw_device::initialize_new_device (10,649,925 samples, 0.10%)</title><rect x="1123.1" y="309" width="1.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
|
|
<text x="1126.10" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>intel_invalidate_range (49,276,701 samples, 0.45%)</title><rect x="20.3" y="165" width="5.4" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
|
|
<text x="23.35" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exit_to_user_mode_prepare (1,526,259 samples, 0.01%)</title><rect x="1123.3" y="133" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
|
|
<text x="1126.26" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::thread::join (1,709,662 samples, 0.02%)</title><rect x="26.6" y="485" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
|
|
<text x="29.62" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lru_gen_add_folio (3,945,551 samples, 0.04%)</title><rect x="1013.9" y="293" width="0.4" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
|
|
<text x="1016.86" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::core::dispatcher::hw_dispatcher::initialize_hw (12,436,625 samples, 0.11%)</title><rect x="1122.9" y="325" width="1.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
|
|
<text x="1125.95" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>try_grab_folio (1,464,761 samples, 0.01%)</title><rect x="880.6" y="357" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
|
|
<text x="883.64" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_preemption_disabled (974,903 samples, 0.01%)</title><rect x="1110.1" y="341" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
|
|
<text x="1113.14" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>accfg_get_param_str (2,020,121 samples, 0.02%)</title><rect x="1123.8" y="213" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
|
|
<text x="1126.82" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>main (6,713,260,491 samples, 61.83%)</title><rect x="11.0" y="501" width="729.5" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" />
|
|
<text x="13.95" y="511.5" >main</text>
|
|
</g>
|
|
<g >
|
|
<title>change_protection (21,306,971 samples, 0.20%)</title><rect x="1119.6" y="101" width="2.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
|
|
<text x="1122.58" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_submit_sync (18,156,520 samples, 0.17%)</title><rect x="13.0" y="133" width="2.0" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
|
|
<text x="16.02" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>preempt_count_add (1,729,481 samples, 0.02%)</title><rect x="16.8" y="101" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
|
|
<text x="19.78" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tlb_batch_pages_flush (13,813,787 samples, 0.13%)</title><rect x="11.0" y="341" width="1.5" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
|
|
<text x="13.95" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>numa_node_of_cpu (1,719,530 samples, 0.02%)</title><rect x="963.9" y="453" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
|
|
<text x="966.86" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__hrtimer_run_queues (8,995,452 samples, 0.08%)</title><rect x="202.3" y="405" width="1.0" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
|
|
<text x="205.34" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_tail_page_prepare (5,179,307 samples, 0.05%)</title><rect x="11.8" y="277" width="0.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
|
|
<text x="14.80" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__fput (1,005,518 samples, 0.01%)</title><rect x="1123.8" y="101" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
|
|
<text x="1126.82" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_madvise (3,340,721 samples, 0.03%)</title><rect x="1124.7" y="453" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1127.66" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lock_vma_under_rcu (2,662,357 samples, 0.02%)</title><rect x="1110.2" y="389" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
|
|
<text x="1113.24" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::_Hashtable<unsigned char*, std::pair<unsigned char* const, dsacache::CacheData>, std::allocator<std::pair<unsigned char* const, dsacache::CacheData> >, std::__detail::_Select1st, std::equal_to<unsigned char*>, std::hash<unsigned char*>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, std::__detail::_Prime_rehash_policy, std::__detail::_Hashtable_traits<false, false, true> >::clear (124,499,915 samples, 1.15%)</title><rect x="12.7" y="453" width="13.6" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
|
|
<text x="15.74" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>path_openat (2,028,052 samples, 0.02%)</title><rect x="1123.4" y="85" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
|
|
<text x="1126.43" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::ExecuteCopy (44,280,626 samples, 0.41%)</title><rect x="1119.5" y="453" width="4.8" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
|
|
<text x="1122.49" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::operator (596,422,567 samples, 5.49%)</title><rect x="1125.2" y="517" width="64.8" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
|
|
<text x="1128.18" y="527.5" >std::me..</text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (10,850,783 samples, 0.10%)</title><rect x="1117.0" y="341" width="1.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1119.98" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sysfs_kf_seq_show (6,597,170 samples, 0.06%)</title><rect x="1117.4" y="277" width="0.8" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
|
|
<text x="1120.44" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (1,665,609 samples, 0.02%)</title><rect x="10.8" y="437" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="13.77" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__pthread_create_2_1 (2,576,245 samples, 0.02%)</title><rect x="26.3" y="389" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
|
|
<text x="29.34" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (7,813,295 samples, 0.07%)</title><rect x="962.7" y="469" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
|
|
<text x="965.73" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>accfg_get_param_long (1,927,699 samples, 0.02%)</title><rect x="10.1" y="453" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
|
|
<text x="13.14" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_page_from_freelist (1,232,673 samples, 0.01%)</title><rect x="1015.2" y="309" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
|
|
<text x="1018.18" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>change_protection (10,596,312 samples, 0.10%)</title><rect x="1115.5" y="181" width="1.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
|
|
<text x="1118.51" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__fput (1,014,019 samples, 0.01%)</title><rect x="1123.3" y="101" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
|
|
<text x="1126.32" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mprotect_fixup (12,141,289 samples, 0.11%)</title><rect x="1115.5" y="197" width="1.3" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
|
|
<text x="1118.51" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_submit_sync (23,341,057 samples, 0.21%)</title><rect x="20.3" y="133" width="2.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
|
|
<text x="23.35" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_tail_page_prepare (17,289,659 samples, 0.16%)</title><rect x="18.2" y="117" width="1.9" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
|
|
<text x="21.19" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfs_read (10,850,783 samples, 0.10%)</title><rect x="1117.0" y="309" width="1.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
|
|
<text x="1119.98" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::pair<unsigned char* const, dsacache::CacheData>::~pair (124,499,915 samples, 1.15%)</title><rect x="12.7" y="373" width="13.6" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="15.74" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mem_cgroup_charge_statistics (1,608,803 samples, 0.01%)</title><rect x="968.0" y="309" width="0.2" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
|
|
<text x="970.99" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_vmi_munmap (124,499,915 samples, 1.15%)</title><rect x="12.7" y="245" width="13.6" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
|
|
<text x="15.74" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__count_memcg_events (1,834,351 samples, 0.02%)</title><rect x="1110.0" y="357" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
|
|
<text x="1113.04" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>all (10,857,675,452 samples, 100%)</title><rect x="10.0" y="581" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="13.00" y="591.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scan_a (764,319,638 samples, 7.04%)</title><rect x="880.8" y="501" width="83.1" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
|
|
<text x="883.80" y="511.5" >scan_a</text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (3,456,757 samples, 0.03%)</title><rect x="880.4" y="437" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="883.42" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_process_times (8,995,452 samples, 0.08%)</title><rect x="202.3" y="357" width="1.0" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
|
|
<text x="205.34" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sysvec_apic_timer_interrupt (2,020,732 samples, 0.02%)</title><rect x="963.6" y="437" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
|
|
<text x="966.60" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mmu_notifier_invalidate_range_end (49,276,701 samples, 0.45%)</title><rect x="20.3" y="181" width="5.4" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
|
|
<text x="23.35" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mod_lruvec_state (1,246,575 samples, 0.01%)</title><rect x="968.8" y="309" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
|
|
<text x="971.80" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clear_page_erms (312,006,524 samples, 2.87%)</title><rect x="253.0" y="357" width="33.9" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="256.03" y="367.5" >cl..</text>
|
|
</g>
|
|
<g >
|
|
<title>clear_page_erms (683,869,034 samples, 6.30%)</title><rect x="1035.7" y="277" width="74.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="1038.72" y="287.5" >clear_pa..</text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (12,999,915 samples, 0.12%)</title><rect x="1115.5" y="261" width="1.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1118.51" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clear_page_erms (370,773,520 samples, 3.41%)</title><rect x="973.6" y="325" width="40.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="976.56" y="335.5" >cle..</text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (1,013,775 samples, 0.01%)</title><rect x="1124.1" y="261" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1127.09" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_raw_spin_lock_irqsave (1,728,447 samples, 0.02%)</title><rect x="22.7" y="117" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
|
|
<text x="25.70" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__cond_resched (5,709,094 samples, 0.05%)</title><rect x="972.9" y="325" width="0.7" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
|
|
<text x="975.94" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_new_file_underflow (30,878,762 samples, 0.28%)</title><rect x="1114.8" y="405" width="3.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
|
|
<text x="1117.81" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_user_addr_fault (1,852,943,584 samples, 17.07%)</title><rect x="250.1" y="437" width="201.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
|
|
<text x="253.14" y="447.5" >do_user_addr_fault</text>
|
|
</g>
|
|
<g >
|
|
<title>[unknown] (4,194,714 samples, 0.04%)</title><rect x="10.1" y="549" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
|
|
<text x="13.09" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vma_alloc_folio (1,509,460,438 samples, 13.90%)</title><rect x="287.4" y="373" width="164.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
|
|
<text x="290.41" y="383.5" >vma_alloc_folio</text>
|
|
</g>
|
|
<g >
|
|
<title>task_work_run (1,005,518 samples, 0.01%)</title><rect x="1123.8" y="117" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
|
|
<text x="1126.82" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vsnprintf (4,018,619 samples, 0.04%)</title><rect x="1117.7" y="197" width="0.5" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
|
|
<text x="1120.72" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_filp_open (2,028,052 samples, 0.02%)</title><rect x="1123.4" y="101" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
|
|
<text x="1126.43" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>task_mm_cid_work (1,726,993 samples, 0.02%)</title><rect x="202.2" y="405" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
|
|
<text x="205.15" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sysvec_apic_timer_interrupt (1,365,948 samples, 0.01%)</title><rect x="1013.7" y="277" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
|
|
<text x="1016.71" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (29,370,212 samples, 0.27%)</title><rect x="1119.6" y="165" width="3.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1122.58" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exit_to_user_mode_prepare (1,726,993 samples, 0.02%)</title><rect x="202.2" y="437" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
|
|
<text x="205.15" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_filp_open (1,014,603 samples, 0.01%)</title><rect x="1123.9" y="101" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
|
|
<text x="1126.92" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>numa_node_of_cpu (1,530,542 samples, 0.01%)</title><rect x="880.3" y="453" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
|
|
<text x="883.25" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (10,850,783 samples, 0.10%)</title><rect x="1117.0" y="357" width="1.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1119.98" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_openat (1,014,603 samples, 0.01%)</title><rect x="1123.9" y="133" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="1126.92" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_handle (8,995,452 samples, 0.08%)</title><rect x="202.3" y="373" width="1.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
|
|
<text x="205.34" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_flush_dev_iotlb_pasid (23,341,057 samples, 0.21%)</title><rect x="20.3" y="149" width="2.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
|
|
<text x="23.35" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_unref_page (22,481,129 samples, 0.21%)</title><rect x="17.6" y="149" width="2.5" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
|
|
<text x="20.62" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__cond_resched (6,573,644 samples, 0.06%)</title><rect x="252.3" y="357" width="0.7" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
|
|
<text x="255.32" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> >::allocate (30,229,702 samples, 0.28%)</title><rect x="1119.5" y="325" width="3.3" height="15.0" fill="rgb(221,76,18)" rx="2" ry="2" />
|
|
<text x="1122.49" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_init (1,196,824 samples, 0.01%)</title><rect x="10.5" y="501" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
|
|
<text x="13.55" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mod_lruvec_page_state (1,728,266 samples, 0.02%)</title><rect x="26.1" y="133" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
|
|
<text x="29.08" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>charge_memcg (4,949,036 samples, 0.05%)</title><rect x="969.6" y="325" width="0.5" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
|
|
<text x="972.57" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>wqs_init (8,620,835 samples, 0.08%)</title><rect x="1123.1" y="277" width="0.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
|
|
<text x="1126.10" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__rmqueue_pcplist (26,751,206 samples, 0.25%)</title><rect x="1032.7" y="277" width="2.9" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
|
|
<text x="1035.72" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zap_huge_pmd (3,457,292 samples, 0.03%)</title><rect x="25.9" y="165" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
|
|
<text x="28.89" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scheduler_tick (1,365,948 samples, 0.01%)</title><rect x="1013.7" y="181" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
|
|
<text x="1016.71" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>folio_add_lru (2,701,975 samples, 0.02%)</title><rect x="968.5" y="341" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
|
|
<text x="971.51" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (7,222,744 samples, 0.07%)</title><rect x="962.7" y="405" width="0.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
|
|
<text x="965.74" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_iterate_ctx (5,486,207 samples, 0.05%)</title><rect x="1121.9" y="69" width="0.6" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
|
|
<text x="1124.90" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_event_mmap (1,544,977 samples, 0.01%)</title><rect x="1116.7" y="181" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
|
|
<text x="1119.67" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sync_regs (4,312,756 samples, 0.04%)</title><rect x="1110.7" y="421" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
|
|
<text x="1113.70" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>void fill_mt<unsigned long> (4,943,244,832 samples, 45.53%)</title><rect x="203.3" y="485" width="537.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
|
|
<text x="206.32" y="495.5" >void fill_mt<unsigned long></text>
|
|
</g>
|
|
<g >
|
|
<title>path_openat (7,021,877 samples, 0.06%)</title><rect x="1118.4" y="277" width="0.8" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
|
|
<text x="1121.41" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_doallocbuf (19,515,368 samples, 0.18%)</title><rect x="1114.8" y="373" width="2.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
|
|
<text x="1117.81" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unsigned int std::uniform_int_distribution<unsigned long>::_S_nd<unsigned long, std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>, unsigned int> (596,422,567 samples, 5.49%)</title><rect x="1125.2" y="533" width="64.8" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
|
|
<text x="1128.18" y="543.5" >unsigne..</text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (2,038,073 samples, 0.02%)</title><rect x="1123.2" y="181" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1126.21" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_compound_page (1,727,729 samples, 0.02%)</title><rect x="11.0" y="309" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
|
|
<text x="14.05" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sysvec_apic_timer_interrupt (8,995,452 samples, 0.08%)</title><rect x="202.3" y="453" width="1.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
|
|
<text x="205.34" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>security_vm_enough_memory_mm (1,591,769 samples, 0.01%)</title><rect x="1113.1" y="309" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
|
|
<text x="1116.10" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_exit (2,527,297 samples, 0.02%)</title><rect x="10.7" y="501" width="0.3" height="15.0" fill="rgb(236,147,35)" rx="2" ry="2" />
|
|
<text x="13.68" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_mprotect_pkey (29,370,212 samples, 0.27%)</title><rect x="1119.6" y="133" width="3.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
|
|
<text x="1122.58" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_new_fclose (4,816,807 samples, 0.04%)</title><rect x="1114.2" y="421" width="0.6" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
|
|
<text x="1117.23" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___mmap64 (23,194,745 samples, 0.21%)</title><rect x="1111.2" y="421" width="2.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
|
|
<text x="1114.17" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (1,852,943,584 samples, 17.07%)</title><rect x="250.1" y="421" width="201.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
|
|
<text x="253.14" y="431.5" >handle_mm_fault</text>
|
|
</g>
|
|
<g >
|
|
<title>std::mersenne_twister_engine<unsigned long, 32ul, 624ul, 397ul, 31ul, 2567483615ul, 11ul, 4294967295ul, 7ul, 2636928640ul, 15ul, 4022730752ul, 18ul, 1812433253ul>::_M_gen_rand (426,886,794 samples, 3.93%)</title><rect x="694.1" y="405" width="46.4" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" />
|
|
<text x="697.15" y="415.5" >std:..</text>
|
|
</g>
|
|
<g >
|
|
<title>do_sys_openat2 (1,014,603 samples, 0.01%)</title><rect x="1123.9" y="117" width="0.1" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
|
|
<text x="1126.92" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___fstatat64 (1,412,403 samples, 0.01%)</title><rect x="1114.8" y="341" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
|
|
<text x="1117.81" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>idxd_cdev_open (1,013,775 samples, 0.01%)</title><rect x="1124.1" y="133" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
|
|
<text x="1127.09" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vm_mmap_pgoff (23,194,745 samples, 0.21%)</title><rect x="1111.2" y="357" width="2.5" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
|
|
<text x="1114.17" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mod_lruvec_page_state.constprop.0 (3,747,166 samples, 0.03%)</title><rect x="1015.3" y="325" width="0.4" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" />
|
|
<text x="1018.32" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__alloc_pages (2,898,882 samples, 0.03%)</title><rect x="969.0" y="309" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
|
|
<text x="972.03" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>groups_init (2,409,723 samples, 0.02%)</title><rect x="10.1" y="517" width="0.3" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
|
|
<text x="13.14" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false> > >::_M_deallocate_node (124,499,915 samples, 1.15%)</title><rect x="12.7" y="421" width="13.6" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
|
|
<text x="15.74" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_new_file_fopen (8,432,767 samples, 0.08%)</title><rect x="1118.3" y="405" width="0.9" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
|
|
<text x="1121.26" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mod_lruvec_page_state (1,710,376 samples, 0.02%)</title><rect x="968.8" y="325" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
|
|
<text x="971.80" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vma_alloc_folio (2,215,907 samples, 0.02%)</title><rect x="963.3" y="373" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
|
|
<text x="966.28" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clear_huge_page (396,622,667 samples, 3.65%)</title><rect x="970.8" y="341" width="43.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
|
|
<text x="973.75" y="351.5" >clea..</text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_munmap (1,665,609 samples, 0.02%)</title><rect x="10.8" y="453" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
|
|
<text x="13.77" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_mid_memalign (30,229,702 samples, 0.28%)</title><rect x="1119.5" y="277" width="3.3" height="15.0" fill="rgb(218,62,14)" rx="2" ry="2" />
|
|
<text x="1122.49" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfs_read (957,900 samples, 0.01%)</title><rect x="10.2" y="341" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
|
|
<text x="13.25" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__list_del_entry_valid (1,232,673 samples, 0.01%)</title><rect x="1015.2" y="277" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
|
|
<text x="1018.18" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>read (1,018,420 samples, 0.01%)</title><rect x="1123.7" y="197" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
|
|
<text x="1126.70" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (1,005,518 samples, 0.01%)</title><rect x="1123.8" y="181" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1126.82" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mas_store_prealloc (1,537,267 samples, 0.01%)</title><rect x="1111.7" y="309" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
|
|
<text x="1114.67" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>void std::allocator_traits<std::allocator<std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false> > >::destroy<std::pair<unsigned char* const, dsacache::CacheData> > (124,499,915 samples, 1.15%)</title><rect x="12.7" y="405" width="13.6" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
|
|
<text x="15.74" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_mprotect (29,370,212 samples, 0.27%)</title><rect x="1119.6" y="149" width="3.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
|
|
<text x="1122.58" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (1,005,518 samples, 0.01%)</title><rect x="1123.8" y="165" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1126.82" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>handle_mm_fault (1,312,938,533 samples, 12.09%)</title><rect x="967.6" y="389" width="142.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
|
|
<text x="970.55" y="399.5" >handle_mm_fault</text>
|
|
</g>
|
|
<g >
|
|
<title>do_sys_openat2 (1,013,775 samples, 0.01%)</title><rect x="1124.1" y="213" width="0.1" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
|
|
<text x="1127.09" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kmem_cache_alloc (2,149,175 samples, 0.02%)</title><rect x="1113.3" y="293" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
|
|
<text x="1116.27" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unmap_vmas (54,464,402 samples, 0.50%)</title><rect x="20.3" y="197" width="6.0" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
|
|
<text x="23.35" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::GetCacheNode (2,577,577 samples, 0.02%)</title><rect x="963.9" y="469" width="0.2" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
|
|
<text x="966.86" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::Access (4,987,299 samples, 0.05%)</title><rect x="880.3" y="485" width="0.5" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
|
|
<text x="883.25" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mod_lruvec_state (1,728,266 samples, 0.02%)</title><rect x="26.1" y="117" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
|
|
<text x="29.08" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vfs_statx (1,412,403 samples, 0.01%)</title><rect x="1114.8" y="261" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
|
|
<text x="1117.81" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>update_process_times (1,365,948 samples, 0.01%)</title><rect x="1013.7" y="197" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
|
|
<text x="1016.71" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>folio_batch_move_lru (2,701,975 samples, 0.02%)</title><rect x="968.5" y="325" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
|
|
<text x="971.51" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (3,382,035 samples, 0.03%)</title><rect x="1113.7" y="373" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1116.69" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pte_alloc_one (10,782,226 samples, 0.10%)</title><rect x="1014.6" y="341" width="1.1" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
|
|
<text x="1017.55" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::detail::ml::buffer<std::allocator<unsigned char>, dml::detail::descriptor, dml::detail::completion_record>::buffer (30,229,702 samples, 0.28%)</title><rect x="1119.5" y="357" width="3.3" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
|
|
<text x="1122.49" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (957,900 samples, 0.01%)</title><rect x="10.2" y="389" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="13.25" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tlb_batch_pages_flush (29,397,390 samples, 0.27%)</title><rect x="17.2" y="181" width="3.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
|
|
<text x="20.15" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__next_zones_zonelist (1,695,609 samples, 0.02%)</title><rect x="1015.9" y="293" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
|
|
<text x="1018.86" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>free_unref_page_prepare (9,497,058 samples, 0.09%)</title><rect x="11.3" y="293" width="1.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
|
|
<text x="14.33" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__run_exit_handlers (2,527,297 samples, 0.02%)</title><rect x="10.7" y="485" width="0.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
|
|
<text x="13.68" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_openat (1,013,775 samples, 0.01%)</title><rect x="1124.1" y="229" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="1127.09" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_mbind (3,382,035 samples, 0.03%)</title><rect x="1113.7" y="341" width="0.4" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
|
|
<text x="1116.69" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kernel_mbind (3,382,035 samples, 0.03%)</title><rect x="1113.7" y="357" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
|
|
<text x="1116.69" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_page_from_freelist (2,215,907 samples, 0.02%)</title><rect x="963.3" y="325" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
|
|
<text x="966.28" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_IO_new_file_init_internal (1,489,012 samples, 0.01%)</title><rect x="1119.2" y="405" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
|
|
<text x="1122.17" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__folio_alloc (1,508,595,053 samples, 13.89%)</title><rect x="287.5" y="357" width="164.0" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
|
|
<text x="290.51" y="367.5" >__folio_alloc</text>
|
|
</g>
|
|
<g >
|
|
<title>mbind (3,382,035 samples, 0.03%)</title><rect x="1113.7" y="421" width="0.4" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
|
|
<text x="1116.69" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_submit_sync (19,022,221 samples, 0.18%)</title><rect x="15.0" y="133" width="2.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
|
|
<text x="17.99" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>auto dml::detail::submit<dml::hardware, dml::mem_copy_operation, dml::execution_interface<dml::hardware, std::allocator<unsigned char> >, dml::submit<dml::hardware, dml::execution_interface<dml::hardware, std::allocator<unsigned char> > > (44,280,626 samples, 0.41%)</title><rect x="1119.5" y="421" width="4.8" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
|
|
<text x="1122.49" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_flush_piotlb (25,935,644 samples, 0.24%)</title><rect x="22.9" y="149" width="2.8" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="25.89" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>device_parse (8,620,835 samples, 0.08%)</title><rect x="1123.1" y="261" width="0.9" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
|
|
<text x="1126.10" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vma_alloc_folio (3,551,167 samples, 0.03%)</title><rect x="969.0" y="341" width="0.4" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
|
|
<text x="972.03" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::GetCacheNode (4,987,299 samples, 0.05%)</title><rect x="880.3" y="469" width="0.5" height="15.0" fill="rgb(243,175,41)" rx="2" ry="2" />
|
|
<text x="883.25" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>decltype (2,576,245 samples, 0.02%)</title><rect x="26.3" y="437" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
|
|
<text x="29.34" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exit_to_user_mode_prepare (4,089,240 samples, 0.04%)</title><rect x="1114.3" y="325" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
|
|
<text x="1117.31" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_flush_dev_iotlb_pasid (5,321,369 samples, 0.05%)</title><rect x="1115.5" y="133" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
|
|
<text x="1118.51" y="143.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clear_huge_page (333,454,013 samples, 3.07%)</title><rect x="250.7" y="373" width="36.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
|
|
<text x="253.70" y="383.5" >cle..</text>
|
|
</g>
|
|
<g >
|
|
<title>__count_memcg_events (1,102,429 samples, 0.01%)</title><rect x="968.0" y="293" width="0.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
|
|
<text x="970.99" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sysvec_apic_timer_interrupt (8,995,452 samples, 0.08%)</title><rect x="202.3" y="437" width="1.0" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
|
|
<text x="205.34" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__alloc_pages (1,729,251 samples, 0.02%)</title><rect x="287.2" y="357" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
|
|
<text x="290.22" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (16,406,617 samples, 0.15%)</title><rect x="11.0" y="453" width="1.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="13.95" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_sys_openat2 (2,028,052 samples, 0.02%)</title><rect x="1123.4" y="117" width="0.2" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
|
|
<text x="1126.43" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>add_wq (8,112,387 samples, 0.07%)</title><rect x="1123.2" y="229" width="0.8" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" />
|
|
<text x="1126.15" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Filter<unsigned long, LT, (764,319,624 samples, 7.04%)</title><rect x="880.8" y="485" width="83.1" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="883.80" y="495.5" >Filter<un..</text>
|
|
</g>
|
|
<g >
|
|
<title>lru_gen_del_folio.constprop.0 (1,729,406 samples, 0.02%)</title><rect x="20.2" y="149" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
|
|
<text x="23.16" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_munmap (124,499,915 samples, 1.15%)</title><rect x="12.7" y="277" width="13.6" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
|
|
<text x="15.74" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_event_task_tick (8,995,452 samples, 0.08%)</title><rect x="202.3" y="325" width="1.0" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" />
|
|
<text x="205.34" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unsigned long std::uniform_int_distribution<unsigned long>::operator (596,422,567 samples, 5.49%)</title><rect x="1125.2" y="549" width="64.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
|
|
<text x="1128.18" y="559.5" >unsigne..</text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_exit_group (1,418,159 samples, 0.01%)</title><rect x="1125.0" y="517" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
|
|
<text x="1128.03" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>folio_batch_move_lru (3,945,551 samples, 0.04%)</title><rect x="1013.9" y="325" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
|
|
<text x="1016.86" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::SubmitTask (13,296,663 samples, 0.12%)</title><rect x="1122.9" y="405" width="1.4" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
|
|
<text x="1125.86" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_timer (1,300,420 samples, 0.01%)</title><rect x="963.6" y="389" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
|
|
<text x="966.60" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::__detail::_Hashtable_alloc<std::allocator<std::__detail::_Hash_node<std::pair<unsigned char* const, dsacache::CacheData>, false> > >::_M_deallocate_nodes (124,499,915 samples, 1.15%)</title><rect x="12.7" y="437" width="13.6" height="15.0" fill="rgb(226,97,23)" rx="2" ry="2" />
|
|
<text x="15.74" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kernfs_seq_start (1,981,537 samples, 0.02%)</title><rect x="1117.2" y="277" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
|
|
<text x="1120.23" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>memcg_account_kmem (2,519,582 samples, 0.02%)</title><rect x="1014.6" y="293" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
|
|
<text x="1017.55" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>folio_add_new_anon_rmap (1,710,376 samples, 0.02%)</title><rect x="968.8" y="341" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
|
|
<text x="971.80" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (17,243,479 samples, 0.16%)</title><rect x="1115.1" y="325" width="1.8" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
|
|
<text x="1118.05" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mmu_notifier_invalidate_range_end (21,306,971 samples, 0.20%)</title><rect x="1119.6" y="85" width="2.3" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
|
|
<text x="1122.58" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_read (957,900 samples, 0.01%)</title><rect x="10.2" y="421" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
|
|
<text x="13.25" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::core::dispatcher::hw_queue::initialize_new_queue (2,029,090 samples, 0.02%)</title><rect x="1124.0" y="293" width="0.3" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" />
|
|
<text x="1127.03" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>start_thread (3,530,760,354 samples, 32.52%)</title><rect x="741.3" y="533" width="383.7" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
|
|
<text x="744.31" y="543.5" >start_thread</text>
|
|
</g>
|
|
<g >
|
|
<title>__this_cpu_preempt_check (1,035,514 samples, 0.01%)</title><rect x="968.8" y="277" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
|
|
<text x="971.82" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_event_alloc (6,057,194 samples, 0.06%)</title><rect x="740.6" y="405" width="0.7" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
|
|
<text x="743.65" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>unsigned long std::uniform_int_distribution<unsigned long>::operator (2,659,479,023 samples, 24.49%)</title><rect x="451.5" y="469" width="289.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
|
|
<text x="454.51" y="479.5" >unsigned long std::uniform_int_distrib..</text>
|
|
</g>
|
|
<g >
|
|
<title>__do_sys_newfstatat (1,412,403 samples, 0.01%)</title><rect x="1114.8" y="293" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
|
|
<text x="1117.81" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>read (957,900 samples, 0.01%)</title><rect x="10.2" y="437" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
|
|
<text x="13.25" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_vmi_munmap (16,406,617 samples, 0.15%)</title><rect x="11.0" y="405" width="1.7" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
|
|
<text x="13.95" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Vector_Loader<unsigned long, (174,354,821 samples, 1.61%)</title><rect x="861.2" y="469" width="19.0" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
|
|
<text x="864.25" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_link_in (1,489,012 samples, 0.01%)</title><rect x="1119.2" y="389" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
|
|
<text x="1122.17" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>call_init (1,196,824 samples, 0.01%)</title><rect x="10.5" y="517" width="0.2" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
|
|
<text x="13.55" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>vm_unmapped_area (1,099,791 samples, 0.01%)</title><rect x="1111.2" y="293" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
|
|
<text x="1114.17" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>devices_init (2,865,392 samples, 0.03%)</title><rect x="10.1" y="533" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="13.09" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (2,539,730 samples, 0.02%)</title><rect x="1123.4" y="149" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1126.43" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_sysvec_apic_timer_interrupt (1,285,604 samples, 0.01%)</title><rect x="1109.9" y="261" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
|
|
<text x="1112.90" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>intel_invalidate_range (10,596,312 samples, 0.10%)</title><rect x="1115.5" y="149" width="1.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
|
|
<text x="1118.51" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>syscall_exit_to_user_mode (1,526,259 samples, 0.01%)</title><rect x="1123.3" y="149" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
|
|
<text x="1126.26" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tlb_finish_mmu (67,440,983 samples, 0.62%)</title><rect x="13.0" y="197" width="7.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
|
|
<text x="16.02" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (3,340,721 samples, 0.03%)</title><rect x="1124.7" y="469" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1127.66" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dl_init (1,196,824 samples, 0.01%)</title><rect x="10.5" y="533" width="0.2" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
|
|
<text x="13.55" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mas_wr_store_entry.isra.0 (1,730,304 samples, 0.02%)</title><rect x="12.8" y="197" width="0.2" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
|
|
<text x="15.83" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_flush_piotlb (19,022,221 samples, 0.18%)</title><rect x="15.0" y="149" width="2.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="17.99" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>openat (1,014,603 samples, 0.01%)</title><rect x="1123.9" y="197" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
|
|
<text x="1126.92" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mmu_notifier_invalidate_range_end (2,478,462 samples, 0.02%)</title><rect x="1124.8" y="405" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
|
|
<text x="1127.76" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>kernel_get_mempolicy (3,456,757 samples, 0.03%)</title><rect x="880.4" y="389" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
|
|
<text x="883.42" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_huge_pmd_anonymous_page (6,842,888 samples, 0.06%)</title><rect x="962.8" y="389" width="0.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
|
|
<text x="965.78" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_raw_spin_lock (2,066,301 samples, 0.02%)</title><rect x="970.5" y="341" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
|
|
<text x="973.53" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scheduler_tick (1,256,830 samples, 0.01%)</title><rect x="963.6" y="341" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
|
|
<text x="966.60" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_submit_sync (5,321,369 samples, 0.05%)</title><rect x="1115.5" y="117" width="0.6" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
|
|
<text x="1118.51" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_mem_cgroup_from_mm (3,904,777 samples, 0.04%)</title><rect x="970.1" y="325" width="0.4" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
|
|
<text x="973.10" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_page_from_freelist (864,889,410 samples, 7.97%)</title><rect x="1016.0" y="293" width="94.0" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
|
|
<text x="1019.05" y="303.5" >get_page_fr..</text>
|
|
</g>
|
|
<g >
|
|
<title>intel_invalidate_range (21,306,971 samples, 0.20%)</title><rect x="1119.6" y="69" width="2.3" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
|
|
<text x="1122.58" y="79.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (2,038,073 samples, 0.02%)</title><rect x="1123.2" y="165" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1126.21" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (124,499,915 samples, 1.15%)</title><rect x="12.7" y="309" width="13.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="15.74" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__alloc_pages (7,035,060 samples, 0.06%)</title><rect x="1014.6" y="325" width="0.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
|
|
<text x="1017.55" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__page_cache_release (1,727,547 samples, 0.02%)</title><rect x="17.3" y="149" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
|
|
<text x="20.34" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_openat64 (1,014,603 samples, 0.01%)</title><rect x="1123.9" y="181" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
|
|
<text x="1126.92" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__libc_start_main_impl (6,715,787,788 samples, 61.85%)</title><rect x="10.7" y="533" width="729.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="13.68" y="543.5" >__libc_start_main_impl</text>
|
|
</g>
|
|
<g >
|
|
<title>do_anonymous_page (13,645,186 samples, 0.13%)</title><rect x="967.9" y="357" width="1.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
|
|
<text x="970.93" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>path_openat (1,013,775 samples, 0.01%)</title><rect x="1124.1" y="181" width="0.1" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
|
|
<text x="1127.09" y="191.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dsacache::Cache::AllocOnNode (1,427,696,755 samples, 13.15%)</title><rect x="964.3" y="453" width="155.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
|
|
<text x="967.33" y="463.5" >dsacache::Cache::Al..</text>
|
|
</g>
|
|
<g >
|
|
<title>accfg_wq_get_first (8,620,835 samples, 0.08%)</title><rect x="1123.1" y="293" width="0.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
|
|
<text x="1126.10" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::core::hardware_device::submit (13,296,663 samples, 0.12%)</title><rect x="1122.9" y="373" width="1.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
|
|
<text x="1125.86" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_filp_open (1,013,775 samples, 0.01%)</title><rect x="1124.1" y="197" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
|
|
<text x="1127.09" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>up_read (1,064,042 samples, 0.01%)</title><rect x="1110.5" y="389" width="0.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
|
|
<text x="1113.53" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>irqentry_exit_to_user_mode (1,726,993 samples, 0.02%)</title><rect x="202.2" y="453" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
|
|
<text x="205.15" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>asm_exc_page_fault (1,330,852,392 samples, 12.26%)</title><rect x="966.5" y="437" width="144.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
|
|
<text x="969.54" y="447.5" >asm_exc_page_fault</text>
|
|
</g>
|
|
<g >
|
|
<title>folio_add_lru (3,945,551 samples, 0.04%)</title><rect x="1013.9" y="341" width="0.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
|
|
<text x="1016.86" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>count_memcg_events.constprop.0 (1,834,351 samples, 0.02%)</title><rect x="1110.0" y="373" width="0.2" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
|
|
<text x="1113.04" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_read (957,900 samples, 0.01%)</title><rect x="10.2" y="405" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
|
|
<text x="13.25" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>check_preemption_disabled (1,564,788 samples, 0.01%)</title><rect x="1014.9" y="277" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
|
|
<text x="1017.92" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lru_gen_add_folio (2,271,523 samples, 0.02%)</title><rect x="968.6" y="293" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
|
|
<text x="971.55" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::allocator_traits<std::allocator<dml::detail::ml::utils::structure_from<dml::detail::descriptor, dml::detail::completion_record> > >::allocate (30,229,702 samples, 0.28%)</title><rect x="1119.5" y="341" width="3.3" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="1122.49" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>auto dml::detail::ml::make_mem_move_task<std::allocator<unsigned char> > (30,229,702 samples, 0.28%)</title><rect x="1119.5" y="389" width="3.3" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
|
|
<text x="1122.49" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (7,832,406 samples, 0.07%)</title><rect x="1118.3" y="357" width="0.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1121.32" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__sysfs_device_parse (8,620,835 samples, 0.08%)</title><rect x="1123.1" y="245" width="0.9" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
|
|
<text x="1126.10" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clone3 (3,537,683,340 samples, 32.58%)</title><rect x="740.6" y="549" width="384.4" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" />
|
|
<text x="743.56" y="559.5" >clone3</text>
|
|
</g>
|
|
<g >
|
|
<title>__sysfs_device_parse (2,409,723 samples, 0.02%)</title><rect x="10.1" y="485" width="0.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
|
|
<text x="13.14" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mprotect_fixup (29,370,212 samples, 0.27%)</title><rect x="1119.6" y="117" width="3.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
|
|
<text x="1122.58" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mutex_lock (1,981,537 samples, 0.02%)</title><rect x="1117.2" y="261" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
|
|
<text x="1120.23" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sysmalloc (15,576,431 samples, 0.14%)</title><rect x="1115.2" y="309" width="1.7" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
|
|
<text x="1118.23" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI__IO_doallocbuf (19,515,368 samples, 0.18%)</title><rect x="1114.8" y="389" width="2.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
|
|
<text x="1117.81" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_timer (8,995,452 samples, 0.08%)</title><rect x="202.3" y="389" width="1.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
|
|
<text x="205.34" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_mprotect (12,999,915 samples, 0.12%)</title><rect x="1115.5" y="229" width="1.4" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
|
|
<text x="1118.51" y="239.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__fopen_internal (10,781,028 samples, 0.10%)</title><rect x="1118.2" y="421" width="1.1" height="15.0" fill="rgb(248,197,47)" rx="2" ry="2" />
|
|
<text x="1121.16" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memset (1,731,249 samples, 0.02%)</title><rect x="741.0" y="373" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
|
|
<text x="744.03" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::core::dispatcher::hw_dispatcher::~hw_dispatcher (1,665,609 samples, 0.02%)</title><rect x="10.8" y="469" width="0.2" height="15.0" fill="rgb(249,206,49)" rx="2" ry="2" />
|
|
<text x="13.77" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_memalign (30,229,702 samples, 0.28%)</title><rect x="1119.5" y="261" width="3.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
|
|
<text x="1122.49" y="271.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__memcg_kmem_charge_page (5,802,387 samples, 0.05%)</title><rect x="1014.6" y="309" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
|
|
<text x="1017.55" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_futex (1,709,662 samples, 0.02%)</title><rect x="26.6" y="373" width="0.2" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
|
|
<text x="29.62" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>grow_heap (13,858,960 samples, 0.13%)</title><rect x="1115.4" y="293" width="1.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
|
|
<text x="1118.42" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lru_add_fn (1,728,947 samples, 0.02%)</title><rect x="286.9" y="341" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
|
|
<text x="289.94" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>pte_alloc_one (1,729,251 samples, 0.02%)</title><rect x="287.2" y="373" width="0.2" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
|
|
<text x="290.22" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>try_charge_memcg (3,358,641 samples, 0.03%)</title><rect x="969.7" y="309" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
|
|
<text x="972.74" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mod_node_page_state (1,246,575 samples, 0.01%)</title><rect x="968.8" y="293" width="0.1" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
|
|
<text x="971.80" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>intel_invalidate_range (2,478,462 samples, 0.02%)</title><rect x="1124.8" y="389" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
|
|
<text x="1127.76" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_event_mmap (11,662,927 samples, 0.11%)</title><rect x="1111.8" y="309" width="1.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
|
|
<text x="1114.83" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>operator new (30,229,702 samples, 0.28%)</title><rect x="1119.5" y="293" width="3.3" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
|
|
<text x="1122.49" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_exit (1,418,159 samples, 0.01%)</title><rect x="1125.0" y="485" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
|
|
<text x="1128.03" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mod_memcg_lruvec_state (1,134,175 samples, 0.01%)</title><rect x="1014.1" y="277" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
|
|
<text x="1017.11" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___libc_read (11,363,394 samples, 0.10%)</title><rect x="1116.9" y="373" width="1.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
|
|
<text x="1119.93" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_dl_start_user (1,196,824 samples, 0.01%)</title><rect x="10.5" y="549" width="0.2" height="15.0" fill="rgb(236,145,34)" rx="2" ry="2" />
|
|
<text x="13.55" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__futex_abstimed_wait_common64 (1,709,662 samples, 0.02%)</title><rect x="26.6" y="437" width="0.2" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
|
|
<text x="29.62" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (23,194,745 samples, 0.21%)</title><rect x="1111.2" y="389" width="2.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1114.17" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>exc_page_fault (1,852,943,584 samples, 17.07%)</title><rect x="250.1" y="453" width="201.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
|
|
<text x="253.14" y="463.5" >exc_page_fault</text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_get_mempolicy (3,456,757 samples, 0.03%)</title><rect x="880.4" y="405" width="0.4" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" />
|
|
<text x="883.42" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::core::dispatcher::hw_dispatcher::hw_dispatcher (12,436,625 samples, 0.11%)</title><rect x="1122.9" y="341" width="1.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
|
|
<text x="1125.95" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>arch_get_unmapped_area_topdown (1,099,791 samples, 0.01%)</title><rect x="1111.2" y="309" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
|
|
<text x="1114.17" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mem_cgroup_charge (4,164,584 samples, 0.04%)</title><rect x="968.0" y="341" width="0.4" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
|
|
<text x="970.99" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_event_mmap (5,486,207 samples, 0.05%)</title><rect x="1121.9" y="101" width="0.6" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
|
|
<text x="1124.90" y="111.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___close (2,038,073 samples, 0.02%)</title><rect x="1123.2" y="197" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
|
|
<text x="1126.21" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>charge_memcg (3,957,434 samples, 0.04%)</title><rect x="968.0" y="325" width="0.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
|
|
<text x="970.99" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>sysvec_apic_timer_interrupt (1,285,604 samples, 0.01%)</title><rect x="1109.9" y="245" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
|
|
<text x="1112.90" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_flush_piotlb (2,478,462 samples, 0.02%)</title><rect x="1124.8" y="373" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="1127.76" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_flush_dev_iotlb_pasid (18,156,520 samples, 0.17%)</title><rect x="13.0" y="149" width="2.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
|
|
<text x="16.02" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_madvise (3,340,721 samples, 0.03%)</title><rect x="1124.7" y="437" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
|
|
<text x="1127.66" y="447.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>ksys_read (957,900 samples, 0.01%)</title><rect x="10.2" y="357" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="13.25" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::detail::ml::impl::hardware::submit (13,296,663 samples, 0.12%)</title><rect x="1122.9" y="389" width="1.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="1125.86" y="399.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clear_page_erms (1,266,328 samples, 0.01%)</title><rect x="969.1" y="277" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="972.14" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_munmap (16,406,617 samples, 0.15%)</title><rect x="11.0" y="485" width="1.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
|
|
<text x="13.95" y="495.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_group_exit (1,418,159 samples, 0.01%)</title><rect x="1125.0" y="501" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
|
|
<text x="1128.03" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (16,406,617 samples, 0.15%)</title><rect x="11.0" y="469" width="1.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="13.95" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>void std::vector<std::thread, std::allocator<std::thread> >::_M_realloc_insert<void (2,576,245 samples, 0.02%)</title><rect x="26.3" y="469" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
|
|
<text x="29.34" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>device_parse (2,409,723 samples, 0.02%)</title><rect x="10.1" y="501" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
|
|
<text x="13.14" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>void std::allocator_traits<std::allocator<std::thread> >::construct<std::thread, void (2,576,245 samples, 0.02%)</title><rect x="26.3" y="453" width="0.3" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
|
|
<text x="29.34" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>task_work_run (1,526,259 samples, 0.01%)</title><rect x="1123.3" y="117" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
|
|
<text x="1126.26" y="127.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lru_gen_add_folio (1,728,947 samples, 0.02%)</title><rect x="286.9" y="325" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
|
|
<text x="289.94" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>mas_store_gfp (1,730,304 samples, 0.02%)</title><rect x="12.8" y="213" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
|
|
<text x="15.83" y="223.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (12,999,915 samples, 0.12%)</title><rect x="1115.5" y="245" width="1.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1118.51" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>dml::core::dispatcher::hw_dispatcher::get_instance (12,436,625 samples, 0.11%)</title><rect x="1122.9" y="357" width="1.4" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
|
|
<text x="1125.95" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>get_unmapped_area (1,099,791 samples, 0.01%)</title><rect x="1111.2" y="325" width="0.1" height="15.0" fill="rgb(234,134,32)" rx="2" ry="2" />
|
|
<text x="1114.17" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>zap_page_range_single (2,478,462 samples, 0.02%)</title><rect x="1124.8" y="421" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
|
|
<text x="1127.76" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (1,709,662 samples, 0.02%)</title><rect x="26.6" y="405" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="29.62" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_huge_pmd_anonymous_page (1,293,979,138 samples, 11.92%)</title><rect x="969.4" y="357" width="140.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
|
|
<text x="972.41" y="367.5" >do_huge_pmd_anony..</text>
|
|
</g>
|
|
<g >
|
|
<title>task_work_run (1,726,993 samples, 0.02%)</title><rect x="202.2" y="421" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
|
|
<text x="205.15" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_iterate_sb.constprop.0 (5,486,207 samples, 0.05%)</title><rect x="1121.9" y="85" width="0.6" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="1124.90" y="95.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>try_charge_memcg (3,282,805 samples, 0.03%)</title><rect x="1014.8" y="293" width="0.4" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
|
|
<text x="1017.83" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__folio_alloc (867,087,699 samples, 7.99%)</title><rect x="1015.8" y="325" width="94.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
|
|
<text x="1018.81" y="335.5" >__folio_alloc</text>
|
|
</g>
|
|
<g >
|
|
<title>openat (2,539,730 samples, 0.02%)</title><rect x="1123.4" y="197" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
|
|
<text x="1126.43" y="207.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mmput (1,418,159 samples, 0.01%)</title><rect x="1125.0" y="469" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
|
|
<text x="1128.03" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (1,852,426,101 samples, 17.06%)</title><rect x="250.1" y="405" width="201.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
|
|
<text x="253.14" y="415.5" >__handle_mm_fault</text>
|
|
</g>
|
|
<g >
|
|
<title>asm_sysvec_apic_timer_interrupt (10,722,445 samples, 0.10%)</title><rect x="202.2" y="469" width="1.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
|
|
<text x="205.15" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI___mmap64 (23,194,745 samples, 0.21%)</title><rect x="1111.2" y="405" width="2.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
|
|
<text x="1114.17" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (6,922,986 samples, 0.06%)</title><rect x="740.6" y="517" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="743.56" y="527.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>qi_submit_sync (6,025,194 samples, 0.06%)</title><rect x="1119.6" y="37" width="0.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
|
|
<text x="1122.64" y="47.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tlb_finish_mmu (13,813,787 samples, 0.13%)</title><rect x="11.0" y="357" width="1.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
|
|
<text x="13.95" y="367.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (2,539,730 samples, 0.02%)</title><rect x="1123.4" y="165" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1126.43" y="175.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clear_huge_page (3,619,034 samples, 0.03%)</title><rect x="962.8" y="373" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
|
|
<text x="965.83" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (1,709,662 samples, 0.02%)</title><rect x="26.6" y="421" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="29.62" y="431.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>page_counter_try_charge (1,715,991 samples, 0.02%)</title><rect x="969.9" y="293" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
|
|
<text x="972.92" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (1,418,159 samples, 0.01%)</title><rect x="1125.0" y="549" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="1128.03" y="559.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>clear_page_erms (1,291,549,968 samples, 11.90%)</title><rect x="311.1" y="309" width="140.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
|
|
<text x="314.09" y="319.5" >clear_page_erms</text>
|
|
</g>
|
|
<g >
|
|
<title>do_syscall_64 (1,014,603 samples, 0.01%)</title><rect x="1123.9" y="149" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
|
|
<text x="1126.92" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>malloc_consolidate (963,610 samples, 0.01%)</title><rect x="1115.1" y="309" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
|
|
<text x="1118.13" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>tick_sched_handle (1,300,420 samples, 0.01%)</title><rect x="963.6" y="373" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
|
|
<text x="966.60" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>scheduler_tick (8,995,452 samples, 0.08%)</title><rect x="202.3" y="341" width="1.0" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
|
|
<text x="205.34" y="351.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>lru_add_fn (2,271,523 samples, 0.02%)</title><rect x="968.6" y="309" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
|
|
<text x="971.55" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>entry_SYSCALL_64_after_hwframe (6,922,986 samples, 0.06%)</title><rect x="740.6" y="533" width="0.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
|
|
<text x="743.56" y="543.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>syscall (3,382,035 samples, 0.03%)</title><rect x="1113.7" y="405" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
|
|
<text x="1116.69" y="415.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_adjust_freq_unthr_context (1,365,948 samples, 0.01%)</title><rect x="1013.7" y="149" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
|
|
<text x="1016.71" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__mod_node_page_state (1,728,947 samples, 0.02%)</title><rect x="286.9" y="293" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" />
|
|
<text x="289.94" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>seq_read_iter (10,243,352 samples, 0.09%)</title><rect x="1117.0" y="293" width="1.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
|
|
<text x="1120.05" y="303.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>seq_read_iter (957,900 samples, 0.01%)</title><rect x="10.2" y="325" width="0.2" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" />
|
|
<text x="13.25" y="335.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>std::unordered_map<unsigned char*, dsacache::CacheData, std::hash<unsigned char*>, std::equal_to<unsigned char*>, std::allocator<std::pair<unsigned char* const, dsacache::CacheData> > >::clear (124,499,915 samples, 1.15%)</title><rect x="12.7" y="469" width="13.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
|
|
<text x="15.74" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>add_group (2,409,723 samples, 0.02%)</title><rect x="10.1" y="469" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
|
|
<text x="13.14" y="479.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__handle_mm_fault (1,309,922,715 samples, 12.06%)</title><rect x="967.7" y="373" width="142.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
|
|
<text x="970.68" y="383.5" >__handle_mm_fault</text>
|
|
</g>
|
|
<g >
|
|
<title>get_page_from_freelist (1,507,729,794 samples, 13.89%)</title><rect x="287.6" y="325" width="163.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
|
|
<text x="290.60" y="335.5" >get_page_from_freelist</text>
|
|
</g>
|
|
<g >
|
|
<title>memcg_check_events (1,590,395 samples, 0.01%)</title><rect x="969.6" y="309" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
|
|
<text x="972.57" y="319.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_iterate_ctx (1,544,977 samples, 0.01%)</title><rect x="1116.7" y="149" width="0.1" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" />
|
|
<text x="1119.67" y="159.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>_int_malloc (30,229,702 samples, 0.28%)</title><rect x="1119.5" y="245" width="3.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
|
|
<text x="1122.49" y="255.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__do_sys_clone3 (6,922,986 samples, 0.06%)</title><rect x="740.6" y="501" width="0.7" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
|
|
<text x="743.56" y="511.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__GI_mprotect (13,858,960 samples, 0.13%)</title><rect x="1115.4" y="277" width="1.5" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
|
|
<text x="1118.42" y="287.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>Aggregation<unsigned long, Sum, (1,278,494,713 samples, 11.78%)</title><rect x="741.3" y="485" width="139.0" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="744.31" y="495.5" >Aggregation<unsig..</text>
|
|
</g>
|
|
<g >
|
|
<title>unmap_region (16,406,617 samples, 0.15%)</title><rect x="11.0" y="373" width="1.7" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
|
|
<text x="13.95" y="383.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>perf_event_init_task (6,922,986 samples, 0.06%)</title><rect x="740.6" y="453" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
|
|
<text x="743.56" y="463.5" ></text>
|
|
</g>
|
|
<g >
|
|
<title>__x64_sys_openat (2,028,052 samples, 0.02%)</title><rect x="1123.4" y="133" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
|
|
<text x="1126.43" y="143.5" ></text>
|
|
</g>
|
|
</g>
|
|
</svg>
|