|
|
<?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="518" onload="init(evt)" viewBox="0 0 1200 518" 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="518.0" fill="url(#background)" /> <text id="title" x="600.00" y="24" >Flame Graph</text> <text id="details" x="10.00" y="501" > </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="501" > </text> <g id="frames"> <g > <title>__rcu_read_unlock (1,731,123 samples, 0.01%)</title><rect x="296.6" y="261" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="299.57" y="271.5" ></text> </g> <g > <title>__this_cpu_preempt_check (25,764,878 samples, 0.16%)</title><rect x="322.9" y="229" width="1.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="325.91" y="239.5" ></text> </g> <g > <title>qi_flush_piotlb (25,914,646 samples, 0.16%)</title><rect x="37.9" y="197" width="1.9" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="40.95" y="207.5" ></text> </g> <g > <title>check_preemption_disabled (401,410,663 samples, 2.48%)</title><rect x="358.6" y="245" width="29.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="361.62" y="255.5" >ch..</text> </g> <g > <title>set_nlink (1,728,057 samples, 0.01%)</title><rect x="11.1" y="261" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" /> <text x="14.06" y="271.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (2,063,358 samples, 0.01%)</title><rect x="739.0" y="181" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="742.02" y="191.5" ></text> </g> <g > <title>__alloc_file (1,521,361 samples, 0.01%)</title><rect x="19.2" y="309" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> <text x="22.16" y="319.5" ></text> </g> <g > <title>__irqentry_text_end (5,277,538 samples, 0.03%)</title><rect x="18.7" y="437" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> <text x="21.66" y="447.5" ></text> </g> <g > <title>tick_sched_handle (8,465,801 samples, 0.05%)</title><rect x="1144.3" y="245" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="1147.33" y="255.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (2,063,358 samples, 0.01%)</title><rect x="739.0" y="309" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="742.02" y="319.5" ></text> </g> <g > <title>page_counter_try_charge (11,449,245 samples, 0.07%)</title><rect x="993.8" y="197" width="0.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> <text x="996.77" y="207.5" ></text> </g> <g > <title>exit_to_user_mode_prepare (2,039,626 samples, 0.01%)</title><rect x="11.6" y="373" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="14.60" y="383.5" ></text> </g> <g > <title>__count_memcg_events (230,601,478 samples, 1.42%)</title><rect x="943.3" y="197" width="16.8" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" /> <text x="946.28" y="207.5" ></text> </g> <g > <title>handle_mm_fault (10,328,096 samples, 0.06%)</title><rect x="807.2" y="325" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="810.19" y="335.5" ></text> </g> <g > <title>release_pages (371,292,083 samples, 2.29%)</title><rect x="40.1" y="213" width="27.1" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> <text x="43.15" y="223.5" >r..</text> </g> <g > <title>tlb_finish_mmu (1,724,696 samples, 0.01%)</title><rect x="19.6" y="293" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> <text x="22.64" y="303.5" ></text> </g> <g > <title>___slab_alloc (1,728,614 samples, 0.01%)</title><rect x="657.4" y="245" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> <text x="660.41" y="255.5" ></text> </g> <g > <title>__this_cpu_preempt_check (3,457,940 samples, 0.02%)</title><rect x="34.3" y="197" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="37.30" y="207.5" ></text> </g> <g > <title>qi_flush_dev_iotlb_pasid (18,132,952 samples, 0.11%)</title><rect x="36.6" y="197" width="1.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="39.63" y="207.5" ></text> </g> <g > <title>__list_add_valid (7,429,220 samples, 0.05%)</title><rect x="1073.4" y="165" width="0.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="1076.42" y="175.5" ></text> </g> <g > <title>debug_smp_processor_id (1,728,934 samples, 0.01%)</title><rect x="65.4" y="165" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="68.36" y="175.5" ></text> </g> <g > <title>__rcu_read_unlock (1,385,792 samples, 0.01%)</title><rect x="291.6" y="277" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="294.60" y="287.5" ></text> </g> <g > <title>percpu_counter_add_batch (26,305,263 samples, 0.16%)</title><rect x="432.3" y="277" width="2.0" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="435.34" y="287.5" ></text> </g> <g > <title>__rcu_read_unlock (1,384,840 samples, 0.01%)</title><rect x="452.5" y="325" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="455.50" y="335.5" ></text> </g> <g > <title>__list_del_entry_valid (1,728,946 samples, 0.01%)</title><rect x="28.9" y="181" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> <text x="31.89" y="191.5" ></text> </g> <g > <title>qi_submit_sync (23,329,066 samples, 0.14%)</title><rect x="67.2" y="181" width="1.7" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="70.18" y="191.5" ></text> </g> <g > <title>__GI_munmap (2,526,127 samples, 0.02%)</title><rect x="18.5" y="437" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="21.48" y="447.5" ></text> </g> <g > <title>__mod_lruvec_page_state (47,483,010 samples, 0.29%)</title><rect x="77.9" y="197" width="3.5" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="80.93" y="207.5" ></text> </g> <g > <title>check_preemption_disabled (7,602,620 samples, 0.05%)</title><rect x="1029.5" y="165" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="1032.48" y="175.5" ></text> </g> <g > <title>exc_page_fault (2,637,120,970 samples, 16.27%)</title><rect x="917.2" y="325" width="192.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> <text x="920.21" y="335.5" >exc_page_fault</text> </g> <g > <title>path_openat (6,619,563 samples, 0.04%)</title><rect x="19.2" y="341" width="0.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> <text x="22.16" y="351.5" ></text> </g> <g > <title>mod_memcg_state (2,592,882 samples, 0.02%)</title><rect x="999.1" y="165" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="1002.14" y="175.5" ></text> </g> <g > <title>[anon] (6,570,847 samples, 0.04%)</title><rect x="10.1" y="437" width="0.5" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" /> <text x="13.13" y="447.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (2,283,316 samples, 0.01%)</title><rect x="808.2" y="213" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="811.18" y="223.5" ></text> </g> <g > <title>__irq_exit_rcu (1,441,994 samples, 0.01%)</title><rect x="920.6" y="261" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" /> <text x="923.60" y="271.5" ></text> </g> <g > <title>qi_submit_sync (19,100,039 samples, 0.12%)</title><rect x="15.1" y="277" width="1.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="18.10" y="287.5" ></text> </g> <g > <title>__this_cpu_preempt_check (26,809,929 samples, 0.17%)</title><rect x="356.7" y="245" width="1.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="359.67" y="255.5" ></text> </g> <g > <title>__mmu_notifier_invalidate_range_end (39,887,334 samples, 0.25%)</title><rect x="15.0" y="325" width="2.9" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> <text x="18.04" y="335.5" ></text> </g> <g > <title>do_syscall_64 (26,333,316 samples, 0.16%)</title><rect x="12.8" y="389" width="1.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="15.75" y="399.5" ></text> </g> <g > <title>do_user_addr_fault (11,869,290 samples, 0.07%)</title><rect x="807.2" y="341" width="0.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="810.19" y="351.5" ></text> </g> <g > <title>qi_submit_sync (18,114,625 samples, 0.11%)</title><rect x="68.9" y="181" width="1.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="71.88" y="191.5" ></text> </g> <g > <title>exit_to_user_mode_prepare (58,618,006 samples, 0.36%)</title><rect x="1109.9" y="309" width="4.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="1112.87" y="319.5" ></text> </g> <g > <title>tick_sched_timer (2,063,358 samples, 0.01%)</title><rect x="739.0" y="261" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="742.02" y="271.5" ></text> </g> <g > <title>__rcu_read_unlock (2,592,182 samples, 0.02%)</title><rect x="1044.1" y="229" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="1047.15" y="239.5" ></text> </g> <g > <title>free_pgd_range (1,728,837 samples, 0.01%)</title><rect x="36.4" y="229" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> <text x="39.38" y="239.5" ></text> </g> <g > <title>__GI_munmap (631,219,928 samples, 3.89%)</title><rect x="35.9" y="373" width="46.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="38.94" y="383.5" >__GI..</text> </g> <g > <title>scheduler_tick (7,602,506 samples, 0.05%)</title><rect x="1144.3" y="213" width="0.6" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="1147.33" y="223.5" ></text> </g> <g > <title>check_preemption_disabled (21,640,909 samples, 0.13%)</title><rect x="1112.3" y="277" width="1.6" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="1115.27" y="287.5" ></text> </g> <g > <title>pmd_page_vaddr (1,381,985 samples, 0.01%)</title><rect x="1092.0" y="261" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> <text x="1094.95" y="271.5" ></text> </g> <g > <title>_raw_spin_lock_irqsave (1,728,173 samples, 0.01%)</title><rect x="1075.0" y="165" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="1077.95" y="175.5" ></text> </g> <g > <title>perf_event_task_tick (5,355,090 samples, 0.03%)</title><rect x="941.8" y="69" width="0.4" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="944.79" y="79.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (6,619,563 samples, 0.04%)</title><rect x="19.2" y="421" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="22.16" y="431.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (2,245,481 samples, 0.01%)</title><rect x="1011.8" y="165" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="1014.84" y="175.5" ></text> </g> <g > <title>exc_page_fault (3,976,510 samples, 0.02%)</title><rect x="1147.6" y="405" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> <text x="1150.55" y="415.5" ></text> </g> <g > <title>__rcu_read_unlock (2,983,890 samples, 0.02%)</title><rect x="937.9" y="213" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="940.93" y="223.5" ></text> </g> <g > <title>__irqentry_text_end (8,888,592 samples, 0.05%)</title><rect x="850.7" y="341" width="0.7" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> <text x="853.71" y="351.5" ></text> </g> <g > <title>get_page_from_freelist (364,537,587 samples, 2.25%)</title><rect x="1059.7" y="197" width="26.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="1062.71" y="207.5" >g..</text> </g> <g > <title>__x64_sys_openat (6,619,563 samples, 0.04%)</title><rect x="19.2" y="389" width="0.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="22.16" y="399.5" ></text> </g> <g > <title>__rcu_read_unlock (6,528,679 samples, 0.04%)</title><rect x="998.5" y="213" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="1001.47" y="223.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (2,245,481 samples, 0.01%)</title><rect x="1011.8" y="37" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="1014.84" y="47.5" ></text> </g> <g > <title>should_fail_alloc_page (1,906,805 samples, 0.01%)</title><rect x="448.3" y="245" width="0.2" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> <text x="451.34" y="255.5" ></text> </g> <g > <title>perf_event_mmap (5,865,007 samples, 0.04%)</title><rect x="17.9" y="341" width="0.5" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> <text x="20.95" y="351.5" ></text> </g> <g > <title>charge_memcg (760,371,765 samples, 4.69%)</title><rect x="939.4" y="229" width="55.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="942.38" y="239.5" >charg..</text> </g> <g > <title>folio_mapping (8,465,905 samples, 0.05%)</title><rect x="1016.7" y="197" width="0.7" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> <text x="1019.74" y="207.5" ></text> </g> <g > <title>__x64_sys_openat (10,343,181 samples, 0.06%)</title><rect x="10.7" y="373" width="0.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="13.67" y="383.5" ></text> </g> <g > <title>check_preemption_disabled (1,728,842 samples, 0.01%)</title><rect x="34.0" y="181" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="36.98" y="191.5" ></text> </g> <g > <title>try_charge_memcg (114,897,606 samples, 0.71%)</title><rect x="986.4" y="213" width="8.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> <text x="989.37" y="223.5" ></text> </g> <g > <title>[unknown] (12,117,966 samples, 0.07%)</title><rect x="10.6" y="437" width="0.9" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" /> <text x="13.60" y="447.5" ></text> </g> <g > <title>alloc_empty_file (1,521,361 samples, 0.01%)</title><rect x="19.2" y="325" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> <text x="22.16" y="335.5" ></text> </g> <g > <title>__this_cpu_preempt_check (1,731,498 samples, 0.01%)</title><rect x="426.2" y="213" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="429.17" y="223.5" ></text> </g> <g > <title>scheduler_tick (2,278,320 samples, 0.01%)</title><rect x="213.5" y="261" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="216.48" y="271.5" ></text> </g> <g > <title>__list_del_entry_valid (4,309,390 samples, 0.03%)</title><rect x="45.2" y="181" width="0.3" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> <text x="48.18" y="191.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (1,574,246 samples, 0.01%)</title><rect x="753.5" y="213" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="756.46" y="223.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (3,109,788 samples, 0.02%)</title><rect x="1011.8" y="197" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="1014.78" y="207.5" ></text> </g> <g > <title>kernel_clone (12,965,505 samples, 0.08%)</title><rect x="656.8" y="373" width="0.9" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" /> <text x="659.78" y="383.5" ></text> </g> <g > <title>irqentry_exit_to_user_mode (62,939,871 samples, 0.39%)</title><rect x="1109.6" y="325" width="4.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> <text x="1112.56" y="335.5" ></text> </g> <g > <title>sync_regs (413,796,021 samples, 2.55%)</title><rect x="1114.1" y="325" width="30.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> <text x="1117.14" y="335.5" >sy..</text> </g> <g > <title>__vm_munmap (223,811,903 samples, 1.38%)</title><rect x="19.6" y="357" width="16.3" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" /> <text x="22.64" y="367.5" ></text> </g> <g > <title>do_syscall_64 (7,285,314 samples, 0.04%)</title><rect x="1147.0" y="405" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1150.02" y="415.5" ></text> </g> <g > <title>vscnprintf (3,234,164 samples, 0.02%)</title><rect x="12.5" y="261" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> <text x="15.49" y="271.5" ></text> </g> <g > <title>QDPBench (16,206,959,562 samples, 99.99%)</title><rect x="10.0" y="453" width="1179.9" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" /> <text x="13.00" y="463.5" >QDPBench</text> </g> <g > <title>syscall (4,322,528 samples, 0.03%)</title><rect x="1146.6" y="389" width="0.4" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="1149.64" y="399.5" ></text> </g> <g > <title>mas_wr_modify (1,611,669 samples, 0.01%)</title><rect x="13.1" y="309" width="0.1" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" /> <text x="16.13" y="319.5" ></text> </g> <g > <title>lru_gen_add_folio (57,788,644 samples, 0.36%)</title><rect x="423.2" y="245" width="4.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> <text x="426.24" y="255.5" ></text> </g> <g > <title>_raw_spin_unlock (9,345,492 samples, 0.06%)</title><rect x="1078.3" y="181" width="0.7" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> <text x="1081.31" y="191.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (8,465,801 samples, 0.05%)</title><rect x="1144.3" y="309" width="0.6" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="1147.33" y="319.5" ></text> </g> <g > <title>do_anonymous_page (2,190,520,220 samples, 13.52%)</title><rect x="289.8" y="309" width="159.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="292.84" y="319.5" >do_anonymous_page</text> </g> <g > <title>preempt_count_sub (1,727,550 samples, 0.01%)</title><rect x="453.6" y="309" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> <text x="456.58" y="319.5" ></text> </g> <g > <title>__alloc_pages (3,459,598 samples, 0.02%)</title><rect x="415.1" y="261" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="418.12" y="271.5" ></text> </g> <g > <title>__list_del_entry_valid (7,949,489 samples, 0.05%)</title><rect x="442.4" y="213" width="0.5" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> <text x="445.37" y="223.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (5,887,488 samples, 0.04%)</title><rect x="941.7" y="213" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="944.75" y="223.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (3,042,426 samples, 0.02%)</title><rect x="11.5" y="421" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="14.52" y="431.5" ></text> </g> <g > <title>check_preemption_disabled (6,052,507 samples, 0.04%)</title><rect x="80.8" y="165" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="83.76" y="175.5" ></text> </g> <g > <title>__this_cpu_preempt_check (5,760,224 samples, 0.04%)</title><rect x="1027.2" y="165" width="0.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="1030.23" y="175.5" ></text> </g> <g > <title>Aggregation<unsigned long, Sum, (1,313,451,843 samples, 8.10%)</title><rect x="657.9" y="389" width="95.7" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="660.95" y="399.5" >Aggregation..</text> </g> <g > <title>update_process_times (10,360,017 samples, 0.06%)</title><rect x="920.7" y="181" width="0.8" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="923.70" y="191.5" ></text> </g> <g > <title>__hrtimer_run_queues (5,355,090 samples, 0.03%)</title><rect x="941.8" y="149" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="944.79" y="159.5" ></text> </g> <g > <title>__rcu_read_unlock (5,184,321 samples, 0.03%)</title><rect x="941.4" y="213" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="944.37" y="223.5" ></text> </g> <g > <title>__GI_munmap (223,811,903 samples, 1.38%)</title><rect x="19.6" y="421" width="16.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="22.64" y="431.5" ></text> </g> <g > <title>check_preemption_disabled (1,386,303 samples, 0.01%)</title><rect x="425.9" y="197" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="428.93" y="207.5" ></text> </g> <g > <title>__list_del_entry_valid (11,336,378 samples, 0.07%)</title><rect x="1074.0" y="165" width="0.8" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> <text x="1076.97" y="175.5" ></text> </g> <g > <title>sysfs_emit_at (3,234,164 samples, 0.02%)</title><rect x="12.5" y="277" width="0.2" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" /> <text x="15.49" y="287.5" ></text> </g> <g > <title>vm_normal_page (4,316,877 samples, 0.03%)</title><rect x="81.5" y="213" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="84.51" y="223.5" ></text> </g> <g > <title>__list_add_valid (3,449,886 samples, 0.02%)</title><rect x="28.6" y="181" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="31.64" y="191.5" ></text> </g> <g > <title>__bitmap_intersects (24,387,328 samples, 0.15%)</title><rect x="1088.3" y="213" width="1.7" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="1091.27" y="223.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (2,246,370 samples, 0.01%)</title><rect x="1092.9" y="245" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="1095.92" y="255.5" ></text> </g> <g > <title>sysfs_kf_seq_show (6,809,146 samples, 0.04%)</title><rect x="12.2" y="325" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> <text x="15.23" y="335.5" ></text> </g> <g > <title>unmap_vmas (201,189,251 samples, 1.24%)</title><rect x="67.2" y="245" width="14.6" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> <text x="70.18" y="255.5" ></text> </g> <g > <title>__alloc_pages (183,731,242 samples, 1.13%)</title><rect x="435.1" y="261" width="13.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="438.10" y="271.5" ></text> </g> <g > <title>__libc_open64 (10,343,181 samples, 0.06%)</title><rect x="10.7" y="421" width="0.7" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" /> <text x="13.67" y="431.5" ></text> </g> <g > <title>rcu_core (1,379,377 samples, 0.01%)</title><rect x="920.6" y="229" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> <text x="923.60" y="239.5" ></text> </g> <g > <title>preempt_count_add (4,794,004 samples, 0.03%)</title><rect x="1085.7" y="181" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="1088.68" y="191.5" ></text> </g> <g > <title>up_read (16,620,144 samples, 0.10%)</title><rect x="454.7" y="341" width="1.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> <text x="457.73" y="351.5" ></text> </g> <g > <title>do_filp_open (6,619,563 samples, 0.04%)</title><rect x="19.2" y="357" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="22.16" y="367.5" ></text> </g> <g > <title>qi_flush_dev_iotlb_pasid (4,322,030 samples, 0.03%)</title><rect x="21.5" y="229" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="24.53" y="239.5" ></text> </g> <g > <title>qi_flush_piotlb (20,054,794 samples, 0.12%)</title><rect x="16.5" y="293" width="1.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="19.49" y="303.5" ></text> </g> <g > <title>irqentry_enter (3,604,921 samples, 0.02%)</title><rect x="455.9" y="357" width="0.3" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> <text x="458.94" y="367.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (7,285,314 samples, 0.04%)</title><rect x="1147.0" y="421" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1150.02" y="431.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (2,991,599 samples, 0.02%)</title><rect x="808.2" y="373" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="811.17" y="383.5" ></text> </g> <g > <title>access_error (4,323,828 samples, 0.03%)</title><rect x="283.8" y="341" width="0.3" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> <text x="286.81" y="351.5" ></text> </g> <g > <title>do_vmi_align_munmap (223,811,903 samples, 1.38%)</title><rect x="19.6" y="325" width="16.3" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> <text x="22.64" y="335.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (9,329,419 samples, 0.06%)</title><rect x="1144.3" y="325" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1147.27" y="335.5" ></text> </g> <g > <title>__GI___libc_read (10,554,047 samples, 0.07%)</title><rect x="12.0" y="437" width="0.8" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="14.98" y="447.5" ></text> </g> <g > <title>pud_val (5,676,206 samples, 0.04%)</title><rect x="1092.3" y="261" width="0.4" height="15.0" fill="rgb(238,151,36)" rx="2" ry="2" /> <text x="1095.29" y="271.5" ></text> </g> <g > <title>__list_add_valid (4,309,404 samples, 0.03%)</title><rect x="53.8" y="165" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="56.79" y="175.5" ></text> </g> <g > <title>preempt_count_add (6,397,320 samples, 0.04%)</title><rect x="1077.8" y="165" width="0.5" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="1080.85" y="175.5" ></text> </g> <g > <title>free_swap_cache (3,456,165 samples, 0.02%)</title><rect x="39.9" y="197" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> <text x="42.90" y="207.5" ></text> </g> <g > <title>debug_smp_processor_id (2,591,959 samples, 0.02%)</title><rect x="1028.5" y="165" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="1031.48" y="175.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (1,727,237 samples, 0.01%)</title><rect x="1059.5" y="165" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1062.55" y="175.5" ></text> </g> <g > <title>irqentry_exit (4,836,719 samples, 0.03%)</title><rect x="1109.2" y="325" width="0.4" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> <text x="1112.21" y="335.5" ></text> </g> <g > <title>seq_read_iter (9,400,040 samples, 0.06%)</title><rect x="12.0" y="341" width="0.7" height="15.0" fill="rgb(232,128,30)" rx="2" ry="2" /> <text x="15.04" y="351.5" ></text> </g> <g > <title>__mod_zone_page_state (23,323,934 samples, 0.14%)</title><rect x="65.5" y="181" width="1.7" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="68.48" y="191.5" ></text> </g> <g > <title>check_preemption_disabled (12,963,237 samples, 0.08%)</title><rect x="66.2" y="165" width="1.0" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="69.24" y="175.5" ></text> </g> <g > <title>perf_event_task_tick (9,675,240 samples, 0.06%)</title><rect x="920.7" y="149" width="0.7" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="923.70" y="159.5" ></text> </g> <g > <title>Sum<unsigned long>::simd_agg (354,247,613 samples, 2.19%)</title><rect x="713.4" y="373" width="25.8" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="716.38" y="383.5" >S..</text> </g> <g > <title>__rcu_read_lock (1,904,837 samples, 0.01%)</title><rect x="291.5" y="277" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="294.47" y="287.5" ></text> </g> <g > <title>mtree_range_walk (34,877,092 samples, 0.22%)</title><rect x="1103.1" y="261" width="2.5" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" /> <text x="1106.06" y="271.5" ></text> </g> <g > <title>aggr_j (1,314,752,767 samples, 8.11%)</title><rect x="657.9" y="405" width="95.8" height="15.0" fill="rgb(221,75,17)" rx="2" ry="2" /> <text x="660.95" y="415.5" >aggr_j</text> </g> <g > <title>free_swap_cache (1,729,335 samples, 0.01%)</title><rect x="25.1" y="229" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> <text x="28.11" y="239.5" ></text> </g> <g > <title>idxd_cdev_release (1,664,053 samples, 0.01%)</title><rect x="18.5" y="325" width="0.2" height="15.0" fill="rgb(229,112,27)" rx="2" ry="2" /> <text x="21.54" y="335.5" ></text> </g> <g > <title>update_process_times (5,355,090 samples, 0.03%)</title><rect x="941.8" y="101" width="0.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="944.79" y="111.5" ></text> </g> <g > <title>__this_cpu_preempt_check (4,683,300 samples, 0.03%)</title><rect x="1042.6" y="197" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="1045.58" y="207.5" ></text> </g> <g > <title>mmap_region (25,499,134 samples, 0.16%)</title><rect x="12.8" y="341" width="1.9" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" /> <text x="15.81" y="351.5" ></text> </g> <g > <title>__mod_memcg_lruvec_state (10,718,577 samples, 0.07%)</title><rect x="431.3" y="261" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="434.34" y="271.5" ></text> </g> <g > <title>inherit_task_group.isra.0 (11,236,456 samples, 0.07%)</title><rect x="656.9" y="325" width="0.8" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" /> <text x="659.91" y="335.5" ></text> </g> <g > <title>update_process_times (2,246,370 samples, 0.01%)</title><rect x="1092.9" y="165" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="1095.92" y="175.5" ></text> </g> <g > <title>do_user_addr_fault (3,976,510 samples, 0.02%)</title><rect x="1147.6" y="389" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="1150.55" y="399.5" ></text> </g> <g > <title>free_pages_and_swap_cache (1,729,335 samples, 0.01%)</title><rect x="25.1" y="245" width="0.1" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> <text x="28.11" y="255.5" ></text> </g> <g > <title>tick_sched_handle (2,246,370 samples, 0.01%)</title><rect x="1092.9" y="181" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="1095.92" y="191.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (12,664,791 samples, 0.08%)</title><rect x="920.6" y="277" width="0.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="923.60" y="287.5" ></text> </g> <g > <title>__get_free_pages (1,710,021 samples, 0.01%)</title><rect x="74.3" y="197" width="0.2" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" /> <text x="77.35" y="207.5" ></text> </g> <g > <title>debug_smp_processor_id (1,729,538 samples, 0.01%)</title><rect x="24.9" y="213" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="27.93" y="223.5" ></text> </g> <g > <title>charge_memcg (1,653,189,141 samples, 10.20%)</title><rect x="291.7" y="277" width="120.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="294.71" y="287.5" >charge_memcg</text> </g> <g > <title>__hrtimer_run_queues (2,893,175 samples, 0.02%)</title><rect x="808.2" y="309" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="811.18" y="319.5" ></text> </g> <g > <title>do_anonymous_page (9,297,301 samples, 0.06%)</title><rect x="807.2" y="293" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="810.23" y="303.5" ></text> </g> <g > <title>__handle_mm_fault (3,976,510 samples, 0.02%)</title><rect x="1147.6" y="357" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> <text x="1150.55" y="367.5" ></text> </g> <g > <title>tlb_batch_pages_flush (144,307,316 samples, 0.89%)</title><rect x="25.1" y="261" width="10.5" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" /> <text x="28.11" y="271.5" ></text> </g> <g > <title>do_syscall_64 (4,322,528 samples, 0.03%)</title><rect x="1146.6" y="357" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="1149.64" y="367.5" ></text> </g> <g > <title>perf_event_task_tick (2,246,370 samples, 0.01%)</title><rect x="1092.9" y="133" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="1095.92" y="143.5" ></text> </g> <g > <title>scheduler_tick (2,893,175 samples, 0.02%)</title><rect x="808.2" y="245" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="811.18" y="255.5" ></text> </g> <g > <title>tick_sched_handle (2,063,358 samples, 0.01%)</title><rect x="739.0" y="245" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="742.02" y="255.5" ></text> </g> <g > <title>intel_invalidate_range (39,887,334 samples, 0.25%)</title><rect x="15.0" y="309" width="2.9" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="18.04" y="319.5" ></text> </g> <g > <title>scheduler_tick (2,245,481 samples, 0.01%)</title><rect x="1011.8" y="69" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="1014.84" y="79.5" ></text> </g> <g > <title>__list_add_valid (1,385,651 samples, 0.01%)</title><rect x="425.6" y="229" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="428.63" y="239.5" ></text> </g> <g > <title>qi_submit_sync (20,054,794 samples, 0.12%)</title><rect x="16.5" y="277" width="1.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="19.49" y="287.5" ></text> </g> <g > <title>get_page_from_freelist (1,710,021 samples, 0.01%)</title><rect x="74.3" y="165" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="77.35" y="175.5" ></text> </g> <g > <title>memcg_account_kmem (1,383,928 samples, 0.01%)</title><rect x="415.2" y="229" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> <text x="418.16" y="239.5" ></text> </g> <g > <title>__rcu_read_lock (2,593,786 samples, 0.02%)</title><rect x="81.2" y="181" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="84.20" y="191.5" ></text> </g> <g > <title>copy_process (12,965,505 samples, 0.08%)</title><rect x="656.8" y="357" width="0.9" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> <text x="659.78" y="367.5" ></text> </g> <g > <title>__mod_memcg_state (1,729,751 samples, 0.01%)</title><rect x="999.2" y="149" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" /> <text x="1002.20" y="159.5" ></text> </g> <g > <title>task_work_run (1,526,525 samples, 0.01%)</title><rect x="11.6" y="357" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> <text x="14.63" y="367.5" ></text> </g> <g > <title>scheduler_tick (10,360,017 samples, 0.06%)</title><rect x="920.7" y="165" width="0.8" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="923.70" y="175.5" ></text> </g> <g > <title>check_preemption_disabled (9,484,188 samples, 0.06%)</title><rect x="64.7" y="165" width="0.7" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="67.67" y="175.5" ></text> </g> <g > <title>do_syscall_64 (47,131,812 samples, 0.29%)</title><rect x="15.0" y="405" width="3.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="18.04" y="415.5" ></text> </g> <g > <title>folio_add_new_anon_rmap (155,498,365 samples, 0.96%)</title><rect x="1033.1" y="245" width="11.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" /> <text x="1036.05" y="255.5" ></text> </g> <g > <title>__do_sys_clone3 (12,965,505 samples, 0.08%)</title><rect x="656.8" y="389" width="0.9" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> <text x="659.78" y="399.5" ></text> </g> <g > <title>__kmem_cache_alloc_node (1,726,629 samples, 0.01%)</title><rect x="12.0" y="309" width="0.2" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" /> <text x="15.04" y="319.5" ></text> </g> <g > <title>lru_add_fn (239,656,735 samples, 1.48%)</title><rect x="1012.6" y="213" width="17.4" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" /> <text x="1015.59" y="223.5" ></text> </g> <g > <title>__get_vma_policy (2,956,261 samples, 0.02%)</title><rect x="1086.3" y="229" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> <text x="1089.29" y="239.5" ></text> </g> <g > <title>__mod_zone_page_state (6,900,606 samples, 0.04%)</title><rect x="29.0" y="181" width="0.5" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="32.01" y="191.5" ></text> </g> <g > <title>do_mmap (25,499,134 samples, 0.16%)</title><rect x="12.8" y="357" width="1.9" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="15.81" y="367.5" ></text> </g> <g > <title>check_preemption_disabled (6,047,369 samples, 0.04%)</title><rect x="51.5" y="133" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="54.53" y="143.5" ></text> </g> <g > <title>link_path_walk.part.0.constprop.0 (4,837,854 samples, 0.03%)</title><rect x="10.9" y="309" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" /> <text x="13.93" y="319.5" ></text> </g> <g > <title>_raw_spin_lock_irqsave (1,374,549 samples, 0.01%)</title><rect x="443.0" y="213" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="445.99" y="223.5" ></text> </g> <g > <title>__hrtimer_run_queues (10,360,017 samples, 0.06%)</title><rect x="920.7" y="229" width="0.8" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="923.70" y="239.5" ></text> </g> <g > <title>preempt_count_sub (3,617,185 samples, 0.02%)</title><rect x="1102.0" y="261" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> <text x="1104.99" y="271.5" ></text> </g> <g > <title>dsacache::Cache::AllocOnNode (4,643,768,628 samples, 28.65%)</title><rect x="808.4" y="357" width="338.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" /> <text x="811.43" y="367.5" >dsacache::Cache::AllocOnNode</text> </g> <g > <title>_raw_spin_lock_irqsave (7,950,760 samples, 0.05%)</title><rect x="1012.0" y="197" width="0.6" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="1015.01" y="207.5" ></text> </g> <g > <title>all (16,207,832,029 samples, 100%)</title><rect x="10.0" y="469" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" /> <text x="13.00" y="479.5" ></text> </g> <g > <title>__memcg_kmem_charge_page (1,902,465 samples, 0.01%)</title><rect x="415.1" y="245" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="418.12" y="255.5" ></text> </g> <g > <title>__count_memcg_events (24,740,787 samples, 0.15%)</title><rect x="450.1" y="309" width="1.8" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" /> <text x="453.07" y="319.5" ></text> </g> <g > <title>clear_page_erms (44,854,476 samples, 0.28%)</title><rect x="445.0" y="229" width="3.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="448.04" y="239.5" ></text> </g> <g > <title>__mod_zone_page_state (2,246,759 samples, 0.01%)</title><rect x="1074.8" y="165" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="1077.79" y="175.5" ></text> </g> <g > <title>_raw_spin_lock (1,471,343 samples, 0.01%)</title><rect x="10.7" y="325" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> <text x="13.67" y="335.5" ></text> </g> <g > <title>__GI_mprotect (48,514,489 samples, 0.30%)</title><rect x="14.9" y="437" width="3.6" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" /> <text x="17.94" y="447.5" ></text> </g> <g > <title>inc_mm_counter (28,550,483 samples, 0.18%)</title><rect x="432.2" y="293" width="2.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> <text x="435.18" y="303.5" ></text> </g> <g > <title>__count_memcg_events (576,028,915 samples, 3.55%)</title><rect x="297.2" y="245" width="41.9" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" /> <text x="300.16" y="255.5" >__c..</text> </g> <g > <title>lru_gen_add_folio (174,186,514 samples, 1.07%)</title><rect x="1017.4" y="197" width="12.6" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" /> <text x="1020.35" y="207.5" ></text> </g> <g > <title>check_preemption_disabled (3,458,836 samples, 0.02%)</title><rect x="79.5" y="149" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="82.50" y="159.5" ></text> </g> <g > <title>preempt_count_sub (5,398,063 samples, 0.03%)</title><rect x="1108.3" y="277" width="0.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> <text x="1111.32" y="287.5" ></text> </g> <g > <title>sync_regs (177,790,295 samples, 1.10%)</title><rect x="457.8" y="373" width="12.9" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> <text x="460.79" y="383.5" ></text> </g> <g > <title>error_entry (21,589,852 samples, 0.13%)</title><rect x="1144.9" y="341" width="1.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" /> <text x="1147.95" y="351.5" ></text> </g> <g > <title>mbind_range (2,699,413 samples, 0.02%)</title><rect x="1147.1" y="357" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> <text x="1150.15" y="367.5" ></text> </g> <g > <title>unmap_region (223,811,903 samples, 1.38%)</title><rect x="19.6" y="309" width="16.3" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> <text x="22.64" y="319.5" ></text> </g> <g > <title>do_anonymous_page (3,976,510 samples, 0.02%)</title><rect x="1147.6" y="341" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="1150.55" y="351.5" ></text> </g> <g > <title>[[heap]] (1,729,927 samples, 0.01%)</title><rect x="10.0" y="437" width="0.1" height="15.0" fill="rgb(211,31,7)" rx="2" ry="2" /> <text x="13.00" y="447.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (2,620,554 samples, 0.02%)</title><rect x="739.0" y="341" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="741.98" y="351.5" ></text> </g> <g > <title>asm_exc_page_fault (3,976,510 samples, 0.02%)</title><rect x="1147.6" y="421" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="1150.55" y="431.5" ></text> </g> <g > <title>hrtimer_interrupt (2,063,358 samples, 0.01%)</title><rect x="739.0" y="293" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="742.02" y="303.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (47,131,812 samples, 0.29%)</title><rect x="15.0" y="421" width="3.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="18.04" y="431.5" ></text> </g> <g > <title>folio_add_lru (158,132,049 samples, 0.98%)</title><rect x="416.8" y="293" width="11.6" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> <text x="419.85" y="303.5" ></text> </g> <g > <title>asm_exc_page_fault (4,023,289,231 samples, 24.82%)</title><rect x="851.4" y="341" width="292.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="854.35" y="351.5" >asm_exc_page_fault</text> </g> <g > <title>__this_cpu_preempt_check (1,726,873 samples, 0.01%)</title><rect x="1040.8" y="181" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="1043.78" y="191.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (2,246,370 samples, 0.01%)</title><rect x="1092.9" y="261" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1095.92" y="271.5" ></text> </g> <g > <title>alloc_empty_file (1,548,099 samples, 0.01%)</title><rect x="10.8" y="309" width="0.1" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> <text x="13.78" y="319.5" ></text> </g> <g > <title>__x64_sys_munmap (631,219,928 samples, 3.89%)</title><rect x="35.9" y="325" width="46.0" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> <text x="38.94" y="335.5" >__x6..</text> </g> <g > <title>_raw_spin_trylock (18,163,797 samples, 0.11%)</title><rect x="443.1" y="229" width="1.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> <text x="446.09" y="239.5" ></text> </g> <g > <title>exit_to_user_mode_prepare (1,664,053 samples, 0.01%)</title><rect x="18.5" y="373" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="21.54" y="383.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (5,887,488 samples, 0.04%)</title><rect x="941.7" y="197" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="944.75" y="207.5" ></text> </g> <g > <title>intel_invalidate_range (41,443,691 samples, 0.26%)</title><rect x="67.2" y="213" width="3.0" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="70.18" y="223.5" ></text> </g> <g > <title>getname_flags.part.0 (1,895,237 samples, 0.01%)</title><rect x="11.3" y="341" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> <text x="14.28" y="351.5" ></text> </g> <g > <title>asm_exc_page_fault (2,936,586,182 samples, 18.12%)</title><rect x="256.9" y="389" width="213.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="259.94" y="399.5" >asm_exc_page_fault</text> </g> <g > <title>check_preemption_disabled (77,177,405 samples, 0.48%)</title><rect x="954.3" y="181" width="5.6" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="957.29" y="191.5" ></text> </g> <g > <title>tick_sched_handle (10,360,017 samples, 0.06%)</title><rect x="920.7" y="197" width="0.8" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="923.70" y="207.5" ></text> </g> <g > <title>try_charge_memcg (2,593,139 samples, 0.02%)</title><rect x="999.3" y="181" width="0.2" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> <text x="1002.32" y="191.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (2,278,320 samples, 0.01%)</title><rect x="213.5" y="229" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="216.48" y="239.5" ></text> </g> <g > <title>cgroup_rstat_updated (1,903,621 samples, 0.01%)</title><rect x="450.5" y="293" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> <text x="453.47" y="303.5" ></text> </g> <g > <title>preempt_count_add (2,425,287 samples, 0.01%)</title><rect x="416.4" y="277" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="419.37" y="287.5" ></text> </g> <g > <title>scheduler_tick (5,355,090 samples, 0.03%)</title><rect x="941.8" y="85" width="0.4" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="944.79" y="95.5" ></text> </g> <g > <title>do_syscall_64 (2,526,127 samples, 0.02%)</title><rect x="18.5" y="405" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="21.48" y="415.5" ></text> </g> <g > <title>__list_add_valid (1,730,109 samples, 0.01%)</title><rect x="43.2" y="197" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="46.23" y="207.5" ></text> </g> <g > <title>x86_pmu_event_init (2,593,062 samples, 0.02%)</title><rect x="657.5" y="261" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> <text x="660.54" y="271.5" ></text> </g> <g > <title>__hrtimer_run_queues (2,162,393 samples, 0.01%)</title><rect x="753.4" y="309" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="756.41" y="319.5" ></text> </g> <g > <title>__bitmap_intersects (14,543,038 samples, 0.09%)</title><rect x="1090.4" y="197" width="1.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="1093.40" y="207.5" ></text> </g> <g > <title>memcg_check_events (642,670,660 samples, 3.97%)</title><rect x="341.1" y="261" width="46.7" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" /> <text x="344.06" y="271.5" >memc..</text> </g> <g > <title>free_unref_page_commit (19,858,618 samples, 0.12%)</title><rect x="52.7" y="181" width="1.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> <text x="55.66" y="191.5" ></text> </g> <g > <title>check_preemption_disabled (4,836,501 samples, 0.03%)</title><rect x="1048.5" y="213" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="1051.52" y="223.5" ></text> </g> <g > <title>free_pcppages_bulk (94,989,678 samples, 0.59%)</title><rect x="45.7" y="181" width="7.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="48.74" y="191.5" ></text> </g> <g > <title>access_error (7,347,830 samples, 0.05%)</title><rect x="920.1" y="293" width="0.5" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> <text x="923.06" y="303.5" ></text> </g> <g > <title>[libstdc++.so.6.0.32] (6,716,810,165 samples, 41.44%)</title><rect x="657.9" y="421" width="489.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" /> <text x="660.95" y="431.5" >[libstdc++.so.6.0.32]</text> </g> <g > <title>__this_cpu_preempt_check (4,321,815 samples, 0.03%)</title><rect x="65.9" y="165" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="68.92" y="175.5" ></text> </g> <g > <title>__rcu_read_lock (2,756,901 samples, 0.02%)</title><rect x="999.8" y="181" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1002.76" y="191.5" ></text> </g> <g > <title>__mod_lruvec_state (30,240,095 samples, 0.19%)</title><rect x="61.8" y="181" width="2.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> <text x="64.84" y="191.5" ></text> </g> <g > <title>sysfs_emit_at (1,728,036 samples, 0.01%)</title><rect x="12.3" y="261" width="0.1" height="15.0" fill="rgb(206,8,1)" rx="2" ry="2" /> <text x="15.31" y="271.5" ></text> </g> <g > <title>p4d_offset (3,678,345 samples, 0.02%)</title><rect x="1091.5" y="261" width="0.3" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" /> <text x="1094.49" y="271.5" ></text> </g> <g > <title>mas_wr_node_store (1,611,669 samples, 0.01%)</title><rect x="13.1" y="293" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> <text x="16.13" y="303.5" ></text> </g> <g > <title>perf_event_alloc (9,508,489 samples, 0.06%)</title><rect x="657.0" y="293" width="0.7" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" /> <text x="660.04" y="303.5" ></text> </g> <g > <title>__x64_sys_munmap (223,811,903 samples, 1.38%)</title><rect x="19.6" y="373" width="16.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> <text x="22.64" y="383.5" ></text> </g> <g > <title>__count_memcg_events (55,586,950 samples, 0.34%)</title><rect x="1093.8" y="261" width="4.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" /> <text x="1096.80" y="271.5" ></text> </g> <g > <title>perf_event_task_tick (2,063,358 samples, 0.01%)</title><rect x="739.0" y="197" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="742.02" y="207.5" ></text> </g> <g > <title>__vm_munmap (631,219,928 samples, 3.89%)</title><rect x="35.9" y="309" width="46.0" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" /> <text x="38.94" y="319.5" >__vm..</text> </g> <g > <title>preempt_count_add (3,288,567 samples, 0.02%)</title><rect x="428.0" y="277" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="431.00" y="287.5" ></text> </g> <g > <title>__folio_alloc (184,596,394 samples, 1.14%)</title><rect x="435.0" y="277" width="13.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> <text x="438.04" y="287.5" ></text> </g> <g > <title>__this_cpu_preempt_check (12,272,089 samples, 0.08%)</title><rect x="339.1" y="245" width="0.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="342.10" y="255.5" ></text> </g> <g > <title>sysmalloc (3,976,510 samples, 0.02%)</title><rect x="1147.6" y="437" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="1150.55" y="447.5" ></text> </g> <g > <title>perf_event_init_task (11,236,456 samples, 0.07%)</title><rect x="656.9" y="341" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="659.91" y="351.5" ></text> </g> <g > <title>free_unref_page_list (52,679,292 samples, 0.33%)</title><rect x="26.8" y="229" width="3.8" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="29.81" y="239.5" ></text> </g> <g > <title>__x64_sys_madvise (2,414,556 samples, 0.01%)</title><rect x="14.8" y="389" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="17.77" y="399.5" ></text> </g> <g > <title>_raw_spin_lock (15,235,294 samples, 0.09%)</title><rect x="415.4" y="293" width="1.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> <text x="418.44" y="303.5" ></text> </g> <g > <title>__this_cpu_preempt_check (5,176,773 samples, 0.03%)</title><rect x="63.1" y="149" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="66.09" y="159.5" ></text> </g> <g > <title>unmap_page_range (222,087,207 samples, 1.37%)</title><rect x="19.8" y="277" width="16.1" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> <text x="22.77" y="287.5" ></text> </g> <g > <title>pfn_pte (3,458,350 samples, 0.02%)</title><rect x="1048.9" y="245" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" /> <text x="1051.87" y="255.5" ></text> </g> <g > <title>vm_normal_page (4,324,302 samples, 0.03%)</title><rect x="35.6" y="261" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="38.62" y="271.5" ></text> </g> <g > <title>__mod_lruvec_state (4,158,167 samples, 0.03%)</title><rect x="425.7" y="229" width="0.3" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> <text x="428.73" y="239.5" ></text> </g> <g > <title>__rcu_read_unlock (2,940,300 samples, 0.02%)</title><rect x="414.8" y="261" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="417.78" y="271.5" ></text> </g> <g > <title>get_mem_cgroup_from_mm (58,724,220 samples, 0.36%)</title><rect x="994.7" y="229" width="4.3" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> <text x="997.73" y="239.5" ></text> </g> <g > <title>down_write (1,729,175 samples, 0.01%)</title><rect x="12.9" y="325" width="0.1" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" /> <text x="15.87" y="335.5" ></text> </g> <g > <title>mas_walk (46,004,269 samples, 0.28%)</title><rect x="1102.2" y="277" width="3.4" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="1105.25" y="287.5" ></text> </g> <g > <title>handle_mm_fault (3,976,510 samples, 0.02%)</title><rect x="1147.6" y="373" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="1150.55" y="383.5" ></text> </g> <g > <title>preempt_count_sub (2,753,956 samples, 0.02%)</title><rect x="1032.6" y="229" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> <text x="1035.56" y="239.5" ></text> </g> <g > <title>check_preemption_disabled (3,112,802 samples, 0.02%)</title><rect x="427.2" y="213" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="430.22" y="223.5" ></text> </g> <g > <title>do_syscall_64 (6,619,563 samples, 0.04%)</title><rect x="19.2" y="405" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="22.16" y="415.5" ></text> </g> <g > <title>kernel_mbind (7,285,314 samples, 0.04%)</title><rect x="1147.0" y="389" width="0.6" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> <text x="1150.02" y="399.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 (577,343,172 samples, 3.56%)</title><rect x="1147.9" y="405" width="42.0" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> <text x="1150.90" y="415.5" >std..</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 (452,955,873 samples, 2.79%)</title><rect x="623.4" y="325" width="33.0" height="15.0" fill="rgb(207,12,3)" rx="2" ry="2" /> <text x="626.44" y="335.5" >st..</text> </g> <g > <title>perf_event_task_tick (2,283,316 samples, 0.01%)</title><rect x="808.2" y="229" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="811.18" y="239.5" ></text> </g> <g > <title>__rcu_read_lock (3,194,875 samples, 0.02%)</title><rect x="939.0" y="229" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="941.95" y="239.5" ></text> </g> <g > <title>charge_memcg (3,112,277 samples, 0.02%)</title><rect x="1147.6" y="309" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="1150.55" y="319.5" ></text> </g> <g > <title>preempt_count_add (11,074,593 samples, 0.07%)</title><rect x="1101.2" y="261" width="0.8" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="1104.18" y="271.5" ></text> </g> <g > <title>__list_add_valid (2,423,562 samples, 0.01%)</title><rect x="442.2" y="213" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="445.19" y="223.5" ></text> </g> <g > <title>__tlb_remove_page_size (1,728,884 samples, 0.01%)</title><rect x="22.2" y="261" width="0.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> <text x="25.22" y="271.5" ></text> </g> <g > <title>lru_add_fn (85,654,057 samples, 0.53%)</title><rect x="421.2" y="261" width="6.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" /> <text x="424.21" y="271.5" ></text> </g> <g > <title>page_counter_try_charge (21,586,297 samples, 0.13%)</title><rect x="410.5" y="245" width="1.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> <text x="413.46" y="255.5" ></text> </g> <g > <title>__mod_zone_page_state (11,241,303 samples, 0.07%)</title><rect x="34.8" y="213" width="0.8" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="37.80" y="223.5" ></text> </g> <g > <title>irqentry_enter (6,704,632 samples, 0.04%)</title><rect x="1108.7" y="309" width="0.5" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" /> <text x="1111.72" y="319.5" ></text> </g> <g > <title>_raw_spin_unlock_irqrestore (3,973,456 samples, 0.02%)</title><rect x="1011.7" y="213" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> <text x="1014.72" y="223.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (10,264,737 samples, 0.06%)</title><rect x="12.0" y="405" width="0.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="14.98" y="415.5" ></text> </g> <g > <title>free_pcppages_bulk (33,679,763 samples, 0.21%)</title><rect x="27.2" y="213" width="2.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="30.19" y="223.5" ></text> </g> <g > <title>_raw_spin_lock_irqsave (1,904,959 samples, 0.01%)</title><rect x="421.1" y="245" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="424.07" y="255.5" ></text> </g> <g > <title>debug_smp_processor_id (1,729,254 samples, 0.01%)</title><rect x="14.3" y="277" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="17.29" y="287.5" ></text> </g> <g > <title>handle_mm_fault (2,421,988,931 samples, 14.94%)</title><rect x="921.5" y="293" width="176.4" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="924.52" y="303.5" >handle_mm_fault</text> </g> <g > <title>__libc_openat64 (7,131,806 samples, 0.04%)</title><rect x="19.1" y="437" width="0.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> <text x="22.12" y="447.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (2,728,444 samples, 0.02%)</title><rect x="753.4" y="373" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="756.37" y="383.5" ></text> </g> <g > <title>check_preemption_disabled (3,632,125 samples, 0.02%)</title><rect x="434.0" y="261" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="436.99" y="271.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (2,278,320 samples, 0.01%)</title><rect x="213.5" y="373" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="216.48" y="383.5" ></text> </g> <g > <title>tick_sched_handle (5,355,090 samples, 0.03%)</title><rect x="941.8" y="117" width="0.4" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="944.79" y="127.5" ></text> </g> <g > <title>up_read (42,836,892 samples, 0.26%)</title><rect x="1105.6" y="293" width="3.1" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> <text x="1108.60" y="303.5" ></text> </g> <g > <title>syscall_exit_to_user_mode (2,039,626 samples, 0.01%)</title><rect x="11.6" y="389" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" /> <text x="14.60" y="399.5" ></text> </g> <g > <title>__bitmap_intersects (1,384,048 samples, 0.01%)</title><rect x="449.2" y="261" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="452.18" y="271.5" ></text> </g> <g > <title>vma_alloc_folio (570,274,722 samples, 3.52%)</title><rect x="1050.0" y="245" width="41.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> <text x="1052.98" y="255.5" >vma..</text> </g> <g > <title>mod_lruvec_page_state.constprop.0 (2,756,901 samples, 0.02%)</title><rect x="999.8" y="213" width="0.2" height="15.0" fill="rgb(208,15,3)" rx="2" ry="2" /> <text x="1002.76" y="223.5" ></text> </g> <g > <title>free_unref_page_list (155,397,189 samples, 0.96%)</title><rect x="44.5" y="197" width="11.3" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="47.49" y="207.5" ></text> </g> <g > <title>__mod_node_page_state (22,459,612 samples, 0.14%)</title><rect x="62.4" y="165" width="1.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="65.40" y="175.5" ></text> </g> <g > <title>__rcu_read_lock (1,727,825 samples, 0.01%)</title><rect x="26.6" y="197" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="29.62" y="207.5" ></text> </g> <g > <title>mpol_new (1,729,408 samples, 0.01%)</title><rect x="1147.3" y="357" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> <text x="1150.34" y="367.5" ></text> </g> <g > <title>__mod_zone_page_state (11,928,541 samples, 0.07%)</title><rect x="426.6" y="229" width="0.8" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="429.57" y="239.5" ></text> </g> <g > <title>folio_add_new_anon_rmap (50,707,542 samples, 0.31%)</title><rect x="428.5" y="293" width="3.7" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" /> <text x="431.49" y="303.5" ></text> </g> <g > <title>intel_invalidate_range (9,503,744 samples, 0.06%)</title><rect x="21.5" y="245" width="0.7" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="24.53" y="255.5" ></text> </g> <g > <title>qi_flush_piotlb (5,181,714 samples, 0.03%)</title><rect x="21.8" y="229" width="0.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="24.84" y="239.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,677,046,261 samples, 10.35%)</title><rect x="534.3" y="357" width="122.1" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> <text x="537.32" y="367.5" >unsigned int st..</text> </g> <g > <title>scheduler_tick (2,246,370 samples, 0.01%)</title><rect x="1092.9" y="149" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="1095.92" y="159.5" ></text> </g> <g > <title>do_madvise (2,414,556 samples, 0.01%)</title><rect x="14.8" y="373" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="17.77" y="383.5" ></text> </g> <g > <title>perf_iterate_ctx (16,121,901 samples, 0.10%)</title><rect x="13.2" y="293" width="1.2" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> <text x="16.24" y="303.5" ></text> </g> <g > <title>tick_sched_timer (2,245,481 samples, 0.01%)</title><rect x="1011.8" y="117" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="1014.84" y="127.5" ></text> </g> <g > <title>__split_vma (5,183,584 samples, 0.03%)</title><rect x="36.0" y="261" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" /> <text x="39.00" y="271.5" ></text> </g> <g > <title>fpregs_assert_state_consistent (28,171,663 samples, 0.17%)</title><rect x="1112.1" y="293" width="2.0" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="1115.09" y="303.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (2,893,175 samples, 0.02%)</title><rect x="808.2" y="341" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="811.18" y="351.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (2,162,393 samples, 0.01%)</title><rect x="753.4" y="341" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="756.41" y="351.5" ></text> </g> <g > <title>check_preemption_disabled (6,043,809 samples, 0.04%)</title><rect x="24.5" y="213" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="27.49" y="223.5" ></text> </g> <g > <title>vm_mmap_pgoff (25,499,134 samples, 0.16%)</title><rect x="12.8" y="373" width="1.9" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="15.81" y="383.5" ></text> </g> <g > <title>memcg_slab_post_alloc_hook (1,548,099 samples, 0.01%)</title><rect x="10.8" y="261" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="13.78" y="271.5" ></text> </g> <g > <title>change_protection (39,887,334 samples, 0.25%)</title><rect x="15.0" y="341" width="2.9" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> <text x="18.04" y="351.5" ></text> </g> <g > <title>hrtimer_interrupt (5,355,090 samples, 0.03%)</title><rect x="941.8" y="165" width="0.4" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="944.79" y="175.5" ></text> </g> <g > <title>__mod_node_page_state (8,645,452 samples, 0.05%)</title><rect x="33.5" y="197" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="36.48" y="207.5" ></text> </g> <g > <title>folio_lruvec_lock_irqsave (1,729,327 samples, 0.01%)</title><rect x="44.4" y="197" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> <text x="47.36" y="207.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (5,355,090 samples, 0.03%)</title><rect x="941.8" y="181" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="944.79" y="191.5" ></text> </g> <g > <title>_raw_spin_lock (51,474,392 samples, 0.32%)</title><rect x="1000.0" y="245" width="3.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> <text x="1002.96" y="255.5" ></text> </g> <g > <title>check_preemption_disabled (3,977,351 samples, 0.02%)</title><rect x="419.7" y="277" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="422.66" y="287.5" ></text> </g> <g > <title>__this_cpu_preempt_check (4,321,339 samples, 0.03%)</title><rect x="80.3" y="165" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="83.32" y="175.5" ></text> </g> <g > <title>do_user_addr_fault (2,373,989,107 samples, 14.65%)</title><rect x="283.1" y="357" width="172.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="286.11" y="367.5" >do_user_addr_fault</text> </g> <g > <title>__mem_cgroup_uncharge_list (6,915,224 samples, 0.04%)</title><rect x="26.2" y="229" width="0.6" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="29.25" y="239.5" ></text> </g> <g > <title>vfs_read (9,400,040 samples, 0.06%)</title><rect x="12.0" y="357" width="0.7" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="15.04" y="367.5" ></text> </g> <g > <title>__rcu_read_lock (8,296,345 samples, 0.05%)</title><rect x="997.9" y="213" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1000.87" y="223.5" ></text> </g> <g > <title>_mm512_mask_add_epi64 (354,247,613 samples, 2.19%)</title><rect x="713.4" y="357" width="25.8" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" /> <text x="716.38" y="367.5" >_..</text> </g> <g > <title>lru_gen_del_folio.constprop.0 (156,312,784 samples, 0.96%)</title><rect x="55.8" y="197" width="11.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> <text x="58.80" y="207.5" ></text> </g> <g > <title>format_decode (2,370,200 samples, 0.01%)</title><rect x="12.6" y="229" width="0.1" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" /> <text x="15.56" y="239.5" ></text> </g> <g > <title>vma_alloc_folio (3,120,052 samples, 0.02%)</title><rect x="807.7" y="277" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> <text x="810.68" y="287.5" ></text> </g> <g > <title>__mod_lruvec_state (3,458,121 samples, 0.02%)</title><rect x="23.8" y="229" width="0.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> <text x="26.79" y="239.5" ></text> </g> <g > <title>_raw_spin_trylock (1,576,484 samples, 0.01%)</title><rect x="807.8" y="213" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> <text x="810.75" y="223.5" ></text> </g> <g > <title>check_preemption_disabled (6,848,033 samples, 0.04%)</title><rect x="1028.0" y="165" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="1030.98" y="175.5" ></text> </g> <g > <title>qi_flush_dev_iotlb_pasid (19,100,039 samples, 0.12%)</title><rect x="15.1" y="293" width="1.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="18.10" y="303.5" ></text> </g> <g > <title>__mod_node_page_state (25,518,507 samples, 0.16%)</title><rect x="1025.0" y="165" width="1.9" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="1028.02" y="175.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (7,602,506 samples, 0.05%)</title><rect x="1144.3" y="181" width="0.6" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="1147.33" y="191.5" ></text> </g> <g > <title>void fill_mt<unsigned long> (6,081,590,595 samples, 37.52%)</title><rect x="213.6" y="405" width="442.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> <text x="216.65" y="415.5" >void fill_mt<unsigned long></text> </g> <g > <title>get_page_from_freelist (1,557,133 samples, 0.01%)</title><rect x="415.3" y="245" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="418.26" y="255.5" ></text> </g> <g > <title>preempt_count_add (8,205,165 samples, 0.05%)</title><rect x="1003.1" y="229" width="0.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="1006.11" y="239.5" ></text> </g> <g > <title>page_remove_rmap (38,029,000 samples, 0.23%)</title><rect x="22.3" y="261" width="2.8" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> <text x="25.35" y="271.5" ></text> </g> <g > <title>do_syscall_64 (3,042,426 samples, 0.02%)</title><rect x="11.5" y="405" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="14.52" y="415.5" ></text> </g> <g > <title>__next_zones_zonelist (10,036,556 samples, 0.06%)</title><rect x="436.1" y="245" width="0.8" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> <text x="439.14" y="255.5" ></text> </g> <g > <title>cgroup_rstat_updated (4,777,645 samples, 0.03%)</title><rect x="1095.2" y="245" width="0.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> <text x="1098.24" y="255.5" ></text> </g> <g > <title>__mod_lruvec_state (11,239,478 samples, 0.07%)</title><rect x="33.3" y="213" width="0.8" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> <text x="36.29" y="223.5" ></text> </g> <g > <title>vma_merge (2,699,413 samples, 0.02%)</title><rect x="1147.1" y="341" width="0.2" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" /> <text x="1150.15" y="351.5" ></text> </g> <g > <title>_mm512_stream_load_si512 (195,062,083 samples, 1.20%)</title><rect x="739.2" y="357" width="14.2" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="742.17" y="367.5" ></text> </g> <g > <title>_raw_spin_unlock (8,129,458 samples, 0.05%)</title><rect x="444.4" y="229" width="0.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> <text x="447.41" y="239.5" ></text> </g> <g > <title>free_pages_and_swap_cache (3,456,165 samples, 0.02%)</title><rect x="39.9" y="213" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" /> <text x="42.90" y="223.5" ></text> </g> <g > <title>__x64_sys_get_mempolicy (4,322,528 samples, 0.03%)</title><rect x="1146.6" y="341" width="0.4" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> <text x="1149.64" y="351.5" ></text> </g> <g > <title>mem_cgroup_charge_statistics (282,944,823 samples, 1.75%)</title><rect x="942.2" y="213" width="20.6" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> <text x="945.18" y="223.5" ></text> </g> <g > <title>__mod_lruvec_state (30,405,460 samples, 0.19%)</title><rect x="1024.7" y="181" width="2.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> <text x="1027.67" y="191.5" ></text> </g> <g > <title>__GI___getdelim (1,729,911 samples, 0.01%)</title><rect x="10.0" y="421" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> <text x="13.00" y="431.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 (1,001,161,895 samples, 6.18%)</title><rect x="583.5" y="341" width="72.9" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" /> <text x="586.52" y="351.5" >std::mer..</text> </g> <g > <title>intel_invalidate_range (44,047,598 samples, 0.27%)</title><rect x="36.6" y="213" width="3.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="39.63" y="223.5" ></text> </g> <g > <title>__mmu_notifier_invalidate_range (44,912,926 samples, 0.28%)</title><rect x="36.6" y="229" width="3.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> <text x="39.56" y="239.5" ></text> </g> <g > <title>policy_node (11,566,513 samples, 0.07%)</title><rect x="1086.5" y="229" width="0.8" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" /> <text x="1089.51" y="239.5" ></text> </g> <g > <title>__rcu_read_unlock (1,899,272 samples, 0.01%)</title><rect x="1016.6" y="197" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="1019.60" y="207.5" ></text> </g> <g > <title>__this_cpu_preempt_check (3,630,476 samples, 0.02%)</title><rect x="1029.2" y="165" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="1032.22" y="175.5" ></text> </g> <g > <title>__rmqueue_pcplist (2,557,377 samples, 0.02%)</title><rect x="999.5" y="181" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> <text x="1002.51" y="191.5" ></text> </g> <g > <title>hrtimer_interrupt (2,246,370 samples, 0.01%)</title><rect x="1092.9" y="229" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="1095.92" y="239.5" ></text> </g> <g > <title>blk_cgroup_congested (7,785,255 samples, 0.05%)</title><rect x="290.7" y="277" width="0.6" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" /> <text x="293.74" y="287.5" ></text> </g> <g > <title>lru_gen_del_folio.constprop.0 (68,287,267 samples, 0.42%)</title><rect x="30.6" y="229" width="5.0" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> <text x="33.65" y="239.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 (631,219,928 samples, 3.89%)</title><rect x="35.9" y="389" width="46.0" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" /> <text x="38.94" y="399.5" >std:..</text> </g> <g > <title>qi_flush_dev_iotlb_pasid (23,329,066 samples, 0.14%)</title><rect x="67.2" y="197" width="1.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="70.18" y="207.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (631,219,928 samples, 3.89%)</title><rect x="35.9" y="357" width="46.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="38.94" y="367.5" >entr..</text> </g> <g > <title>folio_mapping (3,117,433 samples, 0.02%)</title><rect x="423.0" y="245" width="0.2" height="15.0" fill="rgb(248,201,48)" rx="2" ry="2" /> <text x="426.01" y="255.5" ></text> </g> <g > <title>tick_sched_handle (2,245,481 samples, 0.01%)</title><rect x="1011.8" y="101" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="1014.84" y="111.5" ></text> </g> <g > <title>clear_page_erms (88,446,554 samples, 0.55%)</title><rect x="1079.1" y="181" width="6.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="1082.12" y="191.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (5,355,090 samples, 0.03%)</title><rect x="941.8" y="53" width="0.4" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="944.79" y="63.5" ></text> </g> <g > <title>exc_page_fault (2,385,002,551 samples, 14.72%)</title><rect x="282.6" y="373" width="173.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> <text x="285.57" y="383.5" >exc_page_fault</text> </g> <g > <title>syscall (8,148,987 samples, 0.05%)</title><rect x="1147.0" y="437" width="0.6" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="1149.96" y="447.5" ></text> </g> <g > <title>do_syscall_64 (10,264,737 samples, 0.06%)</title><rect x="12.0" y="389" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="14.98" y="399.5" ></text> </g> <g > <title>dsacache::Cache::SubmitTask (4,644,633,394 samples, 28.66%)</title><rect x="808.4" y="373" width="338.2" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> <text x="811.43" y="383.5" >dsacache::Cache::SubmitTask</text> </g> <g > <title>hrtimer_interrupt (2,162,393 samples, 0.01%)</title><rect x="753.4" y="325" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="756.41" y="335.5" ></text> </g> <g > <title>__GI_madvise (2,414,556 samples, 0.01%)</title><rect x="14.8" y="437" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="17.77" y="447.5" ></text> </g> <g > <title>__fput (1,664,053 samples, 0.01%)</title><rect x="18.5" y="341" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> <text x="21.54" y="351.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (10,343,181 samples, 0.06%)</title><rect x="10.7" y="405" width="0.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="13.67" y="415.5" ></text> </g> <g > <title>__mmu_notifier_invalidate_range_end (41,443,691 samples, 0.26%)</title><rect x="67.2" y="229" width="3.0" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> <text x="70.18" y="239.5" ></text> </g> <g > <title>__mem_cgroup_uncharge_list (13,828,510 samples, 0.09%)</title><rect x="43.4" y="197" width="1.0" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="46.35" y="207.5" ></text> </g> <g > <title>__this_cpu_preempt_check (2,594,993 samples, 0.02%)</title><rect x="24.2" y="213" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="27.17" y="223.5" ></text> </g> <g > <title>check_preemption_disabled (6,327,743 samples, 0.04%)</title><rect x="457.3" y="325" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="460.29" y="335.5" ></text> </g> <g > <title>free_pgtables (1,728,837 samples, 0.01%)</title><rect x="36.4" y="245" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> <text x="39.38" y="255.5" ></text> </g> <g > <title>__mod_memcg_lruvec_state (24,524,493 samples, 0.15%)</title><rect x="1026.9" y="181" width="1.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="1029.88" y="191.5" ></text> </g> <g > <title>__handle_mm_fault (9,811,818 samples, 0.06%)</title><rect x="807.2" y="309" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> <text x="810.23" y="319.5" ></text> </g> <g > <title>fpregs_assert_state_consistent (6,327,743 samples, 0.04%)</title><rect x="457.3" y="341" width="0.5" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="460.29" y="351.5" ></text> </g> <g > <title>vsnprintf (1,728,036 samples, 0.01%)</title><rect x="12.3" y="229" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> <text x="15.31" y="239.5" ></text> </g> <g > <title>release_pages (7,617,475 samples, 0.05%)</title><rect x="427.4" y="261" width="0.6" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> <text x="430.44" y="271.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (2,526,127 samples, 0.02%)</title><rect x="18.5" y="421" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="21.48" y="431.5" ></text> </g> <g > <title>preempt_count_sub (1,899,511 samples, 0.01%)</title><rect x="444.9" y="213" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> <text x="447.86" y="223.5" ></text> </g> <g > <title>__alloc_pages (1,710,021 samples, 0.01%)</title><rect x="74.3" y="181" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="77.35" y="191.5" ></text> </g> <g > <title>mas_store_prealloc (2,476,464 samples, 0.02%)</title><rect x="13.1" y="325" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> <text x="16.06" y="335.5" ></text> </g> <g > <title>main (8,522,536,197 samples, 52.58%)</title><rect x="35.9" y="421" width="620.5" height="15.0" fill="rgb(243,179,42)" rx="2" ry="2" /> <text x="38.94" y="431.5" >main</text> </g> <g > <title>pmd_val (3,328,679 samples, 0.02%)</title><rect x="1092.1" y="261" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="1095.05" y="271.5" ></text> </g> <g > <title>pmd_install (1,728,616 samples, 0.01%)</title><rect x="999.0" y="229" width="0.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" /> <text x="1002.01" y="239.5" ></text> </g> <g > <title>numa_node_size64 (5,705,774 samples, 0.04%)</title><rect x="10.2" y="421" width="0.4" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="13.19" y="431.5" ></text> </g> <g > <title>scheduler_tick (1,574,246 samples, 0.01%)</title><rect x="753.5" y="245" width="0.1" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="756.46" y="255.5" ></text> </g> <g > <title>debug_smp_processor_id (221,057,514 samples, 1.36%)</title><rect x="394.4" y="245" width="16.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="397.36" y="255.5" ></text> </g> <g > <title>sum_check (1,809,416,252 samples, 11.16%)</title><rect x="81.9" y="405" width="131.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="84.91" y="415.5" >sum_check</text> </g> <g > <title>preempt_count_sub (3,048,074 samples, 0.02%)</title><rect x="1086.0" y="181" width="0.3" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> <text x="1089.03" y="191.5" ></text> </g> <g > <title>uncharge_folio (6,915,224 samples, 0.04%)</title><rect x="26.2" y="213" width="0.6" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" /> <text x="29.25" y="223.5" ></text> </g> <g > <title>__alloc_pages (485,198,496 samples, 2.99%)</title><rect x="1051.0" y="213" width="35.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="1053.97" y="223.5" >__..</text> </g> <g > <title>__mod_node_page_state (17,247,278 samples, 0.11%)</title><rect x="78.5" y="165" width="1.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="81.50" y="175.5" ></text> </g> <g > <title>__mem_cgroup_charge (1,699,033,875 samples, 10.48%)</title><rect x="291.3" y="293" width="123.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> <text x="294.30" y="303.5" >__mem_cgroup_ch..</text> </g> <g > <title>__rcu_read_lock (2,245,039 samples, 0.01%)</title><rect x="291.1" y="261" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="294.08" y="271.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (4,322,528 samples, 0.03%)</title><rect x="1146.6" y="373" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="1149.64" y="383.5" ></text> </g> <g > <title>intel_invalidate_range (2,414,556 samples, 0.01%)</title><rect x="14.8" y="325" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" /> <text x="17.77" y="335.5" ></text> </g> <g > <title>__mod_node_page_state (41,576,218 samples, 0.26%)</title><rect x="1039.1" y="197" width="3.0" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="1042.12" y="207.5" ></text> </g> <g > <title>__mod_lruvec_page_state (107,097,574 samples, 0.66%)</title><rect x="1036.3" y="229" width="7.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="1039.35" y="239.5" ></text> </g> <g > <title>__alloc_file (1,548,099 samples, 0.01%)</title><rect x="10.8" y="293" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" /> <text x="13.78" y="303.5" ></text> </g> <g > <title>kernel_get_mempolicy (4,322,528 samples, 0.03%)</title><rect x="1146.6" y="325" width="0.4" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" /> <text x="1149.64" y="335.5" ></text> </g> <g > <title>__GI___close (3,042,426 samples, 0.02%)</title><rect x="11.5" y="437" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> <text x="14.52" y="447.5" ></text> </g> <g > <title>__this_cpu_preempt_check (6,056,290 samples, 0.04%)</title><rect x="79.1" y="149" width="0.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="82.06" y="159.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (1,727,237 samples, 0.01%)</title><rect x="1059.5" y="181" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="1062.55" y="191.5" ></text> </g> <g > <title>mod_memcg_state (1,383,928 samples, 0.01%)</title><rect x="415.2" y="213" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="418.16" y="223.5" ></text> </g> <g > <title>check_preemption_disabled (73,048,716 samples, 0.45%)</title><rect x="389.0" y="245" width="5.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="392.04" y="255.5" ></text> </g> <g > <title>folio_add_lru_vma (1,731,736 samples, 0.01%)</title><rect x="428.4" y="293" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="431.36" y="303.5" ></text> </g> <g > <title>check_preemption_disabled (1,728,587 samples, 0.01%)</title><rect x="23.9" y="197" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="26.92" y="207.5" ></text> </g> <g > <title>__mod_lruvec_state (9,871,985 samples, 0.06%)</title><rect x="430.6" y="261" width="0.7" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> <text x="433.62" y="271.5" ></text> </g> <g > <title>__mem_cgroup_charge (3,112,277 samples, 0.02%)</title><rect x="1147.6" y="325" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> <text x="1150.55" y="335.5" ></text> </g> <g > <title>check_preemption_disabled (3,440,581 samples, 0.02%)</title><rect x="29.3" y="165" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="32.27" y="175.5" ></text> </g> <g > <title>__hrtimer_run_queues (2,063,358 samples, 0.01%)</title><rect x="739.0" y="277" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="742.02" y="287.5" ></text> </g> <g > <title>tick_sched_timer (2,162,393 samples, 0.01%)</title><rect x="753.4" y="293" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="756.41" y="303.5" ></text> </g> <g > <title>__GI___libc_read (10,264,737 samples, 0.06%)</title><rect x="12.0" y="421" width="0.7" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="14.98" y="431.5" ></text> </g> <g > <title>__rcu_read_unlock (2,991,213 samples, 0.02%)</title><rect x="1092.7" y="277" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="1095.71" y="287.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (2,186,103 samples, 0.01%)</title><rect x="753.4" y="357" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="756.41" y="367.5" ></text> </g> <g > <title>do_syscall_64 (2,414,556 samples, 0.01%)</title><rect x="14.8" y="405" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="17.77" y="415.5" ></text> </g> <g > <title>__free_one_page (82,061,399 samples, 0.51%)</title><rect x="46.0" y="165" width="6.0" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> <text x="48.99" y="175.5" ></text> </g> <g > <title>lock_vma_under_rcu (39,381,654 samples, 0.24%)</title><rect x="451.9" y="341" width="2.8" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" /> <text x="454.87" y="351.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (26,333,316 samples, 0.16%)</title><rect x="12.8" y="405" width="1.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="15.75" y="415.5" ></text> </g> <g > <title>__mod_lruvec_page_state (2,756,901 samples, 0.02%)</title><rect x="999.8" y="197" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="1002.76" y="207.5" ></text> </g> <g > <title>try_charge_memcg (332,641,086 samples, 2.05%)</title><rect x="387.8" y="261" width="24.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> <text x="390.85" y="271.5" >t..</text> </g> <g > <title>preempt_count_add (2,593,410 samples, 0.02%)</title><rect x="1012.4" y="181" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="1015.40" y="191.5" ></text> </g> <g > <title>do_vmi_align_munmap (629,492,317 samples, 3.88%)</title><rect x="36.0" y="277" width="45.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" /> <text x="39.00" y="287.5" >do_v..</text> </g> <g > <title>pte_alloc_one (11,365,173 samples, 0.07%)</title><rect x="999.1" y="229" width="0.9" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> <text x="1002.14" y="239.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (2,414,556 samples, 0.01%)</title><rect x="14.8" y="421" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="17.77" y="431.5" ></text> </g> <g > <title>cgroup_rstat_updated (1,728,929 samples, 0.01%)</title><rect x="24.4" y="213" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> <text x="27.36" y="223.5" ></text> </g> <g > <title>free_unref_page_commit (6,908,677 samples, 0.04%)</title><rect x="29.6" y="213" width="0.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" /> <text x="32.64" y="223.5" ></text> </g> <g > <title>__hrtimer_run_queues (2,278,320 samples, 0.01%)</title><rect x="213.5" y="325" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="216.48" y="335.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> (577,343,172 samples, 3.56%)</title><rect x="1147.9" y="421" width="42.0" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" /> <text x="1150.90" y="431.5" >uns..</text> </g> <g > <title>__handle_mm_fault (2,258,462,859 samples, 13.93%)</title><rect x="285.3" y="325" width="164.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> <text x="288.31" y="335.5" >__handle_mm_fault</text> </g> <g > <title>__this_cpu_preempt_check (4,313,782 samples, 0.03%)</title><rect x="64.2" y="165" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="67.23" y="175.5" ></text> </g> <g > <title>check_preemption_disabled (6,049,007 samples, 0.04%)</title><rect x="1008.9" y="229" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="1011.87" y="239.5" ></text> </g> <g > <title>__get_vma_policy (4,653,204 samples, 0.03%)</title><rect x="448.5" y="277" width="0.3" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" /> <text x="451.48" y="287.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (223,811,903 samples, 1.38%)</title><rect x="19.6" y="405" width="16.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="22.64" y="415.5" ></text> </g> <g > <title>qi_submit_sync (18,132,952 samples, 0.11%)</title><rect x="36.6" y="181" width="1.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="39.63" y="191.5" ></text> </g> <g > <title>exc_page_fault (12,385,269 samples, 0.08%)</title><rect x="807.2" y="357" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" /> <text x="810.19" y="367.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (2,245,175 samples, 0.01%)</title><rect x="470.7" y="389" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="473.73" y="399.5" ></text> </g> <g > <title>tlb_batch_pages_flush (374,748,248 samples, 2.31%)</title><rect x="39.9" y="229" width="27.3" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" /> <text x="42.90" y="239.5" >t..</text> </g> <g > <title>error_entry (14,065,002 samples, 0.09%)</title><rect x="916.2" y="325" width="1.0" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" /> <text x="919.19" y="335.5" ></text> </g> <g > <title>tick_sched_timer (2,278,320 samples, 0.01%)</title><rect x="213.5" y="309" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="216.48" y="319.5" ></text> </g> <g > <title>__rcu_read_unlock (2,592,426 samples, 0.02%)</title><rect x="939.2" y="229" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="942.19" y="239.5" ></text> </g> <g > <title>__this_cpu_preempt_check (3,458,279 samples, 0.02%)</title><rect x="33.7" y="181" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="36.73" y="191.5" ></text> </g> <g > <title>qi_flush_piotlb (1,548,669 samples, 0.01%)</title><rect x="14.8" y="309" width="0.1" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="17.83" y="319.5" ></text> </g> <g > <title>preempt_count_sub (1,381,854 samples, 0.01%)</title><rect x="1078.9" y="165" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> <text x="1081.89" y="175.5" ></text> </g> <g > <title>do_syscall_64 (12,965,505 samples, 0.08%)</title><rect x="656.8" y="405" width="0.9" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="659.78" y="415.5" ></text> </g> <g > <title>hrtimer_interrupt (2,278,320 samples, 0.01%)</title><rect x="213.5" y="341" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="216.48" y="351.5" ></text> </g> <g > <title>folio_lruvec_lock_irqsave (1,904,959 samples, 0.01%)</title><rect x="421.1" y="261" width="0.1" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> <text x="424.07" y="271.5" ></text> </g> <g > <title>pmd_val (3,288,956 samples, 0.02%)</title><rect x="449.4" y="309" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="452.44" y="319.5" ></text> </g> <g > <title>preempt_count_add (3,627,638 samples, 0.02%)</title><rect x="1032.3" y="229" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="1035.30" y="239.5" ></text> </g> <g > <title>kmem_cache_alloc_node (1,728,614 samples, 0.01%)</title><rect x="657.4" y="277" width="0.1" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" /> <text x="660.41" y="287.5" ></text> </g> <g > <title>debug_smp_processor_id (10,372,104 samples, 0.06%)</title><rect x="993.0" y="197" width="0.8" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="996.02" y="207.5" ></text> </g> <g > <title>check_preemption_disabled (8,708,595 samples, 0.05%)</title><rect x="1043.3" y="197" width="0.6" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="1046.28" y="207.5" ></text> </g> <g > <title>get_page_from_freelist (3,422,251 samples, 0.02%)</title><rect x="999.5" y="197" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="1002.51" y="207.5" ></text> </g> <g > <title>__this_cpu_preempt_check (3,425,436 samples, 0.02%)</title><rect x="1095.0" y="245" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="1097.99" y="255.5" ></text> </g> <g > <title>pmd_val (3,918,355 samples, 0.02%)</title><rect x="1049.6" y="245" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="1052.63" y="255.5" ></text> </g> <g > <title>__mod_lruvec_page_state (22,469,918 samples, 0.14%)</title><rect x="23.5" y="245" width="1.6" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="26.48" y="255.5" ></text> </g> <g > <title>__rcu_read_lock (1,732,716 samples, 0.01%)</title><rect x="283.7" y="341" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="286.69" y="351.5" ></text> </g> <g > <title>qi_flush_piotlb (18,114,625 samples, 0.11%)</title><rect x="68.9" y="197" width="1.3" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" /> <text x="71.88" y="207.5" ></text> </g> <g > <title>do_sys_openat2 (10,343,181 samples, 0.06%)</title><rect x="10.7" y="357" width="0.7" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" /> <text x="13.67" y="367.5" ></text> </g> <g > <title>__memcg_kmem_charge_page (5,186,021 samples, 0.03%)</title><rect x="999.1" y="197" width="0.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" /> <text x="1002.14" y="207.5" ></text> </g> <g > <title>scan_a (751,624,882 samples, 4.64%)</title><rect x="753.7" y="405" width="54.7" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> <text x="756.66" y="415.5" >scan_a</text> </g> <g > <title>pte_alloc_one (5,184,340 samples, 0.03%)</title><rect x="415.1" y="277" width="0.3" height="15.0" fill="rgb(252,217,51)" rx="2" ry="2" /> <text x="418.06" y="287.5" ></text> </g> <g > <title>dev_attr_show (6,809,146 samples, 0.04%)</title><rect x="12.2" y="309" width="0.5" height="15.0" fill="rgb(213,37,9)" rx="2" ry="2" /> <text x="15.23" y="319.5" ></text> </g> <g > <title>policy_nodemask (56,949,042 samples, 0.35%)</title><rect x="1087.3" y="229" width="4.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="1090.35" y="239.5" ></text> </g> <g > <title>mas_store_prealloc (2,592,295 samples, 0.02%)</title><rect x="36.2" y="229" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> <text x="39.19" y="239.5" ></text> </g> <g > <title>do_mbind (7,285,314 samples, 0.04%)</title><rect x="1147.0" y="373" width="0.6" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" /> <text x="1150.02" y="383.5" ></text> </g> <g > <title>debug_smp_processor_id (3,973,430 samples, 0.02%)</title><rect x="1113.9" y="277" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="1116.85" y="287.5" ></text> </g> <g > <title>percpu_counter_add_batch (1,730,526 samples, 0.01%)</title><rect x="81.4" y="213" width="0.1" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="84.39" y="223.5" ></text> </g> <g > <title>__rcu_read_unlock (1,728,004 samples, 0.01%)</title><rect x="919.9" y="293" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="922.94" y="303.5" ></text> </g> <g > <title>__hrtimer_run_queues (2,245,481 samples, 0.01%)</title><rect x="1011.8" y="133" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1014.84" y="143.5" ></text> </g> <g > <title>check_preemption_disabled (2,418,520 samples, 0.01%)</title><rect x="426.4" y="213" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="429.36" y="223.5" ></text> </g> <g > <title>percpu_counter_add_batch (58,295,338 samples, 0.36%)</title><rect x="1044.6" y="229" width="4.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" /> <text x="1047.63" y="239.5" ></text> </g> <g > <title>hrtimer_interrupt (11,222,797 samples, 0.07%)</title><rect x="920.7" y="245" width="0.8" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="923.70" y="255.5" ></text> </g> <g > <title>__rcu_read_lock (1,464,514 samples, 0.01%)</title><rect x="1016.5" y="197" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1019.49" y="207.5" ></text> </g> <g > <title>memcg_check_events (324,055,059 samples, 2.00%)</title><rect x="962.8" y="213" width="23.6" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" /> <text x="965.78" y="223.5" >m..</text> </g> <g > <title>release_pages (31,089,671 samples, 0.19%)</title><rect x="1030.0" y="213" width="2.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> <text x="1033.03" y="223.5" ></text> </g> <g > <title>kmem_cache_alloc (2,581,815 samples, 0.02%)</title><rect x="14.5" y="309" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> <text x="17.48" y="319.5" ></text> </g> <g > <title>perf_event_task_tick (2,278,320 samples, 0.01%)</title><rect x="213.5" y="245" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="216.48" y="255.5" ></text> </g> <g > <title>release_pages (142,577,981 samples, 0.88%)</title><rect x="25.2" y="245" width="10.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" /> <text x="28.24" y="255.5" ></text> </g> <g > <title>irqentry_exit (2,251,736 samples, 0.01%)</title><rect x="456.2" y="373" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> <text x="459.21" y="383.5" ></text> </g> <g > <title>pmd_page_vaddr (1,728,374 samples, 0.01%)</title><rect x="1049.1" y="245" width="0.1" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" /> <text x="1052.12" y="255.5" ></text> </g> <g > <title>__GI___mmap64 (26,333,316 samples, 0.16%)</title><rect x="12.8" y="421" width="1.9" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="15.75" y="431.5" ></text> </g> <g > <title>syscall_exit_to_user_mode (1,664,053 samples, 0.01%)</title><rect x="18.5" y="389" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" /> <text x="21.54" y="399.5" ></text> </g> <g > <title>check_preemption_disabled (32,527,454 samples, 0.20%)</title><rect x="960.4" y="197" width="2.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="963.41" y="207.5" ></text> </g> <g > <title>__rcu_read_unlock (1,731,608 samples, 0.01%)</title><rect x="449.7" y="325" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" /> <text x="452.74" y="335.5" ></text> </g> <g > <title>mas_destroy (1,727,716 samples, 0.01%)</title><rect x="36.2" y="213" width="0.1" height="15.0" fill="rgb(250,209,49)" rx="2" ry="2" /> <text x="39.19" y="223.5" ></text> </g> <g > <title>check_preemption_disabled (10,889,743 samples, 0.07%)</title><rect x="1026.1" y="149" width="0.8" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="1029.09" y="159.5" ></text> </g> <g > <title>cpuset_nodemask_valid_mems_allowed (19,900,595 samples, 0.12%)</title><rect x="1090.0" y="213" width="1.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" /> <text x="1093.05" y="223.5" ></text> </g> <g > <title>perf_try_init_event (2,593,062 samples, 0.02%)</title><rect x="657.5" y="277" width="0.2" height="15.0" fill="rgb(240,161,38)" rx="2" ry="2" /> <text x="660.54" y="287.5" ></text> </g> <g > <title>preempt_count_sub (1,729,334 samples, 0.01%)</title><rect x="1003.9" y="229" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> <text x="1006.90" y="239.5" ></text> </g> <g > <title>do_vmi_munmap (630,356,301 samples, 3.89%)</title><rect x="35.9" y="293" width="45.9" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> <text x="38.94" y="303.5" >do_v..</text> </g> <g > <title>sysvec_apic_timer_interrupt (2,991,599 samples, 0.02%)</title><rect x="808.2" y="357" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="811.17" y="367.5" ></text> </g> <g > <title>do_mprotect_pkey (47,131,812 samples, 0.29%)</title><rect x="15.0" y="373" width="3.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="18.04" y="383.5" ></text> </g> <g > <title>start_thread (6,716,810,165 samples, 41.44%)</title><rect x="657.9" y="437" width="489.1" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" /> <text x="660.95" y="447.5" >start_thread</text> </g> <g > <title>error_entry (7,613,455 samples, 0.05%)</title><rect x="282.0" y="373" width="0.6" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" /> <text x="285.01" y="383.5" ></text> </g> <g > <title>_raw_spin_unlock (4,277,367 samples, 0.03%)</title><rect x="1003.7" y="245" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> <text x="1006.71" y="255.5" ></text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (2,520,803,377 samples, 15.55%)</title><rect x="472.9" y="373" width="183.5" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="475.89" y="383.5" >unsigned long std::unif..</text> </g> <g > <title>cgroup_rstat_updated (61,926,692 samples, 0.38%)</title><rect x="324.8" y="229" width="4.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> <text x="327.79" y="239.5" ></text> </g> <g > <title>tick_sched_handle (2,278,320 samples, 0.01%)</title><rect x="213.5" y="293" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="216.48" y="303.5" ></text> </g> <g > <title>tick_sched_timer (5,355,090 samples, 0.03%)</title><rect x="941.8" y="133" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="944.79" y="143.5" ></text> </g> <g > <title>debug_smp_processor_id (2,246,138 samples, 0.01%)</title><rect x="959.9" y="181" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="962.91" y="191.5" ></text> </g> <g > <title>kmem_cache_alloc (1,548,099 samples, 0.01%)</title><rect x="10.8" y="277" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> <text x="13.78" y="287.5" ></text> </g> <g > <title>perf_iterate_ctx (5,865,007 samples, 0.04%)</title><rect x="17.9" y="309" width="0.5" height="15.0" fill="rgb(205,4,0)" rx="2" ry="2" /> <text x="20.95" y="319.5" ></text> </g> <g > <title>irqentry_exit_to_user_mode (19,484,681 samples, 0.12%)</title><rect x="456.4" y="373" width="1.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" /> <text x="459.37" y="383.5" ></text> </g> <g > <title>mas_walk (14,117,731 samples, 0.09%)</title><rect x="453.7" y="325" width="1.0" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="456.71" y="335.5" ></text> </g> <g > <title>__mod_lruvec_state (20,706,100 samples, 0.13%)</title><rect x="78.2" y="181" width="1.6" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> <text x="81.25" y="191.5" ></text> </g> <g > <title>__hrtimer_run_queues (8,465,801 samples, 0.05%)</title><rect x="1144.3" y="277" width="0.6" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1147.33" y="287.5" ></text> </g> <g > <title>perf_iterate_sb.constprop.0 (16,121,901 samples, 0.10%)</title><rect x="13.2" y="309" width="1.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="16.24" y="319.5" ></text> </g> <g > <title>do_vmi_munmap (223,811,903 samples, 1.38%)</title><rect x="19.6" y="341" width="16.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> <text x="22.64" y="351.5" ></text> </g> <g > <title>update_process_times (2,245,481 samples, 0.01%)</title><rect x="1011.8" y="85" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="1014.84" y="95.5" ></text> </g> <g > <title>__x64_sys_mprotect (47,131,812 samples, 0.29%)</title><rect x="15.0" y="389" width="3.5" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" /> <text x="18.04" y="399.5" ></text> </g> <g > <title>kernfs_iop_permission (1,728,057 samples, 0.01%)</title><rect x="11.1" y="277" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> <text x="14.06" y="287.5" ></text> </g> <g > <title>__mem_cgroup_charge (2,049,112 samples, 0.01%)</title><rect x="807.2" y="277" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> <text x="810.23" y="287.5" ></text> </g> <g > <title>hrtimer_interrupt (8,465,801 samples, 0.05%)</title><rect x="1144.3" y="293" width="0.6" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="1147.33" y="303.5" ></text> </g> <g > <title>__strstr_avx512 (4,322,214 samples, 0.03%)</title><rect x="10.3" y="405" width="0.3" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" /> <text x="13.25" y="415.5" ></text> </g> <g > <title>cgroup_rstat_updated (4,839,302 samples, 0.03%)</title><rect x="1042.9" y="197" width="0.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> <text x="1045.93" y="207.5" ></text> </g> <g > <title>do_sys_openat2 (6,619,563 samples, 0.04%)</title><rect x="19.2" y="373" width="0.4" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" /> <text x="22.16" y="383.5" ></text> </g> <g > <title>__alloc_pages (3,120,052 samples, 0.02%)</title><rect x="807.7" y="245" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="810.68" y="255.5" ></text> </g> <g > <title>__handle_mm_fault (2,305,694,402 samples, 14.23%)</title><rect x="924.8" y="277" width="167.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" /> <text x="927.84" y="287.5" >__handle_mm_fault</text> </g> <g > <title>qi_submit_sync (25,914,646 samples, 0.16%)</title><rect x="37.9" y="181" width="1.9" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="40.95" y="191.5" ></text> </g> <g > <title>check_preemption_disabled (31,051,499 samples, 0.19%)</title><rect x="1095.6" y="245" width="2.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="1098.59" y="255.5" ></text> </g> <g > <title>count_memcg_events.constprop.0 (65,432,651 samples, 0.40%)</title><rect x="1093.1" y="277" width="4.8" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> <text x="1096.09" y="287.5" ></text> </g> <g > <title>__rmqueue_pcplist (47,501,338 samples, 0.29%)</title><rect x="439.6" y="229" width="3.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> <text x="442.63" y="239.5" ></text> </g> <g > <title>__folio_alloc (489,765,877 samples, 3.02%)</title><rect x="1050.6" y="229" width="35.7" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> <text x="1053.63" y="239.5" >__f..</text> </g> <g > <title>folio_batch_move_lru (312,730,145 samples, 1.93%)</title><rect x="1009.5" y="229" width="22.8" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> <text x="1012.53" y="239.5" >f..</text> </g> <g > <title>check_preemption_disabled (111,881,835 samples, 0.69%)</title><rect x="329.3" y="229" width="8.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="332.29" y="239.5" ></text> </g> <g > <title>Filter<unsigned long, LT, (751,624,882 samples, 4.64%)</title><rect x="753.7" y="389" width="54.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" /> <text x="756.66" y="399.5" >Filte..</text> </g> <g > <title>check_preemption_disabled (1,726,700 samples, 0.01%)</title><rect x="1079.0" y="181" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="1081.99" y="191.5" ></text> </g> <g > <title>__rmqueue_pcplist (146,774,456 samples, 0.91%)</title><rect x="1064.5" y="181" width="10.6" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" /> <text x="1067.46" y="191.5" ></text> </g> <g > <title>blk_cgroup_congested (23,031,269 samples, 0.14%)</title><rect x="936.6" y="229" width="1.7" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" /> <text x="939.64" y="239.5" ></text> </g> <g > <title>check_preemption_disabled (196,786,129 samples, 1.21%)</title><rect x="972.0" y="197" width="14.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="975.04" y="207.5" ></text> </g> <g > <title>asm_exc_page_fault (15,936,351 samples, 0.10%)</title><rect x="807.0" y="373" width="1.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="810.01" y="383.5" ></text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (577,343,172 samples, 3.56%)</title><rect x="1147.9" y="437" width="42.0" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="1150.90" y="447.5" >uns..</text> </g> <g > <title>asm_exc_page_fault (1,382,677 samples, 0.01%)</title><rect x="14.9" y="421" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" /> <text x="17.94" y="431.5" ></text> </g> <g > <title>__mod_memcg_lruvec_state (7,440,535 samples, 0.05%)</title><rect x="426.0" y="229" width="0.6" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="429.03" y="239.5" ></text> </g> <g > <title>unsigned long std::uniform_int_distribution<unsigned long>::operator (2,537,063,843 samples, 15.65%)</title><rect x="471.7" y="389" width="184.7" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="474.70" y="399.5" >unsigned long std::unifo..</text> </g> <g > <title>do_syscall_64 (223,811,903 samples, 1.38%)</title><rect x="19.6" y="389" width="16.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="22.64" y="399.5" ></text> </g> <g > <title>clear_page_erms (1,710,021 samples, 0.01%)</title><rect x="74.3" y="149" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="77.35" y="159.5" ></text> </g> <g > <title>__rcu_read_lock (3,381,251 samples, 0.02%)</title><rect x="1098.9" y="277" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1101.87" y="287.5" ></text> </g> <g > <title>vscnprintf (1,728,036 samples, 0.01%)</title><rect x="12.3" y="245" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> <text x="15.31" y="255.5" ></text> </g> <g > <title>kthread_blkcg (2,246,198 samples, 0.01%)</title><rect x="938.2" y="213" width="0.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> <text x="941.15" y="223.5" ></text> </g> <g > <title>perf_event_task_tick (7,602,506 samples, 0.05%)</title><rect x="1144.3" y="197" width="0.6" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="1147.33" y="207.5" ></text> </g> <g > <title>cgroup_rstat_updated (1,728,374 samples, 0.01%)</title><rect x="80.6" y="165" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> <text x="83.63" y="175.5" ></text> </g> <g > <title>inc_mm_counter (61,807,041 samples, 0.38%)</title><rect x="1044.4" y="245" width="4.5" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> <text x="1047.37" y="255.5" ></text> </g> <g > <title>page_remove_rmap (93,239,356 samples, 0.58%)</title><rect x="74.6" y="213" width="6.8" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" /> <text x="77.60" y="223.5" ></text> </g> <g > <title>_raw_spin_unlock (1,730,821 samples, 0.01%)</title><rect x="45.6" y="181" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> <text x="48.62" y="191.5" ></text> </g> <g > <title>tick_sched_handle (2,893,175 samples, 0.02%)</title><rect x="808.2" y="277" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="811.18" y="287.5" ></text> </g> <g > <title>__this_cpu_preempt_check (4,145,333 samples, 0.03%)</title><rect x="1025.8" y="149" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="1028.79" y="159.5" ></text> </g> <g > <title>qi_submit_sync (4,322,030 samples, 0.03%)</title><rect x="21.5" y="213" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="24.53" y="223.5" ></text> </g> <g > <title>__mod_node_page_state (4,158,167 samples, 0.03%)</title><rect x="425.7" y="213" width="0.3" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="428.73" y="223.5" ></text> </g> <g > <title>qi_submit_sync (5,181,714 samples, 0.03%)</title><rect x="21.8" y="213" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="24.84" y="223.5" ></text> </g> <g > <title>free_unref_page_prepare (22,438,221 samples, 0.14%)</title><rect x="54.1" y="181" width="1.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="57.10" y="191.5" ></text> </g> <g > <title>__tlb_remove_page_size (6,899,955 samples, 0.04%)</title><rect x="74.0" y="213" width="0.5" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> <text x="76.97" y="223.5" ></text> </g> <g > <title>__alloc_pages (8,608,272 samples, 0.05%)</title><rect x="999.1" y="213" width="0.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" /> <text x="1002.14" y="223.5" ></text> </g> <g > <title>exit_to_user_mode_prepare (18,964,450 samples, 0.12%)</title><rect x="456.4" y="357" width="1.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="459.41" y="367.5" ></text> </g> <g > <title>__list_add_valid (8,611,190 samples, 0.05%)</title><rect x="49.8" y="149" width="0.7" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="52.83" y="159.5" ></text> </g> <g > <title>__kmalloc_node (1,726,629 samples, 0.01%)</title><rect x="12.0" y="325" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> <text x="15.04" y="335.5" ></text> </g> <g > <title>check_preemption_disabled (3,459,535 samples, 0.02%)</title><rect x="35.4" y="197" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="38.37" y="207.5" ></text> </g> <g > <title>vma_complete (2,592,295 samples, 0.02%)</title><rect x="36.2" y="245" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" /> <text x="39.19" y="255.5" ></text> </g> <g > <title>__this_cpu_preempt_check (32,095,349 samples, 0.20%)</title><rect x="969.7" y="197" width="2.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="972.71" y="207.5" ></text> </g> <g > <title>__list_del_entry_valid (3,459,006 samples, 0.02%)</title><rect x="61.6" y="181" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> <text x="64.58" y="191.5" ></text> </g> <g > <title>preempt_count_add (5,366,477 samples, 0.03%)</title><rect x="444.0" y="213" width="0.4" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="447.02" y="223.5" ></text> </g> <g > <title>unmap_region (624,308,733 samples, 3.85%)</title><rect x="36.4" y="261" width="45.4" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" /> <text x="39.38" y="271.5" >unma..</text> </g> <g > <title>__pte_alloc (6,049,416 samples, 0.04%)</title><rect x="415.0" y="293" width="0.4" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" /> <text x="418.00" y="303.5" ></text> </g> <g > <title>__this_cpu_preempt_check (4,323,636 samples, 0.03%)</title><rect x="51.2" y="133" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="54.21" y="143.5" ></text> </g> <g > <title>debug_smp_processor_id (1,386,577 samples, 0.01%)</title><rect x="419.9" y="277" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="422.95" y="287.5" ></text> </g> <g > <title>Vector_Loader<unsigned long, (195,062,083 samples, 1.20%)</title><rect x="739.2" y="373" width="14.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="742.17" y="383.5" ></text> </g> <g > <title>__this_cpu_preempt_check (2,591,919 samples, 0.02%)</title><rect x="1048.3" y="213" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="1051.33" y="223.5" ></text> </g> <g > <title>preempt_count_add (8,040,132 samples, 0.05%)</title><rect x="1107.7" y="277" width="0.6" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="1110.74" y="287.5" ></text> </g> <g > <title>preempt_count_sub (1,380,697 samples, 0.01%)</title><rect x="455.8" y="325" width="0.1" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> <text x="458.84" y="335.5" ></text> </g> <g > <title>dsacache::Cache::Access (4,645,243,908 samples, 28.66%)</title><rect x="808.4" y="389" width="338.2" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" /> <text x="811.39" y="399.5" >dsacache::Cache::Access</text> </g> <g > <title>__mod_zone_page_state (18,795,883 samples, 0.12%)</title><rect x="1028.7" y="181" width="1.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="1031.67" y="191.5" ></text> </g> <g > <title>vsnprintf (3,234,164 samples, 0.02%)</title><rect x="12.5" y="245" width="0.2" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" /> <text x="15.49" y="255.5" ></text> </g> <g > <title>cgroup_rstat_updated (34,145,553 samples, 0.21%)</title><rect x="951.8" y="181" width="2.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> <text x="954.80" y="191.5" ></text> </g> <g > <title>update_process_times (2,063,358 samples, 0.01%)</title><rect x="739.0" y="229" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="742.02" y="239.5" ></text> </g> <g > <title>policy_nodemask (4,672,639 samples, 0.03%)</title><rect x="449.0" y="277" width="0.3" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="451.98" y="287.5" ></text> </g> <g > <title>__rcu_read_lock (5,021,773 samples, 0.03%)</title><rect x="414.4" y="261" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="417.42" y="271.5" ></text> </g> <g > <title>__libc_start_call_main (8,746,348,100 samples, 53.96%)</title><rect x="19.6" y="437" width="636.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" /> <text x="22.64" y="447.5" >__libc_start_call_main</text> </g> <g > <title>check_preemption_disabled (4,139,630 samples, 0.03%)</title><rect x="431.8" y="245" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="434.82" y="255.5" ></text> </g> <g > <title>perf_event_task_tick (1,574,246 samples, 0.01%)</title><rect x="753.5" y="229" width="0.1" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="756.46" y="239.5" ></text> </g> <g > <title>dsacache::Cache::Clear (631,219,928 samples, 3.89%)</title><rect x="35.9" y="405" width="46.0" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" /> <text x="38.94" y="415.5" >dsac..</text> </g> <g > <title>uncharge_folio (12,963,246 samples, 0.08%)</title><rect x="43.4" y="181" width="1.0" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" /> <text x="46.42" y="191.5" ></text> </g> <g > <title>_raw_spin_lock (1,725,924 samples, 0.01%)</title><rect x="74.5" y="213" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> <text x="77.47" y="223.5" ></text> </g> <g > <title>cgroup_rstat_updated (4,485,426 samples, 0.03%)</title><rect x="1027.7" y="165" width="0.3" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> <text x="1030.65" y="175.5" ></text> </g> <g > <title>tick_sched_timer (2,893,175 samples, 0.02%)</title><rect x="808.2" y="293" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="811.18" y="303.5" ></text> </g> <g > <title>kernfs_fop_release (1,526,525 samples, 0.01%)</title><rect x="11.6" y="325" width="0.1" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" /> <text x="14.63" y="335.5" ></text> </g> <g > <title>unmap_page_range (159,745,560 samples, 0.99%)</title><rect x="70.2" y="229" width="11.6" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" /> <text x="73.20" y="239.5" ></text> </g> <g > <title>down_read_trylock (15,230,357 samples, 0.09%)</title><rect x="452.6" y="325" width="1.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> <text x="455.60" y="335.5" ></text> </g> <g > <title>mprotect_fixup (46,614,236 samples, 0.29%)</title><rect x="15.0" y="357" width="3.4" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" /> <text x="18.04" y="367.5" ></text> </g> <g > <title>pmd_pfn (5,184,907 samples, 0.03%)</title><rect x="1049.2" y="245" width="0.4" height="15.0" fill="rgb(233,129,31)" rx="2" ry="2" /> <text x="1052.25" y="255.5" ></text> </g> <g > <title>__mmu_notifier_invalidate_range (10,369,502 samples, 0.06%)</title><rect x="21.5" y="261" width="0.7" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> <text x="24.46" y="271.5" ></text> </g> <g > <title>vma_alloc_folio (204,481,337 samples, 1.26%)</title><rect x="434.4" y="293" width="14.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" /> <text x="437.44" y="303.5" ></text> </g> <g > <title>kmem_cache_alloc (1,729,408 samples, 0.01%)</title><rect x="1147.3" y="341" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" /> <text x="1150.34" y="351.5" ></text> </g> <g > <title>preempt_count_sub (1,731,876 samples, 0.01%)</title><rect x="428.2" y="277" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" /> <text x="431.24" y="287.5" ></text> </g> <g > <title>__d_lookup (2,050,788 samples, 0.01%)</title><rect x="19.4" y="309" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="22.42" y="319.5" ></text> </g> <g > <title>in_lock_functions (2,412,515 samples, 0.01%)</title><rect x="1003.5" y="213" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="1006.53" y="223.5" ></text> </g> <g > <title>irqentry_enter_from_user_mode (1,877,779 samples, 0.01%)</title><rect x="1109.1" y="293" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> <text x="1112.07" y="303.5" ></text> </g> <g > <title>__mod_memcg_lruvec_state (9,511,849 samples, 0.06%)</title><rect x="34.1" y="213" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="37.11" y="223.5" ></text> </g> <g > <title>hrtimer_interrupt (2,893,175 samples, 0.02%)</title><rect x="808.2" y="325" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="811.18" y="335.5" ></text> </g> <g > <title>__mod_memcg_lruvec_state (19,862,062 samples, 0.12%)</title><rect x="79.8" y="181" width="1.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="82.75" y="191.5" ></text> </g> <g > <title>__do_softirq (1,441,994 samples, 0.01%)</title><rect x="920.6" y="245" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" /> <text x="923.60" y="255.5" ></text> </g> <g > <title>get_page_from_freelist (3,120,052 samples, 0.02%)</title><rect x="807.7" y="229" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="810.68" y="239.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (9,675,240 samples, 0.06%)</title><rect x="920.7" y="133" width="0.7" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="923.70" y="143.5" ></text> </g> <g > <title>scan_b (4,650,432,516 samples, 28.69%)</title><rect x="808.4" y="405" width="338.6" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" /> <text x="811.39" y="415.5" >scan_b</text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (9,329,419 samples, 0.06%)</title><rect x="1144.3" y="341" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="1147.27" y="351.5" ></text> </g> <g > <title>__folio_throttle_swaprate (9,169,536 samples, 0.06%)</title><rect x="290.6" y="293" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> <text x="293.63" y="303.5" ></text> </g> <g > <title>get_page_from_freelist (157,592,549 samples, 0.97%)</title><rect x="436.9" y="245" width="11.4" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" /> <text x="439.87" y="255.5" ></text> </g> <g > <title>__mod_zone_page_state (14,694,578 samples, 0.09%)</title><rect x="50.9" y="149" width="1.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" /> <text x="53.90" y="159.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (2,278,320 samples, 0.01%)</title><rect x="213.5" y="357" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="216.48" y="367.5" ></text> </g> <g > <title>check_preemption_disabled (58,966,339 samples, 0.36%)</title><rect x="988.7" y="197" width="4.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="991.73" y="207.5" ></text> </g> <g > <title>check_preemption_disabled (7,777,020 samples, 0.05%)</title><rect x="63.5" y="149" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="66.47" y="159.5" ></text> </g> <g > <title>hugetlb_report_node_meminfo (1,728,036 samples, 0.01%)</title><rect x="12.3" y="277" width="0.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> <text x="15.31" y="287.5" ></text> </g> <g > <title>inherit_event.isra.0 (11,236,456 samples, 0.07%)</title><rect x="656.9" y="309" width="0.8" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" /> <text x="659.91" y="319.5" ></text> </g> <g > <title>folio_add_lru_vma (3,974,835 samples, 0.02%)</title><rect x="1032.8" y="245" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" /> <text x="1035.76" y="255.5" ></text> </g> <g > <title>_raw_spin_trylock (1,698,365 samples, 0.01%)</title><rect x="45.5" y="181" width="0.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> <text x="48.49" y="191.5" ></text> </g> <g > <title>__mod_node_page_state (9,006,170 samples, 0.06%)</title><rect x="430.7" y="245" width="0.6" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="433.68" y="255.5" ></text> </g> <g > <title>lookup_fast (2,050,788 samples, 0.01%)</title><rect x="19.4" y="325" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="22.42" y="335.5" ></text> </g> <g > <title>__this_cpu_preempt_check (2,771,309 samples, 0.02%)</title><rect x="431.6" y="245" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="434.58" y="255.5" ></text> </g> <g > <title>unmap_vmas (222,087,207 samples, 1.37%)</title><rect x="19.8" y="293" width="16.1" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" /> <text x="22.77" y="303.5" ></text> </g> <g > <title>tick_sched_handle (1,574,246 samples, 0.01%)</title><rect x="753.5" y="277" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" /> <text x="756.46" y="287.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (2,620,554 samples, 0.02%)</title><rect x="739.0" y="325" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="741.98" y="335.5" ></text> </g> <g > <title>_int_malloc (2,059,139 samples, 0.01%)</title><rect x="656.6" y="437" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" /> <text x="659.63" y="447.5" ></text> </g> <g > <title>error_entry (11,074,932 samples, 0.07%)</title><rect x="470.9" y="389" width="0.8" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" /> <text x="473.90" y="399.5" ></text> </g> <g > <title>internal_get_user_pages_fast (4,322,528 samples, 0.03%)</title><rect x="1146.6" y="309" width="0.4" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" /> <text x="1149.64" y="319.5" ></text> </g> <g > <title>alloc_fd (1,471,343 samples, 0.01%)</title><rect x="10.7" y="341" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" /> <text x="13.67" y="351.5" ></text> </g> <g > <title>hrtimer_interrupt (2,245,481 samples, 0.01%)</title><rect x="1011.8" y="149" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" /> <text x="1014.84" y="159.5" ></text> </g> <g > <title>do_anonymous_page (2,153,169,542 samples, 13.28%)</title><rect x="934.7" y="261" width="156.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="937.73" y="271.5" >do_anonymous_page</text> </g> <g > <title>path_openat (6,976,601 samples, 0.04%)</title><rect x="10.8" y="325" width="0.5" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" /> <text x="13.78" y="335.5" ></text> </g> <g > <title>update_process_times (8,465,801 samples, 0.05%)</title><rect x="1144.3" y="229" width="0.6" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="1147.33" y="239.5" ></text> </g> <g > <title>sysvec_apic_timer_interrupt (3,109,788 samples, 0.02%)</title><rect x="1011.8" y="181" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1014.78" y="191.5" ></text> </g> <g > <title>debug_smp_processor_id (2,956,695 samples, 0.02%)</title><rect x="1009.3" y="229" width="0.2" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="1012.31" y="239.5" ></text> </g> <g > <title>folio_batch_move_lru (109,200,750 samples, 0.67%)</title><rect x="420.0" y="277" width="8.0" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> <text x="423.05" y="287.5" ></text> </g> <g > <title>__rcu_read_lock (1,489,894 samples, 0.01%)</title><rect x="1044.0" y="213" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="1046.97" y="223.5" ></text> </g> <g > <title>ksys_read (10,264,737 samples, 0.06%)</title><rect x="12.0" y="373" width="0.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="14.98" y="383.5" ></text> </g> <g > <title>policy_node (2,252,700 samples, 0.01%)</title><rect x="448.8" y="277" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" /> <text x="451.82" y="287.5" ></text> </g> <g > <title>tick_sched_timer (8,465,801 samples, 0.05%)</title><rect x="1144.3" y="261" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="1147.33" y="271.5" ></text> </g> <g > <title>check_preemption_disabled (2,424,276 samples, 0.01%)</title><rect x="431.2" y="229" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="434.16" y="239.5" ></text> </g> <g > <title>mtree_range_walk (10,031,196 samples, 0.06%)</title><rect x="454.0" y="309" width="0.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" /> <text x="457.00" y="319.5" ></text> </g> <g > <title>update_process_times (2,893,175 samples, 0.02%)</title><rect x="808.2" y="261" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="811.18" y="271.5" ></text> </g> <g > <title>_raw_spin_trylock (43,514,592 samples, 0.27%)</title><rect x="1075.1" y="181" width="3.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" /> <text x="1078.14" y="191.5" ></text> </g> <g > <title>__hrtimer_run_queues (2,246,370 samples, 0.01%)</title><rect x="1092.9" y="213" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" /> <text x="1095.92" y="223.5" ></text> </g> <g > <title>rcu_do_batch (1,379,377 samples, 0.01%)</title><rect x="920.6" y="213" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="923.60" y="223.5" ></text> </g> <g > <title>_raw_spin_lock_irqsave (1,729,327 samples, 0.01%)</title><rect x="44.4" y="181" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="47.36" y="191.5" ></text> </g> <g > <title>__this_cpu_preempt_check (24,241,462 samples, 0.15%)</title><rect x="950.0" y="181" width="1.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="953.04" y="191.5" ></text> </g> <g > <title>do_filp_open (6,976,601 samples, 0.04%)</title><rect x="10.8" y="341" width="0.5" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="13.78" y="351.5" ></text> </g> <g > <title>__mod_memcg_lruvec_state (19,842,648 samples, 0.12%)</title><rect x="64.0" y="181" width="1.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="67.04" y="191.5" ></text> </g> <g > <title>handle_mm_fault (2,303,102,379 samples, 14.21%)</title><rect x="284.2" y="341" width="167.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" /> <text x="287.19" y="351.5" >handle_mm_fault</text> </g> <g > <title>__mod_memcg_lruvec_state (25,147,826 samples, 0.16%)</title><rect x="1042.1" y="213" width="1.9" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="1045.14" y="223.5" ></text> </g> <g > <title>__slab_alloc.isra.0 (1,728,614 samples, 0.01%)</title><rect x="657.4" y="261" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" /> <text x="660.41" y="271.5" ></text> </g> <g > <title>perf_event_mmap (16,121,901 samples, 0.10%)</title><rect x="13.2" y="325" width="1.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" /> <text x="16.24" y="335.5" ></text> </g> <g > <title>__list_del_entry_valid (6,043,320 samples, 0.04%)</title><rect x="50.5" y="149" width="0.4" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> <text x="53.46" y="159.5" ></text> </g> <g > <title>folio_add_lru (394,763,299 samples, 2.44%)</title><rect x="1004.0" y="245" width="28.8" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> <text x="1007.02" y="255.5" >fo..</text> </g> <g > <title>perf_iterate_sb.constprop.0 (5,865,007 samples, 0.04%)</title><rect x="17.9" y="325" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" /> <text x="20.95" y="335.5" ></text> </g> <g > <title>do_syscall_64 (10,343,181 samples, 0.06%)</title><rect x="10.7" y="389" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="13.67" y="399.5" ></text> </g> <g > <title>memcg_account_kmem (2,592,882 samples, 0.02%)</title><rect x="999.1" y="181" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" /> <text x="1002.14" y="191.5" ></text> </g> <g > <title>__rcu_read_lock (2,592,868 samples, 0.02%)</title><rect x="44.2" y="165" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="47.17" y="175.5" ></text> </g> <g > <title>debug_smp_processor_id (1,727,400 samples, 0.01%)</title><rect x="1085.6" y="181" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="1088.56" y="191.5" ></text> </g> <g > <title>folio_lruvec_lock_irqsave (7,950,760 samples, 0.05%)</title><rect x="1012.0" y="213" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" /> <text x="1015.01" y="223.5" ></text> </g> <g > <title>refill_stock (1,729,560 samples, 0.01%)</title><rect x="994.6" y="197" width="0.1" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" /> <text x="997.61" y="207.5" ></text> </g> <g > <title>__rcu_read_lock (1,384,957 samples, 0.01%)</title><rect x="296.5" y="261" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="299.47" y="271.5" ></text> </g> <g > <title>__list_add_valid (2,587,208 samples, 0.02%)</title><rect x="30.0" y="197" width="0.1" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="32.96" y="207.5" ></text> </g> <g > <title>__mod_lruvec_state (44,622,164 samples, 0.28%)</title><rect x="1038.9" y="213" width="3.2" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" /> <text x="1041.90" y="223.5" ></text> </g> <g > <title>perf_event_task_tick (2,245,481 samples, 0.01%)</title><rect x="1011.8" y="53" width="0.2" height="15.0" fill="rgb(205,3,0)" rx="2" ry="2" /> <text x="1014.84" y="63.5" ></text> </g> <g > <title>check_preemption_disabled (16,992,550 samples, 0.10%)</title><rect x="1040.9" y="181" width="1.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="1043.91" y="191.5" ></text> </g> <g > <title>__pte_alloc (13,093,789 samples, 0.08%)</title><rect x="999.0" y="245" width="1.0" height="15.0" fill="rgb(218,62,15)" rx="2" ry="2" /> <text x="1002.01" y="255.5" ></text> </g> <g > <title>mem_cgroup_charge_statistics (608,500,805 samples, 3.75%)</title><rect x="296.8" y="261" width="44.3" height="15.0" fill="rgb(232,126,30)" rx="2" ry="2" /> <text x="299.76" y="271.5" >mem_..</text> </g> <g > <title>__list_del_entry_valid (1,728,945 samples, 0.01%)</title><rect x="29.5" y="197" width="0.1" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> <text x="32.52" y="207.5" ></text> </g> <g > <title>do_syscall_64 (631,219,928 samples, 3.89%)</title><rect x="35.9" y="341" width="46.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" /> <text x="38.94" y="351.5" >do_s..</text> </g> <g > <title>__rcu_read_lock (5,186,156 samples, 0.03%)</title><rect x="937.6" y="213" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" /> <text x="940.56" y="223.5" ></text> </g> <g > <title>zap_page_range_single (2,414,556 samples, 0.01%)</title><rect x="14.8" y="357" width="0.1" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" /> <text x="17.77" y="367.5" ></text> </g> <g > <title>preempt_count_add (4,155,736 samples, 0.03%)</title><rect x="453.3" y="309" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" /> <text x="456.28" y="319.5" ></text> </g> <g > <title>__this_cpu_preempt_check (1,385,854 samples, 0.01%)</title><rect x="431.1" y="229" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="434.06" y="239.5" ></text> </g> <g > <title>task_work_run (1,664,053 samples, 0.01%)</title><rect x="18.5" y="357" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" /> <text x="21.54" y="367.5" ></text> </g> <g > <title>memcg_check_events (1,728,888 samples, 0.01%)</title><rect x="1147.7" y="293" width="0.1" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" /> <text x="1150.65" y="303.5" ></text> </g> <g > <title>tlb_finish_mmu (421,390,645 samples, 2.60%)</title><rect x="36.5" y="245" width="30.7" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" /> <text x="39.50" y="255.5" >tl..</text> </g> <g > <title>charge_memcg (1,548,168 samples, 0.01%)</title><rect x="807.2" y="261" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" /> <text x="810.23" y="271.5" ></text> </g> <g > <title>cgroup_rstat_updated (1,721,075 samples, 0.01%)</title><rect x="64.5" y="165" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" /> <text x="67.54" y="175.5" ></text> </g> <g > <title>kmem_cache_free_bulk.part.0 (1,727,716 samples, 0.01%)</title><rect x="36.2" y="197" width="0.1" height="15.0" fill="rgb(222,79,19)" rx="2" ry="2" /> <text x="39.19" y="207.5" ></text> </g> <g > <title>__free_one_page (30,221,167 samples, 0.19%)</title><rect x="27.3" y="197" width="2.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" /> <text x="30.32" y="207.5" ></text> </g> <g > <title>lock_vma_under_rcu (106,404,566 samples, 0.66%)</title><rect x="1097.9" y="293" width="7.7" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" /> <text x="1100.85" y="303.5" ></text> </g> <g > <title>__next_zones_zonelist (87,664,406 samples, 0.54%)</title><rect x="1053.3" y="197" width="6.4" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" /> <text x="1056.29" y="207.5" ></text> </g> <g > <title>debug_smp_processor_id (22,758,393 samples, 0.14%)</title><rect x="337.4" y="229" width="1.7" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="340.44" y="239.5" ></text> </g> <g > <title>__cond_resched (1,727,496 samples, 0.01%)</title><rect x="1053.2" y="197" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" /> <text x="1056.17" y="207.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (12,664,791 samples, 0.08%)</title><rect x="920.6" y="293" width="0.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="923.60" y="303.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (2,246,370 samples, 0.01%)</title><rect x="1092.9" y="277" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="1095.92" y="287.5" ></text> </g> <g > <title>qi_submit_sync (1,548,669 samples, 0.01%)</title><rect x="14.8" y="293" width="0.1" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" /> <text x="17.83" y="303.5" ></text> </g> <g > <title>debug_smp_processor_id (1,385,515 samples, 0.01%)</title><rect x="451.8" y="293" width="0.1" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="454.77" y="303.5" ></text> </g> <g > <title>pgd_none (2,590,952 samples, 0.02%)</title><rect x="1091.8" y="261" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" /> <text x="1094.76" y="271.5" ></text> </g> <g > <title>_raw_spin_unlock (4,139,803 samples, 0.03%)</title><rect x="416.5" y="293" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" /> <text x="419.55" y="303.5" ></text> </g> <g > <title>__this_cpu_preempt_check (4,607,217 samples, 0.03%)</title><rect x="960.1" y="197" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="963.07" y="207.5" ></text> </g> <g > <title>tick_sched_timer (2,246,370 samples, 0.01%)</title><rect x="1092.9" y="197" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="1095.92" y="207.5" ></text> </g> <g > <title>__mem_cgroup_charge (833,673,002 samples, 5.14%)</title><rect x="938.3" y="245" width="60.7" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" /> <text x="941.31" y="255.5" >__mem_..</text> </g> <g > <title>clone3 (12,965,505 samples, 0.08%)</title><rect x="656.8" y="437" width="0.9" height="15.0" fill="rgb(216,54,12)" rx="2" ry="2" /> <text x="659.78" y="447.5" ></text> </g> <g > <title>__mmu_notifier_invalidate_range_end (2,414,556 samples, 0.01%)</title><rect x="14.8" y="341" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" /> <text x="17.77" y="351.5" ></text> </g> <g > <title>__this_cpu_preempt_check (4,330,273 samples, 0.03%)</title><rect x="426.9" y="213" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="429.90" y="223.5" ></text> </g> <g > <title>__this_cpu_preempt_check (4,322,897 samples, 0.03%)</title><rect x="35.1" y="197" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="38.05" y="207.5" ></text> </g> <g > <title>get_mem_cgroup_from_mm (40,302,192 samples, 0.25%)</title><rect x="412.1" y="277" width="2.9" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" /> <text x="415.06" y="287.5" ></text> </g> <g > <title>entry_SYSCALL_64_after_hwframe (12,965,505 samples, 0.08%)</title><rect x="656.8" y="421" width="0.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" /> <text x="659.78" y="431.5" ></text> </g> <g > <title>__GI___mmap64 (26,333,316 samples, 0.16%)</title><rect x="12.8" y="437" width="1.9" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" /> <text x="15.75" y="447.5" ></text> </g> <g > <title>vm_area_alloc (2,581,815 samples, 0.02%)</title><rect x="14.5" y="325" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" /> <text x="17.48" y="335.5" ></text> </g> <g > <title>__list_add_valid (3,338,406 samples, 0.02%)</title><rect x="1024.4" y="181" width="0.3" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" /> <text x="1027.42" y="191.5" ></text> </g> <g > <title>inode_permission (3,456,198 samples, 0.02%)</title><rect x="10.9" y="293" width="0.3" height="15.0" fill="rgb(208,18,4)" rx="2" ry="2" /> <text x="13.93" y="303.5" ></text> </g> <g > <title>__fput (1,526,525 samples, 0.01%)</title><rect x="11.6" y="341" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" /> <text x="14.63" y="351.5" ></text> </g> <g > <title>folio_add_lru (2,064,658 samples, 0.01%)</title><rect x="807.5" y="277" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" /> <text x="810.45" y="287.5" ></text> </g> <g > <title>down_read_trylock (41,606,229 samples, 0.26%)</title><rect x="1099.2" y="277" width="3.0" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" /> <text x="1102.22" y="287.5" ></text> </g> <g > <title>folio_batch_move_lru (1,548,407 samples, 0.01%)</title><rect x="807.5" y="261" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" /> <text x="810.49" y="271.5" ></text> </g> <g > <title>free_unref_page_prepare (6,049,849 samples, 0.04%)</title><rect x="30.1" y="213" width="0.5" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" /> <text x="33.15" y="223.5" ></text> </g> <g > <title>update_process_times (2,278,320 samples, 0.01%)</title><rect x="213.5" y="277" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="216.48" y="287.5" ></text> </g> <g > <title>__list_del_entry_valid (9,469,892 samples, 0.06%)</title><rect x="52.0" y="165" width="0.7" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" /> <text x="54.97" y="175.5" ></text> </g> <g > <title>check_preemption_disabled (14,665,213 samples, 0.09%)</title><rect x="340.0" y="245" width="1.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="342.99" y="255.5" ></text> </g> <g > <title>scheduler_tick (2,063,358 samples, 0.01%)</title><rect x="739.0" y="213" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" /> <text x="742.02" y="223.5" ></text> </g> <g > <title>check_preemption_disabled (3,458,859 samples, 0.02%)</title><rect x="34.6" y="197" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="37.55" y="207.5" ></text> </g> <g > <title>__mod_memcg_lruvec_state (13,825,662 samples, 0.09%)</title><rect x="24.0" y="229" width="1.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" /> <text x="27.04" y="239.5" ></text> </g> <g > <title>do_user_addr_fault (2,617,163,464 samples, 16.15%)</title><rect x="918.2" y="309" width="190.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" /> <text x="921.18" y="319.5" >do_user_addr_fault</text> </g> <g > <title>check_preemption_disabled (15,909,322 samples, 0.10%)</title><rect x="450.6" y="293" width="1.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" /> <text x="453.61" y="303.5" ></text> </g> <g > <title>update_process_times (1,574,246 samples, 0.01%)</title><rect x="753.5" y="261" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" /> <text x="756.46" y="271.5" ></text> </g> <g > <title>count_memcg_events.constprop.0 (27,509,915 samples, 0.17%)</title><rect x="449.9" y="325" width="2.0" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" /> <text x="452.86" y="335.5" ></text> </g> <g > <title>tick_sched_timer (10,360,017 samples, 0.06%)</title><rect x="920.7" y="213" width="0.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" /> <text x="923.70" y="223.5" ></text> </g> <g > <title>__sysvec_apic_timer_interrupt (11,222,797 samples, 0.07%)</title><rect x="920.7" y="261" width="0.8" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" /> <text x="923.70" y="271.5" ></text> </g> <g > <title>__mod_lruvec_page_state (33,576,507 samples, 0.21%)</title><rect x="429.7" y="277" width="2.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" /> <text x="432.67" y="287.5" ></text> </g> <g > <title>perf_adjust_freq_unthr_context (2,246,370 samples, 0.01%)</title><rect x="1092.9" y="117" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" /> <text x="1095.92" y="127.5" ></text> </g> <g > <title>__folio_alloc (3,120,052 samples, 0.02%)</title><rect x="807.7" y="261" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" /> <text x="810.68" y="271.5" ></text> </g> <g > <title>node_read_meminfo (5,827,344 samples, 0.04%)</title><rect x="12.3" y="293" width="0.4" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" /> <text x="15.31" y="303.5" ></text> </g> <g > <title>__folio_throttle_swaprate (23,640,355 samples, 0.15%)</title><rect x="936.6" y="245" width="1.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" /> <text x="939.59" y="255.5" ></text> </g> <g > <title>asm_sysvec_apic_timer_interrupt (2,278,320 samples, 0.01%)</title><rect x="213.5" y="389" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" /> <text x="216.48" y="399.5" ></text> </g> <g > <title>__mod_node_page_state (3,458,121 samples, 0.02%)</title><rect x="23.8" y="213" width="0.2" height="15.0" fill="rgb(213,38,9)" rx="2" ry="2" /> <text x="26.79" y="223.5" ></text> </g> </g> </svg>
|