Skip to content

Instantly share code, notes, and snippets.

@mejedi
Created January 15, 2024 12:36
Show Gist options
  • Save mejedi/dae296030fe9057f2d12df9d7d445e65 to your computer and use it in GitHub Desktop.
Save mejedi/dae296030fe9057f2d12df9d7d445e65 to your computer and use it in GitHub Desktop.
/home/nickz/flamegraph.git/flamegraph -- go test -run=^$ -bench=. -v ./pkg/ebpf/mapgauge/
Display the source blob
Display the rendered blob
Raw
<?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="1894" onload="init(evt)" viewBox="0 0 1200 1894" 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="1894.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >/home/nickz/flamegraph.git/flamegraph -- go test -run=^$ -bench=. -v ./pkg/ebpf/mapgauge/</text>
<text id="details" x="10.00" y="1877" > </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="1877" > </text>
<g id="frames">
<g >
<title>arch_do_signal_or_restart (5,353,084,741 samples, 17.81%)</title><rect x="973.0" y="1733" width="210.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="976.01" y="1743.5" >arch_do_signal_or_restart</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8,376,908 samples, 0.03%)</title><rect x="513.5" y="1349" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="516.46" y="1359.5" ></text>
</g>
<g >
<title>radix_tree_node_ctor (3,870,553 samples, 0.01%)</title><rect x="836.4" y="1349" width="0.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="839.35" y="1359.5" ></text>
</g>
<g >
<title>[vet] (4,388,099 samples, 0.01%)</title><rect x="1187.9" y="325" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.88" y="335.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (3,105,606 samples, 0.01%)</title><rect x="702.7" y="1429" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="705.73" y="1439.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (125,525,820 samples, 0.42%)</title><rect x="785.8" y="1413" width="4.9" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="788.78" y="1423.5" ></text>
</g>
<g >
<title>free_unref_page_commit (3,130,095 samples, 0.01%)</title><rect x="990.1" y="1573" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="993.11" y="1583.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (34,655,929 samples, 0.12%)</title><rect x="63.0" y="1669" width="1.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="65.97" y="1679.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (4,599,936 samples, 0.02%)</title><rect x="962.3" y="1541" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="965.26" y="1551.5" ></text>
</g>
<g >
<title>rcu_core_si (5,914,546 samples, 0.02%)</title><rect x="1012.6" y="1525" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1015.64" y="1535.5" ></text>
</g>
<g >
<title>__free_slab (8,789,081 samples, 0.03%)</title><rect x="1103.4" y="1333" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1106.44" y="1343.5" ></text>
</g>
<g >
<title>__alloc_pages (4,577,901 samples, 0.02%)</title><rect x="945.8" y="1509" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="948.76" y="1519.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (2,999,464 samples, 0.01%)</title><rect x="1157.2" y="1477" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1160.23" y="1487.5" ></text>
</g>
<g >
<title>get_page_from_freelist (176,425,901 samples, 0.59%)</title><rect x="679.5" y="1317" width="6.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="682.49" y="1327.5" ></text>
</g>
<g >
<title>rcu_do_batch (13,411,985 samples, 0.04%)</title><rect x="1154.4" y="1429" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1157.37" y="1439.5" ></text>
</g>
<g >
<title>clear_page_erms (31,826,954 samples, 0.11%)</title><rect x="942.3" y="1461" width="1.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="945.28" y="1471.5" ></text>
</g>
<g >
<title>[vet] (3,639,564 samples, 0.01%)</title><rect x="1187.9" y="213" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.91" y="223.5" ></text>
</g>
<g >
<title>[mapgauge.test] (312,531,467 samples, 1.04%)</title><rect x="502.6" y="1461" width="12.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="505.56" y="1471.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,971,799 samples, 0.02%)</title><rect x="781.7" y="1253" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="784.72" y="1263.5" ></text>
</g>
<g >
<title>iput (8,670,159 samples, 0.03%)</title><rect x="36.1" y="1573" width="0.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="39.13" y="1583.5" ></text>
</g>
<g >
<title>rcu_do_batch (3,624,990 samples, 0.01%)</title><rect x="1147.4" y="1461" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1150.44" y="1471.5" ></text>
</g>
<g >
<title>vma_alloc_folio (9,182,651 samples, 0.03%)</title><rect x="938.9" y="1493" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="941.85" y="1503.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,970,294 samples, 0.01%)</title><rect x="1146.6" y="1541" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1149.64" y="1551.5" ></text>
</g>
<g >
<title>__do_softirq (4,335,552 samples, 0.01%)</title><rect x="1143.6" y="1477" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1146.64" y="1487.5" ></text>
</g>
<g >
<title>do_user_addr_fault (8,524,261 samples, 0.03%)</title><rect x="65.8" y="1685" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="68.75" y="1695.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (2,668,895 samples, 0.01%)</title><rect x="67.9" y="1525" width="0.1" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="70.91" y="1535.5" ></text>
</g>
<g >
<title>array_map_alloc_check (39,153,478 samples, 0.13%)</title><rect x="636.5" y="1509" width="1.5" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="639.48" y="1519.5" ></text>
</g>
<g >
<title>inc_slabs_node (3,838,726 samples, 0.01%)</title><rect x="768.8" y="1397" width="0.1" height="15.0" fill="rgb(238,154,36)" rx="2" ry="2" />
<text x="771.80" y="1407.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (3,786,869 samples, 0.01%)</title><rect x="939.6" y="1541" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="942.57" y="1551.5" ></text>
</g>
<g >
<title>[vet] (12,815,498 samples, 0.04%)</title><rect x="1187.5" y="1013" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.55" y="1023.5" ></text>
</g>
<g >
<title>[mapgauge.test] (8,721,394 samples, 0.03%)</title><rect x="964.4" y="1765" width="0.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="967.44" y="1775.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (38,757,743 samples, 0.13%)</title><rect x="1072.3" y="1509" width="1.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1075.26" y="1519.5" ></text>
</g>
<g >
<title>__d_instantiate (30,477,228 samples, 0.10%)</title><rect x="741.8" y="1429" width="1.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="744.81" y="1439.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (14,373,391 samples, 0.05%)</title><rect x="67.4" y="1733" width="0.6" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="70.45" y="1743.5" ></text>
</g>
<g >
<title>exc_page_fault (100,677,533 samples, 0.34%)</title><rect x="941.0" y="1621" width="4.0" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="944.04" y="1631.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (5,265,938 samples, 0.02%)</title><rect x="869.1" y="1461" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="872.10" y="1471.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (489,455,379 samples, 1.63%)</title><rect x="849.1" y="1477" width="19.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="852.12" y="1487.5" ></text>
</g>
<g >
<title>__alloc_pages (3,873,545 samples, 0.01%)</title><rect x="522.4" y="1349" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="525.43" y="1359.5" ></text>
</g>
<g >
<title>[compile] (5,648,718 samples, 0.02%)</title><rect x="10.9" y="1685" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.94" y="1695.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (3,093,002 samples, 0.01%)</title><rect x="523.0" y="1429" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="526.00" y="1439.5" ></text>
</g>
<g >
<title>vma_alloc_folio (5,261,385 samples, 0.02%)</title><rect x="961.8" y="1589" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="964.81" y="1599.5" ></text>
</g>
<g >
<title>clear_page_erms (3,704,696 samples, 0.01%)</title><rect x="961.8" y="1525" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="964.84" y="1535.5" ></text>
</g>
<g >
<title>[link] (2,847,968 samples, 0.01%)</title><rect x="67.3" y="1749" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="70.26" y="1759.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (5,039,681 samples, 0.02%)</title><rect x="948.7" y="1669" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="951.74" y="1679.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,443,711 samples, 0.01%)</title><rect x="937.9" y="1541" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="940.94" y="1551.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (4,620,307 samples, 0.02%)</title><rect x="1090.6" y="1477" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1093.59" y="1487.5" ></text>
</g>
<g >
<title>rcu_core (2,942,702 samples, 0.01%)</title><rect x="1129.8" y="1445" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1132.79" y="1455.5" ></text>
</g>
<g >
<title>__dentry_kill (4,010,884 samples, 0.01%)</title><rect x="1012.9" y="1621" width="0.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1015.87" y="1631.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (4,089,014 samples, 0.01%)</title><rect x="60.9" y="1525" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="63.90" y="1535.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (10,471,817 samples, 0.03%)</title><rect x="1157.6" y="1605" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1160.60" y="1615.5" ></text>
</g>
<g >
<title>__alloc_pages (6,201,013 samples, 0.02%)</title><rect x="520.4" y="1349" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="523.41" y="1359.5" ></text>
</g>
<g >
<title>entry_SYSRETQ_unsafe_stack (8,407,345 samples, 0.03%)</title><rect x="910.8" y="1573" width="0.3" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="913.79" y="1583.5" ></text>
</g>
<g >
<title>locks_remove_posix (50,076,550 samples, 0.17%)</title><rect x="986.3" y="1621" width="1.9" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="989.26" y="1631.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,486,366 samples, 0.02%)</title><rect x="65.8" y="1653" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="68.79" y="1663.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (14,373,391 samples, 0.05%)</title><rect x="67.4" y="1781" width="0.6" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="70.45" y="1791.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (4,513,452 samples, 0.02%)</title><rect x="64.2" y="1621" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="67.16" y="1631.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (5,932,910 samples, 0.02%)</title><rect x="962.8" y="1637" width="0.3" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="965.84" y="1647.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (3,894,746 samples, 0.01%)</title><rect x="947.3" y="1557" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="950.29" y="1567.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (3,552,395 samples, 0.01%)</title><rect x="1140.6" y="1509" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="1143.62" y="1519.5" ></text>
</g>
<g >
<title>cache_from_obj (9,196,641 samples, 0.03%)</title><rect x="1169.4" y="1605" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1172.40" y="1615.5" ></text>
</g>
<g >
<title>__do_softirq (15,239,748 samples, 0.05%)</title><rect x="1028.2" y="1541" width="0.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1031.25" y="1551.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (3,097,201 samples, 0.01%)</title><rect x="941.8" y="1493" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="944.82" y="1503.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,930,753 samples, 0.01%)</title><rect x="1144.3" y="1541" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1147.27" y="1551.5" ></text>
</g>
<g >
<title>[go] (359,094,505 samples, 1.20%)</title><rect x="20.0" y="1605" width="14.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="23.03" y="1615.5" ></text>
</g>
<g >
<title>__cond_resched (13,379,216 samples, 0.04%)</title><rect x="1012.3" y="1621" width="0.6" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="1015.35" y="1631.5" ></text>
</g>
<g >
<title>rcu_do_batch (20,486,781 samples, 0.07%)</title><rect x="1114.8" y="1477" width="0.8" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1117.76" y="1487.5" ></text>
</g>
<g >
<title>migrate_enable (25,937,908 samples, 0.09%)</title><rect x="587.6" y="1429" width="1.0" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="590.62" y="1439.5" ></text>
</g>
<g >
<title>___slab_alloc (8,374,097 samples, 0.03%)</title><rect x="836.2" y="1413" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="839.17" y="1423.5" ></text>
</g>
<g >
<title>[mapgauge.test] (157,353,721 samples, 0.52%)</title><rect x="965.1" y="1749" width="6.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="968.06" y="1759.5" ></text>
</g>
<g >
<title>do_sched_yield (7,916,354 samples, 0.03%)</title><rect x="960.0" y="1637" width="0.4" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="963.05" y="1647.5" ></text>
</g>
<g >
<title>[vet] (22,900,052 samples, 0.08%)</title><rect x="1187.3" y="1301" width="0.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.27" y="1311.5" ></text>
</g>
<g >
<title>rcu_core (9,432,208 samples, 0.03%)</title><rect x="1157.0" y="1509" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1159.98" y="1519.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (270,021,075 samples, 0.90%)</title><rect x="1144.4" y="1589" width="10.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1147.38" y="1599.5" ></text>
</g>
<g >
<title>[vet] (49,839,491 samples, 0.17%)</title><rect x="1186.5" y="1445" width="1.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1189.47" y="1455.5" ></text>
</g>
<g >
<title>__count_memcg_events (3,099,087 samples, 0.01%)</title><rect x="941.6" y="1493" width="0.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="944.58" y="1503.5" ></text>
</g>
<g >
<title>__handle_mm_fault (11,581,202 samples, 0.04%)</title><rect x="61.7" y="1573" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="64.71" y="1583.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,215,371 samples, 0.02%)</title><rect x="1174.1" y="1573" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1177.14" y="1583.5" ></text>
</g>
<g >
<title>do_anonymous_page (3,879,846 samples, 0.01%)</title><rect x="62.5" y="1557" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="65.48" y="1567.5" ></text>
</g>
<g >
<title>send_signal_locked (9,749,002 samples, 0.03%)</title><rect x="949.5" y="1573" width="0.4" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="952.48" y="1583.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,930,753 samples, 0.01%)</title><rect x="1144.3" y="1509" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1147.27" y="1519.5" ></text>
</g>
<g >
<title>[mapgauge.test] (446,422,082 samples, 1.49%)</title><rect x="498.6" y="1477" width="17.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="501.65" y="1487.5" ></text>
</g>
<g >
<title>rcu_core_si (25,182,934 samples, 0.08%)</title><rect x="1038.8" y="1525" width="1.0" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1041.85" y="1535.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (39,556,056 samples, 0.13%)</title><rect x="991.7" y="1493" width="1.6" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="994.75" y="1503.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (16,216,963 samples, 0.05%)</title><rect x="523.4" y="1525" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="526.39" y="1535.5" ></text>
</g>
<g >
<title>memcpy_orig (3,877,135 samples, 0.01%)</title><rect x="513.5" y="1237" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="516.54" y="1247.5" ></text>
</g>
<g >
<title>[vet] (14,231,561 samples, 0.05%)</title><rect x="1187.5" y="1125" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.55" y="1135.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (22,305,314 samples, 0.07%)</title><rect x="514.9" y="1461" width="0.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="517.89" y="1471.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (3,626,274 samples, 0.01%)</title><rect x="645.2" y="1493" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="648.16" y="1503.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (6,168,627 samples, 0.02%)</title><rect x="864.3" y="1429" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="867.28" y="1439.5" ></text>
</g>
<g >
<title>rcu_core (5,856,030 samples, 0.02%)</title><rect x="1169.5" y="1493" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1172.53" y="1503.5" ></text>
</g>
<g >
<title>__x64_sys_openat (5,954,704 samples, 0.02%)</title><rect x="30.9" y="1541" width="0.2" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="33.87" y="1551.5" ></text>
</g>
<g >
<title>__fput (2,684,487 samples, 0.01%)</title><rect x="31.5" y="1461" width="0.1" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="34.45" y="1471.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,914,546 samples, 0.02%)</title><rect x="1012.6" y="1589" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1015.64" y="1599.5" ></text>
</g>
<g >
<title>do_wp_page (9,289,600 samples, 0.03%)</title><rect x="520.7" y="1397" width="0.3" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="523.68" y="1407.5" ></text>
</g>
<g >
<title>_find_next_zero_bit (61,090,416 samples, 0.20%)</title><rect x="752.2" y="1461" width="2.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="755.17" y="1471.5" ></text>
</g>
<g >
<title>clear_page_erms (17,384,292 samples, 0.06%)</title><rect x="670.3" y="1269" width="0.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="673.29" y="1279.5" ></text>
</g>
<g >
<title>__handle_mm_fault (20,927,487 samples, 0.07%)</title><rect x="520.2" y="1429" width="0.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="523.22" y="1439.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,455,429 samples, 0.02%)</title><rect x="759.4" y="1333" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="762.40" y="1343.5" ></text>
</g>
<g >
<title>kernfs_file_read_iter (3,033,210 samples, 0.01%)</title><rect x="513.9" y="1285" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="516.87" y="1295.5" ></text>
</g>
<g >
<title>do_send_specific (8,514,017 samples, 0.03%)</title><rect x="965.9" y="1605" width="0.3" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="968.91" y="1615.5" ></text>
</g>
<g >
<title>rcu_do_batch (8,661,462 samples, 0.03%)</title><rect x="1166.0" y="1493" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1169.03" y="1503.5" ></text>
</g>
<g >
<title>[vet] (9,900,658 samples, 0.03%)</title><rect x="1187.7" y="949" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.66" y="959.5" ></text>
</g>
<g >
<title>tick_sched_timer (3,051,399 samples, 0.01%)</title><rect x="963.0" y="1621" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="965.95" y="1631.5" ></text>
</g>
<g >
<title>check_mem_access (3,103,111 samples, 0.01%)</title><rect x="522.8" y="1381" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="525.85" y="1391.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (268,716,074 samples, 0.89%)</title><rect x="849.4" y="1461" width="10.6" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="852.42" y="1471.5" ></text>
</g>
<g >
<title>vfs_read (792,743,960 samples, 2.64%)</title><rect x="845.6" y="1509" width="31.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="848.60" y="1519.5" >vf..</text>
</g>
<g >
<title>irqentry_exit (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1781" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1192.84" y="1791.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (4,656,650 samples, 0.02%)</title><rect x="729.2" y="1381" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="732.22" y="1391.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (39,878,623 samples, 0.13%)</title><rect x="1072.2" y="1525" width="1.6" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1075.22" y="1535.5" ></text>
</g>
<g >
<title>d_flags_for_inode (4,643,403 samples, 0.02%)</title><rect x="742.8" y="1413" width="0.2" height="15.0" fill="rgb(218,61,14)" rx="2" ry="2" />
<text x="745.82" y="1423.5" ></text>
</g>
<g >
<title>cap_capable (10,654,153 samples, 0.04%)</title><rect x="807.9" y="1461" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="810.94" y="1471.5" ></text>
</g>
<g >
<title>delete_from_page_cache_batch (6,466,657 samples, 0.02%)</title><rect x="36.2" y="1493" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="39.19" y="1503.5" ></text>
</g>
<g >
<title>exc_page_fault (163,564,706 samples, 0.54%)</title><rect x="953.2" y="1669" width="6.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="956.16" y="1679.5" ></text>
</g>
<g >
<title>[vet] (74,170,864 samples, 0.25%)</title><rect x="1185.7" y="1509" width="2.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1188.70" y="1519.5" ></text>
</g>
<g >
<title>path_lookupat (13,217,651 samples, 0.04%)</title><rect x="27.8" y="1365" width="0.5" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="30.78" y="1375.5" ></text>
</g>
<g >
<title>do_check_common (3,103,111 samples, 0.01%)</title><rect x="522.8" y="1413" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="525.85" y="1423.5" ></text>
</g>
<g >
<title>[link] (4,408,372 samples, 0.01%)</title><rect x="67.3" y="1765" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="70.26" y="1775.5" ></text>
</g>
<g >
<title>exit_files (379,818,702 samples, 1.26%)</title><rect x="975.4" y="1669" width="14.9" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="978.41" y="1679.5" ></text>
</g>
<g >
<title>rmqueue (12,139,635 samples, 0.04%)</title><rect x="527.1" y="1365" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="530.13" y="1375.5" ></text>
</g>
<g >
<title>kernfs_file_read_iter (5,336,358 samples, 0.02%)</title><rect x="513.5" y="1269" width="0.2" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="516.49" y="1279.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (10,105,517 samples, 0.03%)</title><rect x="992.4" y="1429" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="995.36" y="1439.5" ></text>
</g>
<g >
<title>do_send_sig_info (10,341,907 samples, 0.03%)</title><rect x="949.5" y="1589" width="0.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="952.45" y="1599.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,932,215 samples, 0.01%)</title><rect x="26.8" y="1285" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="29.75" y="1295.5" ></text>
</g>
<g >
<title>__alloc_pages (19,721,123 samples, 0.07%)</title><rect x="670.3" y="1301" width="0.7" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="673.26" y="1311.5" ></text>
</g>
<g >
<title>vfs_read (3,751,557 samples, 0.01%)</title><rect x="34.4" y="1541" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="37.41" y="1551.5" ></text>
</g>
<g >
<title>rcu_core (8,777,079 samples, 0.03%)</title><rect x="1136.1" y="1429" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1139.13" y="1439.5" ></text>
</g>
<g >
<title>rcu_core (2,932,550 samples, 0.01%)</title><rect x="1161.7" y="1509" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1164.69" y="1519.5" ></text>
</g>
<g >
<title>__unfreeze_partials (5,628,151 samples, 0.02%)</title><rect x="1174.4" y="1557" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1177.39" y="1567.5" ></text>
</g>
<g >
<title>rep_movs_alternative (3,047,386 samples, 0.01%)</title><rect x="589.9" y="1461" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="592.91" y="1471.5" ></text>
</g>
<g >
<title>x86_pmu_enable (2,601,856 samples, 0.01%)</title><rect x="969.1" y="1541" width="0.1" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="972.12" y="1551.5" ></text>
</g>
<g >
<title>dentry_free (547,247,426 samples, 1.82%)</title><rect x="1122.9" y="1589" width="21.5" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="1125.89" y="1599.5" >d..</text>
</g>
<g >
<title>strlen (14,438,273 samples, 0.05%)</title><rect x="749.3" y="1461" width="0.6" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="752.32" y="1471.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (22,686,043 samples, 0.08%)</title><rect x="1061.1" y="1541" width="0.9" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1064.09" y="1551.5" ></text>
</g>
<g >
<title>rcu_core_si (4,961,676 samples, 0.02%)</title><rect x="36.2" y="1381" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="39.19" y="1391.5" ></text>
</g>
<g >
<title>__rcu_read_lock (6,080,981 samples, 0.02%)</title><rect x="796.1" y="1397" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="799.08" y="1407.5" ></text>
</g>
<g >
<title>__folio_alloc (4,577,901 samples, 0.02%)</title><rect x="945.8" y="1525" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="948.76" y="1535.5" ></text>
</g>
<g >
<title>filemap_read (10,819,930 samples, 0.04%)</title><rect x="33.1" y="1477" width="0.4" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="36.11" y="1487.5" ></text>
</g>
<g >
<title>[unknown] (7,100,326 samples, 0.02%)</title><rect x="1183.3" y="1813" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="1186.25" y="1823.5" ></text>
</g>
<g >
<title>mmput (78,245,528 samples, 0.26%)</title><rect x="990.3" y="1653" width="3.1" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="993.32" y="1663.5" ></text>
</g>
<g >
<title>sched_clock_cpu (3,022,901 samples, 0.01%)</title><rect x="970.1" y="1573" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="973.14" y="1583.5" ></text>
</g>
<g >
<title>fd_install (50,205,263 samples, 0.17%)</title><rect x="823.2" y="1493" width="2.0" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="826.19" y="1503.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,914,546 samples, 0.02%)</title><rect x="1012.6" y="1557" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1015.64" y="1567.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,263,441 samples, 0.02%)</title><rect x="1016.3" y="1605" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1019.32" y="1615.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (9,885,449 samples, 0.03%)</title><rect x="528.1" y="1493" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="531.09" y="1503.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (3,012,555 samples, 0.01%)</title><rect x="907.5" y="1525" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="910.47" y="1535.5" ></text>
</g>
<g >
<title>do_mmap (4,673,686 samples, 0.02%)</title><rect x="514.6" y="1349" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="517.58" y="1359.5" ></text>
</g>
<g >
<title>ext4_map_blocks (3,380,750 samples, 0.01%)</title><rect x="35.4" y="1461" width="0.1" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="38.37" y="1471.5" ></text>
</g>
<g >
<title>__slab_free (3,558,390 samples, 0.01%)</title><rect x="1136.7" y="1397" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1139.66" y="1407.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,624,462 samples, 0.02%)</title><rect x="1156.6" y="1557" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1159.61" y="1567.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (4,155,862 samples, 0.01%)</title><rect x="44.0" y="1765" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="47.02" y="1775.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (9,826,075 samples, 0.03%)</title><rect x="939.4" y="1605" width="0.4" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="942.42" y="1615.5" ></text>
</g>
<g >
<title>__queue_work (9,729,407 samples, 0.03%)</title><rect x="1043.1" y="1589" width="0.4" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1046.14" y="1599.5" ></text>
</g>
<g >
<title>__folio_alloc (15,540,852 samples, 0.05%)</title><rect x="947.7" y="1541" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="950.68" y="1551.5" ></text>
</g>
<g >
<title>anon_inode_getfd (2,883,180,779 samples, 9.59%)</title><rect x="647.0" y="1493" width="113.2" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="650.03" y="1503.5" >anon_inode_ge..</text>
</g>
<g >
<title>wp_page_copy (10,818,652 samples, 0.04%)</title><rect x="63.6" y="1557" width="0.5" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="66.64" y="1567.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,992,068 samples, 0.01%)</title><rect x="1160.2" y="1445" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1163.21" y="1455.5" ></text>
</g>
<g >
<title>__folio_alloc (80,724,426 samples, 0.27%)</title><rect x="955.4" y="1557" width="3.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="958.41" y="1567.5" ></text>
</g>
<g >
<title>__alloc_pages (7,735,134 samples, 0.03%)</title><rect x="781.7" y="1269" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="784.69" y="1279.5" ></text>
</g>
<g >
<title>clear_page_erms (3,008,949 samples, 0.01%)</title><rect x="515.9" y="1269" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="518.94" y="1279.5" ></text>
</g>
<g >
<title>try_charge_memcg (2,948,607 samples, 0.01%)</title><rect x="698.2" y="1381" width="0.1" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="701.20" y="1391.5" ></text>
</g>
<g >
<title>do_syscall_64 (41,666,838 samples, 0.14%)</title><rect x="32.1" y="1573" width="1.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="35.14" y="1583.5" ></text>
</g>
<g >
<title>rmqueue_bulk (5,382,225 samples, 0.02%)</title><rect x="958.3" y="1477" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="961.28" y="1487.5" ></text>
</g>
<g >
<title>__irqentry_text_end (6,123,816 samples, 0.02%)</title><rect x="516.2" y="1477" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="519.18" y="1487.5" ></text>
</g>
<g >
<title>do_syscall_64 (9,226,470 samples, 0.03%)</title><rect x="514.4" y="1413" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="517.41" y="1423.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (37,533,931 samples, 0.12%)</title><rect x="1091.1" y="1445" width="1.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1094.06" y="1455.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (6,342,681 samples, 0.02%)</title><rect x="523.4" y="1493" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="526.39" y="1503.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,624,462 samples, 0.02%)</title><rect x="1156.6" y="1573" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1159.61" y="1583.5" ></text>
</g>
<g >
<title>[compile] (5,648,718 samples, 0.02%)</title><rect x="10.9" y="1669" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.94" y="1679.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (19,469,831 samples, 0.06%)</title><rect x="1182.5" y="1637" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1185.45" y="1647.5" ></text>
</g>
<g >
<title>refill_obj_stock (54,100,620 samples, 0.18%)</title><rect x="1140.9" y="1541" width="2.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1143.87" y="1551.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (19,536,479 samples, 0.07%)</title><rect x="959.7" y="1685" width="0.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="962.69" y="1695.5" ></text>
</g>
<g >
<title>__handle_mm_fault (2,621,759 samples, 0.01%)</title><rect x="33.3" y="1349" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="36.31" y="1359.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (13,630,607 samples, 0.05%)</title><rect x="965.8" y="1669" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="968.77" y="1679.5" ></text>
</g>
<g >
<title>kvfree (4,698,176 samples, 0.02%)</title><rect x="990.1" y="1637" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="993.07" y="1647.5" ></text>
</g>
<g >
<title>complete_signal (3,642,011 samples, 0.01%)</title><rect x="949.6" y="1541" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="952.64" y="1551.5" ></text>
</g>
<g >
<title>rw_verify_area (3,063,863 samples, 0.01%)</title><rect x="876.6" y="1493" width="0.1" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="879.61" y="1503.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (13,893,585 samples, 0.05%)</title><rect x="631.0" y="1493" width="0.5" height="15.0" fill="rgb(236,142,34)" rx="2" ry="2" />
<text x="634.00" y="1503.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (14,221,125 samples, 0.05%)</title><rect x="827.9" y="1493" width="0.5" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="830.86" y="1503.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,930,829 samples, 0.01%)</title><rect x="1157.9" y="1589" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1160.90" y="1599.5" ></text>
</g>
<g >
<title>kmem_cache_free (7,662,678 samples, 0.03%)</title><rect x="1028.4" y="1461" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1031.38" y="1471.5" ></text>
</g>
<g >
<title>collapse_huge_page (5,257,595 samples, 0.02%)</title><rect x="515.8" y="1333" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="518.85" y="1343.5" ></text>
</g>
<g >
<title>kmem_cache_free (3,993,412 samples, 0.01%)</title><rect x="1157.1" y="1461" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1160.07" y="1471.5" ></text>
</g>
<g >
<title>[link] (2,998,373 samples, 0.01%)</title><rect x="67.1" y="1781" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="70.09" y="1791.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,896,422 samples, 0.02%)</title><rect x="1181.9" y="1621" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1184.90" y="1631.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,486,366 samples, 0.02%)</title><rect x="65.8" y="1637" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="68.79" y="1647.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (2,502,267,173 samples, 8.33%)</title><rect x="649.1" y="1461" width="98.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="652.12" y="1471.5" >alloc_file_..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,258,257 samples, 0.02%)</title><rect x="1020.8" y="1605" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1023.75" y="1615.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (18,595,064 samples, 0.06%)</title><rect x="805.8" y="1477" width="0.7" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="808.78" y="1487.5" ></text>
</g>
<g >
<title>errseq_sample (21,879,456 samples, 0.07%)</title><rect x="745.1" y="1445" width="0.8" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="748.08" y="1455.5" ></text>
</g>
<g >
<title>rcu_core (2,888,185 samples, 0.01%)</title><rect x="1142.2" y="1429" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1145.22" y="1439.5" ></text>
</g>
<g >
<title>clear_page_erms (44,198,815 samples, 0.15%)</title><rect x="525.4" y="1365" width="1.7" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="528.40" y="1375.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (9,432,208 samples, 0.03%)</title><rect x="1157.0" y="1557" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1159.98" y="1567.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,710,793 samples, 0.01%)</title><rect x="11.6" y="1765" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="14.57" y="1775.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,970,294 samples, 0.01%)</title><rect x="1146.6" y="1525" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1149.64" y="1535.5" ></text>
</g>
<g >
<title>__kmalloc_node (4,657,773 samples, 0.02%)</title><rect x="759.2" y="1397" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="762.22" y="1407.5" ></text>
</g>
<g >
<title>do_user_addr_fault (4,217,182 samples, 0.01%)</title><rect x="31.8" y="1557" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="34.79" y="1567.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (14,168,628 samples, 0.05%)</title><rect x="66.3" y="1733" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="69.35" y="1743.5" ></text>
</g>
<g >
<title>[compile] (22,448,802 samples, 0.07%)</title><rect x="10.7" y="1765" width="0.8" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.66" y="1775.5" ></text>
</g>
<g >
<title>__do_softirq (2,925,965 samples, 0.01%)</title><rect x="1142.9" y="1445" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1145.88" y="1455.5" ></text>
</g>
<g >
<title>[vet] (8,557,614 samples, 0.03%)</title><rect x="1187.7" y="805" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.71" y="815.5" ></text>
</g>
<g >
<title>rcu_core (4,961,676 samples, 0.02%)</title><rect x="36.2" y="1365" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="39.19" y="1375.5" ></text>
</g>
<g >
<title>file_free_rcu (11,241,034 samples, 0.04%)</title><rect x="1046.3" y="1445" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1049.27" y="1455.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (19,226,168 samples, 0.06%)</title><rect x="732.0" y="1365" width="0.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="735.03" y="1375.5" ></text>
</g>
<g >
<title>shuffle_freelist (4,650,155 samples, 0.02%)</title><rect x="836.3" y="1365" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="839.32" y="1375.5" ></text>
</g>
<g >
<title>clear_page_erms (61,840,056 samples, 0.21%)</title><rect x="955.7" y="1509" width="2.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="958.74" y="1519.5" ></text>
</g>
<g >
<title>__rcu_read_lock (11,472,918 samples, 0.04%)</title><rect x="689.4" y="1397" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="692.38" y="1407.5" ></text>
</g>
<g >
<title>memset_orig (27,865,224 samples, 0.09%)</title><rect x="698.6" y="1413" width="1.0" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="701.56" y="1423.5" ></text>
</g>
<g >
<title>__alloc_pages (3,008,949 samples, 0.01%)</title><rect x="515.9" y="1301" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="518.94" y="1311.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (5,353,224,321 samples, 17.81%)</title><rect x="973.0" y="1765" width="210.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="976.01" y="1775.5" >exit_to_user_mode_prepare</text>
</g>
<g >
<title>[link] (2,847,968 samples, 0.01%)</title><rect x="67.3" y="1733" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="70.26" y="1743.5" ></text>
</g>
<g >
<title>[vet] (9,900,658 samples, 0.03%)</title><rect x="1187.7" y="933" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.66" y="943.5" ></text>
</g>
<g >
<title>[vet] (2,891,509 samples, 0.01%)</title><rect x="1187.9" y="37" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.94" y="47.5" ></text>
</g>
<g >
<title>__slab_free (5,737,602 samples, 0.02%)</title><rect x="1115.0" y="1429" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1118.00" y="1439.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,997,244 samples, 0.02%)</title><rect x="64.7" y="1605" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="67.75" y="1615.5" ></text>
</g>
<g >
<title>do_anonymous_page (24,509,734 samples, 0.08%)</title><rect x="516.8" y="1381" width="1.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="519.80" y="1391.5" ></text>
</g>
<g >
<title>bpf_map_put (32,997,183 samples, 0.11%)</title><rect x="1022.5" y="1621" width="1.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1025.54" y="1631.5" ></text>
</g>
<g >
<title>xas_descend (6,100,439 samples, 0.02%)</title><rect x="737.5" y="1365" width="0.3" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="740.54" y="1375.5" ></text>
</g>
<g >
<title>do_madvise (3,093,002 samples, 0.01%)</title><rect x="523.0" y="1461" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="526.00" y="1471.5" ></text>
</g>
<g >
<title>dput (1,096,936,477 samples, 3.65%)</title><rect x="1117.4" y="1621" width="43.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1120.37" y="1631.5" >dput</text>
</g>
<g >
<title>folio_add_lru (6,984,556 samples, 0.02%)</title><rect x="524.9" y="1413" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="527.85" y="1423.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4,734,209 samples, 0.02%)</title><rect x="1115.4" y="1461" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1118.38" y="1471.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (29,899,093 samples, 0.10%)</title><rect x="948.9" y="1669" width="1.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="951.94" y="1679.5" ></text>
</g>
<g >
<title>rcu_core (2,900,367 samples, 0.01%)</title><rect x="1164.1" y="1509" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1167.07" y="1519.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (306,650,396 samples, 1.02%)</title><rect x="592.8" y="1573" width="12.0" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="595.76" y="1583.5" ></text>
</g>
<g >
<title>free_slab (11,673,066 samples, 0.04%)</title><rect x="1106.7" y="1349" width="0.5" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1109.74" y="1359.5" ></text>
</g>
<g >
<title>_atomic_dec_and_lock (177,421,322 samples, 0.59%)</title><rect x="1147.9" y="1557" width="7.0" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1150.93" y="1567.5" ></text>
</g>
<g >
<title>__irqentry_text_end (9,262,345 samples, 0.03%)</title><rect x="940.6" y="1637" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="943.65" y="1647.5" ></text>
</g>
<g >
<title>__do_softirq (2,927,888 samples, 0.01%)</title><rect x="1015.3" y="1541" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1018.27" y="1551.5" ></text>
</g>
<g >
<title>[go] (6,182,064 samples, 0.02%)</title><rect x="25.4" y="1285" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.44" y="1295.5" ></text>
</g>
<g >
<title>__do_softirq (2,922,225 samples, 0.01%)</title><rect x="1169.3" y="1525" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1172.28" y="1535.5" ></text>
</g>
<g >
<title>exc_page_fault (2,898,452 samples, 0.01%)</title><rect x="36.8" y="1653" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="39.82" y="1663.5" ></text>
</g>
<g >
<title>[vet] (4,122,735 samples, 0.01%)</title><rect x="1183.3" y="1733" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1186.31" y="1743.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (4,562,614 samples, 0.02%)</title><rect x="672.3" y="1365" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="675.26" y="1375.5" ></text>
</g>
<g >
<title>do_madvise (6,020,625 samples, 0.02%)</title><rect x="515.8" y="1413" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="518.82" y="1423.5" ></text>
</g>
<g >
<title>[compile] (12,596,687 samples, 0.04%)</title><rect x="10.8" y="1717" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.83" y="1727.5" ></text>
</g>
<g >
<title>__get_random_u32_below (12,207,229 samples, 0.04%)</title><rect x="783.7" y="1349" width="0.5" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="786.72" y="1359.5" ></text>
</g>
<g >
<title>__irqentry_text_end (6,937,205 samples, 0.02%)</title><rect x="946.5" y="1669" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="949.47" y="1679.5" ></text>
</g>
<g >
<title>__alloc_pages (79,202,042 samples, 0.26%)</title><rect x="955.4" y="1541" width="3.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="958.41" y="1551.5" ></text>
</g>
<g >
<title>mapgauge.test (28,398,577,112 samples, 94.51%)</title><rect x="68.1" y="1829" width="1115.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="71.06" y="1839.5" >mapgauge.test</text>
</g>
<g >
<title>file_free_rcu (23,531,090 samples, 0.08%)</title><rect x="1021.0" y="1493" width="0.9" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1024.00" y="1503.5" ></text>
</g>
<g >
<title>idr_get_next (150,824,952 samples, 0.50%)</title><rect x="568.2" y="1429" width="5.9" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="571.21" y="1439.5" ></text>
</g>
<g >
<title>__sys_bpf (5,563,487,996 samples, 18.51%)</title><rect x="626.2" y="1525" width="218.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="629.17" y="1535.5" >__sys_bpf</text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (14,546,250 samples, 0.05%)</title><rect x="692.1" y="1381" width="0.6" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="695.13" y="1391.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,930,829 samples, 0.01%)</title><rect x="1157.9" y="1541" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1160.90" y="1551.5" ></text>
</g>
<g >
<title>free_unref_page (11,077,371 samples, 0.04%)</title><rect x="1106.8" y="1301" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1109.77" y="1311.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (11,508,199 samples, 0.04%)</title><rect x="1062.6" y="1541" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1065.57" y="1551.5" ></text>
</g>
<g >
<title>schedule (63,837,213 samples, 0.21%)</title><rect x="967.8" y="1621" width="2.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="970.78" y="1631.5" ></text>
</g>
<g >
<title>exit_mmap (78,245,528 samples, 0.26%)</title><rect x="990.3" y="1621" width="3.1" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="993.32" y="1631.5" ></text>
</g>
<g >
<title>[mapgauge.test] (165,582,979 samples, 0.55%)</title><rect x="507.7" y="1429" width="6.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="510.69" y="1439.5" ></text>
</g>
<g >
<title>__do_softirq (22,151,381 samples, 0.07%)</title><rect x="1114.7" y="1525" width="0.9" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1117.70" y="1535.5" ></text>
</g>
<g >
<title>kernfs_fop_read_iter (5,336,358 samples, 0.02%)</title><rect x="513.5" y="1285" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="516.49" y="1295.5" ></text>
</g>
<g >
<title>cache_from_obj (4,663,745 samples, 0.02%)</title><rect x="1124.3" y="1573" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1127.28" y="1583.5" ></text>
</g>
<g >
<title>[compile] (25,857,543 samples, 0.09%)</title><rect x="10.7" y="1813" width="1.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.66" y="1823.5" ></text>
</g>
<g >
<title>[vet] (12,815,498 samples, 0.04%)</title><rect x="1187.5" y="997" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.55" y="1007.5" ></text>
</g>
<g >
<title>zap_pte_range (4,667,386 samples, 0.02%)</title><rect x="67.8" y="1541" width="0.2" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="70.83" y="1551.5" ></text>
</g>
<g >
<title>idr_get_next (5,450,794 samples, 0.02%)</title><rect x="574.2" y="1445" width="0.2" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="577.20" y="1455.5" ></text>
</g>
<g >
<title>schedule (4,874,004 samples, 0.02%)</title><rect x="523.8" y="1429" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="526.78" y="1439.5" ></text>
</g>
<g >
<title>do_user_addr_fault (6,873,798 samples, 0.02%)</title><rect x="35.7" y="1605" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="38.68" y="1615.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (16,744,468 samples, 0.06%)</title><rect x="729.9" y="1381" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="732.86" y="1391.5" ></text>
</g>
<g >
<title>[mapgauge.test] (111,279,036 samples, 0.37%)</title><rect x="509.4" y="1365" width="4.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="512.42" y="1375.5" ></text>
</g>
<g >
<title>[go] (589,681,820 samples, 1.96%)</title><rect x="14.1" y="1717" width="23.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="17.09" y="1727.5" >[..</text>
</g>
<g >
<title>__schedule (3,036,480 samples, 0.01%)</title><rect x="43.5" y="1621" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="46.47" y="1631.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4,195,820 samples, 0.01%)</title><rect x="1136.3" y="1397" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1139.31" y="1407.5" ></text>
</g>
<g >
<title>alloc_charge_hpage (3,036,396 samples, 0.01%)</title><rect x="514.5" y="1285" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="517.47" y="1295.5" ></text>
</g>
<g >
<title>schedule (5,472,866 samples, 0.02%)</title><rect x="960.1" y="1621" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="963.12" y="1631.5" ></text>
</g>
<g >
<title>[vet] (26,509,130 samples, 0.09%)</title><rect x="1187.2" y="1317" width="1.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.18" y="1327.5" ></text>
</g>
<g >
<title>rcu_core_si (5,874,845 samples, 0.02%)</title><rect x="1167.9" y="1509" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1170.94" y="1519.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,925,965 samples, 0.01%)</title><rect x="1142.9" y="1509" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1145.88" y="1519.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (14,025,832 samples, 0.05%)</title><rect x="1103.8" y="1397" width="0.6" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1106.83" y="1407.5" ></text>
</g>
<g >
<title>__schedule (4,212,423 samples, 0.01%)</title><rect x="523.8" y="1413" width="0.1" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="526.78" y="1423.5" ></text>
</g>
<g >
<title>[mapgauge.test] (16,633,138,756 samples, 55.35%)</title><rect x="287.1" y="1621" width="653.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="290.12" y="1631.5" >[mapgauge.test]</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7,747,539 samples, 0.03%)</title><rect x="522.8" y="1509" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="525.85" y="1519.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3,938,344 samples, 0.01%)</title><rect x="1097.1" y="1509" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="1100.10" y="1519.5" ></text>
</g>
<g >
<title>__free_pages (3,917,297 samples, 0.01%)</title><rect x="990.1" y="1605" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="993.11" y="1615.5" ></text>
</g>
<g >
<title>rcu_core (5,914,546 samples, 0.02%)</title><rect x="1012.6" y="1509" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1015.64" y="1519.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (3,854,703 samples, 0.01%)</title><rect x="991.6" y="1493" width="0.1" height="15.0" fill="rgb(226,100,24)" rx="2" ry="2" />
<text x="994.60" y="1503.5" ></text>
</g>
<g >
<title>exc_page_fault (27,292,362 samples, 0.09%)</title><rect x="961.7" y="1685" width="1.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="964.74" y="1695.5" ></text>
</g>
<g >
<title>idr_get_next_ul (4,542,284 samples, 0.02%)</title><rect x="868.1" y="1445" width="0.2" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="871.07" y="1455.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5,056,624 samples, 0.02%)</title><rect x="949.9" y="1637" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="952.91" y="1647.5" ></text>
</g>
<g >
<title>wp_page_copy (3,114,857 samples, 0.01%)</title><rect x="591.8" y="1461" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="594.83" y="1471.5" ></text>
</g>
<g >
<title>security_bpf_map (9,340,962 samples, 0.03%)</title><rect x="839.9" y="1493" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="842.91" y="1503.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3,648,506 samples, 0.01%)</title><rect x="592.2" y="1525" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="595.16" y="1535.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,930,753 samples, 0.01%)</title><rect x="1144.3" y="1525" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1147.27" y="1535.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,849,561 samples, 0.01%)</title><rect x="63.9" y="1541" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="66.91" y="1551.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,927,306 samples, 0.01%)</title><rect x="1138.6" y="1397" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1141.62" y="1407.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (391,558,223 samples, 1.30%)</title><rect x="574.4" y="1461" width="15.4" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="577.41" y="1471.5" ></text>
</g>
<g >
<title>__cond_resched (3,104,836 samples, 0.01%)</title><rect x="718.8" y="1397" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="721.80" y="1407.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,888,185 samples, 0.01%)</title><rect x="1142.2" y="1493" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1145.22" y="1503.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,096,897 samples, 0.01%)</title><rect x="523.3" y="1493" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="526.27" y="1503.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,942,702 samples, 0.01%)</title><rect x="1129.8" y="1541" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1132.79" y="1551.5" ></text>
</g>
<g >
<title>mod_memcg_state (4,641,521 samples, 0.02%)</title><rect x="1142.6" y="1493" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1145.59" y="1503.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (33,803,021 samples, 0.11%)</title><rect x="1092.9" y="1557" width="1.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1095.87" y="1567.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (3,093,002 samples, 0.01%)</title><rect x="523.0" y="1477" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="526.00" y="1487.5" ></text>
</g>
<g >
<title>do_syscall_64 (14,797,690 samples, 0.05%)</title><rect x="67.4" y="1797" width="0.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="70.43" y="1807.5" ></text>
</g>
<g >
<title>do_wp_page (3,781,435 samples, 0.01%)</title><rect x="527.7" y="1445" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="530.70" y="1455.5" ></text>
</g>
<g >
<title>mod_objcg_state (24,555,704 samples, 0.08%)</title><rect x="723.9" y="1381" width="1.0" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="726.91" y="1391.5" ></text>
</g>
<g >
<title>[vet] (2,891,509 samples, 0.01%)</title><rect x="1187.9" y="53" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.94" y="63.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (3,124,989 samples, 0.01%)</title><rect x="947.5" y="1525" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="950.47" y="1535.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (88,637,936 samples, 0.29%)</title><rect x="692.9" y="1397" width="3.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="695.92" y="1407.5" ></text>
</g>
<g >
<title>exc_page_fault (8,031,011 samples, 0.03%)</title><rect x="65.2" y="1685" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="68.21" y="1695.5" ></text>
</g>
<g >
<title>_raw_spin_lock (32,728,426 samples, 0.11%)</title><rect x="1155.5" y="1605" width="1.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1158.51" y="1615.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (13,724,371 samples, 0.05%)</title><rect x="1122.4" y="1541" width="0.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1125.35" y="1551.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (315,697,728 samples, 1.05%)</title><rect x="576.2" y="1445" width="12.4" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="579.24" y="1455.5" ></text>
</g>
<g >
<title>do_fault (10,443,070 samples, 0.03%)</title><rect x="66.5" y="1637" width="0.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="69.47" y="1647.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,786,931 samples, 0.01%)</title><rect x="723.8" y="1381" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="726.76" y="1391.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,873,798 samples, 0.02%)</title><rect x="35.7" y="1589" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="38.68" y="1599.5" ></text>
</g>
<g >
<title>[go] (65,242,027 samples, 0.22%)</title><rect x="24.5" y="1477" width="2.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="27.48" y="1487.5" ></text>
</g>
<g >
<title>do_anonymous_page (116,766,899 samples, 0.39%)</title><rect x="954.0" y="1589" width="4.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="957.00" y="1599.5" ></text>
</g>
<g >
<title>put_files_struct (376,676,639 samples, 1.25%)</title><rect x="975.5" y="1653" width="14.8" height="15.0" fill="rgb(253,225,53)" rx="2" ry="2" />
<text x="978.53" y="1663.5" ></text>
</g>
<g >
<title>psi_task_switch (8,697,184 samples, 0.03%)</title><rect x="969.8" y="1589" width="0.3" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="972.75" y="1599.5" ></text>
</g>
<g >
<title>ihold (3,860,761 samples, 0.01%)</title><rect x="760.1" y="1477" width="0.1" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="763.09" y="1487.5" ></text>
</g>
<g >
<title>[mapgauge.test] (22,820,624,148 samples, 75.94%)</title><rect x="68.1" y="1797" width="896.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="71.09" y="1807.5" >[mapgauge.test]</text>
</g>
<g >
<title>migrate_enable (11,578,048 samples, 0.04%)</title><rect x="875.6" y="1445" width="0.5" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="878.61" y="1455.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (3,736,567 samples, 0.01%)</title><rect x="941.8" y="1525" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="944.82" y="1535.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,258,257 samples, 0.02%)</title><rect x="1020.8" y="1589" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1023.75" y="1599.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (14,514,140 samples, 0.05%)</title><rect x="646.5" y="1493" width="0.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="649.46" y="1503.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,922,225 samples, 0.01%)</title><rect x="1169.3" y="1573" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1172.28" y="1583.5" ></text>
</g>
<g >
<title>__folio_alloc (3,871,280 samples, 0.01%)</title><rect x="520.9" y="1349" width="0.1" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="523.86" y="1359.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (40,813,198 samples, 0.14%)</title><rect x="528.9" y="1477" width="1.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="531.94" y="1487.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (6,992,166 samples, 0.02%)</title><rect x="941.5" y="1525" width="0.3" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="944.49" y="1535.5" ></text>
</g>
<g >
<title>get_random_u32 (5,408,544 samples, 0.02%)</title><rect x="718.5" y="1317" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="721.50" y="1327.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (5,449,116 samples, 0.02%)</title><rect x="567.3" y="1429" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="570.30" y="1439.5" ></text>
</g>
<g >
<title>file_free_rcu (3,512,152 samples, 0.01%)</title><rect x="1013.6" y="1477" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1016.62" y="1487.5" ></text>
</g>
<g >
<title>__free_slab (3,374,061 samples, 0.01%)</title><rect x="1174.5" y="1509" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1177.45" y="1519.5" ></text>
</g>
<g >
<title>[link] (514,818,279 samples, 1.71%)</title><rect x="46.1" y="1733" width="20.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="49.10" y="1743.5" ></text>
</g>
<g >
<title>[vet] (12,097,962 samples, 0.04%)</title><rect x="1187.6" y="981" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.58" y="991.5" ></text>
</g>
<g >
<title>[unknown] (4,408,372 samples, 0.01%)</title><rect x="67.3" y="1797" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="70.26" y="1807.5" ></text>
</g>
<g >
<title>clear_page_erms (11,523,360 samples, 0.04%)</title><rect x="591.3" y="1397" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="594.26" y="1407.5" ></text>
</g>
<g >
<title>get_page_from_freelist (12,927,149 samples, 0.04%)</title><rect x="517.3" y="1317" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="520.26" y="1327.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (21,938,562 samples, 0.07%)</title><rect x="1046.2" y="1573" width="0.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1049.25" y="1583.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,087,498 samples, 0.01%)</title><rect x="1047.2" y="1445" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1050.25" y="1455.5" ></text>
</g>
<g >
<title>bpf_seq_write (13,937,460 samples, 0.05%)</title><rect x="874.8" y="1429" width="0.6" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="877.82" y="1439.5" ></text>
</g>
<g >
<title>kmem_cache_free (13,887,847 samples, 0.05%)</title><rect x="1021.4" y="1477" width="0.5" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1024.36" y="1487.5" ></text>
</g>
<g >
<title>discard_slab (11,673,066 samples, 0.04%)</title><rect x="1106.7" y="1365" width="0.5" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1109.74" y="1375.5" ></text>
</g>
<g >
<title>array_map_free_timers (5,856,401 samples, 0.02%)</title><rect x="1038.6" y="1605" width="0.2" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="1041.60" y="1615.5" ></text>
</g>
<g >
<title>[link] (71,350,332 samples, 0.24%)</title><rect x="59.5" y="1653" width="2.8" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="62.50" y="1663.5" ></text>
</g>
<g >
<title>[mapgauge.test] (16,909,076 samples, 0.06%)</title><rect x="965.6" y="1685" width="0.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="968.64" y="1695.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,914,546 samples, 0.02%)</title><rect x="1012.6" y="1573" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1015.64" y="1583.5" ></text>
</g>
<g >
<title>[vet] (13,471,434 samples, 0.04%)</title><rect x="1187.5" y="1061" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.55" y="1071.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,898,452 samples, 0.01%)</title><rect x="36.8" y="1669" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="39.82" y="1679.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (54,666,014 samples, 0.18%)</title><rect x="730.8" y="1381" width="2.1" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="733.78" y="1391.5" ></text>
</g>
<g >
<title>do_user_addr_fault (18,436,187 samples, 0.06%)</title><rect x="522.0" y="1477" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="524.95" y="1487.5" ></text>
</g>
<g >
<title>unmap_page_range (14,128,559 samples, 0.05%)</title><rect x="67.5" y="1573" width="0.5" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="70.46" y="1583.5" ></text>
</g>
<g >
<title>file_free_rcu (3,562,762 samples, 0.01%)</title><rect x="1169.5" y="1461" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1172.53" y="1471.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (194,553,516 samples, 0.65%)</title><rect x="951.9" y="1685" width="7.7" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="954.94" y="1695.5" ></text>
</g>
<g >
<title>consume_stock (6,120,879 samples, 0.02%)</title><rect x="799.9" y="1381" width="0.2" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="802.90" y="1391.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (5,353,224,321 samples, 17.81%)</title><rect x="973.0" y="1749" width="210.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="976.01" y="1759.5" >exit_to_user_mode_loop</text>
</g>
<g >
<title>irq_exit_rcu (16,323,299 samples, 0.05%)</title><rect x="1136.5" y="1525" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1139.48" y="1535.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,856,030 samples, 0.02%)</title><rect x="1169.5" y="1573" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1172.53" y="1583.5" ></text>
</g>
<g >
<title>__alloc_pages (3,849,561 samples, 0.01%)</title><rect x="63.9" y="1509" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="66.91" y="1519.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="597" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="607.5" ></text>
</g>
<g >
<title>rcu_core_si (2,927,888 samples, 0.01%)</title><rect x="1015.3" y="1525" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1018.27" y="1535.5" ></text>
</g>
<g >
<title>__do_softirq (2,930,753 samples, 0.01%)</title><rect x="1144.3" y="1493" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1147.27" y="1503.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,859,670 samples, 0.01%)</title><rect x="515.5" y="1285" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="518.52" y="1295.5" ></text>
</g>
<g >
<title>do_user_addr_fault (18,507,576 samples, 0.06%)</title><rect x="515.0" y="1429" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="517.98" y="1439.5" ></text>
</g>
<g >
<title>rcu_core_si (5,199,510 samples, 0.02%)</title><rect x="974.5" y="1573" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="977.50" y="1583.5" ></text>
</g>
<g >
<title>do_syscall_64 (13,504,028 samples, 0.04%)</title><rect x="26.5" y="1445" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="29.49" y="1455.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,215,371 samples, 0.02%)</title><rect x="1174.1" y="1461" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1177.14" y="1471.5" ></text>
</g>
<g >
<title>handle_mm_fault (7,987,621 samples, 0.03%)</title><rect x="65.8" y="1669" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="68.75" y="1679.5" ></text>
</g>
<g >
<title>security_file_alloc (6,028,269 samples, 0.02%)</title><rect x="701.2" y="1413" width="0.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="704.23" y="1423.5" ></text>
</g>
<g >
<title>memcpy_orig (8,508,913 samples, 0.03%)</title><rect x="874.8" y="1413" width="0.4" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="877.82" y="1423.5" ></text>
</g>
<g >
<title>rcu_do_batch (9,432,208 samples, 0.03%)</title><rect x="1157.0" y="1493" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1159.98" y="1503.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (4,598,369 samples, 0.02%)</title><rect x="955.1" y="1573" width="0.2" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="958.11" y="1583.5" ></text>
</g>
<g >
<title>__x64_sys_unlinkat (6,723,395 samples, 0.02%)</title><rect x="34.6" y="1573" width="0.2" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="37.56" y="1583.5" ></text>
</g>
<g >
<title>exit_mm (14,373,391 samples, 0.05%)</title><rect x="67.4" y="1669" width="0.6" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="70.45" y="1679.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,824,090 samples, 0.02%)</title><rect x="513.5" y="1333" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="516.49" y="1343.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (3,384,597 samples, 0.01%)</title><rect x="1111.2" y="1589" width="0.2" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1114.23" y="1599.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,582,646 samples, 0.02%)</title><rect x="515.8" y="1461" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="518.80" y="1471.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1765" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1192.84" y="1775.5" ></text>
</g>
<g >
<title>ksys_read (2,926,840 samples, 0.01%)</title><rect x="61.4" y="1557" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="64.38" y="1567.5" ></text>
</g>
<g >
<title>kmem_cache_free (3,038,024 samples, 0.01%)</title><rect x="1182.0" y="1477" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1184.97" y="1487.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (14,128,559 samples, 0.05%)</title><rect x="67.5" y="1557" width="0.5" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="70.46" y="1567.5" ></text>
</g>
<g >
<title>____fput (43,204,662 samples, 0.14%)</title><rect x="973.0" y="1669" width="1.7" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="976.01" y="1679.5" ></text>
</g>
<g >
<title>locks_remove_file (14,660,253 samples, 0.05%)</title><rect x="1161.2" y="1621" width="0.6" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="1164.23" y="1631.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (5,296,229 samples, 0.02%)</title><rect x="939.5" y="1557" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="942.51" y="1567.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,900,367 samples, 0.01%)</title><rect x="1164.1" y="1493" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1167.07" y="1503.5" ></text>
</g>
<g >
<title>[link] (2,846,068 samples, 0.01%)</title><rect x="67.1" y="1733" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="70.09" y="1743.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (83,769,733 samples, 0.28%)</title><rect x="967.0" y="1653" width="3.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="970.04" y="1663.5" ></text>
</g>
<g >
<title>exc_page_fault (2,887,820 samples, 0.01%)</title><rect x="1188.8" y="1525" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="1191.77" y="1535.5" ></text>
</g>
<g >
<title>__handle_mm_fault (87,037,421 samples, 0.29%)</title><rect x="524.5" y="1477" width="3.4" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="527.46" y="1487.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (7,558,146 samples, 0.03%)</title><rect x="939.5" y="1589" width="0.3" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="942.51" y="1599.5" ></text>
</g>
<g >
<title>__alloc_pages (180,322,987 samples, 0.60%)</title><rect x="679.3" y="1333" width="7.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="682.33" y="1343.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3,789,287 samples, 0.01%)</title><rect x="963.6" y="1669" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="966.61" y="1679.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (2,801,785 samples, 0.01%)</title><rect x="1047.5" y="1573" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1050.52" y="1583.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (40,198,253 samples, 0.13%)</title><rect x="1021.0" y="1621" width="1.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1023.96" y="1631.5" ></text>
</g>
<g >
<title>[go] (478,737,748 samples, 1.59%)</title><rect x="17.7" y="1653" width="18.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="20.73" y="1663.5" ></text>
</g>
<g >
<title>lookup_fast (3,500,299 samples, 0.01%)</title><rect x="28.2" y="1333" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="31.16" y="1343.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,914,546 samples, 0.02%)</title><rect x="1012.6" y="1605" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1015.64" y="1615.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,025,891 samples, 0.01%)</title><rect x="827.7" y="1477" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="830.74" y="1487.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (35,908,512 samples, 0.12%)</title><rect x="27.2" y="1477" width="1.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="30.22" y="1487.5" ></text>
</g>
<g >
<title>[vet] (122,014,383 samples, 0.41%)</title><rect x="1184.6" y="1669" width="4.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1187.61" y="1679.5" ></text>
</g>
<g >
<title>__slab_free (4,134,081 samples, 0.01%)</title><rect x="1122.5" y="1429" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1125.52" y="1439.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (19,323,644 samples, 0.06%)</title><rect x="1094.5" y="1573" width="0.8" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1097.52" y="1583.5" ></text>
</g>
<g >
<title>setup_object (4,593,545 samples, 0.02%)</title><rect x="784.2" y="1349" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="787.20" y="1359.5" ></text>
</g>
<g >
<title>exit_mm (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1653" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="1192.84" y="1663.5" ></text>
</g>
<g >
<title>do_syscall_64 (17,848,314 samples, 0.06%)</title><rect x="34.2" y="1589" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="37.19" y="1599.5" ></text>
</g>
<g >
<title>update_curr (4,179,785 samples, 0.01%)</title><rect x="968.3" y="1541" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="971.25" y="1551.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,911,397 samples, 0.02%)</title><rect x="1160.2" y="1477" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1163.21" y="1487.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,888,185 samples, 0.01%)</title><rect x="1142.2" y="1477" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1145.22" y="1487.5" ></text>
</g>
<g >
<title>do_madvise (4,552,784 samples, 0.02%)</title><rect x="514.4" y="1381" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="517.41" y="1391.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (10,048,248 samples, 0.03%)</title><rect x="877.0" y="1541" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="880.03" y="1551.5" ></text>
</g>
<g >
<title>handle_pte_fault (21,597,642 samples, 0.07%)</title><rect x="63.2" y="1589" width="0.9" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="66.22" y="1599.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,229,070 samples, 0.01%)</title><rect x="1147.4" y="1573" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1150.42" y="1583.5" ></text>
</g>
<g >
<title>memset_orig (7,716,681 samples, 0.03%)</title><rect x="717.2" y="1317" width="0.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="720.19" y="1327.5" ></text>
</g>
<g >
<title>shuffle_freelist (22,727,875 samples, 0.08%)</title><rect x="671.3" y="1317" width="0.9" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="674.28" y="1327.5" ></text>
</g>
<g >
<title>xas_descend (23,036,148 samples, 0.08%)</title><rect x="735.2" y="1349" width="0.9" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="738.19" y="1359.5" ></text>
</g>
<g >
<title>[vet] (31,726,686 samples, 0.11%)</title><rect x="1187.0" y="1397" width="1.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.01" y="1407.5" ></text>
</g>
<g >
<title>rcu_core (5,258,257 samples, 0.02%)</title><rect x="1020.8" y="1509" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1023.75" y="1519.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (9,822,515 samples, 0.03%)</title><rect x="1106.8" y="1269" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1109.82" y="1279.5" ></text>
</g>
<g >
<title>rcu_core_si (2,916,818 samples, 0.01%)</title><rect x="1177.2" y="1493" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1180.19" y="1503.5" ></text>
</g>
<g >
<title>allocate_slab (259,521,305 samples, 0.86%)</title><rect x="679.0" y="1365" width="10.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="681.98" y="1375.5" ></text>
</g>
<g >
<title>__rcu_read_lock (7,471,607 samples, 0.02%)</title><rect x="1129.6" y="1557" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1132.61" y="1567.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (3,212,761 samples, 0.01%)</title><rect x="946.2" y="1573" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="949.25" y="1583.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (9,233,158 samples, 0.03%)</title><rect x="1039.5" y="1477" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1042.47" y="1487.5" ></text>
</g>
<g >
<title>_raw_spin_lock (37,677,529 samples, 0.13%)</title><rect x="754.6" y="1461" width="1.4" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="757.57" y="1471.5" ></text>
</g>
<g >
<title>ext4_htree_fill_tree (2,691,679 samples, 0.01%)</title><rect x="26.5" y="1365" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="29.53" y="1375.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4,624,462 samples, 0.02%)</title><rect x="1156.6" y="1541" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1159.61" y="1551.5" ></text>
</g>
<g >
<title>setup_object (5,407,552 samples, 0.02%)</title><rect x="671.1" y="1317" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="674.07" y="1327.5" ></text>
</g>
<g >
<title>security_file_free (37,457,606 samples, 0.12%)</title><rect x="1180.7" y="1637" width="1.4" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1183.66" y="1647.5" ></text>
</g>
<g >
<title>[vet] (3,639,564 samples, 0.01%)</title><rect x="1187.9" y="181" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.91" y="191.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (7,721,439 samples, 0.03%)</title><rect x="575.9" y="1445" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="578.94" y="1455.5" ></text>
</g>
<g >
<title>ext4_evict_inode (4,501,780 samples, 0.01%)</title><rect x="34.6" y="1493" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="37.62" y="1503.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (29,386,523 samples, 0.10%)</title><rect x="845.6" y="1493" width="1.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="848.60" y="1503.5" ></text>
</g>
<g >
<title>get_page_from_freelist (44,113,591 samples, 0.15%)</title><rect x="942.2" y="1477" width="1.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="945.21" y="1487.5" ></text>
</g>
<g >
<title>btf_put (5,160,918 samples, 0.02%)</title><rect x="1111.7" y="1605" width="0.2" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="1114.65" y="1615.5" ></text>
</g>
<g >
<title>do_nanosleep (3,992,993 samples, 0.01%)</title><rect x="43.4" y="1653" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="46.43" y="1663.5" ></text>
</g>
<g >
<title>delete_node (9,341,799 samples, 0.03%)</title><rect x="1049.6" y="1541" width="0.4" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="1052.63" y="1551.5" ></text>
</g>
<g >
<title>irq_exit_rcu (13,724,371 samples, 0.05%)</title><rect x="1122.4" y="1557" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1125.35" y="1567.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (15,257,918 samples, 0.05%)</title><rect x="532.7" y="1461" width="0.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="535.71" y="1471.5" ></text>
</g>
<g >
<title>__kmalloc_node (20,817,219 samples, 0.07%)</title><rect x="716.7" y="1333" width="0.8" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="719.67" y="1343.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5,353,224,321 samples, 17.81%)</title><rect x="973.0" y="1781" width="210.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="976.01" y="1791.5" >syscall_exit_to_user_mode</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,631,116 samples, 0.01%)</title><rect x="965.7" y="1637" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="968.65" y="1647.5" ></text>
</g>
<g >
<title>exc_page_fault (30,801,244 samples, 0.10%)</title><rect x="590.9" y="1557" width="1.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="593.89" y="1567.5" ></text>
</g>
<g >
<title>queue_work_on (1,423,525,167 samples, 4.74%)</title><rect x="1055.3" y="1589" width="55.9" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="1058.33" y="1599.5" >queue..</text>
</g>
<g >
<title>irq_exit_rcu (8,777,079 samples, 0.03%)</title><rect x="1136.1" y="1493" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1139.13" y="1503.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,866,697 samples, 0.01%)</title><rect x="940.4" y="1605" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="943.37" y="1615.5" ></text>
</g>
<g >
<title>clear_page_erms (252,586,192 samples, 0.84%)</title><rect x="769.9" y="1317" width="10.0" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="772.94" y="1327.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,096,897 samples, 0.01%)</title><rect x="523.3" y="1525" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="526.27" y="1535.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (3,119,245 samples, 0.01%)</title><rect x="784.5" y="1413" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="787.49" y="1423.5" ></text>
</g>
<g >
<title>handle_pte_fault (17,731,441 samples, 0.06%)</title><rect x="515.0" y="1381" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="517.98" y="1391.5" ></text>
</g>
<g >
<title>asm (16,874,469 samples, 0.06%)</title><rect x="10.0" y="1829" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="13.00" y="1839.5" ></text>
</g>
<g >
<title>rcu_core (2,927,888 samples, 0.01%)</title><rect x="1015.3" y="1509" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1018.27" y="1519.5" ></text>
</g>
<g >
<title>__rcu_read_lock (27,846,473 samples, 0.09%)</title><rect x="718.9" y="1397" width="1.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="721.92" y="1407.5" ></text>
</g>
<g >
<title>__fpu_restore_sig (3,788,206 samples, 0.01%)</title><rect x="959.9" y="1605" width="0.1" height="15.0" fill="rgb(246,193,46)" rx="2" ry="2" />
<text x="962.90" y="1615.5" ></text>
</g>
<g >
<title>vma_alloc_folio (17,047,048 samples, 0.06%)</title><rect x="518.5" y="1349" width="0.7" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="521.53" y="1359.5" ></text>
</g>
<g >
<title>rcu_core (9,318,462 samples, 0.03%)</title><rect x="1132.9" y="1445" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1135.87" y="1455.5" ></text>
</g>
<g >
<title>[link] (578,539,372 samples, 1.93%)</title><rect x="44.3" y="1765" width="22.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="47.29" y="1775.5" >[..</text>
</g>
<g >
<title>ptep_clear_flush (2,997,588 samples, 0.01%)</title><rect x="527.7" y="1413" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="530.73" y="1423.5" ></text>
</g>
<g >
<title>security_d_instantiate (8,427,950 samples, 0.03%)</title><rect x="744.8" y="1429" width="0.3" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="747.75" y="1439.5" ></text>
</g>
<g >
<title>get_signal (14,373,391 samples, 0.05%)</title><rect x="67.4" y="1717" width="0.6" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="70.45" y="1727.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,175,845 samples, 0.01%)</title><rect x="1168.0" y="1445" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1170.99" y="1455.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5,690,619 samples, 0.02%)</title><rect x="523.4" y="1477" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="526.39" y="1487.5" ></text>
</g>
<g >
<title>kmem_cache_free (196,575,196 samples, 0.65%)</title><rect x="1169.8" y="1605" width="7.7" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1172.76" y="1615.5" ></text>
</g>
<g >
<title>__free_one_page (8,551,541 samples, 0.03%)</title><rect x="992.4" y="1413" width="0.4" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="995.42" y="1423.5" ></text>
</g>
<g >
<title>__mod_memcg_state (3,503,999 samples, 0.01%)</title><rect x="1142.6" y="1477" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1145.61" y="1487.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (3,069,774 samples, 0.01%)</title><rect x="724.7" y="1349" width="0.1" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="727.72" y="1359.5" ></text>
</g>
<g >
<title>clear_page_erms (3,074,888 samples, 0.01%)</title><rect x="63.4" y="1493" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="66.35" y="1503.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,577,182 samples, 0.03%)</title><rect x="60.8" y="1573" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="63.85" y="1583.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,856,030 samples, 0.02%)</title><rect x="1169.5" y="1589" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1172.53" y="1599.5" ></text>
</g>
<g >
<title>map_create (5,141,145,925 samples, 17.11%)</title><rect x="638.9" y="1509" width="201.9" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="641.94" y="1519.5" >map_create</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (9,318,462 samples, 0.03%)</title><rect x="1132.9" y="1541" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1135.87" y="1551.5" ></text>
</g>
<g >
<title>__alloc_pages (61,009,725 samples, 0.20%)</title><rect x="525.2" y="1397" width="2.4" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="528.25" y="1407.5" ></text>
</g>
<g >
<title>do_send_specific (13,042,289 samples, 0.04%)</title><rect x="949.3" y="1605" width="0.6" height="15.0" fill="rgb(207,13,3)" rx="2" ry="2" />
<text x="952.35" y="1615.5" ></text>
</g>
<g >
<title>new_slab (394,474,537 samples, 1.31%)</title><rect x="768.9" y="1397" width="15.5" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="771.95" y="1407.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (25,454,579 samples, 0.08%)</title><rect x="1089.2" y="1509" width="1.0" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1092.19" y="1519.5" ></text>
</g>
<g >
<title>mmap_region (3,894,104 samples, 0.01%)</title><rect x="514.6" y="1333" width="0.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="517.62" y="1343.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (45,006,050 samples, 0.15%)</title><rect x="696.5" y="1397" width="1.8" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="699.55" y="1407.5" ></text>
</g>
<g >
<title>[go] (8,862,345 samples, 0.03%)</title><rect x="25.4" y="1317" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.36" y="1327.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (1,081,540,409 samples, 3.60%)</title><rect x="763.0" y="1461" width="42.5" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="766.04" y="1471.5" >__b..</text>
</g>
<g >
<title>[vet] (27,421,893 samples, 0.09%)</title><rect x="1187.2" y="1333" width="1.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.15" y="1343.5" ></text>
</g>
<g >
<title>__folio_alloc (16,891,888 samples, 0.06%)</title><rect x="591.2" y="1445" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="594.17" y="1455.5" ></text>
</g>
<g >
<title>mmput (14,229,441 samples, 0.05%)</title><rect x="67.5" y="1653" width="0.5" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="70.45" y="1663.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,360,963 samples, 0.01%)</title><rect x="25.9" y="1397" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="28.86" y="1407.5" ></text>
</g>
<g >
<title>__dentry_kill (899,509,963 samples, 2.99%)</title><rect x="1120.0" y="1605" width="35.3" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="1123.01" y="1615.5" >__..</text>
</g>
<g >
<title>__rcu_read_lock (20,370,732 samples, 0.07%)</title><rect x="1013.0" y="1621" width="0.8" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1016.03" y="1631.5" ></text>
</g>
<g >
<title>iput (188,506,053 samples, 0.63%)</title><rect x="1147.6" y="1573" width="7.4" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1150.58" y="1583.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,033,210 samples, 0.01%)</title><rect x="513.9" y="1349" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="516.87" y="1359.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,440,046 samples, 0.02%)</title><rect x="64.4" y="1653" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="67.36" y="1663.5" ></text>
</g>
<g >
<title>rcu_core_si (2,930,753 samples, 0.01%)</title><rect x="1144.3" y="1477" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1147.27" y="1487.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,258,257 samples, 0.02%)</title><rect x="1020.8" y="1573" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1023.75" y="1583.5" ></text>
</g>
<g >
<title>[vet] (115,356,893 samples, 0.38%)</title><rect x="1184.7" y="1637" width="4.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1187.75" y="1647.5" ></text>
</g>
<g >
<title>wake_up_process (774,416,812 samples, 2.58%)</title><rect x="1062.5" y="1557" width="30.4" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1065.46" y="1567.5" >wa..</text>
</g>
<g >
<title>__irq_exit_rcu (20,239,862 samples, 0.07%)</title><rect x="1046.3" y="1525" width="0.8" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1049.27" y="1535.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (17,897,506 samples, 0.06%)</title><rect x="686.8" y="1349" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="689.75" y="1359.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,258,257 samples, 0.02%)</title><rect x="1020.8" y="1557" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1023.75" y="1567.5" ></text>
</g>
<g >
<title>__kmalloc_node (1,057,617,355 samples, 3.52%)</title><rect x="763.9" y="1445" width="41.5" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="766.85" y="1455.5" >__k..</text>
</g>
<g >
<title>setup_object (4,504,342 samples, 0.01%)</title><rect x="689.0" y="1333" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="691.99" y="1343.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (6,431,918 samples, 0.02%)</title><rect x="1140.6" y="1541" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="1143.56" y="1551.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,889,043 samples, 0.02%)</title><rect x="1013.6" y="1589" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1016.60" y="1599.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,914,853 samples, 0.01%)</title><rect x="1123.9" y="1573" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1126.91" y="1583.5" ></text>
</g>
<g >
<title>kmem_cache_free (7,267,747 samples, 0.02%)</title><rect x="1122.5" y="1445" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1125.49" y="1455.5" ></text>
</g>
<g >
<title>check_ptr_to_btf_access (3,103,111 samples, 0.01%)</title><rect x="522.8" y="1365" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="525.85" y="1375.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (3,265,958 samples, 0.01%)</title><rect x="1183.3" y="1685" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="1186.34" y="1695.5" ></text>
</g>
<g >
<title>evict (4,501,780 samples, 0.01%)</title><rect x="34.6" y="1509" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="37.62" y="1519.5" ></text>
</g>
<g >
<title>[asm] (4,715,416 samples, 0.02%)</title><rect x="10.1" y="1669" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="13.05" y="1679.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (5,796,501 samples, 0.02%)</title><rect x="1092.5" y="1461" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1095.53" y="1471.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,865,346 samples, 0.01%)</title><rect x="1162.3" y="1589" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1165.31" y="1599.5" ></text>
</g>
<g >
<title>[mapgauge.test] (16,232,599 samples, 0.05%)</title><rect x="972.1" y="1749" width="0.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="975.12" y="1759.5" ></text>
</g>
<g >
<title>handle_pte_fault (85,473,531 samples, 0.28%)</title><rect x="524.5" y="1461" width="3.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="527.53" y="1471.5" ></text>
</g>
<g >
<title>[vet] (62,480,526 samples, 0.21%)</title><rect x="1186.1" y="1477" width="2.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1189.13" y="1487.5" ></text>
</g>
<g >
<title>[vet] (3,639,564 samples, 0.01%)</title><rect x="1187.9" y="197" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.91" y="207.5" ></text>
</g>
<g >
<title>__free_slab (11,673,066 samples, 0.04%)</title><rect x="1106.7" y="1333" width="0.5" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1109.74" y="1343.5" ></text>
</g>
<g >
<title>hook_file_alloc_security (55,108,295 samples, 0.18%)</title><rect x="659.0" y="1397" width="2.1" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="661.97" y="1407.5" ></text>
</g>
<g >
<title>vma_alloc_folio (82,235,631 samples, 0.27%)</title><rect x="955.4" y="1573" width="3.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="958.36" y="1583.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (6,192,102 samples, 0.02%)</title><rect x="945.0" y="1637" width="0.3" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="948.02" y="1647.5" ></text>
</g>
<g >
<title>free_unref_page_commit (10,445,039 samples, 0.03%)</title><rect x="1106.8" y="1285" width="0.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="1109.79" y="1295.5" ></text>
</g>
<g >
<title>__irqentry_text_end (3,054,051 samples, 0.01%)</title><rect x="62.3" y="1653" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="65.30" y="1663.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (8,498,294 samples, 0.03%)</title><rect x="800.5" y="1429" width="0.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="803.53" y="1439.5" ></text>
</g>
<g >
<title>__radix_tree_preload (22,315,944 samples, 0.07%)</title><rect x="838.9" y="1477" width="0.8" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="841.86" y="1487.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,849,561 samples, 0.01%)</title><rect x="63.9" y="1493" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="66.91" y="1503.5" ></text>
</g>
<g >
<title>__kmalloc_large_node (4,657,773 samples, 0.02%)</title><rect x="759.2" y="1381" width="0.2" height="15.0" fill="rgb(230,116,27)" rx="2" ry="2" />
<text x="762.22" y="1391.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (45,968,385 samples, 0.15%)</title><rect x="1043.9" y="1573" width="1.8" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1046.86" y="1583.5" ></text>
</g>
<g >
<title>rmqueue_bulk (9,195,156 samples, 0.03%)</title><rect x="716.1" y="1269" width="0.4" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="719.13" y="1279.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (102,853,255 samples, 0.34%)</title><rect x="966.7" y="1701" width="4.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="969.71" y="1711.5" ></text>
</g>
<g >
<title>handle_mm_fault (12,664,166 samples, 0.04%)</title><rect x="66.4" y="1685" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="69.38" y="1695.5" ></text>
</g>
<g >
<title>__slab_free (4,170,117 samples, 0.01%)</title><rect x="1046.5" y="1413" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1049.52" y="1423.5" ></text>
</g>
<g >
<title>__cond_resched (17,906,962 samples, 0.06%)</title><rect x="974.7" y="1669" width="0.7" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="977.70" y="1679.5" ></text>
</g>
<g >
<title>exit_mm (3,452,901 samples, 0.01%)</title><rect x="44.0" y="1669" width="0.2" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="47.02" y="1679.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,911,397 samples, 0.02%)</title><rect x="1160.2" y="1557" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1163.21" y="1567.5" ></text>
</g>
<g >
<title>get_signal (4,155,862 samples, 0.01%)</title><rect x="44.0" y="1717" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="47.02" y="1727.5" ></text>
</g>
<g >
<title>rcu_core_si (4,335,552 samples, 0.01%)</title><rect x="1143.6" y="1461" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1146.64" y="1471.5" ></text>
</g>
<g >
<title>iterate_dir (3,884,732 samples, 0.01%)</title><rect x="26.5" y="1413" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="29.49" y="1423.5" ></text>
</g>
<g >
<title>do_group_exit (4,155,862 samples, 0.01%)</title><rect x="44.0" y="1701" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="47.02" y="1711.5" ></text>
</g>
<g >
<title>madvise_collapse (4,552,784 samples, 0.02%)</title><rect x="514.4" y="1333" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="517.41" y="1343.5" ></text>
</g>
<g >
<title>update_cfs_group (3,110,141 samples, 0.01%)</title><rect x="968.6" y="1557" width="0.2" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="971.64" y="1567.5" ></text>
</g>
<g >
<title>[vet] (102,948,414 samples, 0.34%)</title><rect x="1185.1" y="1605" width="4.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1188.10" y="1615.5" ></text>
</g>
<g >
<title>__kmalloc_node (33,874,538 samples, 0.11%)</title><rect x="781.2" y="1349" width="1.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="784.21" y="1359.5" ></text>
</g>
<g >
<title>rcu_core (15,239,748 samples, 0.05%)</title><rect x="1028.2" y="1509" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1031.25" y="1519.5" ></text>
</g>
<g >
<title>[link] (2,998,373 samples, 0.01%)</title><rect x="67.1" y="1749" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="70.09" y="1759.5" ></text>
</g>
<g >
<title>[mapgauge.test] (157,267,266 samples, 0.52%)</title><rect x="965.1" y="1733" width="6.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="968.06" y="1743.5" ></text>
</g>
<g >
<title>[vet] (5,794,601 samples, 0.02%)</title><rect x="1187.8" y="437" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.82" y="447.5" ></text>
</g>
<g >
<title>handle_mm_fault (4,631,122 samples, 0.02%)</title><rect x="62.5" y="1605" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="65.48" y="1615.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (6,136,123 samples, 0.02%)</title><rect x="699.6" y="1413" width="0.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="702.65" y="1423.5" ></text>
</g>
<g >
<title>alloc_fdtable (10,113,202 samples, 0.03%)</title><rect x="759.2" y="1429" width="0.4" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="762.22" y="1439.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (11,425,644 samples, 0.04%)</title><rect x="1180.1" y="1637" width="0.5" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1183.12" y="1647.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (3,826,585 samples, 0.01%)</title><rect x="655.7" y="1413" width="0.1" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="658.66" y="1423.5" ></text>
</g>
<g >
<title>__anon_inode_getfile (2,597,826,001 samples, 8.65%)</title><rect x="647.9" y="1477" width="102.0" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="650.87" y="1487.5" >__anon_inode..</text>
</g>
<g >
<title>migrate_enable (3,133,867 samples, 0.01%)</title><rect x="876.4" y="1461" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="879.42" y="1471.5" ></text>
</g>
<g >
<title>[mapgauge.test] (153,160,733 samples, 0.51%)</title><rect x="965.2" y="1717" width="6.0" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="968.19" y="1727.5" ></text>
</g>
<g >
<title>radix_tree_node_rcu_free (20,069,496 samples, 0.07%)</title><rect x="1106.5" y="1445" width="0.7" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1109.46" y="1455.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,932,550 samples, 0.01%)</title><rect x="1161.7" y="1573" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1164.69" y="1583.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (21,598,525 samples, 0.07%)</title><rect x="716.7" y="1349" width="0.8" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="719.67" y="1359.5" ></text>
</g>
<g >
<title>_get_random_bytes (3,845,023 samples, 0.01%)</title><rect x="718.6" y="1301" width="0.1" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="721.56" y="1311.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (5,562,635 samples, 0.02%)</title><rect x="29.1" y="1477" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="32.10" y="1487.5" ></text>
</g>
<g >
<title>exc_page_fault (3,977,790 samples, 0.01%)</title><rect x="33.3" y="1397" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="36.31" y="1407.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,927,888 samples, 0.01%)</title><rect x="1015.3" y="1557" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1018.27" y="1567.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,678,192 samples, 0.02%)</title><rect x="1180.4" y="1621" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1183.39" y="1631.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,927,804 samples, 0.02%)</title><rect x="716.8" y="1237" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="719.76" y="1247.5" ></text>
</g>
<g >
<title>handle_mm_fault (16,719,897 samples, 0.06%)</title><rect x="938.6" y="1557" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="941.62" y="1567.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,215,371 samples, 0.02%)</title><rect x="1174.1" y="1557" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1177.14" y="1567.5" ></text>
</g>
<g >
<title>__mod_memcg_state (11,308,705 samples, 0.04%)</title><rect x="799.2" y="1365" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="802.19" y="1375.5" ></text>
</g>
<g >
<title>__folio_alloc (6,978,979 samples, 0.02%)</title><rect x="520.4" y="1365" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="523.41" y="1375.5" ></text>
</g>
<g >
<title>handle_pte_fault (26,277,766 samples, 0.09%)</title><rect x="947.3" y="1589" width="1.0" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="950.29" y="1599.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,977,790 samples, 0.01%)</title><rect x="33.3" y="1381" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="36.31" y="1391.5" ></text>
</g>
<g >
<title>__fput (8,190,571 samples, 0.03%)</title><rect x="1182.1" y="1653" width="0.4" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1185.13" y="1663.5" ></text>
</g>
<g >
<title>rcu_do_batch (8,777,079 samples, 0.03%)</title><rect x="1136.1" y="1413" width="0.4" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1139.13" y="1423.5" ></text>
</g>
<g >
<title>clear_page_erms (6,927,804 samples, 0.02%)</title><rect x="716.8" y="1221" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="719.76" y="1231.5" ></text>
</g>
<g >
<title>[go] (36,734,869 samples, 0.12%)</title><rect x="24.8" y="1445" width="1.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="27.82" y="1455.5" ></text>
</g>
<g >
<title>__folio_alloc (4,469,035 samples, 0.01%)</title><rect x="522.0" y="1381" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="525.04" y="1391.5" ></text>
</g>
<g >
<title>[go] (116,331,980 samples, 0.39%)</title><rect x="24.2" y="1493" width="4.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="27.17" y="1503.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (5,331,075 samples, 0.02%)</title><rect x="959.3" y="1621" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="962.34" y="1631.5" ></text>
</g>
<g >
<title>apparmor_capable (100,125,776 samples, 0.33%)</title><rect x="818.3" y="1461" width="3.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="821.30" y="1471.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,942,164 samples, 0.01%)</title><rect x="1178.7" y="1621" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1181.75" y="1631.5" ></text>
</g>
<g >
<title>__do_softirq (4,229,070 samples, 0.01%)</title><rect x="1147.4" y="1509" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1150.42" y="1519.5" ></text>
</g>
<g >
<title>lru_gen_del_folio.constprop.0 (10,081,126 samples, 0.03%)</title><rect x="992.8" y="1461" width="0.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="995.85" y="1471.5" ></text>
</g>
<g >
<title>__do_softirq (2,930,829 samples, 0.01%)</title><rect x="1157.9" y="1525" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1160.90" y="1535.5" ></text>
</g>
<g >
<title>restore_sigcontext (3,788,206 samples, 0.01%)</title><rect x="959.9" y="1637" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="962.90" y="1647.5" ></text>
</g>
<g >
<title>rcu_core_si (2,900,367 samples, 0.01%)</title><rect x="1164.1" y="1525" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1167.07" y="1535.5" ></text>
</g>
<g >
<title>folio_add_lru (3,736,567 samples, 0.01%)</title><rect x="941.8" y="1509" width="0.2" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="944.82" y="1519.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,973,850 samples, 0.01%)</title><rect x="1183.3" y="1717" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1186.32" y="1727.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (9,318,462 samples, 0.03%)</title><rect x="1132.9" y="1525" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1135.87" y="1535.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (9,432,208 samples, 0.03%)</title><rect x="1157.0" y="1589" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1159.98" y="1599.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (6,314,190 samples, 0.02%)</title><rect x="523.7" y="1445" width="0.3" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="526.73" y="1455.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (6,157,786 samples, 0.02%)</title><rect x="561.5" y="1445" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="564.46" y="1455.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,886,507 samples, 0.01%)</title><rect x="62.0" y="1461" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="65.01" y="1471.5" ></text>
</g>
<g >
<title>rcu_core_si (15,239,748 samples, 0.05%)</title><rect x="1028.2" y="1525" width="0.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1031.25" y="1535.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="581" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="591.5" ></text>
</g>
<g >
<title>generic_file_read_iter (10,819,930 samples, 0.04%)</title><rect x="33.1" y="1493" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="36.11" y="1503.5" ></text>
</g>
<g >
<title>__mod_memcg_state (4,650,952 samples, 0.02%)</title><rect x="698.0" y="1349" width="0.2" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="700.99" y="1359.5" ></text>
</g>
<g >
<title>[vet] (7,214,219 samples, 0.02%)</title><rect x="1187.8" y="549" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.77" y="559.5" ></text>
</g>
<g >
<title>truncate_inode_pages_range (7,942,298 samples, 0.03%)</title><rect x="36.2" y="1509" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="39.16" y="1519.5" ></text>
</g>
<g >
<title>handle_pte_fault (6,873,798 samples, 0.02%)</title><rect x="35.7" y="1557" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="38.68" y="1567.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (3,883,360 samples, 0.01%)</title><rect x="672.4" y="1381" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="675.44" y="1391.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,263,441 samples, 0.02%)</title><rect x="1016.3" y="1589" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1019.32" y="1599.5" ></text>
</g>
<g >
<title>[compile] (4,887,656 samples, 0.02%)</title><rect x="10.9" y="1637" width="0.2" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.94" y="1647.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,603,317 samples, 0.01%)</title><rect x="10.4" y="1765" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="13.41" y="1775.5" ></text>
</g>
<g >
<title>[compile] (19,020,350 samples, 0.06%)</title><rect x="10.7" y="1749" width="0.7" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.66" y="1759.5" ></text>
</g>
<g >
<title>rcu_core (25,182,934 samples, 0.08%)</title><rect x="1038.8" y="1509" width="1.0" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1041.85" y="1519.5" ></text>
</g>
<g >
<title>bpf_map_put (23,549,886 samples, 0.08%)</title><rect x="848.2" y="1477" width="0.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="851.20" y="1487.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (52,041,042 samples, 0.17%)</title><rect x="690.9" y="1397" width="2.0" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="693.88" y="1407.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,889,043 samples, 0.02%)</title><rect x="1013.6" y="1605" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1016.60" y="1615.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (29,026,970 samples, 0.10%)</title><rect x="1015.4" y="1621" width="1.1" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="1018.39" y="1631.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14,940,655 samples, 0.05%)</title><rect x="26.4" y="1461" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="29.43" y="1471.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,993,729 samples, 0.02%)</title><rect x="966.3" y="1685" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="969.33" y="1695.5" ></text>
</g>
<g >
<title>kmem_cache_free (8,332,954 samples, 0.03%)</title><rect x="1182.5" y="1509" width="0.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1185.54" y="1519.5" ></text>
</g>
<g >
<title>sysfs_kf_bin_read (3,877,135 samples, 0.01%)</title><rect x="513.5" y="1253" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="516.54" y="1263.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,416,194 samples, 0.02%)</title><rect x="1138.6" y="1493" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1141.59" y="1503.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (10,728,528 samples, 0.04%)</title><rect x="943.5" y="1445" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="946.53" y="1455.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (39,087,739 samples, 0.13%)</title><rect x="1021.0" y="1573" width="1.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1024.00" y="1583.5" ></text>
</g>
<g >
<title>d_alloc_pseudo (984,412,985 samples, 3.28%)</title><rect x="703.0" y="1445" width="38.6" height="15.0" fill="rgb(223,87,20)" rx="2" ry="2" />
<text x="705.97" y="1455.5" >d_a..</text>
</g>
<g >
<title>__x64_sys_madvise (4,552,784 samples, 0.02%)</title><rect x="514.4" y="1397" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="517.41" y="1407.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (3,130,095 samples, 0.01%)</title><rect x="990.1" y="1557" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="993.11" y="1567.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (21,938,562 samples, 0.07%)</title><rect x="1046.2" y="1557" width="0.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1049.25" y="1567.5" ></text>
</g>
<g >
<title>call_function_single_prep_ipi (9,173,942 samples, 0.03%)</title><rect x="1077.4" y="1493" width="0.4" height="15.0" fill="rgb(213,41,9)" rx="2" ry="2" />
<text x="1080.41" y="1503.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,960,433 samples, 0.01%)</title><rect x="31.8" y="1509" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="34.81" y="1519.5" ></text>
</g>
<g >
<title>put_cpu_partial (11,673,066 samples, 0.04%)</title><rect x="1106.7" y="1397" width="0.5" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1109.74" y="1407.5" ></text>
</g>
<g >
<title>alloc_pages (308,457,413 samples, 1.03%)</title><rect x="769.1" y="1365" width="12.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="772.10" y="1375.5" ></text>
</g>
<g >
<title>[vet] (84,071,704 samples, 0.28%)</title><rect x="1185.5" y="1541" width="3.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1188.47" y="1551.5" ></text>
</g>
<g >
<title>[link] (7,560,527 samples, 0.03%)</title><rect x="60.2" y="1557" width="0.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="63.20" y="1567.5" ></text>
</g>
<g >
<title>wp_page_copy (3,781,435 samples, 0.01%)</title><rect x="527.7" y="1429" width="0.2" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="530.70" y="1439.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (4,488,759 samples, 0.01%)</title><rect x="1097.1" y="1541" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="1100.08" y="1551.5" ></text>
</g>
<g >
<title>do_user_addr_fault (3,443,711 samples, 0.01%)</title><rect x="937.9" y="1557" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="940.94" y="1567.5" ></text>
</g>
<g >
<title>capable (126,507,985 samples, 0.42%)</title><rect x="806.5" y="1477" width="5.0" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="809.51" y="1487.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (7,734,075 samples, 0.03%)</title><rect x="720.0" y="1397" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="723.02" y="1407.5" ></text>
</g>
<g >
<title>[go] (19,745,778 samples, 0.07%)</title><rect x="25.0" y="1397" width="0.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.04" y="1407.5" ></text>
</g>
<g >
<title>get_page_from_freelist (9,182,651 samples, 0.03%)</title><rect x="938.9" y="1445" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="941.85" y="1455.5" ></text>
</g>
<g >
<title>__alloc_pages (3,036,396 samples, 0.01%)</title><rect x="514.5" y="1269" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="517.47" y="1279.5" ></text>
</g>
<g >
<title>__do_softirq (5,911,397 samples, 0.02%)</title><rect x="1160.2" y="1525" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1163.21" y="1535.5" ></text>
</g>
<g >
<title>[compile] (4,159,497 samples, 0.01%)</title><rect x="11.0" y="1605" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.97" y="1615.5" ></text>
</g>
<g >
<title>clear_page_erms (10,667,948 samples, 0.04%)</title><rect x="517.3" y="1301" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="520.29" y="1311.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (5,236,057 samples, 0.02%)</title><rect x="799.4" y="1349" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="802.43" y="1359.5" ></text>
</g>
<g >
<title>__do_softirq (5,896,422 samples, 0.02%)</title><rect x="1181.9" y="1557" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1184.90" y="1567.5" ></text>
</g>
<g >
<title>rcu_core_si (4,229,070 samples, 0.01%)</title><rect x="1147.4" y="1493" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1150.42" y="1503.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4,614,143 samples, 0.02%)</title><rect x="1136.9" y="1429" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1139.93" y="1439.5" ></text>
</g>
<g >
<title>do_mmap (4,089,014 samples, 0.01%)</title><rect x="60.9" y="1509" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="63.90" y="1519.5" ></text>
</g>
<g >
<title>__handle_mm_fault (26,924,490 samples, 0.09%)</title><rect x="590.9" y="1509" width="1.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="593.89" y="1519.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,510,247 samples, 0.01%)</title><rect x="1028.7" y="1477" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1031.71" y="1487.5" ></text>
</g>
<g >
<title>__unfreeze_partials (12,892,017 samples, 0.04%)</title><rect x="1103.3" y="1381" width="0.5" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1106.31" y="1391.5" ></text>
</g>
<g >
<title>truncate_inode_pages_final (7,942,298 samples, 0.03%)</title><rect x="36.2" y="1525" width="0.3" height="15.0" fill="rgb(215,46,11)" rx="2" ry="2" />
<text x="39.16" y="1535.5" ></text>
</g>
<g >
<title>do_wp_page (12,065,630 samples, 0.04%)</title><rect x="63.6" y="1573" width="0.5" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="66.59" y="1583.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (18,825,062 samples, 0.06%)</title><rect x="906.7" y="1509" width="0.7" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="909.71" y="1519.5" ></text>
</g>
<g >
<title>rcu_core_si (2,932,550 samples, 0.01%)</title><rect x="1161.7" y="1525" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1164.69" y="1535.5" ></text>
</g>
<g >
<title>select_idle_sibling (5,695,653 samples, 0.02%)</title><rect x="1075.0" y="1509" width="0.2" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1077.95" y="1519.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (6,020,625 samples, 0.02%)</title><rect x="515.8" y="1397" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="518.82" y="1407.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (8,243,856 samples, 0.03%)</title><rect x="950.6" y="1669" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="953.65" y="1679.5" ></text>
</g>
<g >
<title>[vet] (14,146,200 samples, 0.05%)</title><rect x="1187.5" y="1077" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.55" y="1087.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (13,724,371 samples, 0.05%)</title><rect x="1122.4" y="1589" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1125.35" y="1599.5" ></text>
</g>
<g >
<title>file_free_rcu (10,616,605 samples, 0.04%)</title><rect x="1136.5" y="1429" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1139.50" y="1439.5" ></text>
</g>
<g >
<title>[vet] (3,639,564 samples, 0.01%)</title><rect x="1187.9" y="133" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.91" y="143.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (12,139,635 samples, 0.04%)</title><rect x="527.1" y="1349" width="0.5" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="530.13" y="1359.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (2,871,342 samples, 0.01%)</title><rect x="1133.8" y="1429" width="0.1" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1136.80" y="1439.5" ></text>
</g>
<g >
<title>apparmor_capable (60,343,504 samples, 0.20%)</title><rect x="809.0" y="1445" width="2.4" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="812.02" y="1455.5" ></text>
</g>
<g >
<title>[link] (2,998,373 samples, 0.01%)</title><rect x="67.1" y="1765" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="70.09" y="1775.5" ></text>
</g>
<g >
<title>exc_page_fault (20,760,501 samples, 0.07%)</title><rect x="515.0" y="1445" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="517.95" y="1455.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4,885,656 samples, 0.02%)</title><rect x="963.4" y="1717" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="966.39" y="1727.5" ></text>
</g>
<g >
<title>_raw_spin_lock (171,025,932 samples, 0.57%)</title><rect x="1065.5" y="1493" width="6.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1068.50" y="1503.5" ></text>
</g>
<g >
<title>path_lookupat (3,497,201 samples, 0.01%)</title><rect x="32.4" y="1477" width="0.1" height="15.0" fill="rgb(250,208,49)" rx="2" ry="2" />
<text x="35.36" y="1487.5" ></text>
</g>
<g >
<title>__rcu_read_lock (8,109,736 samples, 0.03%)</title><rect x="1094.2" y="1573" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1097.20" y="1583.5" ></text>
</g>
<g >
<title>__rcu_read_lock (8,320,681 samples, 0.03%)</title><rect x="1161.9" y="1605" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1164.87" y="1615.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (23,947,836 samples, 0.08%)</title><rect x="860.0" y="1461" width="0.9" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="862.97" y="1471.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (1,088,451,963 samples, 3.62%)</title><rect x="763.0" y="1477" width="42.8" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="766.04" y="1487.5" >bpf_..</text>
</g>
<g >
<title>do_anonymous_page (7,668,775 samples, 0.03%)</title><rect x="63.2" y="1573" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="66.23" y="1583.5" ></text>
</g>
<g >
<title>shuffle_freelist (25,615,692 samples, 0.09%)</title><rect x="717.8" y="1349" width="1.0" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="720.76" y="1359.5" ></text>
</g>
<g >
<title>tick_program_event (7,382,241 samples, 0.02%)</title><rect x="967.4" y="1589" width="0.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="970.42" y="1599.5" ></text>
</g>
<g >
<title>exc_page_fault (105,376,644 samples, 0.35%)</title><rect x="524.3" y="1525" width="4.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="527.35" y="1535.5" ></text>
</g>
<g >
<title>bpf_prog_load (3,874,951 samples, 0.01%)</title><rect x="522.8" y="1445" width="0.2" height="15.0" fill="rgb(241,165,39)" rx="2" ry="2" />
<text x="525.85" y="1455.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,889,043 samples, 0.02%)</title><rect x="1013.6" y="1573" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1016.60" y="1583.5" ></text>
</g>
<g >
<title>release_pages (5,470,586 samples, 0.02%)</title><rect x="990.3" y="1557" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="993.32" y="1567.5" ></text>
</g>
<g >
<title>new_slab (12,411,141 samples, 0.04%)</title><rect x="781.7" y="1301" width="0.4" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="784.66" y="1311.5" ></text>
</g>
<g >
<title>bpf_check (3,103,111 samples, 0.01%)</title><rect x="522.8" y="1429" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="525.85" y="1439.5" ></text>
</g>
<g >
<title>[vet] (8,557,614 samples, 0.03%)</title><rect x="1187.7" y="821" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.71" y="831.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,925,965 samples, 0.01%)</title><rect x="1142.9" y="1461" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1145.88" y="1471.5" ></text>
</g>
<g >
<title>[mapgauge.test] (2,915,594 samples, 0.01%)</title><rect x="965.6" y="1669" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="968.65" y="1679.5" ></text>
</g>
<g >
<title>[vet] (97,891,333 samples, 0.33%)</title><rect x="1185.2" y="1589" width="3.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1188.19" y="1599.5" ></text>
</g>
<g >
<title>error_entry (7,509,671 samples, 0.02%)</title><rect x="972.5" y="1733" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="975.46" y="1743.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (3,111,490 samples, 0.01%)</title><rect x="518.4" y="1253" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="521.41" y="1263.5" ></text>
</g>
<g >
<title>__do_softirq (343,637,222 samples, 1.14%)</title><rect x="1097.3" y="1509" width="13.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1100.28" y="1519.5" ></text>
</g>
<g >
<title>file_free_rcu (5,840,477 samples, 0.02%)</title><rect x="1047.2" y="1461" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1050.20" y="1471.5" ></text>
</g>
<g >
<title>alloc_empty_file (4,356,595 samples, 0.01%)</title><rect x="32.5" y="1493" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="35.53" y="1503.5" ></text>
</g>
<g >
<title>[vet] (33,903,611 samples, 0.11%)</title><rect x="1187.0" y="1413" width="1.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1189.95" y="1423.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,974,439 samples, 0.01%)</title><rect x="29.5" y="1509" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="32.51" y="1519.5" ></text>
</g>
<g >
<title>__handle_mm_fault (76,181,085 samples, 0.25%)</title><rect x="941.2" y="1573" width="3.0" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="944.16" y="1583.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1717" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="1192.84" y="1727.5" ></text>
</g>
<g >
<title>__alloc_pages (14,727,191 samples, 0.05%)</title><rect x="518.6" y="1317" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="521.56" y="1327.5" ></text>
</g>
<g >
<title>__folio_alloc (3,766,899 samples, 0.01%)</title><rect x="962.4" y="1557" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="965.44" y="1567.5" ></text>
</g>
<g >
<title>__alloc_pages (6,123,202 samples, 0.02%)</title><rect x="63.3" y="1525" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="66.29" y="1535.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (6,585,443 samples, 0.02%)</title><rect x="26.6" y="1381" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="29.64" y="1391.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (3,083,767 samples, 0.01%)</title><rect x="689.3" y="1397" width="0.1" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="692.26" y="1407.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,569,470,150 samples, 5.22%)</title><rect x="528.7" y="1557" width="61.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="531.73" y="1567.5" >entry_..</text>
</g>
<g >
<title>fput (25,827,737 samples, 0.09%)</title><rect x="985.2" y="1621" width="1.1" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="988.25" y="1631.5" ></text>
</g>
<g >
<title>__slab_free (166,246,261 samples, 0.55%)</title><rect x="1129.9" y="1557" width="6.6" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1132.95" y="1567.5" ></text>
</g>
<g >
<title>irqentry_exit (14,433,882 samples, 0.05%)</title><rect x="944.4" y="1605" width="0.6" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="947.43" y="1615.5" ></text>
</g>
<g >
<title>[go] (44,386,427 samples, 0.15%)</title><rect x="24.7" y="1461" width="1.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="27.65" y="1471.5" ></text>
</g>
<g >
<title>ksys_read (1,557,854,780 samples, 5.18%)</title><rect x="528.9" y="1509" width="61.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="531.88" y="1519.5" >ksys_r..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,248,118 samples, 0.02%)</title><rect x="963.6" y="1717" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="966.58" y="1727.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9,226,470 samples, 0.03%)</title><rect x="514.4" y="1429" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="517.41" y="1439.5" ></text>
</g>
<g >
<title>expand_files (4,500,990 samples, 0.01%)</title><rect x="759.9" y="1461" width="0.2" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="762.92" y="1471.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (44,910,848 samples, 0.15%)</title><rect x="946.7" y="1669" width="1.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="949.74" y="1679.5" ></text>
</g>
<g >
<title>file_free_rcu (3,537,835 samples, 0.01%)</title><rect x="1138.6" y="1413" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1141.59" y="1423.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (9,261,075 samples, 0.03%)</title><rect x="840.3" y="1493" width="0.3" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="843.28" y="1503.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (40,198,253 samples, 0.13%)</title><rect x="1021.0" y="1605" width="1.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1023.96" y="1615.5" ></text>
</g>
<g >
<title>ksys_read (3,751,557 samples, 0.01%)</title><rect x="34.4" y="1557" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="37.41" y="1567.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (7,680,122 samples, 0.03%)</title><rect x="530.5" y="1477" width="0.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="533.54" y="1487.5" ></text>
</g>
<g >
<title>kmem_cache_free (7,018,584 samples, 0.02%)</title><rect x="1046.4" y="1429" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1049.44" y="1439.5" ></text>
</g>
<g >
<title>exit_mmap (14,229,441 samples, 0.05%)</title><rect x="67.5" y="1621" width="0.5" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="70.45" y="1631.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (5,223,655 samples, 0.02%)</title><rect x="1140.6" y="1525" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1143.56" y="1535.5" ></text>
</g>
<g >
<title>node_tag_clear (21,695,929 samples, 0.07%)</title><rect x="837.5" y="1445" width="0.8" height="15.0" fill="rgb(216,51,12)" rx="2" ry="2" />
<text x="840.47" y="1455.5" ></text>
</g>
<g >
<title>migrate_disable (6,190,859 samples, 0.02%)</title><rect x="876.2" y="1461" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="879.18" y="1471.5" ></text>
</g>
<g >
<title>__mutex_init (13,090,994 samples, 0.04%)</title><rect x="631.6" y="1509" width="0.5" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="634.61" y="1519.5" ></text>
</g>
<g >
<title>unmap_vmas (14,128,559 samples, 0.05%)</title><rect x="67.5" y="1605" width="0.5" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="70.46" y="1615.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,874,845 samples, 0.02%)</title><rect x="1167.9" y="1541" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1170.94" y="1551.5" ></text>
</g>
<g >
<title>do_anonymous_page (2,621,759 samples, 0.01%)</title><rect x="33.3" y="1317" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="36.31" y="1327.5" ></text>
</g>
<g >
<title>get_any_partial (8,543,686 samples, 0.03%)</title><rect x="768.5" y="1397" width="0.3" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="771.46" y="1407.5" ></text>
</g>
<g >
<title>do_syscall_64 (15,482,288 samples, 0.05%)</title><rect x="959.8" y="1669" width="0.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="962.85" y="1679.5" ></text>
</g>
<g >
<title>[go] (5,803,401 samples, 0.02%)</title><rect x="43.4" y="1749" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="46.39" y="1759.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (81,733,723 samples, 0.27%)</title><rect x="904.3" y="1525" width="3.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="907.26" y="1535.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (36,772,394 samples, 0.12%)</title><rect x="1045.7" y="1589" width="1.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1048.67" y="1599.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (4,599,936 samples, 0.02%)</title><rect x="962.3" y="1525" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="965.26" y="1535.5" ></text>
</g>
<g >
<title>pick_next_task_fair (4,742,628 samples, 0.02%)</title><rect x="969.4" y="1573" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="972.36" y="1583.5" ></text>
</g>
<g >
<title>ext4_ext_map_blocks (2,658,106 samples, 0.01%)</title><rect x="35.4" y="1445" width="0.1" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="38.40" y="1455.5" ></text>
</g>
<g >
<title>__irqentry_text_end (21,399,872 samples, 0.07%)</title><rect x="951.0" y="1685" width="0.8" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="953.97" y="1695.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (8,124,878 samples, 0.03%)</title><rect x="1110.9" y="1573" width="0.3" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="1113.91" y="1583.5" ></text>
</g>
<g >
<title>get_random_u32 (11,435,237 samples, 0.04%)</title><rect x="783.7" y="1333" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="786.75" y="1343.5" ></text>
</g>
<g >
<title>rcu_core (2,978,971 samples, 0.01%)</title><rect x="1123.8" y="1461" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1126.80" y="1471.5" ></text>
</g>
<g >
<title>do_syscall_64 (25,045,046 samples, 0.08%)</title><rect x="949.1" y="1653" width="1.0" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="952.13" y="1663.5" ></text>
</g>
<g >
<title>__irqentry_text_end (2,702,524 samples, 0.01%)</title><rect x="62.9" y="1669" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="65.87" y="1679.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,942,702 samples, 0.01%)</title><rect x="1129.8" y="1509" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1132.79" y="1519.5" ></text>
</g>
<g >
<title>__alloc_pages (5,261,385 samples, 0.02%)</title><rect x="961.8" y="1557" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="964.81" y="1567.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (3,786,869 samples, 0.01%)</title><rect x="939.6" y="1509" width="0.1" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="942.57" y="1519.5" ></text>
</g>
<g >
<title>clear_page_erms (111,763,205 samples, 0.37%)</title><rect x="711.6" y="1301" width="4.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="714.62" y="1311.5" ></text>
</g>
<g >
<title>rcu_core_si (5,856,030 samples, 0.02%)</title><rect x="1169.5" y="1509" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1172.53" y="1519.5" ></text>
</g>
<g >
<title>[link] (4,408,372 samples, 0.01%)</title><rect x="67.3" y="1781" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="70.26" y="1791.5" ></text>
</g>
<g >
<title>file_free_rcu (4,942,542 samples, 0.02%)</title><rect x="1166.0" y="1477" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1169.03" y="1487.5" ></text>
</g>
<g >
<title>alloc_pages (21,282,749 samples, 0.07%)</title><rect x="670.2" y="1317" width="0.8" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="673.20" y="1327.5" ></text>
</g>
<g >
<title>[vet] (156,035,714 samples, 0.52%)</title><rect x="1183.6" y="1749" width="6.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1186.56" y="1759.5" ></text>
</g>
<g >
<title>dequeue_task (24,726,251 samples, 0.08%)</title><rect x="968.0" y="1589" width="0.9" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="970.97" y="1599.5" ></text>
</g>
<g >
<title>mod_objcg_state (2,956,358 samples, 0.01%)</title><rect x="696.4" y="1397" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="699.40" y="1407.5" ></text>
</g>
<g >
<title>rcu_core_si (5,215,371 samples, 0.02%)</title><rect x="1174.1" y="1493" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1177.14" y="1503.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (55,528,207 samples, 0.18%)</title><rect x="1085.5" y="1477" width="2.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1088.52" y="1487.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (5,562,635 samples, 0.02%)</title><rect x="29.1" y="1445" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="32.10" y="1455.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (9,432,208 samples, 0.03%)</title><rect x="1157.0" y="1605" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1159.98" y="1615.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,865,346 samples, 0.01%)</title><rect x="1162.3" y="1477" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1165.31" y="1487.5" ></text>
</g>
<g >
<title>rcu_core_si (2,922,225 samples, 0.01%)</title><rect x="1169.3" y="1509" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1172.28" y="1519.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (5,379,856 samples, 0.02%)</title><rect x="954.8" y="1509" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="957.81" y="1519.5" ></text>
</g>
<g >
<title>[compile] (25,857,543 samples, 0.09%)</title><rect x="10.7" y="1781" width="1.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.66" y="1791.5" ></text>
</g>
<g >
<title>kmem_cache_free (8,757,726 samples, 0.03%)</title><rect x="1136.6" y="1413" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1139.57" y="1423.5" ></text>
</g>
<g >
<title>__free_one_page (5,741,469 samples, 0.02%)</title><rect x="1107.0" y="1253" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="1109.98" y="1263.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (41,099,074 samples, 0.14%)</title><rect x="991.7" y="1525" width="1.7" height="15.0" fill="rgb(214,45,10)" rx="2" ry="2" />
<text x="994.75" y="1535.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (12,487,151 samples, 0.04%)</title><rect x="65.7" y="1717" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="68.67" y="1727.5" ></text>
</g>
<g >
<title>memset_orig (5,436,570 samples, 0.02%)</title><rect x="672.6" y="1381" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="675.59" y="1391.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (3,753,150 samples, 0.01%)</title><rect x="966.6" y="1701" width="0.1" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="969.56" y="1711.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (2,872,395 samples, 0.01%)</title><rect x="946.2" y="1541" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="949.25" y="1551.5" ></text>
</g>
<g >
<title>new_slab (9,220,537 samples, 0.03%)</title><rect x="716.8" y="1285" width="0.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="719.76" y="1295.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (3,497,201 samples, 0.01%)</title><rect x="32.4" y="1461" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="35.36" y="1471.5" ></text>
</g>
<g >
<title>__mmput (78,245,528 samples, 0.26%)</title><rect x="990.3" y="1637" width="3.1" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="993.32" y="1647.5" ></text>
</g>
<g >
<title>clear_page_erms (5,455,429 samples, 0.02%)</title><rect x="759.4" y="1317" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="762.40" y="1327.5" ></text>
</g>
<g >
<title>__do_softirq (2,942,164 samples, 0.01%)</title><rect x="1178.7" y="1557" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1181.75" y="1567.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (11,275,135 samples, 0.04%)</title><rect x="36.0" y="1637" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="39.04" y="1647.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,199,510 samples, 0.02%)</title><rect x="974.5" y="1637" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="977.50" y="1647.5" ></text>
</g>
<g >
<title>clear_page_erms (3,859,670 samples, 0.01%)</title><rect x="515.5" y="1269" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="518.52" y="1279.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1733" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="1192.84" y="1743.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (7,327,327 samples, 0.02%)</title><rect x="64.7" y="1685" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="67.66" y="1695.5" ></text>
</g>
<g >
<title>[vet] (14,944,049 samples, 0.05%)</title><rect x="1187.5" y="1141" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.52" y="1151.5" ></text>
</g>
<g >
<title>[go] (289,402,861 samples, 0.96%)</title><rect x="20.4" y="1589" width="11.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="23.42" y="1599.5" ></text>
</g>
<g >
<title>exit_mmap (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1605" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="1192.84" y="1615.5" ></text>
</g>
<g >
<title>rcu_core_si (4,678,192 samples, 0.02%)</title><rect x="1180.4" y="1541" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1183.39" y="1551.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (9,981,014 samples, 0.03%)</title><rect x="970.3" y="1669" width="0.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="973.34" y="1679.5" ></text>
</g>
<g >
<title>exc_page_fault (10,391,260 samples, 0.03%)</title><rect x="65.8" y="1701" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="68.75" y="1711.5" ></text>
</g>
<g >
<title>hpage_collapse_scan_pmd (6,020,625 samples, 0.02%)</title><rect x="515.8" y="1349" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="518.82" y="1359.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (86,705,278 samples, 0.29%)</title><rect x="966.9" y="1669" width="3.4" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="969.92" y="1679.5" ></text>
</g>
<g >
<title>kfree (3,574,512 samples, 0.01%)</title><rect x="1103.6" y="1317" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1106.65" y="1327.5" ></text>
</g>
<g >
<title>[link] (321,157,309 samples, 1.07%)</title><rect x="52.6" y="1701" width="12.6" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="55.57" y="1711.5" ></text>
</g>
<g >
<title>vfs_statx (4,242,371 samples, 0.01%)</title><rect x="32.4" y="1509" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="35.36" y="1519.5" ></text>
</g>
<g >
<title>bpf_seq_write (30,745,080 samples, 0.10%)</title><rect x="586.1" y="1413" width="1.3" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="589.14" y="1423.5" ></text>
</g>
<g >
<title>__slab_free (2,933,550 samples, 0.01%)</title><rect x="1103.7" y="1285" width="0.1" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1106.67" y="1295.5" ></text>
</g>
<g >
<title>file_free_rcu (4,737,481 samples, 0.02%)</title><rect x="1181.9" y="1493" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1184.90" y="1503.5" ></text>
</g>
<g >
<title>ima_file_free (8,063,205 samples, 0.03%)</title><rect x="1178.5" y="1637" width="0.4" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="1181.55" y="1647.5" ></text>
</g>
<g >
<title>sync_regs (6,936,127 samples, 0.02%)</title><rect x="961.2" y="1685" width="0.3" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="964.21" y="1695.5" ></text>
</g>
<g >
<title>rcu_core_si (5,171,100 samples, 0.02%)</title><rect x="975.2" y="1573" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="978.20" y="1583.5" ></text>
</g>
<g >
<title>apparmor_capable (21,926,061 samples, 0.07%)</title><rect x="807.1" y="1461" width="0.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="810.08" y="1471.5" ></text>
</g>
<g >
<title>do_wp_page (3,114,857 samples, 0.01%)</title><rect x="591.8" y="1477" width="0.2" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="594.83" y="1487.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (2,872,395 samples, 0.01%)</title><rect x="946.2" y="1525" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="949.25" y="1535.5" ></text>
</g>
<g >
<title>rcu_core (5,215,371 samples, 0.02%)</title><rect x="1174.1" y="1477" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1177.14" y="1487.5" ></text>
</g>
<g >
<title>do_anonymous_page (4,577,901 samples, 0.02%)</title><rect x="945.8" y="1557" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="948.76" y="1567.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (128,144,526 samples, 0.43%)</title><rect x="1112.2" y="1605" width="5.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="1115.24" y="1615.5" ></text>
</g>
<g >
<title>error_entry (10,837,438 samples, 0.04%)</title><rect x="950.2" y="1669" width="0.4" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="953.16" y="1679.5" ></text>
</g>
<g >
<title>rcu_core (2,942,164 samples, 0.01%)</title><rect x="1178.7" y="1525" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1181.75" y="1535.5" ></text>
</g>
<g >
<title>__do_softirq (8,661,462 samples, 0.03%)</title><rect x="1166.0" y="1541" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1169.03" y="1551.5" ></text>
</g>
<g >
<title>[go] (636,525,247 samples, 2.12%)</title><rect x="12.4" y="1733" width="25.0" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="15.36" y="1743.5" >[..</text>
</g>
<g >
<title>do_madvise (6,585,443 samples, 0.02%)</title><rect x="26.6" y="1413" width="0.3" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="29.64" y="1423.5" ></text>
</g>
<g >
<title>get_any_partial (9,022,723 samples, 0.03%)</title><rect x="678.5" y="1381" width="0.4" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="681.53" y="1391.5" ></text>
</g>
<g >
<title>[mapgauge.test] (22,803,626,783 samples, 75.89%)</title><rect x="68.6" y="1749" width="895.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="71.61" y="1759.5" >[mapgauge.test]</text>
</g>
<g >
<title>do_user_addr_fault (26,994,067 samples, 0.09%)</title><rect x="63.1" y="1637" width="1.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="66.10" y="1647.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (5,562,635 samples, 0.02%)</title><rect x="29.1" y="1461" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="32.10" y="1471.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (9,262,677 samples, 0.03%)</title><rect x="720.3" y="1397" width="0.4" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="723.32" y="1407.5" ></text>
</g>
<g >
<title>file_free_rcu (6,961,475 samples, 0.02%)</title><rect x="1132.9" y="1413" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1135.87" y="1423.5" ></text>
</g>
<g >
<title>[compile] (25,857,543 samples, 0.09%)</title><rect x="10.7" y="1797" width="1.0" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.66" y="1807.5" ></text>
</g>
<g >
<title>___slab_alloc (281,684,401 samples, 0.94%)</title><rect x="678.1" y="1397" width="11.1" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="681.14" y="1407.5" ></text>
</g>
<g >
<title>wp_page_copy (2,662,213 samples, 0.01%)</title><rect x="938.0" y="1477" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="940.97" y="1487.5" ></text>
</g>
<g >
<title>irq_exit_rcu (9,318,462 samples, 0.03%)</title><rect x="1132.9" y="1509" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1135.87" y="1519.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (14,745,030 samples, 0.05%)</title><rect x="645.9" y="1493" width="0.6" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="648.88" y="1503.5" ></text>
</g>
<g >
<title>mod_objcg_state (50,405,810 samples, 0.17%)</title><rect x="1138.8" y="1557" width="2.0" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1141.83" y="1567.5" ></text>
</g>
<g >
<title>do_syscall_64 (20,911,844 samples, 0.07%)</title><rect x="30.8" y="1557" width="0.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="33.76" y="1567.5" ></text>
</g>
<g >
<title>filp_close (320,326,339 samples, 1.07%)</title><rect x="976.6" y="1637" width="12.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="979.60" y="1647.5" ></text>
</g>
<g >
<title>[go] (652,216,927 samples, 2.17%)</title><rect x="11.9" y="1781" width="25.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="14.89" y="1791.5" >[..</text>
</g>
<g >
<title>wp_page_copy (13,865,645 samples, 0.05%)</title><rect x="515.1" y="1349" width="0.6" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="518.13" y="1359.5" ></text>
</g>
<g >
<title>__send_signal_locked (3,092,459 samples, 0.01%)</title><rect x="966.0" y="1557" width="0.1" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="969.02" y="1567.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (15,239,748 samples, 0.05%)</title><rect x="1028.2" y="1589" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1031.25" y="1599.5" ></text>
</g>
<g >
<title>[mapgauge.test] (16,337,330,788 samples, 54.37%)</title><rect x="296.8" y="1605" width="641.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="299.76" y="1615.5" >[mapgauge.test]</text>
</g>
<g >
<title>[mapgauge.test] (18,634,493,842 samples, 62.01%)</title><rect x="214.7" y="1669" width="731.8" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="217.71" y="1679.5" >[mapgauge.test]</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,678,192 samples, 0.02%)</title><rect x="1180.4" y="1605" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1183.39" y="1615.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,554,935 samples, 0.01%)</title><rect x="965.7" y="1621" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="968.66" y="1631.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,942,164 samples, 0.01%)</title><rect x="1178.7" y="1573" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1181.75" y="1583.5" ></text>
</g>
<g >
<title>mod_node_page_state (4,632,140 samples, 0.02%)</title><rect x="687.5" y="1349" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="690.45" y="1359.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (208,990,296 samples, 0.70%)</title><rect x="868.3" y="1477" width="8.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="871.34" y="1487.5" ></text>
</g>
<g >
<title>rcu_core (8,661,462 samples, 0.03%)</title><rect x="1166.0" y="1509" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1169.03" y="1519.5" ></text>
</g>
<g >
<title>__do_softirq (5,258,257 samples, 0.02%)</title><rect x="1020.8" y="1541" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1023.75" y="1551.5" ></text>
</g>
<g >
<title>__alloc_pages (16,891,888 samples, 0.06%)</title><rect x="591.2" y="1429" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="594.17" y="1439.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,934,504 samples, 0.01%)</title><rect x="1180.4" y="1477" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1183.43" y="1487.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="709" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="719.5" ></text>
</g>
<g >
<title>slab_pre_alloc_hook.constprop.0 (370,546,267 samples, 1.23%)</title><rect x="725.2" y="1397" width="14.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="728.17" y="1407.5" ></text>
</g>
<g >
<title>[go] (28,219,456 samples, 0.09%)</title><rect x="24.9" y="1429" width="1.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="27.88" y="1439.5" ></text>
</g>
<g >
<title>bpf_map_put_uref (127,652,445 samples, 0.42%)</title><rect x="1023.8" y="1621" width="5.0" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1026.83" y="1631.5" ></text>
</g>
<g >
<title>__alloc_pages (4,469,035 samples, 0.01%)</title><rect x="522.0" y="1365" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="525.04" y="1375.5" ></text>
</g>
<g >
<title>[vet] (5,132,928 samples, 0.02%)</title><rect x="1187.8" y="421" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.85" y="431.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (38,196,574 samples, 0.13%)</title><rect x="657.5" y="1397" width="1.5" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="660.47" y="1407.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (9,318,462 samples, 0.03%)</title><rect x="1132.9" y="1493" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1135.87" y="1503.5" ></text>
</g>
<g >
<title>refill_obj_stock (3,046,098 samples, 0.01%)</title><rect x="698.3" y="1397" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="701.35" y="1407.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (46,790,654 samples, 0.16%)</title><rect x="1134.6" y="1541" width="1.9" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1137.64" y="1551.5" ></text>
</g>
<g >
<title>rcu_core_si (5,911,397 samples, 0.02%)</title><rect x="1160.2" y="1509" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1163.21" y="1519.5" ></text>
</g>
<g >
<title>refill_stock (4,129,897 samples, 0.01%)</title><rect x="1142.8" y="1525" width="0.2" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1145.84" y="1535.5" ></text>
</g>
<g >
<title>ext4_page_mkwrite (3,793,659 samples, 0.01%)</title><rect x="66.6" y="1605" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="69.61" y="1615.5" ></text>
</g>
<g >
<title>[vet] (5,132,928 samples, 0.02%)</title><rect x="1187.8" y="341" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.85" y="351.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (4,089,014 samples, 0.01%)</title><rect x="60.9" y="1541" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="63.90" y="1551.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,932,550 samples, 0.01%)</title><rect x="1161.7" y="1605" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1164.69" y="1615.5" ></text>
</g>
<g >
<title>capable (249,583,610 samples, 0.83%)</title><rect x="813.4" y="1493" width="9.8" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="816.39" y="1503.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,652,678 samples, 0.02%)</title><rect x="974.5" y="1541" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="977.52" y="1551.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (7,038,316 samples, 0.02%)</title><rect x="969.0" y="1573" width="0.2" height="15.0" fill="rgb(231,121,29)" rx="2" ry="2" />
<text x="971.95" y="1583.5" ></text>
</g>
<g >
<title>check_kill_permission (2,700,382 samples, 0.01%)</title><rect x="949.3" y="1589" width="0.2" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="952.35" y="1599.5" ></text>
</g>
<g >
<title>__sys_bpf (6,959,249 samples, 0.02%)</title><rect x="625.4" y="1541" width="0.3" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="628.40" y="1551.5" ></text>
</g>
<g >
<title>bpf_map_put (1,821,321,823 samples, 6.06%)</title><rect x="1039.8" y="1605" width="71.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1042.84" y="1615.5" >bpf_map_..</text>
</g>
<g >
<title>asm_exc_page_fault (8,191,206 samples, 0.03%)</title><rect x="35.7" y="1637" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="38.65" y="1647.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (8,507,929 samples, 0.03%)</title><rect x="720.7" y="1397" width="0.3" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="723.68" y="1407.5" ></text>
</g>
<g >
<title>handle_pte_fault (14,557,424 samples, 0.05%)</title><rect x="522.0" y="1429" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="525.01" y="1439.5" ></text>
</g>
<g >
<title>rcu_core (5,199,510 samples, 0.02%)</title><rect x="974.5" y="1557" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="977.50" y="1567.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (123,132,655 samples, 0.41%)</title><rect x="870.7" y="1445" width="4.8" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="873.68" y="1455.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,766,899 samples, 0.01%)</title><rect x="962.4" y="1525" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="965.44" y="1535.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (2,982,943 samples, 0.01%)</title><rect x="592.2" y="1509" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="595.16" y="1519.5" ></text>
</g>
<g >
<title>memcg_account_kmem (6,985,772 samples, 0.02%)</title><rect x="739.1" y="1365" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="742.15" y="1375.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,132,001 samples, 0.02%)</title><rect x="28.7" y="1477" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="31.75" y="1487.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4,217,182 samples, 0.01%)</title><rect x="31.8" y="1589" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="34.79" y="1599.5" ></text>
</g>
<g >
<title>vfs_read (12,209,872 samples, 0.04%)</title><rect x="33.1" y="1525" width="0.5" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="36.08" y="1535.5" ></text>
</g>
<g >
<title>vma_alloc_folio (63,346,382 samples, 0.21%)</title><rect x="525.2" y="1429" width="2.5" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="528.22" y="1439.5" ></text>
</g>
<g >
<title>irq_exit_rcu (9,432,208 samples, 0.03%)</title><rect x="1157.0" y="1573" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1159.98" y="1583.5" ></text>
</g>
<g >
<title>handle_pte_fault (14,391,766 samples, 0.05%)</title><rect x="938.6" y="1525" width="0.6" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="941.65" y="1535.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,747,539 samples, 0.03%)</title><rect x="522.8" y="1493" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="525.85" y="1503.5" ></text>
</g>
<g >
<title>array_map_alloc (2,985,269 samples, 0.01%)</title><rect x="636.4" y="1509" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="639.36" y="1519.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,856,030 samples, 0.02%)</title><rect x="1169.5" y="1477" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1172.53" y="1487.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8,777,079 samples, 0.03%)</title><rect x="1136.1" y="1509" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1139.13" y="1519.5" ></text>
</g>
<g >
<title>idr_remove (3,472,416 samples, 0.01%)</title><rect x="1111.9" y="1605" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1114.86" y="1615.5" ></text>
</g>
<g >
<title>should_failslab (10,801,065 samples, 0.04%)</title><rect x="805.0" y="1429" width="0.4" height="15.0" fill="rgb(206,8,2)" rx="2" ry="2" />
<text x="807.96" y="1439.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,504,002 samples, 0.01%)</title><rect x="31.8" y="1525" width="0.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="34.79" y="1535.5" ></text>
</g>
<g >
<title>do_nanosleep (3,265,958 samples, 0.01%)</title><rect x="1183.3" y="1653" width="0.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="1186.34" y="1663.5" ></text>
</g>
<g >
<title>iput (4,501,780 samples, 0.01%)</title><rect x="34.6" y="1525" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="37.62" y="1535.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,123,483 samples, 0.01%)</title><rect x="692.8" y="1381" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="695.80" y="1391.5" ></text>
</g>
<g >
<title>refill_obj_stock (18,729,353 samples, 0.06%)</title><rect x="1105.2" y="1397" width="0.7" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1108.17" y="1407.5" ></text>
</g>
<g >
<title>file_free_rcu (3,115,098 samples, 0.01%)</title><rect x="1143.6" y="1413" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1146.64" y="1423.5" ></text>
</g>
<g >
<title>rcu_core_si (2,925,965 samples, 0.01%)</title><rect x="1142.9" y="1429" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1145.88" y="1439.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (11,497,337 samples, 0.04%)</title><rect x="971.3" y="1733" width="0.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="974.28" y="1743.5" ></text>
</g>
<g >
<title>fput (22,726,328 samples, 0.08%)</title><rect x="989.2" y="1637" width="0.9" height="15.0" fill="rgb(225,96,23)" rx="2" ry="2" />
<text x="992.18" y="1647.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (72,097,610 samples, 0.24%)</title><rect x="787.6" y="1397" width="2.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="790.55" y="1407.5" ></text>
</g>
<g >
<title>__x64_sys_newfstatat (27,152,886 samples, 0.09%)</title><rect x="27.4" y="1445" width="1.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="30.42" y="1455.5" ></text>
</g>
<g >
<title>[mapgauge.test] (21,498,510 samples, 0.07%)</title><rect x="971.3" y="1765" width="0.8" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="974.27" y="1775.5" ></text>
</g>
<g >
<title>[vet] (2,891,509 samples, 0.01%)</title><rect x="1187.9" y="101" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.94" y="111.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (4,635,214 samples, 0.02%)</title><rect x="991.6" y="1509" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="994.57" y="1519.5" ></text>
</g>
<g >
<title>rcu_core (5,171,100 samples, 0.02%)</title><rect x="975.2" y="1557" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="978.20" y="1567.5" ></text>
</g>
<g >
<title>__do_softirq (4,678,192 samples, 0.02%)</title><rect x="1180.4" y="1557" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1183.39" y="1567.5" ></text>
</g>
<g >
<title>_atomic_dec_and_lock (8,850,584 samples, 0.03%)</title><rect x="1146.4" y="1573" width="0.4" height="15.0" fill="rgb(227,102,24)" rx="2" ry="2" />
<text x="1149.41" y="1583.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,930,753 samples, 0.01%)</title><rect x="1144.3" y="1445" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1147.27" y="1455.5" ></text>
</g>
<g >
<title>__vmalloc_area_node (5,455,429 samples, 0.02%)</title><rect x="759.4" y="1381" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="762.40" y="1391.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (27,292,362 samples, 0.09%)</title><rect x="961.7" y="1701" width="1.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="964.74" y="1711.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (9,195,156 samples, 0.03%)</title><rect x="716.1" y="1285" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="719.13" y="1295.5" ></text>
</g>
<g >
<title>discard_slab (5,078,865 samples, 0.02%)</title><rect x="1174.4" y="1541" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1177.41" y="1551.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (76,928,172 samples, 0.26%)</title><rect x="516.4" y="1477" width="3.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="519.42" y="1487.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (3,356,934 samples, 0.01%)</title><rect x="967.2" y="1605" width="0.1" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="970.19" y="1615.5" ></text>
</g>
<g >
<title>__send_signal_locked (8,471,783 samples, 0.03%)</title><rect x="949.5" y="1557" width="0.4" height="15.0" fill="rgb(241,168,40)" rx="2" ry="2" />
<text x="952.53" y="1567.5" ></text>
</g>
<g >
<title>hook_file_alloc_security (6,199,192 samples, 0.02%)</title><rect x="666.2" y="1381" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="669.16" y="1391.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="789" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="799.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (4,673,686 samples, 0.02%)</title><rect x="514.6" y="1381" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="517.58" y="1391.5" ></text>
</g>
<g >
<title>file_free_rcu (4,175,845 samples, 0.01%)</title><rect x="1168.0" y="1461" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1170.99" y="1471.5" ></text>
</g>
<g >
<title>__handle_mm_fault (27,775,649 samples, 0.09%)</title><rect x="947.2" y="1605" width="1.1" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="950.23" y="1615.5" ></text>
</g>
<g >
<title>__handle_mm_fault (23,022,459 samples, 0.08%)</title><rect x="63.2" y="1605" width="0.9" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="66.16" y="1615.5" ></text>
</g>
<g >
<title>clear_page_erms (3,730,149 samples, 0.01%)</title><rect x="522.1" y="1333" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="525.07" y="1343.5" ></text>
</g>
<g >
<title>[vet] (5,132,928 samples, 0.02%)</title><rect x="1187.8" y="357" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.85" y="367.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="565" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="575.5" ></text>
</g>
<g >
<title>block_page_mkwrite (3,793,659 samples, 0.01%)</title><rect x="66.6" y="1589" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="69.61" y="1599.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (6,796,450 samples, 0.02%)</title><rect x="590.4" y="1557" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="593.42" y="1567.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,335,552 samples, 0.01%)</title><rect x="1143.6" y="1429" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1146.64" y="1439.5" ></text>
</g>
<g >
<title>evict (8,670,159 samples, 0.03%)</title><rect x="36.1" y="1557" width="0.4" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="39.13" y="1567.5" ></text>
</g>
<g >
<title>rcu_core_si (22,151,381 samples, 0.07%)</title><rect x="1114.7" y="1509" width="0.9" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1117.70" y="1519.5" ></text>
</g>
<g >
<title>xa_load (74,732,186 samples, 0.25%)</title><rect x="734.6" y="1365" width="2.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="737.60" y="1375.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,835,289 samples, 0.02%)</title><rect x="939.9" y="1589" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="942.90" y="1599.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (2,906,752 samples, 0.01%)</title><rect x="1122.8" y="1461" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1125.78" y="1471.5" ></text>
</g>
<g >
<title>__do_softirq (9,432,208 samples, 0.03%)</title><rect x="1157.0" y="1541" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1159.98" y="1551.5" ></text>
</g>
<g >
<title>kmalloc_slab (17,460,849 samples, 0.06%)</title><rect x="800.9" y="1429" width="0.7" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="803.86" y="1439.5" ></text>
</g>
<g >
<title>[vet] (19,225,849 samples, 0.06%)</title><rect x="1187.4" y="1269" width="0.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.35" y="1279.5" ></text>
</g>
<g >
<title>[go] (3,380,790 samples, 0.01%)</title><rect x="25.5" y="1221" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.55" y="1231.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,066,465 samples, 0.02%)</title><rect x="61.3" y="1589" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="64.32" y="1599.5" ></text>
</g>
<g >
<title>free_slab (3,957,345 samples, 0.01%)</title><rect x="1174.5" y="1525" width="0.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1177.45" y="1535.5" ></text>
</g>
<g >
<title>memset_orig (6,983,243 samples, 0.02%)</title><rect x="782.3" y="1333" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="785.27" y="1343.5" ></text>
</g>
<g >
<title>__rcu_read_lock (11,599,167 samples, 0.04%)</title><rect x="729.4" y="1381" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="732.40" y="1391.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1797" width="0.2" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1192.84" y="1807.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4,678,192 samples, 0.02%)</title><rect x="1180.4" y="1573" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1183.39" y="1583.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4,577,901 samples, 0.02%)</title><rect x="945.8" y="1541" width="0.1" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="948.76" y="1551.5" ></text>
</g>
<g >
<title>vfs_fstatat (2,747,594 samples, 0.01%)</title><rect x="34.2" y="1541" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="37.25" y="1551.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,922,225 samples, 0.01%)</title><rect x="1169.3" y="1589" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1172.28" y="1599.5" ></text>
</g>
<g >
<title>rcu_core (5,889,043 samples, 0.02%)</title><rect x="1013.6" y="1509" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1016.60" y="1519.5" ></text>
</g>
<g >
<title>[go] (245,027,832 samples, 0.82%)</title><rect x="21.0" y="1573" width="9.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="23.96" y="1583.5" ></text>
</g>
<g >
<title>security_capable (79,498,361 samples, 0.26%)</title><rect x="808.4" y="1461" width="3.1" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="811.36" y="1471.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (14,825,723 samples, 0.05%)</title><rect x="61.6" y="1637" width="0.6" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="64.61" y="1647.5" ></text>
</g>
<g >
<title>do_user_addr_fault (2,887,820 samples, 0.01%)</title><rect x="1188.8" y="1509" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1191.77" y="1519.5" ></text>
</g>
<g >
<title>error_entry (3,822,989 samples, 0.01%)</title><rect x="519.4" y="1477" width="0.2" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="522.44" y="1487.5" ></text>
</g>
<g >
<title>[vet] (4,388,099 samples, 0.01%)</title><rect x="1187.9" y="293" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.88" y="303.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,443,711 samples, 0.01%)</title><rect x="937.9" y="1589" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="940.94" y="1599.5" ></text>
</g>
<g >
<title>[unknown] (9,552,517 samples, 0.03%)</title><rect x="67.1" y="1813" width="0.3" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="70.06" y="1823.5" ></text>
</g>
<g >
<title>handle_pte_fault (11,581,202 samples, 0.04%)</title><rect x="61.7" y="1557" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="64.71" y="1567.5" ></text>
</g>
<g >
<title>do_sys_openat2 (13,380,829 samples, 0.04%)</title><rect x="32.5" y="1541" width="0.6" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="35.53" y="1551.5" ></text>
</g>
<g >
<title>__do_softirq (2,970,294 samples, 0.01%)</title><rect x="1146.6" y="1493" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1149.64" y="1503.5" ></text>
</g>
<g >
<title>wp_page_copy (8,538,836 samples, 0.03%)</title><rect x="522.2" y="1397" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="525.25" y="1407.5" ></text>
</g>
<g >
<title>madvise_collapse (6,020,625 samples, 0.02%)</title><rect x="515.8" y="1365" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="518.82" y="1375.5" ></text>
</g>
<g >
<title>handle_mm_fault (2,974,439 samples, 0.01%)</title><rect x="29.5" y="1493" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="32.51" y="1503.5" ></text>
</g>
<g >
<title>do_wp_page (14,641,745 samples, 0.05%)</title><rect x="515.1" y="1365" width="0.6" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="518.10" y="1375.5" ></text>
</g>
<g >
<title>do_anonymous_page (23,028,437 samples, 0.08%)</title><rect x="590.9" y="1477" width="0.9" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="593.92" y="1487.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (5,443,160 samples, 0.02%)</title><rect x="518.3" y="1333" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="521.31" y="1343.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (15,239,748 samples, 0.05%)</title><rect x="1028.2" y="1605" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1031.25" y="1615.5" ></text>
</g>
<g >
<title>[vet] (56,696,506 samples, 0.19%)</title><rect x="1186.2" y="1461" width="2.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1189.24" y="1471.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,942,164 samples, 0.01%)</title><rect x="1178.7" y="1589" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1181.75" y="1599.5" ></text>
</g>
<g >
<title>[go] (219,879,717 samples, 0.73%)</title><rect x="21.4" y="1557" width="8.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="24.39" y="1567.5" ></text>
</g>
<g >
<title>go (824,681,935 samples, 2.74%)</title><rect x="11.8" y="1829" width="32.4" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="14.80" y="1839.5" >go</text>
</g>
<g >
<title>[vet] (92,082,232 samples, 0.31%)</title><rect x="1185.3" y="1573" width="3.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1188.33" y="1583.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (4,599,936 samples, 0.02%)</title><rect x="962.3" y="1557" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="965.26" y="1567.5" ></text>
</g>
<g >
<title>getname_flags.part.0 (4,117,740 samples, 0.01%)</title><rect x="27.5" y="1381" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="30.51" y="1391.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (3,099,101 samples, 0.01%)</title><rect x="533.3" y="1461" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="536.31" y="1471.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,427,526 samples, 0.02%)</title><rect x="520.4" y="1333" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="523.44" y="1343.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (8,451,173 samples, 0.03%)</title><rect x="797.3" y="1381" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="800.27" y="1391.5" ></text>
</g>
<g >
<title>[vet] (9,213,221 samples, 0.03%)</title><rect x="1187.7" y="853" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.69" y="863.5" ></text>
</g>
<g >
<title>do_group_exit (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1685" width="0.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="1192.84" y="1695.5" ></text>
</g>
<g >
<title>rmqueue (20,649,326 samples, 0.07%)</title><rect x="780.0" y="1317" width="0.8" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="782.97" y="1327.5" ></text>
</g>
<g >
<title>collapse_huge_page (4,552,784 samples, 0.02%)</title><rect x="514.4" y="1301" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="517.41" y="1311.5" ></text>
</g>
<g >
<title>consume_obj_stock (3,849,416 samples, 0.01%)</title><rect x="690.7" y="1397" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="693.70" y="1407.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (3,763,934 samples, 0.01%)</title><rect x="812.6" y="1493" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="815.58" y="1503.5" ></text>
</g>
<g >
<title>unmap_page_range (72,774,942 samples, 0.24%)</title><rect x="990.5" y="1573" width="2.9" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="993.54" y="1583.5" ></text>
</g>
<g >
<title>[go] (6,900,395 samples, 0.02%)</title><rect x="25.4" y="1301" width="0.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.41" y="1311.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (3,327,876 samples, 0.01%)</title><rect x="31.5" y="1525" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="34.45" y="1535.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (4,591,251 samples, 0.02%)</title><rect x="635.9" y="1509" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="638.94" y="1519.5" ></text>
</g>
<g >
<title>[vet] (14,944,049 samples, 0.05%)</title><rect x="1187.5" y="1157" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.52" y="1167.5" ></text>
</g>
<g >
<title>__free_pages (4,108,708 samples, 0.01%)</title><rect x="1103.5" y="1317" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1106.49" y="1327.5" ></text>
</g>
<g >
<title>[vet] (20,655,767 samples, 0.07%)</title><rect x="1187.3" y="1285" width="0.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.32" y="1295.5" ></text>
</g>
<g >
<title>rcu_do_batch (9,318,462 samples, 0.03%)</title><rect x="1132.9" y="1429" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1135.87" y="1439.5" ></text>
</g>
<g >
<title>[mapgauge.test] (216,797,291 samples, 0.72%)</title><rect x="506.3" y="1445" width="8.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="509.32" y="1455.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (252,717,957 samples, 0.84%)</title><rect x="1077.8" y="1493" width="9.9" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="1080.77" y="1503.5" ></text>
</g>
<g >
<title>[mapgauge.test] (21,498,510 samples, 0.07%)</title><rect x="971.3" y="1749" width="0.8" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="974.27" y="1759.5" ></text>
</g>
<g >
<title>__schedule (4,859,452 samples, 0.02%)</title><rect x="960.1" y="1605" width="0.2" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="963.12" y="1615.5" ></text>
</g>
<g >
<title>wp_page_copy (14,476,011 samples, 0.05%)</title><rect x="962.0" y="1589" width="0.6" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="965.02" y="1599.5" ></text>
</g>
<g >
<title>irq_exit_rcu (18,918,719 samples, 0.06%)</title><rect x="1182.5" y="1621" width="0.7" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1185.47" y="1631.5" ></text>
</g>
<g >
<title>rcu_core (22,151,381 samples, 0.07%)</title><rect x="1114.7" y="1493" width="0.9" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1117.70" y="1503.5" ></text>
</g>
<g >
<title>__sys_bpf (3,874,951 samples, 0.01%)</title><rect x="522.8" y="1461" width="0.2" height="15.0" fill="rgb(239,159,38)" rx="2" ry="2" />
<text x="525.85" y="1471.5" ></text>
</g>
<g >
<title>filename_lookup (3,497,201 samples, 0.01%)</title><rect x="32.4" y="1493" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="35.36" y="1503.5" ></text>
</g>
<g >
<title>exc_page_fault (12,191,608 samples, 0.04%)</title><rect x="945.6" y="1637" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="948.61" y="1647.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,545,373 samples, 0.02%)</title><rect x="963.6" y="1701" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="966.61" y="1711.5" ></text>
</g>
<g >
<title>__anon_inode_getfile (3,505,047 samples, 0.01%)</title><rect x="645.0" y="1493" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="648.02" y="1503.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4,229,070 samples, 0.01%)</title><rect x="1147.4" y="1525" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1150.42" y="1535.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,954,923 samples, 0.02%)</title><rect x="592.1" y="1573" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="595.10" y="1583.5" ></text>
</g>
<g >
<title>radix_tree_iter_replace (23,778,194 samples, 0.08%)</title><rect x="836.5" y="1461" width="1.0" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="839.53" y="1471.5" ></text>
</g>
<g >
<title>[vet] (13,471,434 samples, 0.04%)</title><rect x="1187.5" y="1045" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.55" y="1055.5" ></text>
</g>
<g >
<title>new_slab (8,374,097 samples, 0.03%)</title><rect x="836.2" y="1397" width="0.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="839.17" y="1407.5" ></text>
</g>
<g >
<title>[vet] (81,120,706 samples, 0.27%)</title><rect x="1185.5" y="1525" width="3.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1188.50" y="1535.5" ></text>
</g>
<g >
<title>try_to_wake_up (754,032,422 samples, 2.51%)</title><rect x="1063.2" y="1541" width="29.6" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1066.19" y="1551.5" >tr..</text>
</g>
<g >
<title>radix_tree_next_chunk (7,711,648 samples, 0.03%)</title><rect x="573.8" y="1413" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="576.83" y="1423.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (7,660,885 samples, 0.03%)</title><rect x="523.7" y="1461" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="526.73" y="1471.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,865,182 samples, 0.01%)</title><rect x="514.3" y="1429" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="517.25" y="1439.5" ></text>
</g>
<g >
<title>do_group_exit (14,373,391 samples, 0.05%)</title><rect x="67.4" y="1701" width="0.6" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="70.45" y="1711.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (6,984,556 samples, 0.02%)</title><rect x="524.9" y="1429" width="0.2" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="527.85" y="1439.5" ></text>
</g>
<g >
<title>exc_page_fault (7,453,663 samples, 0.02%)</title><rect x="35.7" y="1621" width="0.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="38.68" y="1631.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (18,729,353 samples, 0.06%)</title><rect x="1105.2" y="1413" width="0.7" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1108.17" y="1423.5" ></text>
</g>
<g >
<title>__task_rq_lock (181,307,014 samples, 0.60%)</title><rect x="1065.1" y="1525" width="7.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="1068.10" y="1535.5" ></text>
</g>
<g >
<title>seq_write (6,185,028 samples, 0.02%)</title><rect x="587.1" y="1397" width="0.3" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="590.11" y="1407.5" ></text>
</g>
<g >
<title>[vet] (14,231,561 samples, 0.05%)</title><rect x="1187.5" y="1093" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.55" y="1103.5" ></text>
</g>
<g >
<title>irq_exit_rcu (7,056,542 samples, 0.02%)</title><rect x="1047.2" y="1557" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1050.18" y="1567.5" ></text>
</g>
<g >
<title>__folio_alloc (16,274,358 samples, 0.05%)</title><rect x="518.6" y="1333" width="0.6" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="521.56" y="1343.5" ></text>
</g>
<g >
<title>do_syscall_64 (9,206,654 samples, 0.03%)</title><rect x="30.1" y="1541" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="33.14" y="1551.5" ></text>
</g>
<g >
<title>_raw_spin_lock (39,781,924 samples, 0.13%)</title><rect x="743.0" y="1429" width="1.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="746.01" y="1439.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5,434,496 samples, 0.02%)</title><rect x="686.5" y="1333" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="689.48" y="1343.5" ></text>
</g>
<g >
<title>mod_objcg_state (13,398,098 samples, 0.04%)</title><rect x="1104.6" y="1413" width="0.6" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1107.64" y="1423.5" ></text>
</g>
<g >
<title>[mapgauge.test] (24,094,091 samples, 0.08%)</title><rect x="965.6" y="1701" width="1.0" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="968.61" y="1711.5" ></text>
</g>
<g >
<title>task_work_run (3,327,876 samples, 0.01%)</title><rect x="31.5" y="1493" width="0.1" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="34.45" y="1503.5" ></text>
</g>
<g >
<title>mod_objcg_state (3,412,642 samples, 0.01%)</title><rect x="1143.8" y="1573" width="0.1" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="1146.81" y="1583.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,978,979 samples, 0.02%)</title><rect x="520.4" y="1381" width="0.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="523.41" y="1391.5" ></text>
</g>
<g >
<title>__slab_free (6,919,490 samples, 0.02%)</title><rect x="1021.5" y="1461" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1024.50" y="1471.5" ></text>
</g>
<g >
<title>__unfreeze_partials (11,673,066 samples, 0.04%)</title><rect x="1106.7" y="1381" width="0.5" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1109.74" y="1391.5" ></text>
</g>
<g >
<title>clear_page_erms (3,036,396 samples, 0.01%)</title><rect x="514.5" y="1237" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="517.47" y="1247.5" ></text>
</g>
<g >
<title>___slab_alloc (9,220,537 samples, 0.03%)</title><rect x="716.8" y="1301" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="719.76" y="1311.5" ></text>
</g>
<g >
<title>[compile] (14,040,161 samples, 0.05%)</title><rect x="10.8" y="1733" width="0.5" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.78" y="1743.5" ></text>
</g>
<g >
<title>native_write_msr (2,643,006 samples, 0.01%)</title><rect x="969.0" y="1525" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="972.00" y="1535.5" ></text>
</g>
<g >
<title>__handle_mm_fault (16,104,837 samples, 0.05%)</title><rect x="522.0" y="1445" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="524.95" y="1455.5" ></text>
</g>
<g >
<title>alloc_empty_file (1,212,848,019 samples, 4.04%)</title><rect x="653.9" y="1429" width="47.7" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="656.93" y="1439.5" >allo..</text>
</g>
<g >
<title>memset_orig (13,731,147 samples, 0.05%)</title><rect x="740.0" y="1413" width="0.5" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="742.96" y="1423.5" ></text>
</g>
<g >
<title>[vet] (152,383,267 samples, 0.51%)</title><rect x="1183.6" y="1733" width="6.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1186.65" y="1743.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (2,997,588 samples, 0.01%)</title><rect x="527.7" y="1381" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="530.73" y="1391.5" ></text>
</g>
<g >
<title>file_free_rcu (4,125,938 samples, 0.01%)</title><rect x="1180.4" y="1493" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1183.39" y="1503.5" ></text>
</g>
<g >
<title>do_user_addr_fault (17,495,097 samples, 0.06%)</title><rect x="938.6" y="1573" width="0.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="941.62" y="1583.5" ></text>
</g>
<g >
<title>__do_softirq (5,416,194 samples, 0.02%)</title><rect x="1138.6" y="1477" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1141.59" y="1487.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (3,863,964 samples, 0.01%)</title><rect x="521.2" y="1445" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="524.20" y="1455.5" ></text>
</g>
<g >
<title>allocate_slab (8,374,097 samples, 0.03%)</title><rect x="836.2" y="1381" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="839.17" y="1391.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="773" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="783.5" ></text>
</g>
<g >
<title>irqentry_exit (3,863,964 samples, 0.01%)</title><rect x="521.2" y="1461" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="524.20" y="1471.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (904,814,618 samples, 3.01%)</title><rect x="764.9" y="1429" width="35.6" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="767.94" y="1439.5" >__k..</text>
</g>
<g >
<title>vfs_fstatat (5,728,893 samples, 0.02%)</title><rect x="32.3" y="1525" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="35.30" y="1535.5" ></text>
</g>
<g >
<title>_raw_spin_lock (38,010,949 samples, 0.13%)</title><rect x="650.5" y="1445" width="1.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="653.50" y="1455.5" ></text>
</g>
<g >
<title>alloc_empty_file (4,614,939 samples, 0.02%)</title><rect x="652.2" y="1445" width="0.2" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="655.24" y="1455.5" ></text>
</g>
<g >
<title>collapse_huge_page (3,093,002 samples, 0.01%)</title><rect x="523.0" y="1381" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="526.00" y="1391.5" ></text>
</g>
<g >
<title>__alloc_pages (5,455,429 samples, 0.02%)</title><rect x="759.4" y="1349" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="762.40" y="1359.5" ></text>
</g>
<g >
<title>try_charge_memcg (12,296,521 samples, 0.04%)</title><rect x="799.7" y="1397" width="0.5" height="15.0" fill="rgb(210,27,6)" rx="2" ry="2" />
<text x="802.69" y="1407.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (14,433,882 samples, 0.05%)</title><rect x="944.4" y="1589" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="947.43" y="1599.5" ></text>
</g>
<g >
<title>[asm] (10,314,566 samples, 0.03%)</title><rect x="10.0" y="1765" width="0.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="13.00" y="1775.5" ></text>
</g>
<g >
<title>[mapgauge.test] (20,018,011,609 samples, 66.62%)</title><rect x="175.5" y="1701" width="786.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="178.54" y="1711.5" >[mapgauge.test]</text>
</g>
<g >
<title>syscall_return_via_sysret (3,704,237 samples, 0.01%)</title><rect x="961.5" y="1685" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="964.48" y="1695.5" ></text>
</g>
<g >
<title>[mapgauge.test] (22,817,559,112 samples, 75.93%)</title><rect x="68.1" y="1781" width="896.0" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="71.12" y="1791.5" >[mapgauge.test]</text>
</g>
<g >
<title>do_user_addr_fault (3,086,477 samples, 0.01%)</title><rect x="514.3" y="1397" width="0.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="517.28" y="1407.5" ></text>
</g>
<g >
<title>__folio_alloc (9,182,651 samples, 0.03%)</title><rect x="938.9" y="1477" width="0.3" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="941.85" y="1487.5" ></text>
</g>
<g >
<title>[go] (5,515,412 samples, 0.02%)</title><rect x="25.5" y="1269" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.46" y="1279.5" ></text>
</g>
<g >
<title>do_rmdir (5,981,405 samples, 0.02%)</title><rect x="34.6" y="1557" width="0.2" height="15.0" fill="rgb(235,140,33)" rx="2" ry="2" />
<text x="37.56" y="1567.5" ></text>
</g>
<g >
<title>[link] (43,079,964 samples, 0.14%)</title><rect x="59.9" y="1637" width="1.7" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="62.92" y="1647.5" ></text>
</g>
<g >
<title>idr_get_free (175,456,605 samples, 0.58%)</title><rect x="829.6" y="1461" width="6.9" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="832.61" y="1471.5" ></text>
</g>
<g >
<title>vma_alloc_folio (49,522,348 samples, 0.16%)</title><rect x="942.1" y="1525" width="1.9" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="945.06" y="1535.5" ></text>
</g>
<g >
<title>[mapgauge.test] (19,299,450,765 samples, 64.23%)</title><rect x="193.1" y="1685" width="757.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="196.10" y="1695.5" >[mapgauge.test]</text>
</g>
<g >
<title>__do_fault (3,720,433 samples, 0.01%)</title><rect x="66.5" y="1621" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="69.47" y="1631.5" ></text>
</g>
<g >
<title>[vet] (4,388,099 samples, 0.01%)</title><rect x="1187.9" y="309" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.88" y="319.5" ></text>
</g>
<g >
<title>[vet] (9,213,221 samples, 0.03%)</title><rect x="1187.7" y="837" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.69" y="847.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (4,155,862 samples, 0.01%)</title><rect x="44.0" y="1733" width="0.2" height="15.0" fill="rgb(252,220,52)" rx="2" ry="2" />
<text x="47.02" y="1743.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,943,586 samples, 0.02%)</title><rect x="43.4" y="1717" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="46.42" y="1727.5" ></text>
</g>
<g >
<title>do_wp_page (14,476,011 samples, 0.05%)</title><rect x="962.0" y="1605" width="0.6" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="965.02" y="1615.5" ></text>
</g>
<g >
<title>rmqueue (8,285,875 samples, 0.03%)</title><rect x="958.2" y="1509" width="0.3" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="961.17" y="1519.5" ></text>
</g>
<g >
<title>memcg_account_kmem (6,118,067 samples, 0.02%)</title><rect x="697.9" y="1381" width="0.3" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="700.93" y="1391.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (58,038,694 samples, 0.19%)</title><rect x="559.2" y="1445" width="2.3" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="562.18" y="1455.5" ></text>
</g>
<g >
<title>__do_softirq (25,182,934 samples, 0.08%)</title><rect x="1038.8" y="1541" width="1.0" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1041.85" y="1551.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (5,470,586 samples, 0.02%)</title><rect x="990.3" y="1589" width="0.2" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="993.32" y="1599.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (68,590,522 samples, 0.23%)</title><rect x="825.2" y="1493" width="2.7" height="15.0" fill="rgb(221,78,18)" rx="2" ry="2" />
<text x="828.16" y="1503.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (4,616,673 samples, 0.02%)</title><rect x="687.1" y="1301" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="690.12" y="1311.5" ></text>
</g>
<g >
<title>[vet] (14,944,049 samples, 0.05%)</title><rect x="1187.5" y="1173" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.52" y="1183.5" ></text>
</g>
<g >
<title>__block_write_begin_int (3,020,511 samples, 0.01%)</title><rect x="66.6" y="1573" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="69.61" y="1583.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,062,915 samples, 0.02%)</title><rect x="36.6" y="1637" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="39.60" y="1647.5" ></text>
</g>
<g >
<title>vma_alloc_folio (5,416,274 samples, 0.02%)</title><rect x="520.8" y="1365" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="523.83" y="1375.5" ></text>
</g>
<g >
<title>vfs_statx (19,546,686 samples, 0.07%)</title><rect x="27.7" y="1397" width="0.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="30.72" y="1407.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,171,100 samples, 0.02%)</title><rect x="975.2" y="1653" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="978.20" y="1663.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (11,612,422 samples, 0.04%)</title><rect x="567.8" y="1413" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="570.76" y="1423.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (7,056,542 samples, 0.02%)</title><rect x="1047.2" y="1541" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1050.18" y="1551.5" ></text>
</g>
<g >
<title>llist_add_batch (23,041,429 samples, 0.08%)</title><rect x="1088.3" y="1509" width="0.9" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="1091.29" y="1519.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,896,422 samples, 0.02%)</title><rect x="1181.9" y="1605" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1184.90" y="1615.5" ></text>
</g>
<g >
<title>[vet] (18,508,437 samples, 0.06%)</title><rect x="1187.4" y="1253" width="0.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.38" y="1263.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (63,157,649 samples, 0.21%)</title><rect x="797.7" y="1413" width="2.5" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="800.69" y="1423.5" ></text>
</g>
<g >
<title>xa_load (3,814,504 samples, 0.01%)</title><rect x="739.6" y="1381" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="742.58" y="1391.5" ></text>
</g>
<g >
<title>[asm] (13,657,906 samples, 0.05%)</title><rect x="10.0" y="1813" width="0.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="13.00" y="1823.5" ></text>
</g>
<g >
<title>task_work_run (4,833,908,887 samples, 16.09%)</title><rect x="993.4" y="1669" width="189.8" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="996.39" y="1679.5" >task_work_run</text>
</g>
<g >
<title>__do_softirq (5,874,845 samples, 0.02%)</title><rect x="1167.9" y="1525" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1170.94" y="1535.5" ></text>
</g>
<g >
<title>map_create (5,339,269 samples, 0.02%)</title><rect x="845.3" y="1525" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="848.33" y="1535.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (53,658,505 samples, 0.18%)</title><rect x="908.7" y="1573" width="2.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="911.68" y="1583.5" ></text>
</g>
<g >
<title>vfs_mkdir (11,283,571 samples, 0.04%)</title><rect x="35.1" y="1557" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="38.09" y="1567.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8,661,462 samples, 0.03%)</title><rect x="1166.0" y="1589" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1169.03" y="1599.5" ></text>
</g>
<g >
<title>do_syscall_64 (13,794,694 samples, 0.05%)</title><rect x="35.1" y="1605" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="38.06" y="1615.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,886,507 samples, 0.01%)</title><rect x="62.0" y="1509" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="65.01" y="1519.5" ></text>
</g>
<g >
<title>mntget (7,594,341 samples, 0.03%)</title><rect x="749.0" y="1461" width="0.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="752.02" y="1471.5" ></text>
</g>
<g >
<title>crng_fast_key_erasure (3,119,434 samples, 0.01%)</title><rect x="784.1" y="1285" width="0.1" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="787.07" y="1295.5" ></text>
</g>
<g >
<title>prepare_task_switch (3,708,881 samples, 0.01%)</title><rect x="969.6" y="1589" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="972.57" y="1599.5" ></text>
</g>
<g >
<title>exit_mmap (3,452,901 samples, 0.01%)</title><rect x="44.0" y="1621" width="0.2" height="15.0" fill="rgb(236,143,34)" rx="2" ry="2" />
<text x="47.02" y="1631.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (33,849,445 samples, 0.11%)</title><rect x="590.8" y="1573" width="1.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="593.77" y="1583.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,243,076 samples, 0.02%)</title><rect x="29.1" y="1493" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="32.07" y="1503.5" ></text>
</g>
<g >
<title>file_free_rcu (3,543,922 samples, 0.01%)</title><rect x="974.5" y="1525" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="977.52" y="1535.5" ></text>
</g>
<g >
<title>wp_page_copy (9,323,390 samples, 0.03%)</title><rect x="61.8" y="1525" width="0.4" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="64.80" y="1535.5" ></text>
</g>
<g >
<title>queue_work_on (6,315,863 samples, 0.02%)</title><rect x="1112.0" y="1605" width="0.2" height="15.0" fill="rgb(248,200,48)" rx="2" ry="2" />
<text x="1114.99" y="1615.5" ></text>
</g>
<g >
<title>filemap_read (3,751,557 samples, 0.01%)</title><rect x="34.4" y="1493" width="0.2" height="15.0" fill="rgb(246,192,46)" rx="2" ry="2" />
<text x="37.41" y="1503.5" ></text>
</g>
<g >
<title>handle_pte_fault (8,031,011 samples, 0.03%)</title><rect x="65.2" y="1621" width="0.3" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="68.21" y="1631.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="725" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="735.5" ></text>
</g>
<g >
<title>[unknown] (16,232,599 samples, 0.05%)</title><rect x="972.1" y="1765" width="0.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="975.12" y="1775.5" ></text>
</g>
<g >
<title>[link] (10,060,406 samples, 0.03%)</title><rect x="60.2" y="1573" width="0.4" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="63.20" y="1583.5" ></text>
</g>
<g >
<title>__alloc_pages (3,859,670 samples, 0.01%)</title><rect x="515.5" y="1301" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="518.52" y="1311.5" ></text>
</g>
<g >
<title>handle_mm_fault (28,557,117 samples, 0.10%)</title><rect x="947.2" y="1621" width="1.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="950.23" y="1631.5" ></text>
</g>
<g >
<title>[asm] (13,304,559 samples, 0.04%)</title><rect x="10.0" y="1797" width="0.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="13.00" y="1807.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (78,065,191 samples, 0.26%)</title><rect x="861.2" y="1445" width="3.0" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="864.15" y="1455.5" ></text>
</g>
<g >
<title>__alloc_pages (6,927,804 samples, 0.02%)</title><rect x="716.8" y="1253" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="719.76" y="1263.5" ></text>
</g>
<g >
<title>perf_ctx_enable (3,230,319 samples, 0.01%)</title><rect x="969.1" y="1557" width="0.1" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="972.10" y="1567.5" ></text>
</g>
<g >
<title>filemap_map_pages (3,883,410 samples, 0.01%)</title><rect x="65.3" y="1573" width="0.2" height="15.0" fill="rgb(229,112,27)" rx="2" ry="2" />
<text x="68.30" y="1583.5" ></text>
</g>
<g >
<title>__do_softirq (2,888,185 samples, 0.01%)</title><rect x="1142.2" y="1461" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1145.22" y="1471.5" ></text>
</g>
<g >
<title>rcu_do_batch (24,627,866 samples, 0.08%)</title><rect x="1038.9" y="1493" width="0.9" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1041.87" y="1503.5" ></text>
</g>
<g >
<title>__do_softirq (2,942,702 samples, 0.01%)</title><rect x="1129.8" y="1477" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1132.79" y="1487.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (6,946,170 samples, 0.02%)</title><rect x="645.3" y="1493" width="0.3" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="648.30" y="1503.5" ></text>
</g>
<g >
<title>kmem_cache_free (10,507,240 samples, 0.03%)</title><rect x="1114.9" y="1445" width="0.5" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1117.95" y="1455.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,978,971 samples, 0.01%)</title><rect x="1123.8" y="1509" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1126.80" y="1519.5" ></text>
</g>
<g >
<title>__folio_alloc (6,123,202 samples, 0.02%)</title><rect x="63.3" y="1541" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="66.29" y="1551.5" ></text>
</g>
<g >
<title>[vet] (157,448,803 samples, 0.52%)</title><rect x="1183.5" y="1765" width="6.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1186.53" y="1775.5" ></text>
</g>
<g >
<title>__do_softirq (18,918,719 samples, 0.06%)</title><rect x="1182.5" y="1589" width="0.7" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1185.47" y="1599.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,171,100 samples, 0.02%)</title><rect x="975.2" y="1541" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="978.20" y="1551.5" ></text>
</g>
<g >
<title>try_to_wake_up (3,398,935 samples, 0.01%)</title><rect x="1062.3" y="1557" width="0.2" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="1065.33" y="1567.5" ></text>
</g>
<g >
<title>rcu_core (5,874,845 samples, 0.02%)</title><rect x="1167.9" y="1493" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1170.94" y="1503.5" ></text>
</g>
<g >
<title>[vet] (5,132,928 samples, 0.02%)</title><rect x="1187.8" y="373" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.85" y="383.5" ></text>
</g>
<g >
<title>mmput (3,452,901 samples, 0.01%)</title><rect x="44.0" y="1653" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="47.02" y="1663.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (13,411,985 samples, 0.04%)</title><rect x="1154.4" y="1541" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1157.37" y="1551.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,002,165 samples, 0.01%)</title><rect x="868.7" y="1461" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="871.68" y="1471.5" ></text>
</g>
<g >
<title>do_mmap (5,562,635 samples, 0.02%)</title><rect x="29.1" y="1429" width="0.2" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="32.10" y="1439.5" ></text>
</g>
<g >
<title>[vet] (14,231,561 samples, 0.05%)</title><rect x="1187.5" y="1109" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.55" y="1119.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (172,120,730 samples, 0.57%)</title><rect x="869.3" y="1461" width="6.8" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="872.31" y="1471.5" ></text>
</g>
<g >
<title>vfs_read (6,045,265 samples, 0.02%)</title><rect x="513.5" y="1301" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="516.49" y="1311.5" ></text>
</g>
<g >
<title>mntput (26,235,666 samples, 0.09%)</title><rect x="1179.0" y="1637" width="1.0" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1181.95" y="1647.5" ></text>
</g>
<g >
<title>refill_obj_stock (5,310,041 samples, 0.02%)</title><rect x="800.2" y="1413" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="803.18" y="1423.5" ></text>
</g>
<g >
<title>do_fault (3,883,410 samples, 0.01%)</title><rect x="65.3" y="1605" width="0.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="68.30" y="1615.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (15,012,782 samples, 0.05%)</title><rect x="1021.9" y="1493" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1024.95" y="1503.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (7,382,241 samples, 0.02%)</title><rect x="967.4" y="1605" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="970.42" y="1615.5" ></text>
</g>
<g >
<title>[vet] (3,639,564 samples, 0.01%)</title><rect x="1187.9" y="117" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.91" y="127.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,975,522 samples, 0.02%)</title><rect x="946.2" y="1653" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="949.21" y="1663.5" ></text>
</g>
<g >
<title>alloc_file (1,287,386,601 samples, 4.28%)</title><rect x="652.4" y="1445" width="50.6" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="655.42" y="1455.5" >alloc..</text>
</g>
<g >
<title>[link] (260,075,908 samples, 0.87%)</title><rect x="54.4" y="1685" width="10.3" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="57.44" y="1695.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (5,082,910 samples, 0.02%)</title><rect x="31.6" y="1573" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="34.59" y="1583.5" ></text>
</g>
<g >
<title>__handle_mm_fault (65,510,014 samples, 0.22%)</title><rect x="516.7" y="1413" width="2.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="519.66" y="1423.5" ></text>
</g>
<g >
<title>setup_object (3,099,075 samples, 0.01%)</title><rect x="717.6" y="1349" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="720.64" y="1359.5" ></text>
</g>
<g >
<title>file_free_rcu (4,581,259 samples, 0.02%)</title><rect x="1136.1" y="1397" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1139.13" y="1407.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (3,033,210 samples, 0.01%)</title><rect x="513.9" y="1333" width="0.1" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="516.87" y="1343.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,745,121 samples, 0.03%)</title><rect x="1047.1" y="1589" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1050.11" y="1599.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,432,628 samples, 0.02%)</title><rect x="29.7" y="1525" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="32.73" y="1535.5" ></text>
</g>
<g >
<title>[vet] (10,635,726 samples, 0.04%)</title><rect x="1187.6" y="965" width="0.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.63" y="975.5" ></text>
</g>
<g >
<title>d_instantiate (4,472,957 samples, 0.01%)</title><rect x="747.5" y="1461" width="0.1" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="750.47" y="1471.5" ></text>
</g>
<g >
<title>ext4_bread (4,075,277 samples, 0.01%)</title><rect x="35.3" y="1493" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="38.34" y="1503.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (8,398,806 samples, 0.03%)</title><rect x="847.7" y="1477" width="0.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="850.71" y="1487.5" ></text>
</g>
<g >
<title>__kmem_cache_free (9,400,002 samples, 0.03%)</title><rect x="1134.2" y="1445" width="0.3" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="1137.18" y="1455.5" ></text>
</g>
<g >
<title>rcu_core (4,678,192 samples, 0.02%)</title><rect x="1180.4" y="1525" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1183.39" y="1535.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4,314,762 samples, 0.01%)</title><rect x="734.4" y="1365" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="737.43" y="1375.5" ></text>
</g>
<g >
<title>file_free_rcu (14,169,687 samples, 0.05%)</title><rect x="1097.3" y="1461" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1100.28" y="1471.5" ></text>
</g>
<g >
<title>alloc_pages (191,056,282 samples, 0.64%)</title><rect x="679.2" y="1349" width="7.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="682.25" y="1359.5" ></text>
</g>
<g >
<title>rcu_core_si (5,889,043 samples, 0.02%)</title><rect x="1013.6" y="1525" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1016.60" y="1535.5" ></text>
</g>
<g >
<title>getname_flags.part.0 (2,638,371 samples, 0.01%)</title><rect x="32.9" y="1509" width="0.1" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="35.92" y="1519.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (12,357,722 samples, 0.04%)</title><rect x="588.6" y="1445" width="0.5" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="591.64" y="1455.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (6,984,556 samples, 0.02%)</title><rect x="524.9" y="1397" width="0.2" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="527.85" y="1407.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (72,774,942 samples, 0.24%)</title><rect x="990.5" y="1557" width="2.9" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="993.54" y="1567.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,913,317 samples, 0.02%)</title><rect x="946.2" y="1637" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="949.22" y="1647.5" ></text>
</g>
<g >
<title>do_mkdirat (12,012,097 samples, 0.04%)</title><rect x="35.1" y="1573" width="0.4" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="38.06" y="1583.5" ></text>
</g>
<g >
<title>exc_page_fault (6,548,472 samples, 0.02%)</title><rect x="64.7" y="1669" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="67.69" y="1679.5" ></text>
</g>
<g >
<title>__alloc_pages (9,182,651 samples, 0.03%)</title><rect x="938.9" y="1461" width="0.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="941.85" y="1471.5" ></text>
</g>
<g >
<title>__do_sys_newfstatat (2,747,594 samples, 0.01%)</title><rect x="34.2" y="1557" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="37.25" y="1567.5" ></text>
</g>
<g >
<title>rcu_core_si (13,411,985 samples, 0.04%)</title><rect x="1154.4" y="1461" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1157.37" y="1471.5" ></text>
</g>
<g >
<title>[go] (524,220,293 samples, 1.74%)</title><rect x="16.4" y="1685" width="20.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="19.42" y="1695.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,942,702 samples, 0.01%)</title><rect x="1129.8" y="1429" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1132.79" y="1439.5" ></text>
</g>
<g >
<title>exc_page_fault (6,006,873 samples, 0.02%)</title><rect x="62.5" y="1637" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="65.48" y="1647.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8,197,661 samples, 0.03%)</title><rect x="962.8" y="1685" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="965.84" y="1695.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (2,970,778 samples, 0.01%)</title><rect x="1106.0" y="1413" width="0.1" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1109.02" y="1423.5" ></text>
</g>
<g >
<title>ptep_clear_flush (4,599,936 samples, 0.02%)</title><rect x="962.3" y="1573" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="965.26" y="1583.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,930,829 samples, 0.01%)</title><rect x="1157.9" y="1477" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1160.90" y="1487.5" ></text>
</g>
<g >
<title>ihold (34,923,015 samples, 0.12%)</title><rect x="747.6" y="1461" width="1.4" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="750.65" y="1471.5" ></text>
</g>
<g >
<title>[asm] (8,982,737 samples, 0.03%)</title><rect x="10.0" y="1749" width="0.4" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="13.00" y="1759.5" ></text>
</g>
<g >
<title>__schedule (62,488,506 samples, 0.21%)</title><rect x="967.8" y="1605" width="2.5" height="15.0" fill="rgb(227,103,24)" rx="2" ry="2" />
<text x="970.80" y="1615.5" ></text>
</g>
<g >
<title>[go] (16,981,610 samples, 0.06%)</title><rect x="25.1" y="1365" width="0.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.15" y="1375.5" ></text>
</g>
<g >
<title>task_work_add (24,260,690 samples, 0.08%)</title><rect x="988.2" y="1621" width="1.0" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="991.23" y="1631.5" ></text>
</g>
<g >
<title>do_anonymous_page (6,817,761 samples, 0.02%)</title><rect x="961.8" y="1605" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="964.75" y="1615.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (3,105,014 samples, 0.01%)</title><rect x="848.0" y="1477" width="0.2" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="851.04" y="1487.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (15,576,214 samples, 0.05%)</title><rect x="967.2" y="1621" width="0.6" height="15.0" fill="rgb(244,179,42)" rx="2" ry="2" />
<text x="970.17" y="1631.5" ></text>
</g>
<g >
<title>do_page_mkwrite (3,793,659 samples, 0.01%)</title><rect x="66.6" y="1621" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="69.61" y="1631.5" ></text>
</g>
<g >
<title>irqentry_exit (5,296,229 samples, 0.02%)</title><rect x="939.5" y="1573" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="942.51" y="1583.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (5,875,531 samples, 0.02%)</title><rect x="1105.6" y="1381" width="0.3" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1108.65" y="1391.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (55,673,501 samples, 0.19%)</title><rect x="1164.2" y="1621" width="2.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="1167.19" y="1631.5" ></text>
</g>
<g >
<title>rmqueue_bulk (6,743,297 samples, 0.02%)</title><rect x="527.3" y="1333" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="530.35" y="1343.5" ></text>
</g>
<g >
<title>[vet] (5,794,601 samples, 0.02%)</title><rect x="1187.8" y="485" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.82" y="495.5" ></text>
</g>
<g >
<title>__alloc_pages (136,780,799 samples, 0.46%)</title><rect x="711.2" y="1333" width="5.3" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="714.15" y="1343.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (16,793,923 samples, 0.06%)</title><rect x="812.7" y="1493" width="0.7" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="815.73" y="1503.5" ></text>
</g>
<g >
<title>__check_object_size (10,088,691 samples, 0.03%)</title><rect x="625.8" y="1525" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="628.77" y="1535.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,577,901 samples, 0.02%)</title><rect x="945.8" y="1493" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="948.76" y="1503.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,973,850 samples, 0.01%)</title><rect x="1183.3" y="1701" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="1186.32" y="1711.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (21,812,050 samples, 0.07%)</title><rect x="826.7" y="1477" width="0.8" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="829.68" y="1487.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (43,497,231 samples, 0.14%)</title><rect x="737.8" y="1381" width="1.7" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="740.84" y="1391.5" ></text>
</g>
<g >
<title>irqentry_exit (3,876,419 samples, 0.01%)</title><rect x="948.3" y="1637" width="0.2" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="951.35" y="1647.5" ></text>
</g>
<g >
<title>folio_add_lru (3,906,890 samples, 0.01%)</title><rect x="947.5" y="1541" width="0.1" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="950.47" y="1551.5" ></text>
</g>
<g >
<title>consume_obj_stock (19,026,767 samples, 0.06%)</title><rect x="798.3" y="1397" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="801.29" y="1407.5" ></text>
</g>
<g >
<title>rcu_core_si (9,318,462 samples, 0.03%)</title><rect x="1132.9" y="1461" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1135.87" y="1471.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,263,441 samples, 0.02%)</title><rect x="1016.3" y="1557" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1019.32" y="1567.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (112,806,240 samples, 0.38%)</title><rect x="1016.5" y="1621" width="4.5" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1019.53" y="1631.5" ></text>
</g>
<g >
<title>idr_get_free (6,103,909 samples, 0.02%)</title><rect x="838.4" y="1477" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="841.38" y="1487.5" ></text>
</g>
<g >
<title>wp_page_copy (9,289,600 samples, 0.03%)</title><rect x="520.7" y="1381" width="0.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="523.68" y="1391.5" ></text>
</g>
<g >
<title>__handle_mm_fault (11,929,716 samples, 0.04%)</title><rect x="66.4" y="1669" width="0.5" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="69.41" y="1679.5" ></text>
</g>
<g >
<title>rcu_core_si (5,263,441 samples, 0.02%)</title><rect x="1016.3" y="1525" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1019.32" y="1535.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (2,997,588 samples, 0.01%)</title><rect x="527.7" y="1365" width="0.2" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="530.73" y="1375.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,876,134 samples, 0.01%)</title><rect x="1189.7" y="1765" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1192.71" y="1775.5" ></text>
</g>
<g >
<title>rcu_core (4,229,070 samples, 0.01%)</title><rect x="1147.4" y="1477" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1150.42" y="1487.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (10,677,414 samples, 0.04%)</title><rect x="954.2" y="1573" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="957.24" y="1583.5" ></text>
</g>
<g >
<title>rcu_core (2,925,965 samples, 0.01%)</title><rect x="1142.9" y="1413" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1145.88" y="1423.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (101,454,454 samples, 0.34%)</title><rect x="941.0" y="1637" width="4.0" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="944.01" y="1647.5" ></text>
</g>
<g >
<title>kmem_cache_free (138,839,915 samples, 0.46%)</title><rect x="1100.7" y="1429" width="5.4" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1103.68" y="1439.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (3,148,949 samples, 0.01%)</title><rect x="984.9" y="1589" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="987.94" y="1599.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (998,946,295 samples, 3.32%)</title><rect x="535.2" y="1461" width="39.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="538.18" y="1471.5" >bpf..</text>
</g>
<g >
<title>syscall_return_via_sysret (676,725,760 samples, 2.25%)</title><rect x="911.3" y="1573" width="26.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="914.27" y="1583.5" >s..</text>
</g>
<g >
<title>exc_page_fault (33,190,760 samples, 0.11%)</title><rect x="947.2" y="1653" width="1.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="950.20" y="1663.5" ></text>
</g>
<g >
<title>sysvec_reschedule_ipi (3,022,603 samples, 0.01%)</title><rect x="948.6" y="1653" width="0.1" height="15.0" fill="rgb(236,146,35)" rx="2" ry="2" />
<text x="951.59" y="1663.5" ></text>
</g>
<g >
<title>rcu_core_si (2,865,346 samples, 0.01%)</title><rect x="1162.3" y="1509" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1165.31" y="1519.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14,797,690 samples, 0.05%)</title><rect x="67.4" y="1813" width="0.6" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="70.43" y="1823.5" ></text>
</g>
<g >
<title>rmqueue (10,728,528 samples, 0.04%)</title><rect x="943.5" y="1461" width="0.4" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="946.53" y="1471.5" ></text>
</g>
<g >
<title>[go] (648,108,179 samples, 2.16%)</title><rect x="12.0" y="1765" width="25.4" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="14.96" y="1775.5" >[..</text>
</g>
<g >
<title>security_file_alloc (296,533,871 samples, 0.99%)</title><rect x="661.2" y="1397" width="11.7" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="664.22" y="1407.5" ></text>
</g>
<g >
<title>file_free_rcu (4,166,468 samples, 0.01%)</title><rect x="1020.8" y="1477" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1023.77" y="1487.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (48,815,414 samples, 0.16%)</title><rect x="1043.7" y="1589" width="2.0" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1046.75" y="1599.5" ></text>
</g>
<g >
<title>[mapgauge.test] (1,136,043,741 samples, 3.78%)</title><rect x="478.6" y="1525" width="44.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="481.63" y="1535.5" >[map..</text>
</g>
<g >
<title>handle_mm_fault (3,504,002 samples, 0.01%)</title><rect x="31.8" y="1541" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="34.79" y="1551.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (2,668,895 samples, 0.01%)</title><rect x="67.9" y="1509" width="0.1" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="70.91" y="1519.5" ></text>
</g>
<g >
<title>[vet] (27,421,893 samples, 0.09%)</title><rect x="1187.2" y="1349" width="1.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.15" y="1359.5" ></text>
</g>
<g >
<title>kfree (10,508,542 samples, 0.03%)</title><rect x="1134.2" y="1461" width="0.4" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1137.16" y="1471.5" ></text>
</g>
<g >
<title>sync_regs (4,609,192 samples, 0.02%)</title><rect x="945.4" y="1637" width="0.2" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="948.37" y="1647.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,631,122 samples, 0.02%)</title><rect x="62.5" y="1573" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="65.48" y="1583.5" ></text>
</g>
<g >
<title>__mmput (3,452,901 samples, 0.01%)</title><rect x="44.0" y="1637" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="47.02" y="1647.5" ></text>
</g>
<g >
<title>file_free_rcu (2,992,068 samples, 0.01%)</title><rect x="1160.2" y="1461" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1163.21" y="1471.5" ></text>
</g>
<g >
<title>_copy_from_user (44,933,245 samples, 0.15%)</title><rect x="632.1" y="1509" width="1.8" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="635.12" y="1519.5" ></text>
</g>
<g >
<title>__do_softirq (9,318,462 samples, 0.03%)</title><rect x="1132.9" y="1477" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1135.87" y="1487.5" ></text>
</g>
<g >
<title>[asm] (5,451,931 samples, 0.02%)</title><rect x="10.1" y="1685" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="13.05" y="1695.5" ></text>
</g>
<g >
<title>vma_alloc_folio (16,891,888 samples, 0.06%)</title><rect x="591.2" y="1461" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="594.17" y="1471.5" ></text>
</g>
<g >
<title>file_free_rcu (2,859,950 samples, 0.01%)</title><rect x="1012.6" y="1477" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1015.64" y="1487.5" ></text>
</g>
<g >
<title>__get_random_u32_below (6,822,315 samples, 0.02%)</title><rect x="688.7" y="1333" width="0.3" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="691.72" y="1343.5" ></text>
</g>
<g >
<title>[go] (5,803,401 samples, 0.02%)</title><rect x="43.4" y="1733" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="46.39" y="1743.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,657,773 samples, 0.02%)</title><rect x="759.2" y="1349" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="762.22" y="1359.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (12,855,234 samples, 0.04%)</title><rect x="1142.3" y="1525" width="0.5" height="15.0" fill="rgb(230,117,28)" rx="2" ry="2" />
<text x="1145.33" y="1535.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,733,568 samples, 0.01%)</title><rect x="945.3" y="1637" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="948.27" y="1647.5" ></text>
</g>
<g >
<title>cap_capable (44,476,299 samples, 0.15%)</title><rect x="815.3" y="1477" width="1.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="818.31" y="1487.5" ></text>
</g>
<g >
<title>page_remove_rmap (8,468,446 samples, 0.03%)</title><rect x="991.4" y="1525" width="0.3" height="15.0" fill="rgb(252,219,52)" rx="2" ry="2" />
<text x="994.42" y="1535.5" ></text>
</g>
<g >
<title>rcu_core_si (4,624,462 samples, 0.02%)</title><rect x="1156.6" y="1509" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1159.61" y="1519.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,784,068 samples, 0.01%)</title><rect x="513.8" y="1365" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="516.84" y="1375.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,815,482 samples, 0.01%)</title><rect x="975.2" y="1509" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="978.25" y="1519.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (24,075,123 samples, 0.08%)</title><rect x="801.6" y="1429" width="0.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="804.55" y="1439.5" ></text>
</g>
<g >
<title>[vet] (3,639,564 samples, 0.01%)</title><rect x="1187.9" y="149" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.91" y="159.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,873,545 samples, 0.01%)</title><rect x="522.4" y="1381" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="525.43" y="1391.5" ></text>
</g>
<g >
<title>call_rcu (2,824,204 samples, 0.01%)</title><rect x="1178.3" y="1637" width="0.1" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1181.27" y="1647.5" ></text>
</g>
<g >
<title>[[vdso]] (13,787,242 samples, 0.05%)</title><rect x="214.2" y="1669" width="0.5" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="217.16" y="1679.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (3,789,287 samples, 0.01%)</title><rect x="963.6" y="1685" width="0.2" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="966.61" y="1695.5" ></text>
</g>
<g >
<title>perf_ctx_disable (2,643,006 samples, 0.01%)</title><rect x="969.0" y="1557" width="0.1" height="15.0" fill="rgb(223,86,20)" rx="2" ry="2" />
<text x="972.00" y="1567.5" ></text>
</g>
<g >
<title>__do_softirq (5,889,043 samples, 0.02%)</title><rect x="1013.6" y="1541" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1016.60" y="1551.5" ></text>
</g>
<g >
<title>[[vdso]] (2,858,960 samples, 0.01%)</title><rect x="57.7" y="1669" width="0.2" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="60.75" y="1679.5" ></text>
</g>
<g >
<title>rcu_core_si (2,930,829 samples, 0.01%)</title><rect x="1157.9" y="1509" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1160.90" y="1519.5" ></text>
</g>
<g >
<title>__free_pages (11,673,066 samples, 0.04%)</title><rect x="1106.7" y="1317" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1109.74" y="1327.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (16,216,963 samples, 0.05%)</title><rect x="523.4" y="1509" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="526.39" y="1519.5" ></text>
</g>
<g >
<title>mntput_no_expire (6,899,179 samples, 0.02%)</title><rect x="1163.9" y="1621" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1166.92" y="1631.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (25,182,934 samples, 0.08%)</title><rect x="1038.8" y="1557" width="1.0" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1041.85" y="1567.5" ></text>
</g>
<g >
<title>bpf_map_release (2,123,681,561 samples, 7.07%)</title><rect x="1028.8" y="1621" width="83.4" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="1031.85" y="1631.5" >bpf_map_r..</text>
</g>
<g >
<title>native_write_msr (3,569,020 samples, 0.01%)</title><rect x="967.6" y="1557" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="970.57" y="1567.5" ></text>
</g>
<g >
<title>[vet] (5,592,162 samples, 0.02%)</title><rect x="1183.3" y="1781" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1186.31" y="1791.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (3,806,408 samples, 0.01%)</title><rect x="519.3" y="1429" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="522.29" y="1439.5" ></text>
</g>
<g >
<title>alloc_pages (5,455,429 samples, 0.02%)</title><rect x="759.4" y="1365" width="0.2" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="762.40" y="1375.5" ></text>
</g>
<g >
<title>rcu_core_si (5,258,257 samples, 0.02%)</title><rect x="1020.8" y="1525" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1023.75" y="1535.5" ></text>
</g>
<g >
<title>[vet] (160,324,937 samples, 0.53%)</title><rect x="1183.5" y="1781" width="6.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1186.53" y="1791.5" ></text>
</g>
<g >
<title>btf_nested_type_is_trusted (3,103,111 samples, 0.01%)</title><rect x="522.8" y="1349" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="525.85" y="1359.5" ></text>
</g>
<g >
<title>[mapgauge.test] (22,432,231,529 samples, 74.65%)</title><rect x="83.0" y="1733" width="880.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="86.02" y="1743.5" >[mapgauge.test]</text>
</g>
<g >
<title>rcu_core_si (5,416,194 samples, 0.02%)</title><rect x="1138.6" y="1461" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1141.59" y="1471.5" ></text>
</g>
<g >
<title>__slab_free (3,051,028 samples, 0.01%)</title><rect x="1039.2" y="1445" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1042.24" y="1455.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (6,968,124 samples, 0.02%)</title><rect x="797.3" y="1365" width="0.3" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="800.33" y="1375.5" ></text>
</g>
<g >
<title>mod_objcg_state (24,361,228 samples, 0.08%)</title><rect x="695.4" y="1381" width="1.0" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="698.44" y="1391.5" ></text>
</g>
<g >
<title>__x64_sys_getdents64 (3,884,732 samples, 0.01%)</title><rect x="26.5" y="1429" width="0.1" height="15.0" fill="rgb(228,107,25)" rx="2" ry="2" />
<text x="29.49" y="1439.5" ></text>
</g>
<g >
<title>__radix_tree_preload (6,217,771 samples, 0.02%)</title><rect x="645.6" y="1493" width="0.2" height="15.0" fill="rgb(205,4,1)" rx="2" ry="2" />
<text x="648.57" y="1503.5" ></text>
</g>
<g >
<title>madvise_collapse (3,093,002 samples, 0.01%)</title><rect x="523.0" y="1413" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="526.00" y="1423.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,028,798 samples, 0.01%)</title><rect x="1160.5" y="1621" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1163.51" y="1631.5" ></text>
</g>
<g >
<title>[compile] (5,523,576 samples, 0.02%)</title><rect x="10.9" y="1653" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.94" y="1663.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (153,694,076 samples, 0.51%)</title><rect x="666.4" y="1381" width="6.0" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="669.40" y="1391.5" ></text>
</g>
<g >
<title>file_free_rcu (10,051,225 samples, 0.03%)</title><rect x="1182.5" y="1525" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1185.47" y="1535.5" ></text>
</g>
<g >
<title>_raw_spin_lock (39,144,564 samples, 0.13%)</title><rect x="1013.9" y="1621" width="1.5" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1016.85" y="1631.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,887,805 samples, 0.01%)</title><rect x="26.0" y="1429" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="28.99" y="1439.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,930,829 samples, 0.01%)</title><rect x="1157.9" y="1557" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1160.90" y="1567.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (2,987,508 samples, 0.01%)</title><rect x="524.7" y="1429" width="0.1" height="15.0" fill="rgb(218,60,14)" rx="2" ry="2" />
<text x="527.70" y="1439.5" ></text>
</g>
<g >
<title>free_unref_page_prepare (4,014,887 samples, 0.01%)</title><rect x="1134.0" y="1429" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1137.00" y="1439.5" ></text>
</g>
<g >
<title>kmem_cache_free (8,318,662 samples, 0.03%)</title><rect x="1039.1" y="1461" width="0.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1042.12" y="1471.5" ></text>
</g>
<g >
<title>__do_softirq (7,056,542 samples, 0.02%)</title><rect x="1047.2" y="1525" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1050.18" y="1535.5" ></text>
</g>
<g >
<title>__queue_work (930,331,483 samples, 3.10%)</title><rect x="1057.7" y="1573" width="36.5" height="15.0" fill="rgb(212,34,8)" rx="2" ry="2" />
<text x="1060.67" y="1583.5" >__q..</text>
</g>
<g >
<title>[vet] (88,424,965 samples, 0.29%)</title><rect x="1185.4" y="1557" width="3.5" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1188.41" y="1567.5" ></text>
</g>
<g >
<title>[mapgauge.test] (5,060,811 samples, 0.02%)</title><rect x="513.2" y="1301" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="516.23" y="1311.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,066,465 samples, 0.02%)</title><rect x="61.3" y="1605" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="64.32" y="1615.5" ></text>
</g>
<g >
<title>__x64_sys_rt_sigreturn (3,026,532 samples, 0.01%)</title><rect x="940.0" y="1573" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="942.96" y="1583.5" ></text>
</g>
<g >
<title>__slab_free (7,642,520 samples, 0.03%)</title><rect x="1134.2" y="1429" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1137.25" y="1439.5" ></text>
</g>
<g >
<title>security_bpf (24,785,905 samples, 0.08%)</title><rect x="843.5" y="1509" width="1.0" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="846.54" y="1519.5" ></text>
</g>
<g >
<title>handle_mm_fault (22,788,365 samples, 0.08%)</title><rect x="961.8" y="1653" width="0.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="964.75" y="1663.5" ></text>
</g>
<g >
<title>__folio_alloc (3,859,670 samples, 0.01%)</title><rect x="515.5" y="1317" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="518.52" y="1327.5" ></text>
</g>
<g >
<title>do_user_addr_fault (13,442,146 samples, 0.04%)</title><rect x="66.3" y="1701" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="69.35" y="1711.5" ></text>
</g>
<g >
<title>file_free_rcu (3,993,513 samples, 0.01%)</title><rect x="975.2" y="1525" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="978.20" y="1535.5" ></text>
</g>
<g >
<title>rcu_segcblist_enqueue (43,421,109 samples, 0.14%)</title><rect x="1115.6" y="1589" width="1.7" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="1118.57" y="1599.5" ></text>
</g>
<g >
<title>__x64_sys_sched_yield (8,530,843 samples, 0.03%)</title><rect x="960.0" y="1653" width="0.4" height="15.0" fill="rgb(209,18,4)" rx="2" ry="2" />
<text x="963.05" y="1663.5" ></text>
</g>
<g >
<title>[link] (38,460,391 samples, 0.13%)</title><rect x="60.0" y="1621" width="1.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="63.03" y="1631.5" ></text>
</g>
<g >
<title>memcg_account_kmem (5,215,895 samples, 0.02%)</title><rect x="1142.6" y="1509" width="0.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="1145.56" y="1519.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (2,986,185 samples, 0.01%)</title><rect x="876.1" y="1461" width="0.1" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="879.06" y="1471.5" ></text>
</g>
<g >
<title>do_filp_open (5,224,928 samples, 0.02%)</title><rect x="30.9" y="1509" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="33.87" y="1519.5" ></text>
</g>
<g >
<title>[vet] (4,388,099 samples, 0.01%)</title><rect x="1187.9" y="245" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.88" y="255.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (3,111,490 samples, 0.01%)</title><rect x="518.4" y="1301" width="0.1" height="15.0" fill="rgb(243,178,42)" rx="2" ry="2" />
<text x="521.41" y="1311.5" ></text>
</g>
<g >
<title>error_entry (19,214,153 samples, 0.06%)</title><rect x="960.5" y="1685" width="0.7" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="963.45" y="1695.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (59,270,580 samples, 0.20%)</title><rect x="865.4" y="1413" width="2.3" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="868.40" y="1423.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (3,467,466 samples, 0.01%)</title><rect x="1174.2" y="1445" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1177.21" y="1455.5" ></text>
</g>
<g >
<title>get_page_from_freelist (14,759,542 samples, 0.05%)</title><rect x="947.7" y="1509" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="950.71" y="1519.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,911,397 samples, 0.02%)</title><rect x="1160.2" y="1589" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1163.21" y="1599.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (16,323,299 samples, 0.05%)</title><rect x="1136.5" y="1509" width="0.6" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1139.48" y="1519.5" ></text>
</g>
<g >
<title>do_syscall_64 (5,355,460,871 samples, 17.82%)</title><rect x="972.9" y="1797" width="210.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="975.92" y="1807.5" >do_syscall_64</text>
</g>
<g >
<title>entry_SYSCALL_64 (4,655,813 samples, 0.02%)</title><rect x="964.5" y="1717" width="0.2" height="15.0" fill="rgb(239,156,37)" rx="2" ry="2" />
<text x="967.48" y="1727.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (7,717,487 samples, 0.03%)</title><rect x="868.8" y="1461" width="0.3" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="871.80" y="1471.5" ></text>
</g>
<g >
<title>vfs_rmdir (5,248,765 samples, 0.02%)</title><rect x="34.6" y="1541" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="37.59" y="1551.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (5,301,220 samples, 0.02%)</title><rect x="679.8" y="1301" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="682.76" y="1311.5" ></text>
</g>
<g >
<title>mod_memcg_state (6,118,067 samples, 0.02%)</title><rect x="697.9" y="1365" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="700.93" y="1375.5" ></text>
</g>
<g >
<title>getname_flags (4,117,740 samples, 0.01%)</title><rect x="27.5" y="1397" width="0.2" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="30.51" y="1407.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,171,100 samples, 0.02%)</title><rect x="975.2" y="1605" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="978.20" y="1615.5" ></text>
</g>
<g >
<title>__do_softirq (13,411,985 samples, 0.04%)</title><rect x="1154.4" y="1477" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1157.37" y="1487.5" ></text>
</g>
<g >
<title>rep_movs_alternative (35,113,283 samples, 0.12%)</title><rect x="842.2" y="1509" width="1.3" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="845.16" y="1519.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (22,151,381 samples, 0.07%)</title><rect x="1114.7" y="1541" width="0.9" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1117.70" y="1551.5" ></text>
</g>
<g >
<title>restore_sigcontext (3,026,532 samples, 0.01%)</title><rect x="940.0" y="1557" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="942.96" y="1567.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (6,101,027 samples, 0.02%)</title><rect x="739.7" y="1413" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="742.73" y="1423.5" ></text>
</g>
<g >
<title>sched_clock_cpu (60,342,055 samples, 0.20%)</title><rect x="1090.4" y="1509" width="2.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="1093.43" y="1519.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,215,371 samples, 0.02%)</title><rect x="1174.1" y="1541" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1177.14" y="1551.5" ></text>
</g>
<g >
<title>[vet] (5,592,162 samples, 0.02%)</title><rect x="1183.3" y="1797" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1186.31" y="1807.5" ></text>
</g>
<g >
<title>[vet] (160,324,937 samples, 0.53%)</title><rect x="1183.5" y="1797" width="6.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1186.53" y="1807.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (7,560,435 samples, 0.03%)</title><rect x="62.4" y="1653" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="65.42" y="1663.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4,155,862 samples, 0.01%)</title><rect x="44.0" y="1781" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="47.02" y="1791.5" ></text>
</g>
<g >
<title>irqentry_exit (11,439,333 samples, 0.04%)</title><rect x="528.0" y="1509" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="531.03" y="1519.5" ></text>
</g>
<g >
<title>do_wp_page (2,662,213 samples, 0.01%)</title><rect x="938.0" y="1493" width="0.1" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="940.97" y="1503.5" ></text>
</g>
<g >
<title>put_cpu_partial (7,408,536 samples, 0.02%)</title><rect x="1174.3" y="1573" width="0.3" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1177.34" y="1583.5" ></text>
</g>
<g >
<title>bpf_seq_write (5,387,360 samples, 0.02%)</title><rect x="587.4" y="1429" width="0.2" height="15.0" fill="rgb(210,23,5)" rx="2" ry="2" />
<text x="590.41" y="1439.5" ></text>
</g>
<g >
<title>[vet] (4,122,735 samples, 0.01%)</title><rect x="1183.3" y="1749" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1186.31" y="1759.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4,299,467 samples, 0.01%)</title><rect x="1100.4" y="1429" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1103.35" y="1439.5" ></text>
</g>
<g >
<title>__folio_alloc (3,873,545 samples, 0.01%)</title><rect x="522.4" y="1365" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="525.43" y="1375.5" ></text>
</g>
<g >
<title>[go] (2,763,471 samples, 0.01%)</title><rect x="25.6" y="1189" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.57" y="1199.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (6,121,327 samples, 0.02%)</title><rect x="652.0" y="1445" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="654.99" y="1455.5" ></text>
</g>
<g >
<title>rmqueue (3,042,501 samples, 0.01%)</title><rect x="591.7" y="1397" width="0.1" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="594.71" y="1407.5" ></text>
</g>
<g >
<title>__alloc_pages (2,932,215 samples, 0.01%)</title><rect x="26.8" y="1301" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="29.75" y="1311.5" ></text>
</g>
<g >
<title>bpf_map_put_uref (7,530,236 samples, 0.03%)</title><rect x="1111.4" y="1605" width="0.3" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="1114.36" y="1615.5" ></text>
</g>
<g >
<title>blk_cgroup_congested (5,417,593 samples, 0.02%)</title><rect x="954.0" y="1557" width="0.2" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="957.03" y="1567.5" ></text>
</g>
<g >
<title>lockref_put_return (14,283,416 samples, 0.05%)</title><rect x="1160.7" y="1621" width="0.5" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="1163.67" y="1631.5" ></text>
</g>
<g >
<title>handle_pte_fault (4,577,901 samples, 0.02%)</title><rect x="945.8" y="1573" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="948.76" y="1583.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (448,899,787 samples, 1.49%)</title><rect x="1075.2" y="1525" width="17.6" height="15.0" fill="rgb(209,19,4)" rx="2" ry="2" />
<text x="1078.18" y="1535.5" ></text>
</g>
<g >
<title>shuffle_freelist (40,729,755 samples, 0.14%)</title><rect x="782.8" y="1365" width="1.6" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="785.78" y="1375.5" ></text>
</g>
<g >
<title>__do_softirq (13,724,371 samples, 0.05%)</title><rect x="1122.4" y="1525" width="0.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1125.35" y="1535.5" ></text>
</g>
<g >
<title>__folio_throttle_swaprate (5,417,593 samples, 0.02%)</title><rect x="954.0" y="1573" width="0.2" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="957.03" y="1583.5" ></text>
</g>
<g >
<title>free_unref_page_list (14,760,562 samples, 0.05%)</title><rect x="992.3" y="1461" width="0.5" height="15.0" fill="rgb(221,77,18)" rx="2" ry="2" />
<text x="995.27" y="1471.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (3,848,738 samples, 0.01%)</title><rect x="846.8" y="1493" width="0.1" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="849.75" y="1503.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (3,212,761 samples, 0.01%)</title><rect x="946.2" y="1621" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="949.25" y="1631.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,008,949 samples, 0.01%)</title><rect x="515.9" y="1285" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="518.94" y="1295.5" ></text>
</g>
<g >
<title>[mapgauge.test] (93,480,491 samples, 0.31%)</title><rect x="509.8" y="1349" width="3.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="512.79" y="1359.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (3,111,490 samples, 0.01%)</title><rect x="518.4" y="1317" width="0.1" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="521.41" y="1327.5" ></text>
</g>
<g >
<title>do_syscall_64 (10,413,566 samples, 0.03%)</title><rect x="36.1" y="1621" width="0.4" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="39.07" y="1631.5" ></text>
</g>
<g >
<title>irq_exit_rcu (20,239,862 samples, 0.07%)</title><rect x="1046.3" y="1541" width="0.8" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1049.27" y="1551.5" ></text>
</g>
<g >
<title>exc_page_fault (3,086,477 samples, 0.01%)</title><rect x="514.3" y="1413" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="517.28" y="1423.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (27,522,678 samples, 0.09%)</title><rect x="622.8" y="1557" width="1.1" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="625.83" y="1567.5" ></text>
</g>
<g >
<title>filemap_fault (3,720,433 samples, 0.01%)</title><rect x="66.5" y="1605" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="69.47" y="1615.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (105,376,644 samples, 0.35%)</title><rect x="524.3" y="1541" width="4.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="527.35" y="1551.5" ></text>
</g>
<g >
<title>init_file (29,788,575 samples, 0.10%)</title><rect x="701.6" y="1429" width="1.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="704.56" y="1439.5" ></text>
</g>
<g >
<title>__x64_sys_mkdirat (12,012,097 samples, 0.04%)</title><rect x="35.1" y="1589" width="0.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="38.06" y="1599.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,215,371 samples, 0.02%)</title><rect x="1174.1" y="1525" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1177.14" y="1535.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (12,098,030 samples, 0.04%)</title><rect x="1143.3" y="1557" width="0.5" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1146.34" y="1567.5" ></text>
</g>
<g >
<title>vfs_getattr_nosec (3,642,509 samples, 0.01%)</title><rect x="28.3" y="1381" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="31.34" y="1391.5" ></text>
</g>
<g >
<title>new_slab (261,077,261 samples, 0.87%)</title><rect x="678.9" y="1381" width="10.3" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="681.95" y="1391.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (13,794,694 samples, 0.05%)</title><rect x="35.1" y="1621" width="0.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="38.06" y="1631.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="645" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="655.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (7,683,461 samples, 0.03%)</title><rect x="877.5" y="1541" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="880.48" y="1551.5" ></text>
</g>
<g >
<title>__handle_mm_fault (3,443,711 samples, 0.01%)</title><rect x="937.9" y="1525" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="940.94" y="1535.5" ></text>
</g>
<g >
<title>[link] (127,464,464 samples, 0.42%)</title><rect x="57.9" y="1669" width="5.0" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="60.86" y="1679.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (3,081,761 samples, 0.01%)</title><rect x="702.8" y="1429" width="0.2" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="705.85" y="1439.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (758,983,482 samples, 2.53%)</title><rect x="877.8" y="1541" width="29.8" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="880.79" y="1551.5" >sy..</text>
</g>
<g >
<title>rcu_core (13,724,371 samples, 0.05%)</title><rect x="1122.4" y="1493" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1125.35" y="1503.5" ></text>
</g>
<g >
<title>__folio_alloc (3,886,507 samples, 0.01%)</title><rect x="62.0" y="1493" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="65.01" y="1503.5" ></text>
</g>
<g >
<title>migrate_enable (6,983,949 samples, 0.02%)</title><rect x="589.5" y="1445" width="0.3" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="592.51" y="1455.5" ></text>
</g>
<g >
<title>file_free_rcu (2,839,787 samples, 0.01%)</title><rect x="36.2" y="1333" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="39.22" y="1343.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,916,818 samples, 0.01%)</title><rect x="1177.2" y="1461" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1180.19" y="1471.5" ></text>
</g>
<g >
<title>ext4_dx_readdir (3,432,820 samples, 0.01%)</title><rect x="26.5" y="1381" width="0.1" height="15.0" fill="rgb(229,114,27)" rx="2" ry="2" />
<text x="29.50" y="1391.5" ></text>
</g>
<g >
<title>__x64_sys_pread64 (6,045,265 samples, 0.02%)</title><rect x="513.5" y="1317" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="516.49" y="1327.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (16,323,299 samples, 0.05%)</title><rect x="1136.5" y="1541" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1139.48" y="1551.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,112,625 samples, 0.01%)</title><rect x="26.1" y="1429" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="29.10" y="1439.5" ></text>
</g>
<g >
<title>vfree (4,698,176 samples, 0.02%)</title><rect x="990.1" y="1621" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="993.07" y="1631.5" ></text>
</g>
<g >
<title>rmqueue_bulk (6,194,848 samples, 0.02%)</title><rect x="943.7" y="1429" width="0.2" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="946.70" y="1439.5" ></text>
</g>
<g >
<title>mntput_no_expire (37,972,620 samples, 0.13%)</title><rect x="1162.4" y="1605" width="1.5" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="1165.43" y="1615.5" ></text>
</g>
<g >
<title>idr_alloc_u32 (243,870,358 samples, 0.81%)</title><rect x="828.8" y="1477" width="9.6" height="15.0" fill="rgb(238,154,37)" rx="2" ry="2" />
<text x="831.80" y="1487.5" ></text>
</g>
<g >
<title>lockref_put_return (60,664,392 samples, 0.20%)</title><rect x="1158.1" y="1605" width="2.3" height="15.0" fill="rgb(223,83,20)" rx="2" ry="2" />
<text x="1161.06" y="1615.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (214,182,097 samples, 0.71%)</title><rect x="751.7" y="1477" width="8.4" height="15.0" fill="rgb(245,186,44)" rx="2" ry="2" />
<text x="754.68" y="1487.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (4,631,430 samples, 0.02%)</title><rect x="804.8" y="1429" width="0.2" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="807.78" y="1439.5" ></text>
</g>
<g >
<title>handle_pte_fault (2,621,759 samples, 0.01%)</title><rect x="33.3" y="1333" width="0.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="36.31" y="1343.5" ></text>
</g>
<g >
<title>___slab_alloc (56,392,109 samples, 0.19%)</title><rect x="670.0" y="1365" width="2.2" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="672.96" y="1375.5" ></text>
</g>
<g >
<title>select_task_rq_fair (4,276,052 samples, 0.01%)</title><rect x="1063.0" y="1541" width="0.2" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1066.03" y="1551.5" ></text>
</g>
<g >
<title>rcu_core (5,911,397 samples, 0.02%)</title><rect x="1160.2" y="1493" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1163.21" y="1503.5" ></text>
</g>
<g >
<title>vet (171,840,536 samples, 0.57%)</title><rect x="1183.3" y="1829" width="6.7" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1186.25" y="1839.5" ></text>
</g>
<g >
<title>__slab_free (135,636,476 samples, 0.45%)</title><rect x="1171.3" y="1589" width="5.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1174.28" y="1599.5" ></text>
</g>
<g >
<title>[link] (14,203,795 samples, 0.05%)</title><rect x="60.2" y="1589" width="0.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="63.17" y="1599.5" ></text>
</g>
<g >
<title>__mmput (14,229,441 samples, 0.05%)</title><rect x="67.5" y="1637" width="0.5" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="70.45" y="1647.5" ></text>
</g>
<g >
<title>exc_page_fault (31,507,519 samples, 0.10%)</title><rect x="63.1" y="1653" width="1.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="66.10" y="1663.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (299,405,503 samples, 1.00%)</title><rect x="1076.5" y="1509" width="11.7" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="1079.48" y="1519.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,888,185 samples, 0.01%)</title><rect x="1142.2" y="1413" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1145.22" y="1423.5" ></text>
</g>
<g >
<title>__irqentry_text_end (7,143,687 samples, 0.02%)</title><rect x="938.3" y="1605" width="0.3" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="941.31" y="1615.5" ></text>
</g>
<g >
<title>__x64_sys_read (12,913,157 samples, 0.04%)</title><rect x="33.1" y="1557" width="0.5" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="36.05" y="1567.5" ></text>
</g>
<g >
<title>__collapse_huge_page_copy.isra.0 (2,923,523 samples, 0.01%)</title><rect x="26.6" y="1317" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="29.64" y="1327.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (4,673,686 samples, 0.02%)</title><rect x="514.6" y="1397" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="517.58" y="1407.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (6,585,443 samples, 0.02%)</title><rect x="26.6" y="1429" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="29.64" y="1439.5" ></text>
</g>
<g >
<title>anon_inode_getfd (6,166,269 samples, 0.02%)</title><rect x="636.1" y="1509" width="0.3" height="15.0" fill="rgb(244,183,43)" rx="2" ry="2" />
<text x="639.12" y="1519.5" ></text>
</g>
<g >
<title>xas_start (36,605,173 samples, 0.12%)</title><rect x="736.1" y="1349" width="1.4" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="739.10" y="1359.5" ></text>
</g>
<g >
<title>[go] (429,471,653 samples, 1.43%)</title><rect x="18.8" y="1637" width="16.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="21.76" y="1647.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,925,965 samples, 0.01%)</title><rect x="1142.9" y="1493" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1145.88" y="1503.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,034,455 samples, 0.01%)</title><rect x="1155.2" y="1589" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1158.17" y="1599.5" ></text>
</g>
<g >
<title>rmqueue (15,512,362 samples, 0.05%)</title><rect x="685.8" y="1301" width="0.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="688.81" y="1311.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (18,918,719 samples, 0.06%)</title><rect x="1182.5" y="1605" width="0.7" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1185.47" y="1615.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (7,747,577 samples, 0.03%)</title><rect x="590.1" y="1525" width="0.3" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="593.06" y="1535.5" ></text>
</g>
<g >
<title>mntget (32,290,473 samples, 0.11%)</title><rect x="745.9" y="1445" width="1.3" height="15.0" fill="rgb(232,125,30)" rx="2" ry="2" />
<text x="748.94" y="1455.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (25,764,440 samples, 0.09%)</title><rect x="1038.8" y="1589" width="1.0" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1041.83" y="1599.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (173,317,578 samples, 0.58%)</title><rect x="1065.4" y="1509" width="6.8" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="1068.41" y="1519.5" ></text>
</g>
<g >
<title>exc_page_fault (21,532,750 samples, 0.07%)</title><rect x="521.9" y="1493" width="0.9" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="524.92" y="1503.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5,226,272 samples, 0.02%)</title><rect x="62.5" y="1621" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="65.48" y="1631.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (22,151,381 samples, 0.07%)</title><rect x="1114.7" y="1573" width="0.9" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1117.70" y="1583.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,922,225 samples, 0.01%)</title><rect x="1169.3" y="1477" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1172.28" y="1487.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,482,873 samples, 0.01%)</title><rect x="961.8" y="1541" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="964.84" y="1551.5" ></text>
</g>
<g >
<title>rcu_core_si (2,970,294 samples, 0.01%)</title><rect x="1146.6" y="1477" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1149.64" y="1487.5" ></text>
</g>
<g >
<title>file_free_rcu (209,156,300 samples, 0.70%)</title><rect x="1098.1" y="1445" width="8.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1101.09" y="1455.5" ></text>
</g>
<g >
<title>____fput (3,327,876 samples, 0.01%)</title><rect x="31.5" y="1477" width="0.1" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="34.45" y="1487.5" ></text>
</g>
<g >
<title>put_cpu_partial (35,640,798 samples, 0.12%)</title><rect x="1133.2" y="1541" width="1.4" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1136.24" y="1551.5" ></text>
</g>
<g >
<title>do_user_addr_fault (28,482,266 samples, 0.09%)</title><rect x="590.9" y="1541" width="1.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="593.89" y="1551.5" ></text>
</g>
<g >
<title>do_anonymous_page (67,965,301 samples, 0.23%)</title><rect x="941.3" y="1541" width="2.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="944.34" y="1551.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (37,129,925 samples, 0.12%)</title><rect x="519.9" y="1493" width="1.4" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="522.89" y="1503.5" ></text>
</g>
<g >
<title>[mapgauge.test] (22,822,875,151 samples, 75.95%)</title><rect x="68.1" y="1813" width="896.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="71.09" y="1823.5" >[mapgauge.test]</text>
</g>
<g >
<title>asm_exc_page_fault (5,423,592 samples, 0.02%)</title><rect x="964.8" y="1781" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="967.79" y="1791.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,095,414 samples, 0.01%)</title><rect x="734.3" y="1365" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="737.31" y="1375.5" ></text>
</g>
<g >
<title>__radix_tree_replace (5,409,367 samples, 0.02%)</title><rect x="829.4" y="1461" width="0.2" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="832.37" y="1471.5" ></text>
</g>
<g >
<title>rcu_core (2,970,294 samples, 0.01%)</title><rect x="1146.6" y="1461" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1149.64" y="1471.5" ></text>
</g>
<g >
<title>sched_clock (6,241,189 samples, 0.02%)</title><rect x="1090.2" y="1509" width="0.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1093.19" y="1519.5" ></text>
</g>
<g >
<title>handle_pte_fault (18,600,179 samples, 0.06%)</title><rect x="520.3" y="1413" width="0.7" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="523.31" y="1423.5" ></text>
</g>
<g >
<title>clear_page_erms (6,967,901 samples, 0.02%)</title><rect x="938.9" y="1429" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="941.85" y="1439.5" ></text>
</g>
<g >
<title>handle_mm_fault (136,028,000 samples, 0.45%)</title><rect x="953.5" y="1637" width="5.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="956.45" y="1647.5" ></text>
</g>
<g >
<title>filename_lookup (13,217,651 samples, 0.04%)</title><rect x="27.8" y="1381" width="0.5" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="30.78" y="1391.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (3,786,869 samples, 0.01%)</title><rect x="939.6" y="1525" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="942.57" y="1535.5" ></text>
</g>
<g >
<title>__folio_alloc (5,261,385 samples, 0.02%)</title><rect x="961.8" y="1573" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="964.81" y="1583.5" ></text>
</g>
<g >
<title>mod_memcg_state (13,623,439 samples, 0.05%)</title><rect x="799.1" y="1381" width="0.5" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="802.10" y="1391.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (4,673,686 samples, 0.02%)</title><rect x="514.6" y="1365" width="0.2" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="517.58" y="1375.5" ></text>
</g>
<g >
<title>[go] (195,232,172 samples, 0.65%)</title><rect x="21.8" y="1541" width="7.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="24.84" y="1551.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (135,424,842 samples, 0.45%)</title><rect x="562.0" y="1429" width="5.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="564.98" y="1439.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (8,835,099 samples, 0.03%)</title><rect x="867.7" y="1429" width="0.4" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="870.73" y="1439.5" ></text>
</g>
<g >
<title>walk_component (3,220,863 samples, 0.01%)</title><rect x="28.0" y="1333" width="0.2" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="31.03" y="1343.5" ></text>
</g>
<g >
<title>cache_from_obj (6,477,932 samples, 0.02%)</title><rect x="1104.4" y="1413" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1107.38" y="1423.5" ></text>
</g>
<g >
<title>__slab_free (7,521,382 samples, 0.03%)</title><rect x="1167.9" y="1605" width="0.3" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1170.88" y="1615.5" ></text>
</g>
<g >
<title>rcu_core (39,087,739 samples, 0.13%)</title><rect x="1021.0" y="1525" width="1.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1024.00" y="1535.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,961,676 samples, 0.02%)</title><rect x="36.2" y="1429" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="39.19" y="1439.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,922,225 samples, 0.01%)</title><rect x="1169.3" y="1557" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1172.28" y="1567.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6,955,138 samples, 0.02%)</title><rect x="972.1" y="1733" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="975.13" y="1743.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,770,299 samples, 0.03%)</title><rect x="962.8" y="1701" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="965.81" y="1711.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,856,030 samples, 0.02%)</title><rect x="1169.5" y="1541" width="0.3" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1172.53" y="1551.5" ></text>
</g>
<g >
<title>rmqueue_bulk (13,830,237 samples, 0.05%)</title><rect x="780.2" y="1285" width="0.6" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="783.24" y="1295.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,942,702 samples, 0.01%)</title><rect x="1129.8" y="1525" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1132.79" y="1535.5" ></text>
</g>
<g >
<title>__alloc_pages (3,094,848 samples, 0.01%)</title><rect x="520.9" y="1333" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="523.86" y="1343.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (11,085,315 samples, 0.04%)</title><rect x="686.9" y="1317" width="0.4" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="689.87" y="1327.5" ></text>
</g>
<g >
<title>exc_page_fault (31,723,359 samples, 0.11%)</title><rect x="520.1" y="1477" width="1.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="523.10" y="1487.5" ></text>
</g>
<g >
<title>psi_group_change (7,392,774 samples, 0.02%)</title><rect x="969.8" y="1573" width="0.3" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="972.78" y="1583.5" ></text>
</g>
<g >
<title>___slab_alloc (418,347,322 samples, 1.39%)</title><rect x="768.0" y="1413" width="16.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="771.01" y="1423.5" ></text>
</g>
<g >
<title>__slab_free (18,299,762 samples, 0.06%)</title><rect x="1106.5" y="1413" width="0.7" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1109.48" y="1423.5" ></text>
</g>
<g >
<title>__folio_alloc (12,927,149 samples, 0.04%)</title><rect x="517.3" y="1349" width="0.5" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="520.26" y="1359.5" ></text>
</g>
<g >
<title>put_cpu_partial (15,230,736 samples, 0.05%)</title><rect x="1103.2" y="1397" width="0.6" height="15.0" fill="rgb(250,207,49)" rx="2" ry="2" />
<text x="1106.24" y="1407.5" ></text>
</g>
<g >
<title>__mutex_init (6,945,817 samples, 0.02%)</title><rect x="655.4" y="1413" width="0.2" height="15.0" fill="rgb(219,64,15)" rx="2" ry="2" />
<text x="658.36" y="1423.5" ></text>
</g>
<g >
<title>[mapgauge.test] (22,817,559,112 samples, 75.93%)</title><rect x="68.1" y="1765" width="896.0" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="71.12" y="1775.5" >[mapgauge.test]</text>
</g>
<g >
<title>perf_event_context_sched_out (2,571,842 samples, 0.01%)</title><rect x="969.6" y="1557" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="972.62" y="1567.5" ></text>
</g>
<g >
<title>[mapgauge.test] (8,721,394 samples, 0.03%)</title><rect x="964.4" y="1781" width="0.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="967.44" y="1791.5" ></text>
</g>
<g >
<title>irq_exit_rcu (13,411,985 samples, 0.04%)</title><rect x="1154.4" y="1509" width="0.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1157.37" y="1519.5" ></text>
</g>
<g >
<title>idr_get_next (90,445,305 samples, 0.30%)</title><rect x="864.5" y="1445" width="3.6" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="867.52" y="1455.5" ></text>
</g>
<g >
<title>__alloc_pages (12,927,149 samples, 0.04%)</title><rect x="517.3" y="1333" width="0.5" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="520.26" y="1343.5" ></text>
</g>
<g >
<title>get_page_from_freelist (15,344,741 samples, 0.05%)</title><rect x="591.2" y="1413" width="0.6" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="594.23" y="1423.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4,469,035 samples, 0.01%)</title><rect x="522.0" y="1397" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="525.04" y="1407.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6,123,202 samples, 0.02%)</title><rect x="63.3" y="1509" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="66.29" y="1519.5" ></text>
</g>
<g >
<title>x86_pmu_disable (2,643,006 samples, 0.01%)</title><rect x="969.0" y="1541" width="0.1" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="972.00" y="1551.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,856,030 samples, 0.02%)</title><rect x="1169.5" y="1557" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1172.53" y="1567.5" ></text>
</g>
<g >
<title>[vet] (9,900,658 samples, 0.03%)</title><rect x="1187.7" y="901" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.66" y="911.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (3,212,761 samples, 0.01%)</title><rect x="946.2" y="1589" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="949.25" y="1599.5" ></text>
</g>
<g >
<title>__cond_resched (3,093,038 samples, 0.01%)</title><rect x="764.8" y="1429" width="0.1" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="767.82" y="1439.5" ></text>
</g>
<g >
<title>clear_page_erms (4,657,773 samples, 0.02%)</title><rect x="759.2" y="1333" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="762.22" y="1343.5" ></text>
</g>
<g >
<title>get_page_from_freelist (18,943,550 samples, 0.06%)</title><rect x="670.3" y="1285" width="0.7" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="673.29" y="1295.5" ></text>
</g>
<g >
<title>irq_exit_rcu (22,151,381 samples, 0.07%)</title><rect x="1114.7" y="1557" width="0.9" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1117.70" y="1567.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (3,901,988 samples, 0.01%)</title><rect x="524.9" y="1365" width="0.2" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="527.94" y="1375.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (9,717,352 samples, 0.03%)</title><rect x="27.8" y="1349" width="0.4" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="30.78" y="1359.5" ></text>
</g>
<g >
<title>memset_orig (58,186,464 samples, 0.19%)</title><rect x="802.5" y="1429" width="2.3" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="805.50" y="1439.5" ></text>
</g>
<g >
<title>file_free_rcu (11,089,378 samples, 0.04%)</title><rect x="1028.3" y="1477" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1031.27" y="1487.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (3,069,855 samples, 0.01%)</title><rect x="955.2" y="1557" width="0.1" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="958.17" y="1567.5" ></text>
</g>
<g >
<title>path_openat (5,224,928 samples, 0.02%)</title><rect x="30.9" y="1493" width="0.2" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="33.87" y="1503.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (654,212,602 samples, 2.18%)</title><rect x="672.9" y="1413" width="25.7" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="675.86" y="1423.5" >k..</text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (4,531,380 samples, 0.02%)</title><rect x="948.5" y="1669" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="951.53" y="1679.5" ></text>
</g>
<g >
<title>[go] (2,763,471 samples, 0.01%)</title><rect x="25.6" y="1173" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.57" y="1183.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,863,126 samples, 0.01%)</title><rect x="1016.3" y="1461" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1019.35" y="1471.5" ></text>
</g>
<g >
<title>radix_tree_iter_tag_clear (3,866,043 samples, 0.01%)</title><rect x="838.7" y="1477" width="0.1" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="841.68" y="1487.5" ></text>
</g>
<g >
<title>[asm] (5,451,931 samples, 0.02%)</title><rect x="10.1" y="1701" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="13.05" y="1711.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,171,100 samples, 0.02%)</title><rect x="975.2" y="1621" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="978.20" y="1631.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,244,621 samples, 0.02%)</title><rect x="1013.6" y="1493" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1016.62" y="1503.5" ></text>
</g>
<g >
<title>alloc_pages (142,802,881 samples, 0.48%)</title><rect x="711.1" y="1349" width="5.6" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="714.06" y="1359.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="757" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="767.5" ></text>
</g>
<g >
<title>__x64_sys_read (793,498,631 samples, 2.64%)</title><rect x="845.6" y="1541" width="31.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="848.57" y="1551.5" >__..</text>
</g>
<g >
<title>sched_clock (56,865,255 samples, 0.19%)</title><rect x="1090.5" y="1493" width="2.3" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1093.53" y="1503.5" ></text>
</g>
<g >
<title>handle_mm_fault (90,097,342 samples, 0.30%)</title><rect x="524.4" y="1493" width="3.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="527.43" y="1503.5" ></text>
</g>
<g >
<title>do_syscall_64 (97,326,849 samples, 0.32%)</title><rect x="966.9" y="1685" width="3.8" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="969.91" y="1695.5" ></text>
</g>
<g >
<title>wp_page_copy (34,101,167 samples, 0.11%)</title><rect x="517.9" y="1365" width="1.3" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="520.86" y="1375.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,888,185 samples, 0.01%)</title><rect x="1142.2" y="1525" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1145.22" y="1535.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,771,403 samples, 0.01%)</title><rect x="60.4" y="1525" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="63.39" y="1535.5" ></text>
</g>
<g >
<title>[mapgauge.test] (5,241,773,119 samples, 17.44%)</title><rect x="322.8" y="1557" width="205.8" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="325.77" y="1567.5" >[mapgauge.test]</text>
</g>
<g >
<title>[mapgauge.test] (157,353,721 samples, 0.52%)</title><rect x="965.1" y="1765" width="6.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="968.06" y="1775.5" ></text>
</g>
<g >
<title>[asm] (3,296,515 samples, 0.01%)</title><rect x="10.1" y="1637" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="13.05" y="1647.5" ></text>
</g>
<g >
<title>[vet] (28,798,636 samples, 0.10%)</title><rect x="1187.1" y="1365" width="1.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.10" y="1375.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (98,250,007 samples, 0.33%)</title><rect x="721.0" y="1397" width="3.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="724.02" y="1407.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (52,161,072 samples, 0.17%)</title><rect x="633.9" y="1509" width="2.0" height="15.0" fill="rgb(221,75,18)" rx="2" ry="2" />
<text x="636.89" y="1519.5" ></text>
</g>
<g >
<title>[link] (572,172,229 samples, 1.90%)</title><rect x="44.5" y="1749" width="22.5" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="47.49" y="1759.5" >[..</text>
</g>
<g >
<title>__slab_free (5,307,965 samples, 0.02%)</title><rect x="1124.1" y="1573" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1127.07" y="1583.5" ></text>
</g>
<g >
<title>exc_page_fault (13,710,087 samples, 0.05%)</title><rect x="61.7" y="1621" width="0.5" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="64.65" y="1631.5" ></text>
</g>
<g >
<title>do_filp_open (10,065,433 samples, 0.03%)</title><rect x="32.5" y="1525" width="0.4" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="35.53" y="1535.5" ></text>
</g>
<g >
<title>[mapgauge.test] (6,480,028 samples, 0.02%)</title><rect x="964.4" y="1733" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="967.44" y="1743.5" ></text>
</g>
<g >
<title>memcpy_orig (23,777,106 samples, 0.08%)</title><rect x="586.2" y="1397" width="0.9" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="589.17" y="1407.5" ></text>
</g>
<g >
<title>[asm] (7,241,051 samples, 0.02%)</title><rect x="10.0" y="1733" width="0.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="13.00" y="1743.5" ></text>
</g>
<g >
<title>[vet] (124,257,151 samples, 0.41%)</title><rect x="1184.5" y="1701" width="4.9" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1187.52" y="1711.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (3,072,360 samples, 0.01%)</title><rect x="790.6" y="1397" width="0.1" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="793.59" y="1407.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,416,194 samples, 0.02%)</title><rect x="1138.6" y="1525" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1141.59" y="1535.5" ></text>
</g>
<g >
<title>rcu_core (20,239,862 samples, 0.07%)</title><rect x="1046.3" y="1477" width="0.8" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1049.27" y="1487.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8,910,039 samples, 0.03%)</title><rect x="31.2" y="1541" width="0.4" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="34.23" y="1551.5" ></text>
</g>
<g >
<title>memset_orig (4,541,529 samples, 0.02%)</title><rect x="839.7" y="1493" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="842.74" y="1503.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,642,476 samples, 0.02%)</title><rect x="592.2" y="1557" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="595.16" y="1567.5" ></text>
</g>
<g >
<title>fpu__restore_sig (3,788,206 samples, 0.01%)</title><rect x="959.9" y="1621" width="0.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="962.90" y="1631.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,970,294 samples, 0.01%)</title><rect x="1146.6" y="1557" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1149.64" y="1567.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (50,575,614 samples, 0.17%)</title><rect x="1090.8" y="1477" width="2.0" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1093.77" y="1487.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,961,676 samples, 0.02%)</title><rect x="36.2" y="1349" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="39.19" y="1359.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (3,817,046 samples, 0.01%)</title><rect x="962.3" y="1509" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="965.26" y="1519.5" ></text>
</g>
<g >
<title>dentry_free (6,509,879 samples, 0.02%)</title><rect x="1157.3" y="1605" width="0.3" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="1160.35" y="1615.5" ></text>
</g>
<g >
<title>free_slab (9,383,214 samples, 0.03%)</title><rect x="1103.4" y="1349" width="0.4" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1106.44" y="1359.5" ></text>
</g>
<g >
<title>exc_page_fault (20,586,480 samples, 0.07%)</title><rect x="938.6" y="1589" width="0.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="941.59" y="1599.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,896,422 samples, 0.02%)</title><rect x="1181.9" y="1509" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1184.90" y="1519.5" ></text>
</g>
<g >
<title>dequeue_task_fair (22,216,741 samples, 0.07%)</title><rect x="968.0" y="1573" width="0.9" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="971.04" y="1583.5" ></text>
</g>
<g >
<title>irqentry_exit (8,313,402 samples, 0.03%)</title><rect x="523.7" y="1493" width="0.3" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="526.70" y="1503.5" ></text>
</g>
<g >
<title>discard_slab (9,936,495 samples, 0.03%)</title><rect x="1103.4" y="1365" width="0.4" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1106.42" y="1375.5" ></text>
</g>
<g >
<title>kernfs_fop_read_iter (3,033,210 samples, 0.01%)</title><rect x="513.9" y="1301" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="516.87" y="1311.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,112,625 samples, 0.01%)</title><rect x="26.1" y="1413" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="29.10" y="1423.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,911,397 samples, 0.02%)</title><rect x="1160.2" y="1573" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1163.21" y="1583.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,624,462 samples, 0.02%)</title><rect x="1156.6" y="1477" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1159.61" y="1487.5" ></text>
</g>
<g >
<title>do_user_addr_fault (68,581,172 samples, 0.23%)</title><rect x="516.6" y="1445" width="2.7" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="519.60" y="1455.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (12,323,546 samples, 0.04%)</title><rect x="716.7" y="1317" width="0.5" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="719.67" y="1327.5" ></text>
</g>
<g >
<title>handle_pte_fault (21,293,772 samples, 0.07%)</title><rect x="961.8" y="1621" width="0.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="964.75" y="1631.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (10,076,538 samples, 0.03%)</title><rect x="686.0" y="1285" width="0.4" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="689.02" y="1295.5" ></text>
</g>
<g >
<title>consume_obj_stock (19,700,006 samples, 0.07%)</title><rect x="738.3" y="1365" width="0.8" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="741.35" y="1375.5" ></text>
</g>
<g >
<title>[asm] (3,986,343 samples, 0.01%)</title><rect x="10.1" y="1653" width="0.1" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="13.05" y="1663.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,171,100 samples, 0.02%)</title><rect x="975.2" y="1637" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="978.20" y="1647.5" ></text>
</g>
<g >
<title>handle_mm_fault (6,548,472 samples, 0.02%)</title><rect x="64.7" y="1637" width="0.2" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="67.69" y="1647.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (20,586,480 samples, 0.07%)</title><rect x="938.6" y="1605" width="0.8" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="941.59" y="1615.5" ></text>
</g>
<g >
<title>[vet] (17,062,874 samples, 0.06%)</title><rect x="1187.4" y="1237" width="0.7" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.44" y="1247.5" ></text>
</g>
<g >
<title>[unknown] (165,866,424 samples, 0.55%)</title><rect x="37.5" y="1813" width="6.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="40.51" y="1823.5" ></text>
</g>
<g >
<title>init_file (434,303,106 samples, 1.45%)</title><rect x="655.8" y="1413" width="17.1" height="15.0" fill="rgb(246,188,45)" rx="2" ry="2" />
<text x="658.81" y="1423.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (4,639,917 samples, 0.02%)</title><rect x="744.6" y="1429" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="747.57" y="1439.5" ></text>
</g>
<g >
<title>rcu_do_batch (15,773,217 samples, 0.05%)</title><rect x="1136.5" y="1445" width="0.6" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1139.50" y="1455.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (25,764,440 samples, 0.09%)</title><rect x="1038.8" y="1605" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1041.83" y="1615.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,932,550 samples, 0.01%)</title><rect x="1161.7" y="1589" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1164.69" y="1599.5" ></text>
</g>
<g >
<title>getname (3,315,396 samples, 0.01%)</title><rect x="32.9" y="1525" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="35.92" y="1535.5" ></text>
</g>
<g >
<title>rcu_core_si (2,942,164 samples, 0.01%)</title><rect x="1178.7" y="1541" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1181.75" y="1551.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (4,466,344 samples, 0.01%)</title><rect x="1177.3" y="1589" width="0.2" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1180.30" y="1599.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (5,389,108 samples, 0.02%)</title><rect x="944.2" y="1589" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="947.15" y="1599.5" ></text>
</g>
<g >
<title>[vet] (118,986,158 samples, 0.40%)</title><rect x="1184.7" y="1653" width="4.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1187.66" y="1663.5" ></text>
</g>
<g >
<title>alloc_file (6,035,964 samples, 0.02%)</title><rect x="648.9" y="1461" width="0.2" height="15.0" fill="rgb(234,133,31)" rx="2" ry="2" />
<text x="651.88" y="1471.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,970,294 samples, 0.01%)</title><rect x="1146.6" y="1509" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1149.64" y="1519.5" ></text>
</g>
<g >
<title>allocate_slab (12,411,141 samples, 0.04%)</title><rect x="781.7" y="1285" width="0.4" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="784.66" y="1295.5" ></text>
</g>
<g >
<title>security_capable (4,602,465 samples, 0.02%)</title><rect x="840.6" y="1493" width="0.2" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="843.65" y="1503.5" ></text>
</g>
<g >
<title>do_nanosleep (81,962,140 samples, 0.27%)</title><rect x="967.1" y="1637" width="3.2" height="15.0" fill="rgb(253,220,52)" rx="2" ry="2" />
<text x="970.07" y="1647.5" ></text>
</g>
<g >
<title>[unknown] (37,731,109 samples, 0.13%)</title><rect x="971.3" y="1781" width="1.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="974.27" y="1791.5" ></text>
</g>
<g >
<title>[asm] (6,562,918 samples, 0.02%)</title><rect x="10.0" y="1717" width="0.3" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="13.03" y="1727.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (21,577,912 samples, 0.07%)</title><rect x="781.3" y="1333" width="0.9" height="15.0" fill="rgb(208,16,4)" rx="2" ry="2" />
<text x="784.33" y="1343.5" ></text>
</g>
<g >
<title>update_load_avg (5,332,067 samples, 0.02%)</title><rect x="968.4" y="1541" width="0.2" height="15.0" fill="rgb(240,165,39)" rx="2" ry="2" />
<text x="971.42" y="1551.5" ></text>
</g>
<g >
<title>rcu_core_si (5,896,422 samples, 0.02%)</title><rect x="1181.9" y="1541" width="0.2" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1184.90" y="1551.5" ></text>
</g>
<g >
<title>__mmput (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1621" width="0.2" height="15.0" fill="rgb(249,203,48)" rx="2" ry="2" />
<text x="1192.84" y="1631.5" ></text>
</g>
<g >
<title>do_user_addr_fault (27,095,071 samples, 0.09%)</title><rect x="520.1" y="1461" width="1.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="523.13" y="1471.5" ></text>
</g>
<g >
<title>handle_pte_fault (11,219,151 samples, 0.04%)</title><rect x="66.4" y="1653" width="0.5" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="69.44" y="1663.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,961,676 samples, 0.02%)</title><rect x="36.2" y="1461" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="39.19" y="1471.5" ></text>
</g>
<g >
<title>vfs_fstatat (24,962,396 samples, 0.08%)</title><rect x="27.5" y="1413" width="1.0" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="30.51" y="1423.5" ></text>
</g>
<g >
<title>__slab_free (50,306,592 samples, 0.17%)</title><rect x="1102.4" y="1413" width="2.0" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1105.41" y="1423.5" ></text>
</g>
<g >
<title>handle_mm_fault (27,703,700 samples, 0.09%)</title><rect x="590.9" y="1525" width="1.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="593.89" y="1535.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,916,818 samples, 0.01%)</title><rect x="1177.2" y="1557" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1180.19" y="1567.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,900,367 samples, 0.01%)</title><rect x="1164.1" y="1573" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1167.07" y="1583.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (3,594,122 samples, 0.01%)</title><rect x="30.9" y="1477" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="33.89" y="1487.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,865,346 samples, 0.01%)</title><rect x="1162.3" y="1541" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1165.31" y="1551.5" ></text>
</g>
<g >
<title>[vet] (2,891,509 samples, 0.01%)</title><rect x="1187.9" y="85" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.94" y="95.5" ></text>
</g>
<g >
<title>[vet] (66,854,322 samples, 0.22%)</title><rect x="1186.0" y="1493" width="2.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1188.99" y="1503.5" ></text>
</g>
<g >
<title>__alloc_pages (4,657,773 samples, 0.02%)</title><rect x="759.2" y="1365" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="762.22" y="1375.5" ></text>
</g>
<g >
<title>_get_random_bytes (4,677,527 samples, 0.02%)</title><rect x="784.0" y="1317" width="0.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="787.01" y="1327.5" ></text>
</g>
<g >
<title>handle_mm_fault (12,350,169 samples, 0.04%)</title><rect x="61.7" y="1589" width="0.5" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="64.71" y="1599.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,889,043 samples, 0.02%)</title><rect x="1013.6" y="1557" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1016.60" y="1567.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,978,971 samples, 0.01%)</title><rect x="1123.8" y="1525" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1126.80" y="1535.5" ></text>
</g>
<g >
<title>bpf_map_put (42,227,658 samples, 0.14%)</title><rect x="533.5" y="1461" width="1.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="536.52" y="1471.5" ></text>
</g>
<g >
<title>[mapgauge.test] (4,977,540,219 samples, 16.56%)</title><rect x="328.7" y="1541" width="195.5" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="331.70" y="1551.5" >[mapgauge.test]</text>
</g>
<g >
<title>link (608,090,090 samples, 2.02%)</title><rect x="44.2" y="1829" width="23.9" height="15.0" fill="rgb(235,141,33)" rx="2" ry="2" />
<text x="47.19" y="1839.5" >l..</text>
</g>
<g >
<title>madvise_vma_behavior (6,020,625 samples, 0.02%)</title><rect x="515.8" y="1381" width="0.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="518.82" y="1391.5" ></text>
</g>
<g >
<title>[compile] (7,765,068 samples, 0.03%)</title><rect x="10.9" y="1701" width="0.3" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.92" y="1711.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (10,090,441 samples, 0.03%)</title><rect x="1038.2" y="1605" width="0.4" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1041.20" y="1615.5" ></text>
</g>
<g >
<title>alloc_fd (3,097,801 samples, 0.01%)</title><rect x="749.9" y="1477" width="0.1" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="752.89" y="1487.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (3,992,993 samples, 0.01%)</title><rect x="43.4" y="1669" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="46.43" y="1679.5" ></text>
</g>
<g >
<title>file_free_rcu (15,162,148 samples, 0.05%)</title><rect x="1114.8" y="1461" width="0.6" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1117.76" y="1471.5" ></text>
</g>
<g >
<title>__x64_sys_rt_sigreturn (3,788,206 samples, 0.01%)</title><rect x="959.9" y="1653" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="962.90" y="1663.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,229,070 samples, 0.01%)</title><rect x="1147.4" y="1541" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1150.42" y="1551.5" ></text>
</g>
<g >
<title>amd_clear_divider (7,630,153 samples, 0.03%)</title><rect x="876.7" y="1541" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="879.73" y="1551.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (124,909,665 samples, 0.42%)</title><rect x="732.9" y="1381" width="4.9" height="15.0" fill="rgb(220,70,16)" rx="2" ry="2" />
<text x="735.93" y="1391.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (3,477,591 samples, 0.01%)</title><rect x="969.6" y="1573" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="972.58" y="1583.5" ></text>
</g>
<g >
<title>hpage_collapse_scan_pmd (3,093,002 samples, 0.01%)</title><rect x="523.0" y="1397" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="526.00" y="1407.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,469,035 samples, 0.01%)</title><rect x="522.0" y="1349" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="525.04" y="1359.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (44,779,113 samples, 0.15%)</title><rect x="1090.8" y="1461" width="1.7" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="1093.77" y="1471.5" ></text>
</g>
<g >
<title>[vet] (44,845,765 samples, 0.15%)</title><rect x="1186.6" y="1429" width="1.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1189.64" y="1439.5" ></text>
</g>
<g >
<title>exc_page_fault (72,387,580 samples, 0.24%)</title><rect x="516.6" y="1461" width="2.8" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="519.60" y="1471.5" ></text>
</g>
<g >
<title>handle_pte_fault (122,926,025 samples, 0.41%)</title><rect x="953.9" y="1605" width="4.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="956.91" y="1615.5" ></text>
</g>
<g >
<title>rcu_core (2,916,818 samples, 0.01%)</title><rect x="1177.2" y="1477" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1180.19" y="1487.5" ></text>
</g>
<g >
<title>mmput (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1637" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="1192.84" y="1647.5" ></text>
</g>
<g >
<title>discard_slab (31,028,760 samples, 0.10%)</title><rect x="1133.4" y="1509" width="1.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1136.38" y="1519.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4,631,122 samples, 0.02%)</title><rect x="62.5" y="1589" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="65.48" y="1599.5" ></text>
</g>
<g >
<title>rcu_core_si (16,323,299 samples, 0.05%)</title><rect x="1136.5" y="1477" width="0.6" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1139.48" y="1487.5" ></text>
</g>
<g >
<title>__d_alloc (955,776,151 samples, 3.18%)</title><rect x="703.0" y="1429" width="37.6" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="706.03" y="1439.5" >__d..</text>
</g>
<g >
<title>rcu_core (2,865,346 samples, 0.01%)</title><rect x="1162.3" y="1493" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1165.31" y="1503.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6,123,202 samples, 0.02%)</title><rect x="63.3" y="1557" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="66.29" y="1567.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4,644,029 samples, 0.02%)</title><rect x="781.0" y="1349" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="784.00" y="1359.5" ></text>
</g>
<g >
<title>delete_node (6,157,069 samples, 0.02%)</title><rect x="837.1" y="1429" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="840.10" y="1439.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (4,552,784 samples, 0.02%)</title><rect x="514.4" y="1365" width="0.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="517.41" y="1375.5" ></text>
</g>
<g >
<title>rcu_do_batch (327,157,824 samples, 1.09%)</title><rect x="1097.9" y="1461" width="12.8" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1100.90" y="1471.5" ></text>
</g>
<g >
<title>[vet] (3,639,564 samples, 0.01%)</title><rect x="1187.9" y="165" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.91" y="175.5" ></text>
</g>
<g >
<title>idr_preload (23,088,109 samples, 0.08%)</title><rect x="838.8" y="1493" width="0.9" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="841.83" y="1503.5" ></text>
</g>
<g >
<title>expand_files (24,737,440 samples, 0.08%)</title><rect x="758.9" y="1445" width="1.0" height="15.0" fill="rgb(235,139,33)" rx="2" ry="2" />
<text x="761.95" y="1455.5" ></text>
</g>
<g >
<title>clear_page_erms (10,071,480 samples, 0.03%)</title><rect x="518.6" y="1285" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="521.62" y="1295.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (3,148,949 samples, 0.01%)</title><rect x="984.9" y="1573" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="987.94" y="1583.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,932,550 samples, 0.01%)</title><rect x="1161.7" y="1493" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1164.69" y="1503.5" ></text>
</g>
<g >
<title>security_file_free (282,757,221 samples, 0.94%)</title><rect x="1166.4" y="1621" width="11.1" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="1169.37" y="1631.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (5,932,910 samples, 0.02%)</title><rect x="962.8" y="1653" width="0.3" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="965.84" y="1663.5" ></text>
</g>
<g >
<title>__folio_alloc (47,970,984 samples, 0.16%)</title><rect x="942.1" y="1509" width="1.9" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="945.12" y="1519.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,916,818 samples, 0.01%)</title><rect x="1177.2" y="1525" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1180.19" y="1535.5" ></text>
</g>
<g >
<title>consume_obj_stock (17,466,508 samples, 0.06%)</title><rect x="697.2" y="1381" width="0.7" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="700.24" y="1391.5" ></text>
</g>
<g >
<title>vfs_read (2,926,840 samples, 0.01%)</title><rect x="61.4" y="1541" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="64.38" y="1551.5" ></text>
</g>
<g >
<title>[unknown] (195,853,751 samples, 0.65%)</title><rect x="965.1" y="1797" width="7.7" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="968.06" y="1807.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,980,032 samples, 0.01%)</title><rect x="1169.6" y="1445" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1172.55" y="1455.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (6,234,366 samples, 0.02%)</title><rect x="638.0" y="1509" width="0.3" height="15.0" fill="rgb(233,131,31)" rx="2" ry="2" />
<text x="641.04" y="1519.5" ></text>
</g>
<g >
<title>memcg_account_kmem (14,226,040 samples, 0.05%)</title><rect x="799.1" y="1397" width="0.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="802.07" y="1407.5" ></text>
</g>
<g >
<title>[compile] (4,159,497 samples, 0.01%)</title><rect x="11.0" y="1621" width="0.1" height="15.0" fill="rgb(212,33,8)" rx="2" ry="2" />
<text x="13.97" y="1631.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,942,702 samples, 0.01%)</title><rect x="1129.8" y="1493" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1132.79" y="1503.5" ></text>
</g>
<g >
<title>exc_page_fault (4,217,182 samples, 0.01%)</title><rect x="31.8" y="1573" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="34.79" y="1583.5" ></text>
</g>
<g >
<title>lru_add_fn (6,152,908 samples, 0.02%)</title><rect x="954.8" y="1525" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="957.78" y="1535.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (133,404,541 samples, 0.44%)</title><rect x="1050.0" y="1557" width="5.2" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="1053.00" y="1567.5" ></text>
</g>
<g >
<title>exc_page_fault (3,096,897 samples, 0.01%)</title><rect x="523.3" y="1509" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="526.27" y="1519.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (3,059,943 samples, 0.01%)</title><rect x="515.3" y="1333" width="0.1" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="518.28" y="1343.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (15,239,748 samples, 0.05%)</title><rect x="1028.2" y="1557" width="0.6" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1031.25" y="1567.5" ></text>
</g>
<g >
<title>array_map_free_timers (5,189,256 samples, 0.02%)</title><rect x="1111.5" y="1589" width="0.2" height="15.0" fill="rgb(246,192,45)" rx="2" ry="2" />
<text x="1114.45" y="1599.5" ></text>
</g>
<g >
<title>__free_slab (25,462,724 samples, 0.08%)</title><rect x="1133.6" y="1477" width="1.0" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1136.59" y="1487.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,930,753 samples, 0.01%)</title><rect x="1144.3" y="1557" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1147.27" y="1567.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,930,829 samples, 0.01%)</title><rect x="1157.9" y="1573" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1160.90" y="1583.5" ></text>
</g>
<g >
<title>[vet] (12,815,498 samples, 0.04%)</title><rect x="1187.5" y="1029" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.55" y="1039.5" ></text>
</g>
<g >
<title>ext4_evict_inode (8,670,159 samples, 0.03%)</title><rect x="36.1" y="1541" width="0.4" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="39.13" y="1551.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (20,649,326 samples, 0.07%)</title><rect x="780.0" y="1301" width="0.8" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="782.97" y="1311.5" ></text>
</g>
<g >
<title>[unknown] (2,953,394 samples, 0.01%)</title><rect x="964.3" y="1781" width="0.1" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="967.33" y="1791.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (3,100,673 samples, 0.01%)</title><rect x="797.5" y="1349" width="0.1" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="800.48" y="1359.5" ></text>
</g>
<g >
<title>unmap_single_vma (72,774,942 samples, 0.24%)</title><rect x="990.5" y="1589" width="2.9" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="993.54" y="1599.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4,961,676 samples, 0.02%)</title><rect x="36.2" y="1413" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="39.19" y="1423.5" ></text>
</g>
<g >
<title>do_anonymous_page (79,353,142 samples, 0.26%)</title><rect x="524.6" y="1445" width="3.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="527.59" y="1455.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (3,977,790 samples, 0.01%)</title><rect x="33.3" y="1413" width="0.2" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="36.31" y="1423.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (3,265,958 samples, 0.01%)</title><rect x="1183.3" y="1669" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="1186.34" y="1679.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (5,470,586 samples, 0.02%)</title><rect x="990.3" y="1573" width="0.2" height="15.0" fill="rgb(222,82,19)" rx="2" ry="2" />
<text x="993.32" y="1583.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,925,965 samples, 0.01%)</title><rect x="1142.9" y="1397" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1145.88" y="1407.5" ></text>
</g>
<g >
<title>do_wp_page (10,102,972 samples, 0.03%)</title><rect x="61.8" y="1541" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="64.77" y="1551.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (19,018,913 samples, 0.06%)</title><rect x="762.3" y="1477" width="0.7" height="15.0" fill="rgb(254,228,54)" rx="2" ry="2" />
<text x="765.27" y="1487.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (8,139,271 samples, 0.03%)</title><rect x="1062.0" y="1557" width="0.3" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1064.98" y="1567.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (3,327,876 samples, 0.01%)</title><rect x="31.5" y="1509" width="0.1" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="34.45" y="1519.5" ></text>
</g>
<g >
<title>[mapgauge.test] (897,730,695 samples, 2.99%)</title><rect x="486.2" y="1509" width="35.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="489.22" y="1519.5" >[m..</text>
</g>
<g >
<title>_raw_spin_unlock (16,766,189 samples, 0.06%)</title><rect x="1146.8" y="1573" width="0.6" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1149.76" y="1583.5" ></text>
</g>
<g >
<title>file_free_rcu (7,565,706 samples, 0.03%)</title><rect x="1154.4" y="1413" width="0.3" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1157.37" y="1423.5" ></text>
</g>
<g >
<title>__d_instantiate (3,113,465 samples, 0.01%)</title><rect x="650.4" y="1445" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="653.38" y="1455.5" ></text>
</g>
<g >
<title>do_tkill (10,581,697 samples, 0.04%)</title><rect x="965.8" y="1621" width="0.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="968.83" y="1631.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (6,516,508 samples, 0.02%)</title><rect x="1046.8" y="1445" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1049.81" y="1455.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (10,009,517 samples, 0.03%)</title><rect x="785.2" y="1413" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="788.22" y="1423.5" ></text>
</g>
<g >
<title>[vet] (4,388,099 samples, 0.01%)</title><rect x="1187.9" y="277" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.88" y="287.5" ></text>
</g>
<g >
<title>[go] (397,514,819 samples, 1.32%)</title><rect x="19.4" y="1621" width="15.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="22.40" y="1631.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (55,793,441 samples, 0.19%)</title><rect x="1140.8" y="1557" width="2.2" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1143.81" y="1567.5" ></text>
</g>
<g >
<title>allocate_slab (199,271,057 samples, 0.66%)</title><rect x="710.9" y="1365" width="7.9" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="713.94" y="1375.5" ></text>
</g>
<g >
<title>[vet] (9,900,658 samples, 0.03%)</title><rect x="1187.7" y="917" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.66" y="927.5" ></text>
</g>
<g >
<title>consume_obj_stock (6,181,251 samples, 0.02%)</title><rect x="730.5" y="1381" width="0.3" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="733.54" y="1391.5" ></text>
</g>
<g >
<title>tick_sched_timer (3,390,206 samples, 0.01%)</title><rect x="1097.1" y="1493" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1100.12" y="1503.5" ></text>
</g>
<g >
<title>ptep_clear_flush (3,099,149 samples, 0.01%)</title><rect x="61.9" y="1509" width="0.1" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="64.89" y="1519.5" ></text>
</g>
<g >
<title>rcu_do_batch (18,918,719 samples, 0.06%)</title><rect x="1182.5" y="1541" width="0.7" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1185.47" y="1551.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,062,915 samples, 0.02%)</title><rect x="36.6" y="1653" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="39.60" y="1663.5" ></text>
</g>
<g >
<title>pick_next_task (6,229,209 samples, 0.02%)</title><rect x="969.3" y="1589" width="0.3" height="15.0" fill="rgb(206,4,1)" rx="2" ry="2" />
<text x="972.33" y="1599.5" ></text>
</g>
<g >
<title>ext4_readdir (3,884,732 samples, 0.01%)</title><rect x="26.5" y="1397" width="0.1" height="15.0" fill="rgb(214,44,10)" rx="2" ry="2" />
<text x="29.49" y="1407.5" ></text>
</g>
<g >
<title>handle_mm_fault (7,660,311 samples, 0.03%)</title><rect x="945.7" y="1605" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="948.67" y="1615.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8,789,783 samples, 0.03%)</title><rect x="29.7" y="1541" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="32.68" y="1551.5" ></text>
</g>
<g >
<title>__alloc_pages (15,540,852 samples, 0.05%)</title><rect x="947.7" y="1525" width="0.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="950.68" y="1535.5" ></text>
</g>
<g >
<title>__do_softirq (5,856,030 samples, 0.02%)</title><rect x="1169.5" y="1525" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1172.53" y="1535.5" ></text>
</g>
<g >
<title>unmap_single_vma (14,128,559 samples, 0.05%)</title><rect x="67.5" y="1589" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="70.46" y="1599.5" ></text>
</g>
<g >
<title>zap_page_range_single (3,212,761 samples, 0.01%)</title><rect x="946.2" y="1557" width="0.2" height="15.0" fill="rgb(227,104,24)" rx="2" ry="2" />
<text x="949.25" y="1567.5" ></text>
</g>
<g >
<title>clear_page_erms (13,204,020 samples, 0.04%)</title><rect x="947.8" y="1493" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="950.77" y="1503.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5,171,024 samples, 0.02%)</title><rect x="1163.7" y="1589" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1166.69" y="1599.5" ></text>
</g>
<g >
<title>clockevents_program_event (6,193,313 samples, 0.02%)</title><rect x="967.5" y="1573" width="0.2" height="15.0" fill="rgb(244,182,43)" rx="2" ry="2" />
<text x="970.46" y="1583.5" ></text>
</g>
<g >
<title>call_rcu (130,491,168 samples, 0.43%)</title><rect x="1112.2" y="1621" width="5.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1115.24" y="1631.5" ></text>
</g>
<g >
<title>handle_mm_fault (23,242,265 samples, 0.08%)</title><rect x="520.2" y="1445" width="0.9" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="523.19" y="1455.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (3,095,585 samples, 0.01%)</title><rect x="948.4" y="1621" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="951.38" y="1631.5" ></text>
</g>
<g >
<title>__x64_sys_newfstatat (5,728,893 samples, 0.02%)</title><rect x="32.3" y="1557" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="35.30" y="1567.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,866,697 samples, 0.01%)</title><rect x="940.4" y="1621" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="943.37" y="1631.5" ></text>
</g>
<g >
<title>all (30,049,076,012 samples, 100%)</title><rect x="10.0" y="1845" width="1180.0" height="15.0" fill="rgb(213,39,9)" rx="2" ry="2" />
<text x="13.00" y="1855.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (21,419,348 samples, 0.07%)</title><rect x="689.8" y="1397" width="0.9" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="692.83" y="1407.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (589,576,948 samples, 1.96%)</title><rect x="536.0" y="1445" width="23.2" height="15.0" fill="rgb(212,33,7)" rx="2" ry="2" />
<text x="539.03" y="1455.5" >_..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,661,462 samples, 0.03%)</title><rect x="1166.0" y="1605" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1169.03" y="1615.5" ></text>
</g>
<g >
<title>rcu_core_si (7,056,542 samples, 0.02%)</title><rect x="1047.2" y="1509" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1050.18" y="1519.5" ></text>
</g>
<g >
<title>[vet] (5,132,928 samples, 0.02%)</title><rect x="1187.8" y="389" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.85" y="399.5" ></text>
</g>
<g >
<title>__do_softirq (20,239,862 samples, 0.07%)</title><rect x="1046.3" y="1509" width="0.8" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1049.27" y="1519.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (847,815,626 samples, 2.82%)</title><rect x="706.4" y="1413" width="33.3" height="15.0" fill="rgb(222,79,18)" rx="2" ry="2" />
<text x="709.43" y="1423.5" >km..</text>
</g>
<g >
<title>do_syscall_64 (10,850,243 samples, 0.04%)</title><rect x="592.3" y="1573" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="595.34" y="1583.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (22,151,381 samples, 0.07%)</title><rect x="1114.7" y="1589" width="0.9" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1117.70" y="1599.5" ></text>
</g>
<g >
<title>__radix_tree_delete (43,440,986 samples, 0.14%)</title><rect x="1048.3" y="1557" width="1.7" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="1051.29" y="1567.5" ></text>
</g>
<g >
<title>do_user_addr_fault (9,168,794 samples, 0.03%)</title><rect x="945.6" y="1621" width="0.4" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="948.61" y="1631.5" ></text>
</g>
<g >
<title>[vet] (122,157,227 samples, 0.41%)</title><rect x="1184.6" y="1685" width="4.8" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1187.61" y="1695.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3,636,618 samples, 0.01%)</title><rect x="523.4" y="1461" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="526.39" y="1471.5" ></text>
</g>
<g >
<title>do_syscall_64 (7,223,957,411 samples, 24.04%)</title><rect x="623.9" y="1557" width="283.7" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="626.91" y="1567.5" >do_syscall_64</text>
</g>
<g >
<title>do_anonymous_page (25,615,578 samples, 0.09%)</title><rect x="947.3" y="1573" width="1.0" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="950.29" y="1583.5" ></text>
</g>
<g >
<title>do_anonymous_page (5,241,201 samples, 0.02%)</title><rect x="522.0" y="1413" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="525.01" y="1423.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5,355,460,871 samples, 17.82%)</title><rect x="972.9" y="1813" width="210.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="975.92" y="1823.5" >entry_SYSCALL_64_after_hwfr..</text>
</g>
<g >
<title>__alloc_pages (3,766,899 samples, 0.01%)</title><rect x="962.4" y="1541" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="965.44" y="1551.5" ></text>
</g>
<g >
<title>do_user_addr_fault (85,464,653 samples, 0.28%)</title><rect x="941.1" y="1605" width="3.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="944.07" y="1615.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,199,510 samples, 0.02%)</title><rect x="974.5" y="1653" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="977.50" y="1663.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (343,637,222 samples, 1.14%)</title><rect x="1097.3" y="1525" width="13.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1100.28" y="1535.5" ></text>
</g>
<g >
<title>folio_add_lru (9,257,670 samples, 0.03%)</title><rect x="954.8" y="1557" width="0.3" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
<text x="957.75" y="1567.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,416,194 samples, 0.02%)</title><rect x="1138.6" y="1541" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1141.59" y="1551.5" ></text>
</g>
<g >
<title>ext4_getblk (4,075,277 samples, 0.01%)</title><rect x="35.3" y="1477" width="0.2" height="15.0" fill="rgb(247,197,47)" rx="2" ry="2" />
<text x="38.34" y="1487.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (5,803,919 samples, 0.02%)</title><rect x="1162.2" y="1605" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1165.20" y="1615.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (244,258,507 samples, 0.81%)</title><rect x="577.8" y="1429" width="9.6" height="15.0" fill="rgb(251,214,51)" rx="2" ry="2" />
<text x="580.81" y="1439.5" ></text>
</g>
<g >
<title>kmem_cache_free (2,885,183 samples, 0.01%)</title><rect x="1013.6" y="1461" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1016.65" y="1471.5" ></text>
</g>
<g >
<title>rmqueue (12,230,868 samples, 0.04%)</title><rect x="716.0" y="1301" width="0.5" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="719.04" y="1311.5" ></text>
</g>
<g >
<title>migrate_disable (9,972,227 samples, 0.03%)</title><rect x="589.1" y="1445" width="0.4" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="592.12" y="1455.5" ></text>
</g>
<g >
<title>copy_page_to_iter (8,363,769 samples, 0.03%)</title><rect x="33.1" y="1461" width="0.4" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="36.14" y="1471.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (8,313,402 samples, 0.03%)</title><rect x="523.7" y="1477" width="0.3" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="526.70" y="1487.5" ></text>
</g>
<g >
<title>do_read_fault (3,883,410 samples, 0.01%)</title><rect x="65.3" y="1589" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="68.30" y="1599.5" ></text>
</g>
<g >
<title>vma_expand (3,115,381 samples, 0.01%)</title><rect x="514.6" y="1317" width="0.2" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="517.65" y="1327.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (10,809,744 samples, 0.04%)</title><rect x="575.5" y="1445" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="578.51" y="1455.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="661" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="671.5" ></text>
</g>
<g >
<title>kmem_cache_free (3,619,872 samples, 0.01%)</title><rect x="1166.1" y="1461" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1169.09" y="1471.5" ></text>
</g>
<g >
<title>idr_remove (200,446,979 samples, 0.67%)</title><rect x="1047.5" y="1589" width="7.8" height="15.0" fill="rgb(214,43,10)" rx="2" ry="2" />
<text x="1050.45" y="1599.5" ></text>
</g>
<g >
<title>free_unref_page (10,255,326 samples, 0.03%)</title><rect x="1133.8" y="1445" width="0.4" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="1136.76" y="1455.5" ></text>
</g>
<g >
<title>rcu_core (2,930,753 samples, 0.01%)</title><rect x="1144.3" y="1461" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1147.27" y="1471.5" ></text>
</g>
<g >
<title>do_send_sig_info (4,215,827 samples, 0.01%)</title><rect x="966.0" y="1589" width="0.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="969.01" y="1599.5" ></text>
</g>
<g >
<title>[go] (129,637,691 samples, 0.43%)</title><rect x="23.9" y="1509" width="5.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="26.90" y="1519.5" ></text>
</g>
<g >
<title>ptep_clear_flush (6,999,851 samples, 0.02%)</title><rect x="518.3" y="1349" width="0.2" height="15.0" fill="rgb(207,11,2)" rx="2" ry="2" />
<text x="521.25" y="1359.5" ></text>
</g>
<g >
<title>get_any_partial (6,224,193 samples, 0.02%)</title><rect x="710.5" y="1381" width="0.2" height="15.0" fill="rgb(211,30,7)" rx="2" ry="2" />
<text x="713.49" y="1391.5" ></text>
</g>
<g >
<title>hpage_collapse_scan_pmd (6,585,443 samples, 0.02%)</title><rect x="26.6" y="1349" width="0.3" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="29.64" y="1359.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (43,587,327 samples, 0.15%)</title><rect x="664.2" y="1365" width="1.7" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="667.17" y="1375.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (13,784,698 samples, 0.05%)</title><rect x="1087.7" y="1493" width="0.5" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="1090.70" y="1503.5" ></text>
</g>
<g >
<title>do_user_addr_fault (24,213,034 samples, 0.08%)</title><rect x="961.8" y="1669" width="0.9" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="964.75" y="1679.5" ></text>
</g>
<g >
<title>get_page_from_freelist (286,675,822 samples, 0.95%)</title><rect x="769.5" y="1333" width="11.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="772.53" y="1343.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5,283,121 samples, 0.02%)</title><rect x="790.4" y="1397" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="793.39" y="1407.5" ></text>
</g>
<g >
<title>__x64_sys_read (3,751,557 samples, 0.01%)</title><rect x="34.4" y="1573" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="37.41" y="1583.5" ></text>
</g>
<g >
<title>cache_from_obj (43,075,991 samples, 0.14%)</title><rect x="1137.1" y="1557" width="1.7" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1140.12" y="1567.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,199,510 samples, 0.02%)</title><rect x="974.5" y="1621" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="977.50" y="1631.5" ></text>
</g>
<g >
<title>[go] (18,349,228 samples, 0.06%)</title><rect x="25.1" y="1381" width="0.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.09" y="1391.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,927,888 samples, 0.01%)</title><rect x="1015.3" y="1573" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1018.27" y="1583.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,880,480 samples, 0.01%)</title><rect x="575.4" y="1445" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="578.36" y="1455.5" ></text>
</g>
<g >
<title>array_map_alloc_check (13,597,301 samples, 0.05%)</title><rect x="811.5" y="1493" width="0.6" height="15.0" fill="rgb(237,149,35)" rx="2" ry="2" />
<text x="814.54" y="1503.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (318,102,133 samples, 1.06%)</title><rect x="561.7" y="1445" width="12.5" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="564.71" y="1455.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,263,441 samples, 0.02%)</title><rect x="1016.3" y="1493" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1019.32" y="1503.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (4,077,477 samples, 0.01%)</title><rect x="43.4" y="1685" width="0.2" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="46.42" y="1695.5" ></text>
</g>
<g >
<title>do_exit (4,155,862 samples, 0.01%)</title><rect x="44.0" y="1685" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="47.02" y="1695.5" ></text>
</g>
<g >
<title>clear_page_erms (3,873,545 samples, 0.01%)</title><rect x="522.4" y="1317" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="525.43" y="1327.5" ></text>
</g>
<g >
<title>radix_tree_node_alloc.constprop.0 (8,374,097 samples, 0.03%)</title><rect x="836.2" y="1445" width="0.3" height="15.0" fill="rgb(250,209,49)" rx="2" ry="2" />
<text x="839.17" y="1455.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1749" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="1192.84" y="1759.5" ></text>
</g>
<g >
<title>rcu_core_si (18,918,719 samples, 0.06%)</title><rect x="1182.5" y="1573" width="0.7" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1185.47" y="1583.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (50,272,414 samples, 0.17%)</title><rect x="1174.6" y="1573" width="2.0" height="15.0" fill="rgb(225,92,22)" rx="2" ry="2" />
<text x="1177.63" y="1583.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,599,098 samples, 0.02%)</title><rect x="1154.5" y="1397" width="0.2" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1157.49" y="1407.5" ></text>
</g>
<g >
<title>do_user_addr_fault (28,557,117 samples, 0.10%)</title><rect x="947.2" y="1637" width="1.1" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="950.23" y="1647.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (8,276,843 samples, 0.03%)</title><rect x="33.8" y="1589" width="0.3" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="36.81" y="1599.5" ></text>
</g>
<g >
<title>[go] (21,576,328 samples, 0.07%)</title><rect x="25.0" y="1413" width="0.9" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.01" y="1423.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (3,874,951 samples, 0.01%)</title><rect x="522.8" y="1477" width="0.2" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="525.85" y="1487.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (3,848,333 samples, 0.01%)</title><rect x="724.7" y="1365" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="727.72" y="1375.5" ></text>
</g>
<g >
<title>[unknown] (4,105,855 samples, 0.01%)</title><rect x="43.8" y="1797" width="0.2" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="46.85" y="1807.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,865,346 samples, 0.01%)</title><rect x="1162.3" y="1557" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1165.31" y="1567.5" ></text>
</g>
<g >
<title>__x64_sys_unlinkat (8,670,159 samples, 0.03%)</title><rect x="36.1" y="1605" width="0.4" height="15.0" fill="rgb(211,29,6)" rx="2" ry="2" />
<text x="39.13" y="1615.5" ></text>
</g>
<g >
<title>kvmalloc_node (10,113,202 samples, 0.03%)</title><rect x="759.2" y="1413" width="0.4" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="762.22" y="1423.5" ></text>
</g>
<g >
<title>[vet] (16,401,875 samples, 0.05%)</title><rect x="1187.5" y="1221" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.46" y="1231.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,566,378,568 samples, 5.21%)</title><rect x="528.8" y="1541" width="61.6" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="531.85" y="1551.5" >do_sys..</text>
</g>
<g >
<title>__irq_exit_rcu (8,777,079 samples, 0.03%)</title><rect x="1136.1" y="1477" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1139.13" y="1487.5" ></text>
</g>
<g >
<title>array_map_alloc (1,306,189,777 samples, 4.35%)</title><rect x="760.2" y="1493" width="51.3" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="763.25" y="1503.5" >array..</text>
</g>
<g >
<title>do_anonymous_page (9,310,579 samples, 0.03%)</title><rect x="520.3" y="1397" width="0.4" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="523.31" y="1407.5" ></text>
</g>
<g >
<title>irq_exit_rcu (15,239,748 samples, 0.05%)</title><rect x="1028.2" y="1573" width="0.6" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1031.25" y="1583.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (45,764,346 samples, 0.15%)</title><rect x="32.0" y="1589" width="1.8" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="34.98" y="1599.5" ></text>
</g>
<g >
<title>do_user_addr_fault (145,286,437 samples, 0.48%)</title><rect x="953.2" y="1653" width="5.8" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="956.25" y="1663.5" ></text>
</g>
<g >
<title>handle_pte_fault (73,071,600 samples, 0.24%)</title><rect x="941.3" y="1557" width="2.8" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="944.25" y="1567.5" ></text>
</g>
<g >
<title>do_wp_page (36,427,987 samples, 0.12%)</title><rect x="517.8" y="1381" width="1.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="520.77" y="1391.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,896,422 samples, 0.02%)</title><rect x="1181.9" y="1573" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1184.90" y="1583.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,229,070 samples, 0.01%)</title><rect x="1147.4" y="1557" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1150.42" y="1567.5" ></text>
</g>
<g >
<title>[mapgauge.test] (6,480,028 samples, 0.02%)</title><rect x="964.4" y="1749" width="0.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="967.44" y="1759.5" ></text>
</g>
<g >
<title>rcu_core (13,411,985 samples, 0.04%)</title><rect x="1154.4" y="1445" width="0.5" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1157.37" y="1455.5" ></text>
</g>
<g >
<title>rcu_do_batch (14,599,625 samples, 0.05%)</title><rect x="1028.3" y="1493" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1031.27" y="1503.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (4,155,862 samples, 0.01%)</title><rect x="44.0" y="1749" width="0.2" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="47.02" y="1759.5" ></text>
</g>
<g >
<title>native_write_msr (191,417,854 samples, 0.64%)</title><rect x="1078.0" y="1477" width="7.5" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="1081.00" y="1487.5" ></text>
</g>
<g >
<title>[vet] (14,944,049 samples, 0.05%)</title><rect x="1187.5" y="1189" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.52" y="1199.5" ></text>
</g>
<g >
<title>__do_softirq (2,900,367 samples, 0.01%)</title><rect x="1164.1" y="1541" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1167.07" y="1551.5" ></text>
</g>
<g >
<title>mntput (53,828,287 samples, 0.18%)</title><rect x="1161.8" y="1621" width="2.1" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="1164.80" y="1631.5" ></text>
</g>
<g >
<title>file_free_rcu (2,930,829 samples, 0.01%)</title><rect x="1157.9" y="1461" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1160.90" y="1471.5" ></text>
</g>
<g >
<title>handle_mm_fault (8,031,011 samples, 0.03%)</title><rect x="65.2" y="1653" width="0.3" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="68.21" y="1663.5" ></text>
</g>
<g >
<title>__free_pages (11,415,002 samples, 0.04%)</title><rect x="1133.7" y="1461" width="0.5" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1136.71" y="1471.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (23,967,995 samples, 0.08%)</title><rect x="30.6" y="1573" width="1.0" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="33.64" y="1583.5" ></text>
</g>
<g >
<title>seq_write (5,428,547 samples, 0.02%)</title><rect x="875.2" y="1413" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="878.15" y="1423.5" ></text>
</g>
<g >
<title>rcu_core (2,930,829 samples, 0.01%)</title><rect x="1157.9" y="1493" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1160.90" y="1503.5" ></text>
</g>
<g >
<title>file_free_rcu (14,773,458 samples, 0.05%)</title><rect x="1038.9" y="1477" width="0.5" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1041.87" y="1487.5" ></text>
</g>
<g >
<title>rcu_core_si (20,239,862 samples, 0.07%)</title><rect x="1046.3" y="1493" width="0.8" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1049.27" y="1503.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8,185,376 samples, 0.03%)</title><rect x="1047.1" y="1573" width="0.4" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1050.13" y="1583.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,416,194 samples, 0.02%)</title><rect x="1138.6" y="1429" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1141.59" y="1439.5" ></text>
</g>
<g >
<title>vma_alloc_folio (16,295,165 samples, 0.05%)</title><rect x="947.7" y="1557" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="950.65" y="1567.5" ></text>
</g>
<g >
<title>[mapgauge.test] (16,956,914,270 samples, 56.43%)</title><rect x="274.7" y="1637" width="665.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="277.71" y="1647.5" >[mapgauge.test]</text>
</g>
<g >
<title>[go] (5,955,374 samples, 0.02%)</title><rect x="43.4" y="1781" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="46.39" y="1791.5" ></text>
</g>
<g >
<title>__unfreeze_partials (33,920,477 samples, 0.11%)</title><rect x="1133.3" y="1525" width="1.3" height="15.0" fill="rgb(233,133,31)" rx="2" ry="2" />
<text x="1136.26" y="1535.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,678,192 samples, 0.02%)</title><rect x="1180.4" y="1509" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1183.39" y="1519.5" ></text>
</g>
<g >
<title>walk_component (3,500,299 samples, 0.01%)</title><rect x="28.2" y="1349" width="0.1" height="15.0" fill="rgb(241,167,40)" rx="2" ry="2" />
<text x="31.16" y="1359.5" ></text>
</g>
<g >
<title>cap_capable (24,405,563 samples, 0.08%)</title><rect x="822.2" y="1461" width="1.0" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="825.23" y="1471.5" ></text>
</g>
<g >
<title>_raw_spin_lock (22,686,043 samples, 0.08%)</title><rect x="1061.1" y="1557" width="0.9" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1064.09" y="1567.5" ></text>
</g>
<g >
<title>__irqentry_text_end (5,388,260 samples, 0.02%)</title><rect x="519.7" y="1493" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="522.68" y="1503.5" ></text>
</g>
<g >
<title>__do_sys_newfstatat (27,152,886 samples, 0.09%)</title><rect x="27.4" y="1429" width="1.1" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="30.42" y="1439.5" ></text>
</g>
<g >
<title>collapse_huge_page (6,585,443 samples, 0.02%)</title><rect x="26.6" y="1333" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="29.64" y="1343.5" ></text>
</g>
<g >
<title>do_unlinkat (8,670,159 samples, 0.03%)</title><rect x="36.1" y="1589" width="0.4" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
<text x="39.13" y="1599.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (10,581,697 samples, 0.04%)</title><rect x="965.8" y="1637" width="0.4" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="968.83" y="1647.5" ></text>
</g>
<g >
<title>rcu_core (5,416,194 samples, 0.02%)</title><rect x="1138.6" y="1445" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1141.59" y="1455.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,335,552 samples, 0.01%)</title><rect x="1143.6" y="1509" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1146.64" y="1519.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="741" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="751.5" ></text>
</g>
<g >
<title>do_anonymous_page (6,249,408 samples, 0.02%)</title><rect x="35.7" y="1541" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="38.70" y="1551.5" ></text>
</g>
<g >
<title>ext4_file_read_iter (10,819,930 samples, 0.04%)</title><rect x="33.1" y="1509" width="0.4" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="36.11" y="1519.5" ></text>
</g>
<g >
<title>idr_get_next_ul (77,771,921 samples, 0.26%)</title><rect x="864.7" y="1429" width="3.0" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="867.67" y="1439.5" ></text>
</g>
<g >
<title>[link] (580,698,602 samples, 1.93%)</title><rect x="44.2" y="1781" width="22.8" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="47.24" y="1791.5" >[..</text>
</g>
<g >
<title>[mapgauge.test] (710,763,980 samples, 2.37%)</title><rect x="491.8" y="1493" width="27.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="494.77" y="1503.5" >[..</text>
</g>
<g >
<title>chacha_block_generic (3,119,434 samples, 0.01%)</title><rect x="784.1" y="1269" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="787.07" y="1279.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (3,107,745 samples, 0.01%)</title><rect x="844.5" y="1509" width="0.1" height="15.0" fill="rgb(237,151,36)" rx="2" ry="2" />
<text x="847.52" y="1519.5" ></text>
</g>
<g >
<title>task_work_add (20,365,546 samples, 0.07%)</title><rect x="985.5" y="1605" width="0.8" height="15.0" fill="rgb(244,179,43)" rx="2" ry="2" />
<text x="988.46" y="1615.5" ></text>
</g>
<g >
<title>[link] (2,847,968 samples, 0.01%)</title><rect x="67.3" y="1717" width="0.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="70.26" y="1727.5" ></text>
</g>
<g >
<title>apparmor_capable (29,771,417 samples, 0.10%)</title><rect x="814.1" y="1477" width="1.2" height="15.0" fill="rgb(206,5,1)" rx="2" ry="2" />
<text x="817.14" y="1487.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,766,899 samples, 0.01%)</title><rect x="962.4" y="1573" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="965.44" y="1583.5" ></text>
</g>
<g >
<title>[mapgauge.test] (3,079,993 samples, 0.01%)</title><rect x="513.3" y="1285" width="0.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="516.30" y="1295.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4,335,552 samples, 0.01%)</title><rect x="1143.6" y="1493" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1146.64" y="1503.5" ></text>
</g>
<g >
<title>do_exit (5,353,084,741 samples, 17.81%)</title><rect x="973.0" y="1685" width="210.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="976.01" y="1695.5" >do_exit</text>
</g>
<g >
<title>__do_softirq (8,777,079 samples, 0.03%)</title><rect x="1136.1" y="1461" width="0.4" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1139.13" y="1471.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,900,367 samples, 0.01%)</title><rect x="1164.1" y="1605" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1167.07" y="1615.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,360,963 samples, 0.01%)</title><rect x="25.9" y="1413" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="28.86" y="1423.5" ></text>
</g>
<g >
<title>[go] (161,422,468 samples, 0.54%)</title><rect x="37.5" y="1797" width="6.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="40.51" y="1807.5" ></text>
</g>
<g >
<title>check_stack_object (6,970,198 samples, 0.02%)</title><rect x="631.3" y="1477" width="0.2" height="15.0" fill="rgb(215,49,11)" rx="2" ry="2" />
<text x="634.27" y="1487.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,036,396 samples, 0.01%)</title><rect x="514.5" y="1253" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="517.47" y="1263.5" ></text>
</g>
<g >
<title>rcu_core (7,056,542 samples, 0.02%)</title><rect x="1047.2" y="1493" width="0.3" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1050.18" y="1503.5" ></text>
</g>
<g >
<title>memcpy_orig (4,663,554 samples, 0.02%)</title><rect x="759.6" y="1429" width="0.2" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="762.61" y="1439.5" ></text>
</g>
<g >
<title>__handle_mm_fault (132,178,066 samples, 0.44%)</title><rect x="953.5" y="1621" width="5.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="956.54" y="1631.5" ></text>
</g>
<g >
<title>rcu_core (5,896,422 samples, 0.02%)</title><rect x="1181.9" y="1525" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1184.90" y="1535.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (5,470,586 samples, 0.02%)</title><rect x="990.3" y="1605" width="0.2" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="993.32" y="1615.5" ></text>
</g>
<g >
<title>__do_sys_newfstatat (5,728,893 samples, 0.02%)</title><rect x="32.3" y="1541" width="0.2" height="15.0" fill="rgb(243,177,42)" rx="2" ry="2" />
<text x="35.30" y="1551.5" ></text>
</g>
<g >
<title>shuffle_freelist (34,457,870 samples, 0.11%)</title><rect x="687.8" y="1349" width="1.4" height="15.0" fill="rgb(242,174,41)" rx="2" ry="2" />
<text x="690.81" y="1359.5" ></text>
</g>
<g >
<title>[mapgauge.test] (57,334,551 samples, 0.19%)</title><rect x="511.2" y="1333" width="2.3" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="514.20" y="1343.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (13,724,371 samples, 0.05%)</title><rect x="1122.4" y="1573" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1125.35" y="1583.5" ></text>
</g>
<g >
<title>path_openat (10,065,433 samples, 0.03%)</title><rect x="32.5" y="1509" width="0.4" height="15.0" fill="rgb(249,202,48)" rx="2" ry="2" />
<text x="35.53" y="1519.5" ></text>
</g>
<g >
<title>memchr_inv (34,075,282 samples, 0.11%)</title><rect x="840.8" y="1509" width="1.4" height="15.0" fill="rgb(240,162,38)" rx="2" ry="2" />
<text x="843.83" y="1519.5" ></text>
</g>
<g >
<title>get_page_from_freelist (133,714,959 samples, 0.44%)</title><rect x="711.3" y="1317" width="5.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="714.27" y="1327.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (11,098,242 samples, 0.04%)</title><rect x="1143.9" y="1573" width="0.5" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="1146.95" y="1583.5" ></text>
</g>
<g >
<title>handle_mm_fault (3,363,088 samples, 0.01%)</title><rect x="33.3" y="1365" width="0.1" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="36.31" y="1375.5" ></text>
</g>
<g >
<title>rcu_core (343,067,405 samples, 1.14%)</title><rect x="1097.3" y="1477" width="13.4" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1100.28" y="1487.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,925,965 samples, 0.01%)</title><rect x="1142.9" y="1477" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1145.88" y="1487.5" ></text>
</g>
<g >
<title>_compound_head (9,289,090 samples, 0.03%)</title><rect x="67.5" y="1541" width="0.3" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="70.47" y="1551.5" ></text>
</g>
<g >
<title>[vet] (9,900,658 samples, 0.03%)</title><rect x="1187.7" y="869" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.66" y="879.5" ></text>
</g>
<g >
<title>select_task_rq_fair (19,245,407 samples, 0.06%)</title><rect x="1074.4" y="1525" width="0.8" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1077.42" y="1535.5" ></text>
</g>
<g >
<title>mas_walk (3,101,386 samples, 0.01%)</title><rect x="944.2" y="1573" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="947.24" y="1583.5" ></text>
</g>
<g >
<title>cache_from_obj (15,386,062 samples, 0.05%)</title><rect x="1176.7" y="1589" width="0.6" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="1179.70" y="1599.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (4,488,759 samples, 0.01%)</title><rect x="1097.1" y="1525" width="0.2" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="1100.08" y="1535.5" ></text>
</g>
<g >
<title>new_slab (200,830,470 samples, 0.67%)</title><rect x="710.9" y="1381" width="7.9" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="713.91" y="1391.5" ></text>
</g>
<g >
<title>__rcu_read_lock (17,462,911 samples, 0.06%)</title><rect x="1123.2" y="1573" width="0.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1126.23" y="1583.5" ></text>
</g>
<g >
<title>rcu_do_batch (39,087,739 samples, 0.13%)</title><rect x="1021.0" y="1509" width="1.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1024.00" y="1519.5" ></text>
</g>
<g >
<title>__handle_mm_fault (17,731,441 samples, 0.06%)</title><rect x="515.0" y="1397" width="0.7" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="517.98" y="1407.5" ></text>
</g>
<g >
<title>irqentry_exit (4,513,452 samples, 0.02%)</title><rect x="64.2" y="1637" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="67.16" y="1647.5" ></text>
</g>
<g >
<title>[vet] (2,891,509 samples, 0.01%)</title><rect x="1187.9" y="69" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.94" y="79.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6,178,026 samples, 0.02%)</title><rect x="28.7" y="1493" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="31.75" y="1503.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (16,323,299 samples, 0.05%)</title><rect x="1136.5" y="1557" width="0.6" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1139.48" y="1567.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1813" width="0.2" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="1192.84" y="1823.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (6,218,324 samples, 0.02%)</title><rect x="907.6" y="1557" width="0.2" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="910.59" y="1567.5" ></text>
</g>
<g >
<title>mmap_region (2,651,739 samples, 0.01%)</title><rect x="61.0" y="1493" width="0.1" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="63.96" y="1503.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (19,469,831 samples, 0.06%)</title><rect x="1182.5" y="1653" width="0.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1185.45" y="1663.5" ></text>
</g>
<g >
<title>__alloc_pages (297,270,275 samples, 0.99%)</title><rect x="769.3" y="1349" width="11.6" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="772.26" y="1359.5" ></text>
</g>
<g >
<title>__alloc_pages (2,941,188 samples, 0.01%)</title><rect x="836.2" y="1349" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="839.17" y="1359.5" ></text>
</g>
<g >
<title>iput (4,655,596 samples, 0.02%)</title><rect x="1155.0" y="1589" width="0.2" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="1157.99" y="1599.5" ></text>
</g>
<g >
<title>__do_softirq (4,961,676 samples, 0.02%)</title><rect x="36.2" y="1397" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="39.19" y="1407.5" ></text>
</g>
<g >
<title>get_signal (5,353,084,741 samples, 17.81%)</title><rect x="973.0" y="1717" width="210.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="976.01" y="1727.5" >get_signal</text>
</g>
<g >
<title>get_signal (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1701" width="0.2" height="15.0" fill="rgb(211,28,6)" rx="2" ry="2" />
<text x="1192.84" y="1711.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,900,367 samples, 0.01%)</title><rect x="1164.1" y="1557" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1167.07" y="1567.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4,696,773 samples, 0.02%)</title><rect x="1154.7" y="1413" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1157.71" y="1423.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,942,164 samples, 0.01%)</title><rect x="1178.7" y="1605" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1181.75" y="1615.5" ></text>
</g>
<g >
<title>seq_write (3,860,816 samples, 0.01%)</title><rect x="875.4" y="1429" width="0.1" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="878.37" y="1439.5" ></text>
</g>
<g >
<title>__irqentry_text_end (4,675,439 samples, 0.02%)</title><rect x="524.2" y="1541" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="527.16" y="1551.5" ></text>
</g>
<g >
<title>do_check (3,103,111 samples, 0.01%)</title><rect x="522.8" y="1397" width="0.2" height="15.0" fill="rgb(242,171,41)" rx="2" ry="2" />
<text x="525.85" y="1407.5" ></text>
</g>
<g >
<title>rcu_do_batch (5,914,546 samples, 0.02%)</title><rect x="1012.6" y="1493" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1015.64" y="1503.5" ></text>
</g>
<g >
<title>get_page_from_freelist (2,941,188 samples, 0.01%)</title><rect x="836.2" y="1333" width="0.1" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="839.17" y="1343.5" ></text>
</g>
<g >
<title>[go] (160,305,643 samples, 0.53%)</title><rect x="23.1" y="1525" width="6.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="26.06" y="1535.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (8,661,462 samples, 0.03%)</title><rect x="1166.0" y="1557" width="0.4" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1169.03" y="1567.5" ></text>
</g>
<g >
<title>do_wp_page (9,316,223 samples, 0.03%)</title><rect x="522.2" y="1413" width="0.4" height="15.0" fill="rgb(212,36,8)" rx="2" ry="2" />
<text x="525.22" y="1423.5" ></text>
</g>
<g >
<title>unmap_vmas (72,774,942 samples, 0.24%)</title><rect x="990.5" y="1605" width="2.9" height="15.0" fill="rgb(243,176,42)" rx="2" ry="2" />
<text x="993.54" y="1615.5" ></text>
</g>
<g >
<title>___slab_alloc (216,227,570 samples, 0.72%)</title><rect x="710.3" y="1397" width="8.5" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="713.31" y="1407.5" ></text>
</g>
<g >
<title>delete_node (3,092,054 samples, 0.01%)</title><rect x="837.3" y="1445" width="0.2" height="15.0" fill="rgb(223,84,20)" rx="2" ry="2" />
<text x="840.35" y="1455.5" ></text>
</g>
<g >
<title>__do_softirq (2,932,550 samples, 0.01%)</title><rect x="1161.7" y="1541" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1164.69" y="1551.5" ></text>
</g>
<g >
<title>[go] (2,763,471 samples, 0.01%)</title><rect x="25.6" y="1157" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.57" y="1167.5" ></text>
</g>
<g >
<title>allocate_slab (51,732,401 samples, 0.17%)</title><rect x="670.1" y="1333" width="2.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="673.14" y="1343.5" ></text>
</g>
<g >
<title>rcu_core_si (9,432,208 samples, 0.03%)</title><rect x="1157.0" y="1525" width="0.3" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1159.98" y="1535.5" ></text>
</g>
<g >
<title>__do_softirq (2,916,818 samples, 0.01%)</title><rect x="1177.2" y="1509" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1180.19" y="1519.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,927,888 samples, 0.01%)</title><rect x="1015.3" y="1589" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1018.27" y="1599.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,865,346 samples, 0.01%)</title><rect x="1162.3" y="1573" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1165.31" y="1583.5" ></text>
</g>
<g >
<title>[vet] (4,388,099 samples, 0.01%)</title><rect x="1187.9" y="261" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.88" y="271.5" ></text>
</g>
<g >
<title>__handle_mm_fault (8,031,011 samples, 0.03%)</title><rect x="65.2" y="1637" width="0.3" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="68.21" y="1647.5" ></text>
</g>
<g >
<title>exc_page_fault (2,974,439 samples, 0.01%)</title><rect x="29.5" y="1525" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="32.51" y="1535.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (14,373,391 samples, 0.05%)</title><rect x="67.4" y="1749" width="0.6" height="15.0" fill="rgb(224,90,21)" rx="2" ry="2" />
<text x="70.45" y="1759.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,789,707 samples, 0.02%)</title><rect x="43.4" y="1701" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="46.42" y="1711.5" ></text>
</g>
<g >
<title>error_entry (8,350,568 samples, 0.03%)</title><rect x="971.8" y="1733" width="0.3" height="15.0" fill="rgb(240,163,39)" rx="2" ry="2" />
<text x="974.79" y="1743.5" ></text>
</g>
<g >
<title>irq_exit_rcu (8,661,462 samples, 0.03%)</title><rect x="1166.0" y="1573" width="0.4" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1169.03" y="1583.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,874,845 samples, 0.02%)</title><rect x="1167.9" y="1557" width="0.3" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1170.94" y="1567.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9,136,185 samples, 0.03%)</title><rect x="939.8" y="1605" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="942.81" y="1615.5" ></text>
</g>
<g >
<title>generic_file_read_iter (3,751,557 samples, 0.01%)</title><rect x="34.4" y="1509" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="37.41" y="1519.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (9,257,670 samples, 0.03%)</title><rect x="954.8" y="1573" width="0.3" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="957.75" y="1583.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (3,648,506 samples, 0.01%)</title><rect x="592.2" y="1541" width="0.1" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="595.16" y="1551.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (3,042,501 samples, 0.01%)</title><rect x="591.7" y="1381" width="0.1" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="594.71" y="1391.5" ></text>
</g>
<g >
<title>mod_node_page_state (3,017,176 samples, 0.01%)</title><rect x="782.6" y="1365" width="0.1" height="15.0" fill="rgb(240,164,39)" rx="2" ry="2" />
<text x="785.60" y="1375.5" ></text>
</g>
<g >
<title>ext4_mkdir (11,283,571 samples, 0.04%)</title><rect x="35.1" y="1541" width="0.4" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="38.09" y="1551.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,199,510 samples, 0.02%)</title><rect x="974.5" y="1605" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="977.50" y="1615.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4,651,748 samples, 0.02%)</title><rect x="1155.3" y="1605" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1158.33" y="1615.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,155,862 samples, 0.01%)</title><rect x="44.0" y="1797" width="0.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="47.02" y="1807.5" ></text>
</g>
<g >
<title>dput (4,137,640 samples, 0.01%)</title><rect x="1178.4" y="1637" width="0.1" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="1181.39" y="1647.5" ></text>
</g>
<g >
<title>[mapgauge.test] (2,828,380 samples, 0.01%)</title><rect x="965.6" y="1653" width="0.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="968.65" y="1663.5" ></text>
</g>
<g >
<title>module_put (3,487,401 samples, 0.01%)</title><rect x="1180.0" y="1637" width="0.1" height="15.0" fill="rgb(248,198,47)" rx="2" ry="2" />
<text x="1182.98" y="1647.5" ></text>
</g>
<g >
<title>rcu_core_si (13,724,371 samples, 0.05%)</title><rect x="1122.4" y="1509" width="0.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1125.35" y="1519.5" ></text>
</g>
<g >
<title>kmem_cache_free (4,631,267 samples, 0.02%)</title><rect x="1133.0" y="1397" width="0.1" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1135.96" y="1407.5" ></text>
</g>
<g >
<title>clear_page_erms (4,648,057 samples, 0.02%)</title><rect x="520.4" y="1317" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="523.44" y="1327.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (35,385,115 samples, 0.12%)</title><rect x="781.2" y="1365" width="1.4" height="15.0" fill="rgb(247,195,46)" rx="2" ry="2" />
<text x="784.21" y="1375.5" ></text>
</g>
<g >
<title>[asm] (12,917,883 samples, 0.04%)</title><rect x="10.0" y="1781" width="0.5" height="15.0" fill="rgb(251,212,50)" rx="2" ry="2" />
<text x="13.00" y="1791.5" ></text>
</g>
<g >
<title>handle_mm_fault (16,885,566 samples, 0.06%)</title><rect x="522.0" y="1461" width="0.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="524.95" y="1471.5" ></text>
</g>
<g >
<title>_compound_head (15,467,503 samples, 0.05%)</title><rect x="990.6" y="1541" width="0.6" height="15.0" fill="rgb(225,94,22)" rx="2" ry="2" />
<text x="993.63" y="1551.5" ></text>
</g>
<g >
<title>_raw_spin_lock (40,628,939 samples, 0.14%)</title><rect x="1095.3" y="1573" width="1.6" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1098.28" y="1583.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (2,997,588 samples, 0.01%)</title><rect x="527.7" y="1397" width="0.2" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="530.73" y="1407.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,978,971 samples, 0.01%)</title><rect x="1123.8" y="1445" width="0.1" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1126.80" y="1455.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (4,089,014 samples, 0.01%)</title><rect x="60.9" y="1557" width="0.2" height="15.0" fill="rgb(223,83,19)" rx="2" ry="2" />
<text x="63.90" y="1567.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (3,021,391 samples, 0.01%)</title><rect x="963.6" y="1653" width="0.1" height="15.0" fill="rgb(237,150,35)" rx="2" ry="2" />
<text x="966.61" y="1663.5" ></text>
</g>
<g >
<title>__d_lookup_rcu (3,500,299 samples, 0.01%)</title><rect x="28.2" y="1317" width="0.1" height="15.0" fill="rgb(228,109,26)" rx="2" ry="2" />
<text x="31.16" y="1327.5" ></text>
</g>
<g >
<title>[mapgauge.test] (154,996,458 samples, 0.52%)</title><rect x="508.0" y="1413" width="6.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="511.02" y="1423.5" ></text>
</g>
<g >
<title>__do_softirq (39,087,739 samples, 0.13%)</title><rect x="1021.0" y="1557" width="1.5" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1024.00" y="1567.5" ></text>
</g>
<g >
<title>[mapgauge.test] (8,047,346 samples, 0.03%)</title><rect x="513.1" y="1317" width="0.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="516.14" y="1327.5" ></text>
</g>
<g >
<title>__kmem_cache_free (3,574,512 samples, 0.01%)</title><rect x="1103.6" y="1301" width="0.2" height="15.0" fill="rgb(226,99,23)" rx="2" ry="2" />
<text x="1106.65" y="1311.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (6,966,074 samples, 0.02%)</title><rect x="665.9" y="1381" width="0.3" height="15.0" fill="rgb(237,148,35)" rx="2" ry="2" />
<text x="668.89" y="1391.5" ></text>
</g>
<g >
<title>[go] (642,615,163 samples, 2.14%)</title><rect x="12.1" y="1749" width="25.3" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="15.13" y="1759.5" >[..</text>
</g>
<g >
<title>_raw_spin_unlock_bh (6,947,801 samples, 0.02%)</title><rect x="864.2" y="1445" width="0.3" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="867.25" y="1455.5" ></text>
</g>
<g >
<title>___slab_alloc (12,411,141 samples, 0.04%)</title><rect x="781.7" y="1317" width="0.4" height="15.0" fill="rgb(230,115,27)" rx="2" ry="2" />
<text x="784.66" y="1327.5" ></text>
</g>
<g >
<title>allocate_slab (9,220,537 samples, 0.03%)</title><rect x="716.8" y="1269" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="719.76" y="1279.5" ></text>
</g>
<g >
<title>__folio_alloc (3,849,561 samples, 0.01%)</title><rect x="63.9" y="1525" width="0.2" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="66.91" y="1535.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,335,552 samples, 0.01%)</title><rect x="1143.6" y="1541" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1146.64" y="1551.5" ></text>
</g>
<g >
<title>do_exit (3,132,687 samples, 0.01%)</title><rect x="1189.8" y="1669" width="0.2" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="1192.84" y="1679.5" ></text>
</g>
<g >
<title>do_anonymous_page (14,391,766 samples, 0.05%)</title><rect x="938.6" y="1509" width="0.6" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="941.65" y="1519.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (3,093,002 samples, 0.01%)</title><rect x="523.0" y="1445" width="0.1" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="526.00" y="1455.5" ></text>
</g>
<g >
<title>__slab_free (4,127,680 samples, 0.01%)</title><rect x="1182.5" y="1493" width="0.2" height="15.0" fill="rgb(222,78,18)" rx="2" ry="2" />
<text x="1185.54" y="1503.5" ></text>
</g>
<g >
<title>hpage_collapse_scan_pmd (4,552,784 samples, 0.02%)</title><rect x="514.4" y="1317" width="0.2" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="517.41" y="1327.5" ></text>
</g>
<g >
<title>bpf_seq_read (1,506,253,508 samples, 5.01%)</title><rect x="530.9" y="1477" width="59.1" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="533.88" y="1487.5" >bpf_se..</text>
</g>
<g >
<title>do_user_addr_fault (8,031,011 samples, 0.03%)</title><rect x="65.2" y="1669" width="0.3" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="68.21" y="1679.5" ></text>
</g>
<g >
<title>rcu_core (16,323,299 samples, 0.05%)</title><rect x="1136.5" y="1461" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1139.48" y="1471.5" ></text>
</g>
<g >
<title>__kmalloc_node (17,897,506 samples, 0.06%)</title><rect x="686.8" y="1333" width="0.7" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="689.75" y="1343.5" ></text>
</g>
<g >
<title>clear_page_erms (3,823,632 samples, 0.01%)</title><rect x="945.8" y="1477" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="948.76" y="1487.5" ></text>
</g>
<g >
<title>alloc_pages (2,941,188 samples, 0.01%)</title><rect x="836.2" y="1365" width="0.1" height="15.0" fill="rgb(210,25,6)" rx="2" ry="2" />
<text x="839.17" y="1375.5" ></text>
</g>
<g >
<title>fd_install (40,670,584 samples, 0.14%)</title><rect x="750.1" y="1477" width="1.6" height="15.0" fill="rgb(241,169,40)" rx="2" ry="2" />
<text x="753.09" y="1487.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4,678,192 samples, 0.02%)</title><rect x="1180.4" y="1589" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1183.39" y="1599.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (8,374,097 samples, 0.03%)</title><rect x="836.2" y="1429" width="0.3" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="839.17" y="1439.5" ></text>
</g>
<g >
<title>file_free_rcu (6,432,744 samples, 0.02%)</title><rect x="1157.0" y="1477" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1159.98" y="1487.5" ></text>
</g>
<g >
<title>mod_objcg_state (5,289,657 samples, 0.02%)</title><rect x="724.9" y="1397" width="0.2" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="727.88" y="1407.5" ></text>
</g>
<g >
<title>__kmalloc_node (6,911,554 samples, 0.02%)</title><rect x="805.5" y="1461" width="0.3" height="15.0" fill="rgb(222,80,19)" rx="2" ry="2" />
<text x="808.51" y="1471.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,927,888 samples, 0.01%)</title><rect x="1015.3" y="1605" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1018.27" y="1615.5" ></text>
</g>
<g >
<title>[vet] (5,794,601 samples, 0.02%)</title><rect x="1187.8" y="501" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.82" y="511.5" ></text>
</g>
<g >
<title>do_group_exit (5,353,084,741 samples, 17.81%)</title><rect x="973.0" y="1701" width="210.2" height="15.0" fill="rgb(219,67,16)" rx="2" ry="2" />
<text x="976.01" y="1711.5" >do_group_exit</text>
</g>
<g >
<title>rcu_core (18,918,719 samples, 0.06%)</title><rect x="1182.5" y="1557" width="0.7" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1185.47" y="1567.5" ></text>
</g>
<g >
<title>__radix_tree_replace (19,937,755 samples, 0.07%)</title><rect x="836.6" y="1445" width="0.7" height="15.0" fill="rgb(226,101,24)" rx="2" ry="2" />
<text x="839.56" y="1455.5" ></text>
</g>
<g >
<title>kmem_cache_free (492,869,665 samples, 1.64%)</title><rect x="1124.5" y="1573" width="19.3" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1127.46" y="1583.5" ></text>
</g>
<g >
<title>[vet] (6,542,377 samples, 0.02%)</title><rect x="1187.8" y="517" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.79" y="527.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (6,607,418 samples, 0.02%)</title><rect x="962.8" y="1669" width="0.3" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="965.84" y="1679.5" ></text>
</g>
<g >
<title>[vet] (5,132,928 samples, 0.02%)</title><rect x="1187.8" y="405" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.85" y="415.5" ></text>
</g>
<g >
<title>clear_page_erms (148,630,453 samples, 0.49%)</title><rect x="680.0" y="1301" width="5.8" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="682.97" y="1311.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (14,945,989 samples, 0.05%)</title><rect x="949.3" y="1637" width="0.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="952.30" y="1647.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (14,343,212 samples, 0.05%)</title><rect x="1073.8" y="1525" width="0.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="1076.78" y="1535.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,974,439 samples, 0.01%)</title><rect x="29.5" y="1541" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="32.51" y="1551.5" ></text>
</g>
<g >
<title>ext4_mb_new_blocks (2,658,106 samples, 0.01%)</title><rect x="35.4" y="1429" width="0.1" height="15.0" fill="rgb(219,65,15)" rx="2" ry="2" />
<text x="38.40" y="1439.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (3,266,965 samples, 0.01%)</title><rect x="951.8" y="1685" width="0.1" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="954.81" y="1695.5" ></text>
</g>
<g >
<title>[link] (581,826,560 samples, 1.94%)</title><rect x="44.2" y="1813" width="22.9" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="47.21" y="1823.5" >[..</text>
</g>
<g >
<title>__alloc_pages (3,886,507 samples, 0.01%)</title><rect x="62.0" y="1477" width="0.2" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="65.01" y="1487.5" ></text>
</g>
<g >
<title>__free_pages (2,799,210 samples, 0.01%)</title><rect x="1174.5" y="1493" width="0.1" height="15.0" fill="rgb(211,29,7)" rx="2" ry="2" />
<text x="1177.48" y="1503.5" ></text>
</g>
<g >
<title>rmqueue_bulk (8,546,718 samples, 0.03%)</title><rect x="686.1" y="1269" width="0.3" height="15.0" fill="rgb(235,138,33)" rx="2" ry="2" />
<text x="689.08" y="1279.5" ></text>
</g>
<g >
<title>security_capable (156,360,674 samples, 0.52%)</title><rect x="817.1" y="1477" width="6.1" height="15.0" fill="rgb(214,41,9)" rx="2" ry="2" />
<text x="820.05" y="1487.5" ></text>
</g>
<g >
<title>[vet] (29,533,406 samples, 0.10%)</title><rect x="1187.1" y="1381" width="1.1" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.07" y="1391.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,888,185 samples, 0.01%)</title><rect x="1142.2" y="1509" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1145.22" y="1519.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (184,678,348 samples, 0.61%)</title><rect x="861.0" y="1461" width="7.3" height="15.0" fill="rgb(248,202,48)" rx="2" ry="2" />
<text x="864.00" y="1471.5" ></text>
</g>
<g >
<title>handle_pte_fault (3,443,711 samples, 0.01%)</title><rect x="937.9" y="1509" width="0.2" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="940.94" y="1519.5" ></text>
</g>
<g >
<title>send_signal_locked (4,113,373 samples, 0.01%)</title><rect x="966.0" y="1573" width="0.2" height="15.0" fill="rgb(218,64,15)" rx="2" ry="2" />
<text x="969.01" y="1583.5" ></text>
</g>
<g >
<title>file_free_rcu (9,632,171 samples, 0.03%)</title><rect x="1122.4" y="1461" width="0.4" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1125.40" y="1471.5" ></text>
</g>
<g >
<title>release_pages (38,788,895 samples, 0.13%)</title><rect x="991.8" y="1477" width="1.5" height="15.0" fill="rgb(228,106,25)" rx="2" ry="2" />
<text x="994.78" y="1487.5" ></text>
</g>
<g >
<title>irq_exit_rcu (25,182,934 samples, 0.08%)</title><rect x="1038.8" y="1573" width="1.0" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1041.85" y="1583.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,900,367 samples, 0.01%)</title><rect x="1164.1" y="1589" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1167.07" y="1599.5" ></text>
</g>
<g >
<title>__ext4_new_inode (4,986,987 samples, 0.02%)</title><rect x="35.1" y="1525" width="0.2" height="15.0" fill="rgb(209,21,5)" rx="2" ry="2" />
<text x="38.11" y="1535.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (41,099,074 samples, 0.14%)</title><rect x="991.7" y="1509" width="1.7" height="15.0" fill="rgb(234,133,32)" rx="2" ry="2" />
<text x="994.75" y="1519.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (7,020,109 samples, 0.02%)</title><rect x="1182.9" y="1525" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1185.94" y="1535.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (14,373,391 samples, 0.05%)</title><rect x="67.4" y="1765" width="0.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="70.45" y="1775.5" ></text>
</g>
<g >
<title>alloc_fd (96,207,423 samples, 0.32%)</title><rect x="756.1" y="1461" width="3.8" height="15.0" fill="rgb(216,52,12)" rx="2" ry="2" />
<text x="759.14" y="1471.5" ></text>
</g>
<g >
<title>[mapgauge.test] (118,689,851 samples, 0.39%)</title><rect x="509.4" y="1381" width="4.6" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="512.36" y="1391.5" ></text>
</g>
<g >
<title>__do_softirq (5,263,441 samples, 0.02%)</title><rect x="1016.3" y="1541" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1019.32" y="1551.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (89,162,243 samples, 0.30%)</title><rect x="1107.2" y="1445" width="3.5" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="1110.25" y="1455.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (3,148,949 samples, 0.01%)</title><rect x="984.9" y="1621" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="987.94" y="1631.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (9,475,705 samples, 0.03%)</title><rect x="60.8" y="1589" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="63.77" y="1599.5" ></text>
</g>
<g >
<title>clear_page_erms (4,655,031 samples, 0.02%)</title><rect x="781.7" y="1237" width="0.2" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="784.72" y="1247.5" ></text>
</g>
<g >
<title>allocate_slab (392,922,777 samples, 1.31%)</title><rect x="768.9" y="1381" width="15.5" height="15.0" fill="rgb(242,173,41)" rx="2" ry="2" />
<text x="771.95" y="1391.5" ></text>
</g>
<g >
<title>[mapgauge.test] (16,080,538,529 samples, 53.51%)</title><rect x="306.4" y="1589" width="631.4" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="309.38" y="1599.5" >[mapgauge.test]</text>
</g>
<g >
<title>[vet] (5,794,601 samples, 0.02%)</title><rect x="1187.8" y="453" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.82" y="463.5" ></text>
</g>
<g >
<title>rep_movs_alternative (8,363,769 samples, 0.03%)</title><rect x="33.1" y="1429" width="0.4" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="36.14" y="1439.5" ></text>
</g>
<g >
<title>[vet] (160,324,937 samples, 0.53%)</title><rect x="1183.5" y="1813" width="6.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1186.53" y="1823.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (4,606,036 samples, 0.02%)</title><rect x="1156.8" y="1605" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1159.80" y="1615.5" ></text>
</g>
<g >
<title>[go] (5,915,226 samples, 0.02%)</title><rect x="43.4" y="1765" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="46.39" y="1775.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,421,965 samples, 0.01%)</title><rect x="1061.0" y="1557" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1063.96" y="1567.5" ></text>
</g>
<g >
<title>rcu_core_si (343,067,405 samples, 1.14%)</title><rect x="1097.3" y="1493" width="13.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1100.28" y="1503.5" ></text>
</g>
<g >
<title>rcu_core (5,263,441 samples, 0.02%)</title><rect x="1016.3" y="1509" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1019.32" y="1519.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,961,676 samples, 0.02%)</title><rect x="36.2" y="1445" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="39.19" y="1455.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (26,109,356 samples, 0.09%)</title><rect x="521.7" y="1509" width="1.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="524.74" y="1519.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="693" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="703.5" ></text>
</g>
<g >
<title>alloc_charge_hpage (2,932,215 samples, 0.01%)</title><rect x="26.8" y="1317" width="0.1" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="29.75" y="1327.5" ></text>
</g>
<g >
<title>handle_mm_fault (24,391,520 samples, 0.08%)</title><rect x="63.1" y="1621" width="1.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="66.12" y="1631.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (9,679,352 samples, 0.03%)</title><rect x="968.9" y="1589" width="0.4" height="15.0" fill="rgb(246,189,45)" rx="2" ry="2" />
<text x="971.95" y="1599.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (12,191,608 samples, 0.04%)</title><rect x="945.6" y="1653" width="0.5" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="948.61" y="1663.5" ></text>
</g>
<g >
<title>exit_mm (78,245,528 samples, 0.26%)</title><rect x="990.3" y="1669" width="3.1" height="15.0" fill="rgb(236,144,34)" rx="2" ry="2" />
<text x="993.32" y="1679.5" ></text>
</g>
<g >
<title>[go] (4,092,798 samples, 0.01%)</title><rect x="25.5" y="1237" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.52" y="1247.5" ></text>
</g>
<g >
<title>ext4_file_read_iter (3,751,557 samples, 0.01%)</title><rect x="34.4" y="1525" width="0.2" height="15.0" fill="rgb(244,180,43)" rx="2" ry="2" />
<text x="37.41" y="1535.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (13,411,985 samples, 0.04%)</title><rect x="1154.4" y="1525" width="0.5" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1157.37" y="1535.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5,767,077 samples, 0.02%)</title><rect x="64.7" y="1621" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="67.72" y="1631.5" ></text>
</g>
<g >
<title>dnotify_flush (4,696,653 samples, 0.02%)</title><rect x="985.1" y="1621" width="0.1" height="15.0" fill="rgb(230,119,28)" rx="2" ry="2" />
<text x="988.06" y="1631.5" ></text>
</g>
<g >
<title>__x64_sys_read (1,557,854,780 samples, 5.18%)</title><rect x="528.9" y="1525" width="61.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="531.88" y="1535.5" >__x64_..</text>
</g>
<g >
<title>idr_alloc_cyclic (265,210,613 samples, 0.88%)</title><rect x="828.4" y="1493" width="10.4" height="15.0" fill="rgb(220,72,17)" rx="2" ry="2" />
<text x="831.42" y="1503.5" ></text>
</g>
<g >
<title>exc_page_fault (14,168,628 samples, 0.05%)</title><rect x="66.3" y="1717" width="0.6" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="69.35" y="1727.5" ></text>
</g>
<g >
<title>irqentry_exit (2,871,862 samples, 0.01%)</title><rect x="962.7" y="1669" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="965.70" y="1679.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (11,327,623 samples, 0.04%)</title><rect x="30.1" y="1557" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="33.05" y="1567.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,735,811 samples, 0.02%)</title><rect x="1168.0" y="1477" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1170.99" y="1487.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (5,599,560,263 samples, 18.63%)</title><rect x="625.7" y="1541" width="219.9" height="15.0" fill="rgb(215,50,12)" rx="2" ry="2" />
<text x="628.68" y="1551.5" >__x64_sys_bpf</text>
</g>
<g >
<title>__alloc_pages (3,124,252 samples, 0.01%)</title><rect x="679.1" y="1349" width="0.1" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="682.13" y="1359.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (9,809,447 samples, 0.03%)</title><rect x="1122.0" y="1589" width="0.4" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1124.97" y="1599.5" ></text>
</g>
<g >
<title>[go] (505,144,437 samples, 1.68%)</title><rect x="17.0" y="1669" width="19.8" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="19.98" y="1679.5" ></text>
</g>
<g >
<title>vfs_read (1,557,854,780 samples, 5.18%)</title><rect x="528.9" y="1493" width="61.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="531.88" y="1503.5" >vfs_read</text>
</g>
<g >
<title>folio_batch_move_lru (7,696,304 samples, 0.03%)</title><rect x="954.8" y="1541" width="0.3" height="15.0" fill="rgb(207,10,2)" rx="2" ry="2" />
<text x="957.75" y="1551.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,873,798 samples, 0.02%)</title><rect x="35.7" y="1573" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="38.68" y="1583.5" ></text>
</g>
<g >
<title>file_free_rcu (3,457,739 samples, 0.01%)</title><rect x="1016.3" y="1477" width="0.2" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1019.32" y="1487.5" ></text>
</g>
<g >
<title>[go] (2,763,471 samples, 0.01%)</title><rect x="25.6" y="1205" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.57" y="1215.5" ></text>
</g>
<g >
<title>__do_softirq (2,865,346 samples, 0.01%)</title><rect x="1162.3" y="1525" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1165.31" y="1535.5" ></text>
</g>
<g >
<title>_copy_from_user (16,801,263 samples, 0.06%)</title><rect x="844.6" y="1525" width="0.7" height="15.0" fill="rgb(206,7,1)" rx="2" ry="2" />
<text x="847.64" y="1535.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5,874,845 samples, 0.02%)</title><rect x="1167.9" y="1589" width="0.3" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1170.94" y="1599.5" ></text>
</g>
<g >
<title>[vet] (14,944,049 samples, 0.05%)</title><rect x="1187.5" y="1205" width="0.6" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.52" y="1215.5" ></text>
</g>
<g >
<title>[mapgauge.test] (17,867,367,882 samples, 59.46%)</title><rect x="243.9" y="1653" width="701.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="246.92" y="1663.5" >[mapgauge.test]</text>
</g>
<g >
<title>do_exit (14,373,391 samples, 0.05%)</title><rect x="67.4" y="1685" width="0.6" height="15.0" fill="rgb(231,122,29)" rx="2" ry="2" />
<text x="70.45" y="1695.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (2,887,820 samples, 0.01%)</title><rect x="1188.8" y="1541" width="0.1" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="1191.77" y="1551.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (5,836,871 samples, 0.02%)</title><rect x="1043.5" y="1589" width="0.2" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="1046.52" y="1599.5" ></text>
</g>
<g >
<title>flush_tlb_func (3,111,490 samples, 0.01%)</title><rect x="518.4" y="1269" width="0.1" height="15.0" fill="rgb(214,42,10)" rx="2" ry="2" />
<text x="521.41" y="1279.5" ></text>
</g>
<g >
<title>[mapgauge.test] (6,954,609,098 samples, 23.14%)</title><rect x="317.6" y="1573" width="273.1" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="320.58" y="1583.5" >[mapgauge.test]</text>
</g>
<g >
<title>__mod_memcg_state (3,898,613 samples, 0.01%)</title><rect x="739.3" y="1333" width="0.1" height="15.0" fill="rgb(205,1,0)" rx="2" ry="2" />
<text x="742.27" y="1343.5" ></text>
</g>
<g >
<title>compile (28,980,560 samples, 0.10%)</title><rect x="10.7" y="1829" width="1.1" height="15.0" fill="rgb(250,211,50)" rx="2" ry="2" />
<text x="13.66" y="1839.5" ></text>
</g>
<g >
<title>irq_exit_rcu (39,087,739 samples, 0.13%)</title><rect x="1021.0" y="1589" width="1.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1024.00" y="1599.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5,087,624 samples, 0.02%)</title><rect x="827.5" y="1477" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="830.54" y="1487.5" ></text>
</g>
<g >
<title>handle_pte_fault (26,143,294 samples, 0.09%)</title><rect x="590.9" y="1493" width="1.1" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="593.92" y="1503.5" ></text>
</g>
<g >
<title>rcu_do_batch (4,714,020 samples, 0.02%)</title><rect x="1020.8" y="1493" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1023.77" y="1503.5" ></text>
</g>
<g >
<title>do_user_addr_fault (93,155,320 samples, 0.31%)</title><rect x="524.4" y="1509" width="3.6" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="527.38" y="1519.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (17,848,314 samples, 0.06%)</title><rect x="34.2" y="1605" width="0.7" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="37.19" y="1615.5" ></text>
</g>
<g >
<title>__x64_sys_read (2,926,840 samples, 0.01%)</title><rect x="61.4" y="1573" width="0.1" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="64.38" y="1583.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irq (4,961,676 samples, 0.02%)</title><rect x="36.2" y="1477" width="0.2" height="15.0" fill="rgb(215,47,11)" rx="2" ry="2" />
<text x="39.19" y="1487.5" ></text>
</g>
<g >
<title>__rcu_read_lock (2,971,646 samples, 0.01%)</title><rect x="732.8" y="1365" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="735.78" y="1375.5" ></text>
</g>
<g >
<title>do_syscall_64 (13,454,550 samples, 0.04%)</title><rect x="965.8" y="1653" width="0.5" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="968.77" y="1663.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (4,552,784 samples, 0.02%)</title><rect x="514.4" y="1349" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="517.41" y="1359.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7,012,830 samples, 0.02%)</title><rect x="64.3" y="1669" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="67.33" y="1679.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (195,837,400 samples, 0.65%)</title><rect x="1047.6" y="1573" width="7.7" height="15.0" fill="rgb(234,136,32)" rx="2" ry="2" />
<text x="1050.63" y="1583.5" ></text>
</g>
<g >
<title>ksys_read (12,913,157 samples, 0.04%)</title><rect x="33.1" y="1541" width="0.5" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="36.05" y="1551.5" ></text>
</g>
<g >
<title>[go] (546,820,510 samples, 1.82%)</title><rect x="15.6" y="1701" width="21.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="18.64" y="1711.5" >[..</text>
</g>
<g >
<title>[go] (12,906,754 samples, 0.04%)</title><rect x="25.3" y="1333" width="0.5" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.28" y="1343.5" ></text>
</g>
<g >
<title>rcu_do_batch (6,435,557 samples, 0.02%)</title><rect x="1047.2" y="1477" width="0.3" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1050.20" y="1487.5" ></text>
</g>
<g >
<title>irq_exit_rcu (344,206,855 samples, 1.15%)</title><rect x="1097.3" y="1541" width="13.5" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1100.25" y="1551.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (2,978,971 samples, 0.01%)</title><rect x="1123.8" y="1541" width="0.1" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1126.80" y="1551.5" ></text>
</g>
<g >
<title>rcu_core_si (2,888,185 samples, 0.01%)</title><rect x="1142.2" y="1445" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1145.22" y="1455.5" ></text>
</g>
<g >
<title>__do_softirq (2,978,971 samples, 0.01%)</title><rect x="1123.8" y="1493" width="0.1" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1126.80" y="1503.5" ></text>
</g>
<g >
<title>[link] (4,755,331 samples, 0.02%)</title><rect x="60.2" y="1541" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="63.20" y="1551.5" ></text>
</g>
<g >
<title>rcu_core_si (2,978,971 samples, 0.01%)</title><rect x="1123.8" y="1477" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1126.80" y="1487.5" ></text>
</g>
<g >
<title>__get_random_u32_below (5,408,544 samples, 0.02%)</title><rect x="718.5" y="1333" width="0.2" height="15.0" fill="rgb(209,22,5)" rx="2" ry="2" />
<text x="721.50" y="1343.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (348,695,614 samples, 1.16%)</title><rect x="1097.1" y="1557" width="13.7" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1100.08" y="1567.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7,738,220,799 samples, 25.75%)</title><rect x="604.8" y="1573" width="303.9" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="607.81" y="1583.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>smp_call_function_many_cond (3,111,490 samples, 0.01%)</title><rect x="518.4" y="1285" width="0.1" height="15.0" fill="rgb(220,71,17)" rx="2" ry="2" />
<text x="521.41" y="1295.5" ></text>
</g>
<g >
<title>do_syscall_64 (6,582,646 samples, 0.02%)</title><rect x="515.8" y="1445" width="0.3" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="518.80" y="1455.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="629" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="639.5" ></text>
</g>
<g >
<title>crng_make_state (3,899,811 samples, 0.01%)</title><rect x="784.0" y="1301" width="0.2" height="15.0" fill="rgb(239,157,37)" rx="2" ry="2" />
<text x="787.04" y="1311.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (13,411,985 samples, 0.04%)</title><rect x="1154.4" y="1493" width="0.5" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1157.37" y="1503.5" ></text>
</g>
<g >
<title>bpf_seq_read (756,444,836 samples, 2.52%)</title><rect x="846.9" y="1493" width="29.7" height="15.0" fill="rgb(233,132,31)" rx="2" ry="2" />
<text x="849.90" y="1503.5" >bp..</text>
</g>
<g >
<title>__local_bh_enable_ip (12,247,652 samples, 0.04%)</title><rect x="646.5" y="1477" width="0.5" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="649.55" y="1487.5" ></text>
</g>
<g >
<title>handle_mm_fault (18,507,576 samples, 0.06%)</title><rect x="515.0" y="1413" width="0.7" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="517.98" y="1423.5" ></text>
</g>
<g >
<title>schedule (3,036,480 samples, 0.01%)</title><rect x="43.5" y="1637" width="0.1" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="46.47" y="1647.5" ></text>
</g>
<g >
<title>__alloc_pages (47,970,984 samples, 0.16%)</title><rect x="942.1" y="1493" width="1.9" height="15.0" fill="rgb(233,129,30)" rx="2" ry="2" />
<text x="945.12" y="1503.5" ></text>
</g>
<g >
<title>[go] (654,659,649 samples, 2.18%)</title><rect x="11.8" y="1813" width="25.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="14.80" y="1823.5" >[..</text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5,874,845 samples, 0.02%)</title><rect x="1167.9" y="1573" width="0.3" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1170.94" y="1583.5" ></text>
</g>
<g >
<title>____fput (4,683,325,636 samples, 15.59%)</title><rect x="998.2" y="1653" width="183.9" height="15.0" fill="rgb(221,74,17)" rx="2" ry="2" />
<text x="1001.22" y="1663.5" >____fput</text>
</g>
<g >
<title>[link] (408,248,396 samples, 1.36%)</title><rect x="49.6" y="1717" width="16.0" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="52.56" y="1727.5" ></text>
</g>
<g >
<title>rcu_do_batch (2,970,294 samples, 0.01%)</title><rect x="1146.6" y="1445" width="0.2" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1149.64" y="1455.5" ></text>
</g>
<g >
<title>kmem_cache_free (20,069,496 samples, 0.07%)</title><rect x="1106.5" y="1429" width="0.7" height="15.0" fill="rgb(254,225,53)" rx="2" ry="2" />
<text x="1109.46" y="1439.5" ></text>
</g>
<g >
<title>free_unref_page_commit (10,880,817 samples, 0.04%)</title><rect x="992.3" y="1445" width="0.5" height="15.0" fill="rgb(247,196,46)" rx="2" ry="2" />
<text x="995.33" y="1455.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (15,178,676 samples, 0.05%)</title><rect x="959.0" y="1637" width="0.5" height="15.0" fill="rgb(254,229,54)" rx="2" ry="2" />
<text x="961.95" y="1647.5" ></text>
</g>
<g >
<title>ksys_read (792,743,960 samples, 2.64%)</title><rect x="845.6" y="1525" width="31.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="848.60" y="1535.5" >ks..</text>
</g>
<g >
<title>vfs_read (3,033,210 samples, 0.01%)</title><rect x="513.9" y="1317" width="0.1" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="516.87" y="1327.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,916,818 samples, 0.01%)</title><rect x="1177.2" y="1573" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1180.19" y="1583.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,771,403 samples, 0.01%)</title><rect x="60.4" y="1541" width="0.1" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="63.39" y="1551.5" ></text>
</g>
<g >
<title>mod_memcg_state (4,664,996 samples, 0.02%)</title><rect x="739.2" y="1349" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="742.24" y="1359.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (8,031,011 samples, 0.03%)</title><rect x="65.2" y="1701" width="0.3" height="15.0" fill="rgb(225,93,22)" rx="2" ry="2" />
<text x="68.21" y="1711.5" ></text>
</g>
<g >
<title>_copy_to_iter (8,363,769 samples, 0.03%)</title><rect x="33.1" y="1445" width="0.4" height="15.0" fill="rgb(227,105,25)" rx="2" ry="2" />
<text x="36.14" y="1455.5" ></text>
</g>
<g >
<title>handle_mm_fault (66,274,315 samples, 0.22%)</title><rect x="516.6" y="1429" width="2.6" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="519.63" y="1439.5" ></text>
</g>
<g >
<title>__x64_sys_newfstatat (2,747,594 samples, 0.01%)</title><rect x="34.2" y="1573" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="37.25" y="1583.5" ></text>
</g>
<g >
<title>new_slab (51,732,401 samples, 0.17%)</title><rect x="670.1" y="1349" width="2.1" height="15.0" fill="rgb(217,59,14)" rx="2" ry="2" />
<text x="673.14" y="1359.5" ></text>
</g>
<g >
<title>idr_get_next_ul (134,603,061 samples, 0.45%)</title><rect x="568.5" y="1413" width="5.3" height="15.0" fill="rgb(253,223,53)" rx="2" ry="2" />
<text x="571.55" y="1423.5" ></text>
</g>
<g >
<title>do_madvise (3,212,761 samples, 0.01%)</title><rect x="946.2" y="1605" width="0.2" height="15.0" fill="rgb(224,88,21)" rx="2" ry="2" />
<text x="949.25" y="1615.5" ></text>
</g>
<g >
<title>mod_objcg_state (32,708,308 samples, 0.11%)</title><rect x="796.3" y="1397" width="1.3" height="15.0" fill="rgb(208,16,3)" rx="2" ry="2" />
<text x="799.32" y="1407.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (6,020,625 samples, 0.02%)</title><rect x="515.8" y="1429" width="0.3" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="518.82" y="1439.5" ></text>
</g>
<g >
<title>[link] (581,099,864 samples, 1.93%)</title><rect x="44.2" y="1797" width="22.8" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="47.22" y="1807.5" >[..</text>
</g>
<g >
<title>ext4_init_new_dir (4,806,869 samples, 0.02%)</title><rect x="35.3" y="1525" width="0.2" height="15.0" fill="rgb(250,209,50)" rx="2" ry="2" />
<text x="38.34" y="1535.5" ></text>
</g>
<g >
<title>get_page_from_freelist (59,447,545 samples, 0.20%)</title><rect x="525.3" y="1381" width="2.3" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="528.28" y="1391.5" ></text>
</g>
<g >
<title>do_syscall_64 (32,158,565 samples, 0.11%)</title><rect x="27.4" y="1461" width="1.2" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="30.36" y="1471.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (17,847,493 samples, 0.06%)</title><rect x="567.5" y="1429" width="0.7" height="15.0" fill="rgb(205,0,0)" rx="2" ry="2" />
<text x="570.51" y="1439.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (2,737,336 samples, 0.01%)</title><rect x="29.9" y="1509" width="0.1" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="32.92" y="1519.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,263,441 samples, 0.02%)</title><rect x="1016.3" y="1573" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1019.32" y="1583.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (3,148,949 samples, 0.01%)</title><rect x="984.9" y="1605" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="987.94" y="1615.5" ></text>
</g>
<g >
<title>__check_object_size (15,430,600 samples, 0.05%)</title><rect x="631.0" y="1509" width="0.6" height="15.0" fill="rgb(226,98,23)" rx="2" ry="2" />
<text x="634.00" y="1519.5" ></text>
</g>
<g >
<title>__do_softirq (5,914,546 samples, 0.02%)</title><rect x="1012.6" y="1541" width="0.3" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1015.64" y="1551.5" ></text>
</g>
<g >
<title>__cond_resched (18,185,359 samples, 0.06%)</title><rect x="1119.3" y="1605" width="0.7" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="1122.29" y="1615.5" ></text>
</g>
<g >
<title>[go] (2,953,394 samples, 0.01%)</title><rect x="964.3" y="1797" width="0.1" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="967.33" y="1807.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,416,194 samples, 0.02%)</title><rect x="1138.6" y="1509" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1141.59" y="1519.5" ></text>
</g>
<g >
<title>exc_page_fault (3,443,711 samples, 0.01%)</title><rect x="937.9" y="1573" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="940.94" y="1583.5" ></text>
</g>
<g >
<title>[link] (28,128,653 samples, 0.09%)</title><rect x="60.1" y="1605" width="1.1" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="63.11" y="1615.5" ></text>
</g>
<g >
<title>rcu_do_batch (20,239,862 samples, 0.07%)</title><rect x="1046.3" y="1461" width="0.8" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1049.27" y="1471.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,932,550 samples, 0.01%)</title><rect x="1161.7" y="1557" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1164.69" y="1567.5" ></text>
</g>
<g >
<title>zap_pte_range (53,431,602 samples, 0.18%)</title><rect x="991.3" y="1541" width="2.1" height="15.0" fill="rgb(231,120,28)" rx="2" ry="2" />
<text x="994.30" y="1551.5" ></text>
</g>
<g >
<title>__rcu_read_lock (15,372,832 samples, 0.05%)</title><rect x="784.6" y="1413" width="0.6" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="787.61" y="1423.5" ></text>
</g>
<g >
<title>__cond_resched (4,654,192 samples, 0.02%)</title><rect x="655.2" y="1413" width="0.2" height="15.0" fill="rgb(217,58,14)" rx="2" ry="2" />
<text x="658.17" y="1423.5" ></text>
</g>
<g >
<title>alloc_charge_hpage (3,008,949 samples, 0.01%)</title><rect x="515.9" y="1317" width="0.2" height="15.0" fill="rgb(225,95,22)" rx="2" ry="2" />
<text x="518.94" y="1327.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6,103,023 samples, 0.02%)</title><rect x="945.7" y="1589" width="0.2" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="948.70" y="1599.5" ></text>
</g>
<g >
<title>[go] (653,663,773 samples, 2.18%)</title><rect x="11.8" y="1797" width="25.7" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="14.83" y="1807.5" >[..</text>
</g>
<g >
<title>[mapgauge.test] (149,141,294 samples, 0.50%)</title><rect x="508.2" y="1397" width="5.9" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="511.22" y="1407.5" ></text>
</g>
<g >
<title>[link] (4,367,861 samples, 0.01%)</title><rect x="67.1" y="1797" width="0.2" height="15.0" fill="rgb(247,193,46)" rx="2" ry="2" />
<text x="70.09" y="1807.5" ></text>
</g>
<g >
<title>dequeue_entity (13,805,323 samples, 0.05%)</title><rect x="968.1" y="1557" width="0.5" height="15.0" fill="rgb(233,130,31)" rx="2" ry="2" />
<text x="971.10" y="1567.5" ></text>
</g>
<g >
<title>[vet] (137,477,881 samples, 0.46%)</title><rect x="1184.1" y="1717" width="5.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1187.14" y="1727.5" ></text>
</g>
<g >
<title>bpf_map_release (20,306,212 samples, 0.07%)</title><rect x="1177.5" y="1637" width="0.8" height="15.0" fill="rgb(205,2,0)" rx="2" ry="2" />
<text x="1180.48" y="1647.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5,896,422 samples, 0.02%)</title><rect x="1181.9" y="1589" width="0.2" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1184.90" y="1599.5" ></text>
</g>
<g >
<title>get_page_from_freelist (73,176,608 samples, 0.24%)</title><rect x="955.6" y="1525" width="2.9" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="958.62" y="1535.5" ></text>
</g>
<g >
<title>__folio_alloc (61,009,725 samples, 0.20%)</title><rect x="525.2" y="1413" width="2.4" height="15.0" fill="rgb(224,91,21)" rx="2" ry="2" />
<text x="528.25" y="1423.5" ></text>
</g>
<g >
<title>consume_obj_stock (4,404,802 samples, 0.01%)</title><rect x="785.6" y="1413" width="0.2" height="15.0" fill="rgb(238,155,37)" rx="2" ry="2" />
<text x="788.61" y="1423.5" ></text>
</g>
<g >
<title>__handle_mm_fault (21,293,772 samples, 0.07%)</title><rect x="961.8" y="1637" width="0.8" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="964.75" y="1647.5" ></text>
</g>
<g >
<title>[mapgauge.test] (158,122,642 samples, 0.53%)</title><rect x="965.1" y="1781" width="6.2" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="968.06" y="1791.5" ></text>
</g>
<g >
<title>file_free_rcu (2,851,941 samples, 0.01%)</title><rect x="1156.6" y="1461" width="0.1" height="15.0" fill="rgb(216,54,13)" rx="2" ry="2" />
<text x="1159.61" y="1471.5" ></text>
</g>
<g >
<title>do_sys_openat2 (5,954,704 samples, 0.02%)</title><rect x="30.9" y="1525" width="0.2" height="15.0" fill="rgb(253,221,52)" rx="2" ry="2" />
<text x="33.87" y="1535.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (171,025,932 samples, 0.57%)</title><rect x="1065.5" y="1477" width="6.7" height="15.0" fill="rgb(238,153,36)" rx="2" ry="2" />
<text x="1068.50" y="1487.5" ></text>
</g>
<g >
<title>do_user_addr_fault (12,932,374 samples, 0.04%)</title><rect x="61.7" y="1605" width="0.5" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="64.68" y="1615.5" ></text>
</g>
<g >
<title>__irqentry_text_end (6,148,262 samples, 0.02%)</title><rect x="521.5" y="1509" width="0.2" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="524.50" y="1519.5" ></text>
</g>
<g >
<title>ext4_append (4,806,869 samples, 0.02%)</title><rect x="35.3" y="1509" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="38.34" y="1519.5" ></text>
</g>
<g >
<title>radix_tree_iter_tag_clear (21,695,929 samples, 0.07%)</title><rect x="837.5" y="1461" width="0.8" height="15.0" fill="rgb(245,184,44)" rx="2" ry="2" />
<text x="840.47" y="1471.5" ></text>
</g>
<g >
<title>get_page_from_freelist (13,179,172 samples, 0.04%)</title><rect x="518.6" y="1301" width="0.5" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="521.59" y="1311.5" ></text>
</g>
<g >
<title>security_d_instantiate (4,433,300 samples, 0.01%)</title><rect x="747.2" y="1445" width="0.2" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="750.21" y="1455.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (172,401,695 samples, 0.57%)</title><rect x="790.8" y="1413" width="6.8" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="793.83" y="1423.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (21,505,772 samples, 0.07%)</title><rect x="907.8" y="1557" width="0.9" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="910.83" y="1567.5" ></text>
</g>
<g >
<title>rcu_core (4,624,462 samples, 0.02%)</title><rect x="1156.6" y="1493" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1159.61" y="1503.5" ></text>
</g>
<g >
<title>[vet] (9,900,658 samples, 0.03%)</title><rect x="1187.7" y="885" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.66" y="895.5" ></text>
</g>
<g >
<title>__irqentry_text_end (2,992,068 samples, 0.01%)</title><rect x="961.6" y="1701" width="0.1" height="15.0" fill="rgb(248,199,47)" rx="2" ry="2" />
<text x="964.63" y="1711.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8,777,079 samples, 0.03%)</title><rect x="1136.1" y="1525" width="0.4" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1139.13" y="1535.5" ></text>
</g>
<g >
<title>charge_memcg (3,099,087 samples, 0.01%)</title><rect x="941.6" y="1509" width="0.1" height="15.0" fill="rgb(242,170,40)" rx="2" ry="2" />
<text x="944.58" y="1519.5" ></text>
</g>
<g >
<title>get_random_u32 (6,066,135 samples, 0.02%)</title><rect x="688.8" y="1317" width="0.2" height="15.0" fill="rgb(219,68,16)" rx="2" ry="2" />
<text x="691.75" y="1327.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (2,933,365 samples, 0.01%)</title><rect x="28.6" y="1477" width="0.1" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="31.63" y="1487.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (31,171,476 samples, 0.10%)</title><rect x="1168.2" y="1605" width="1.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="1171.17" y="1615.5" ></text>
</g>
<g >
<title>vma_alloc_folio (15,231,052 samples, 0.05%)</title><rect x="517.2" y="1365" width="0.6" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="520.17" y="1375.5" ></text>
</g>
<g >
<title>__x64_sys_openat (13,380,829 samples, 0.04%)</title><rect x="32.5" y="1557" width="0.6" height="15.0" fill="rgb(251,215,51)" rx="2" ry="2" />
<text x="35.53" y="1567.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (6,585,443 samples, 0.02%)</title><rect x="26.6" y="1397" width="0.3" height="15.0" fill="rgb(253,222,53)" rx="2" ry="2" />
<text x="29.64" y="1407.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4,335,552 samples, 0.01%)</title><rect x="1143.6" y="1525" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1146.64" y="1535.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (72,851,400 samples, 0.24%)</title><rect x="663.0" y="1381" width="2.9" height="15.0" fill="rgb(226,96,23)" rx="2" ry="2" />
<text x="666.02" y="1391.5" ></text>
</g>
<g >
<title>[vet] (5,794,601 samples, 0.02%)</title><rect x="1187.8" y="469" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.82" y="479.5" ></text>
</g>
<g >
<title>[vet] (3,639,564 samples, 0.01%)</title><rect x="1187.9" y="229" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.91" y="239.5" ></text>
</g>
<g >
<title>wake_up_process (3,447,284 samples, 0.01%)</title><rect x="1110.8" y="1573" width="0.1" height="15.0" fill="rgb(213,37,8)" rx="2" ry="2" />
<text x="1113.77" y="1583.5" ></text>
</g>
<g >
<title>irqentry_exit (3,806,408 samples, 0.01%)</title><rect x="519.3" y="1445" width="0.1" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="522.29" y="1455.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (3,099,149 samples, 0.01%)</title><rect x="61.9" y="1493" width="0.1" height="15.0" fill="rgb(215,48,11)" rx="2" ry="2" />
<text x="64.89" y="1503.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (5,243,500 samples, 0.02%)</title><rect x="1096.9" y="1573" width="0.2" height="15.0" fill="rgb(223,85,20)" rx="2" ry="2" />
<text x="1099.87" y="1583.5" ></text>
</g>
<g >
<title>__do_softirq (5,199,510 samples, 0.02%)</title><rect x="974.5" y="1589" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="977.50" y="1599.5" ></text>
</g>
<g >
<title>irq_exit_rcu (2,916,818 samples, 0.01%)</title><rect x="1177.2" y="1541" width="0.1" height="15.0" fill="rgb(254,227,54)" rx="2" ry="2" />
<text x="1180.19" y="1551.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,155,862 samples, 0.01%)</title><rect x="44.0" y="1813" width="0.2" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="47.02" y="1823.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (3,906,890 samples, 0.01%)</title><rect x="947.5" y="1557" width="0.1" height="15.0" fill="rgb(252,216,51)" rx="2" ry="2" />
<text x="950.47" y="1567.5" ></text>
</g>
<g >
<title>__do_softirq (4,624,462 samples, 0.02%)</title><rect x="1156.6" y="1525" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1159.61" y="1535.5" ></text>
</g>
<g >
<title>d_set_d_op (25,229,561 samples, 0.08%)</title><rect x="705.4" y="1413" width="1.0" height="15.0" fill="rgb(245,185,44)" rx="2" ry="2" />
<text x="708.44" y="1423.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (2,922,225 samples, 0.01%)</title><rect x="1169.3" y="1541" width="0.1" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1172.28" y="1551.5" ></text>
</g>
<g >
<title>[mapgauge.test] (15,728,265 samples, 0.05%)</title><rect x="964.4" y="1797" width="0.7" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="967.44" y="1807.5" ></text>
</g>
<g >
<title>rcu_core_si (8,661,462 samples, 0.03%)</title><rect x="1166.0" y="1525" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1169.03" y="1535.5" ></text>
</g>
<g >
<title>free_unref_page (3,917,297 samples, 0.01%)</title><rect x="990.1" y="1589" width="0.2" height="15.0" fill="rgb(253,224,53)" rx="2" ry="2" />
<text x="993.11" y="1599.5" ></text>
</g>
<g >
<title>__fput (4,562,482,139 samples, 15.18%)</title><rect x="998.3" y="1637" width="179.2" height="15.0" fill="rgb(248,200,47)" rx="2" ry="2" />
<text x="1001.31" y="1647.5" >__fput</text>
</g>
<g >
<title>syscall_return_via_sysret (10,522,166 samples, 0.04%)</title><rect x="970.8" y="1701" width="0.4" height="15.0" fill="rgb(229,113,27)" rx="2" ry="2" />
<text x="973.79" y="1711.5" ></text>
</g>
<g >
<title>refill_obj_stock (8,641,476 samples, 0.03%)</title><rect x="1143.0" y="1557" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="1146.00" y="1567.5" ></text>
</g>
<g >
<title>__rcu_read_lock (3,418,967 samples, 0.01%)</title><rect x="1142.0" y="1525" width="0.2" height="15.0" fill="rgb(220,69,16)" rx="2" ry="2" />
<text x="1145.02" y="1535.5" ></text>
</g>
<g >
<title>do_user_addr_fault (6,548,472 samples, 0.02%)</title><rect x="64.7" y="1653" width="0.2" height="15.0" fill="rgb(228,108,25)" rx="2" ry="2" />
<text x="67.69" y="1663.5" ></text>
</g>
<g >
<title>setup_object (3,846,515 samples, 0.01%)</title><rect x="687.7" y="1349" width="0.1" height="15.0" fill="rgb(249,205,49)" rx="2" ry="2" />
<text x="690.66" y="1359.5" ></text>
</g>
<g >
<title>[mapgauge.test] (21,563,050,662 samples, 71.76%)</title><rect x="116.5" y="1717" width="846.8" height="15.0" fill="rgb(213,40,9)" rx="2" ry="2" />
<text x="119.54" y="1727.5" >[mapgauge.test]</text>
</g>
<g >
<title>percpu_counter_add_batch (34,128,767 samples, 0.11%)</title><rect x="699.9" y="1413" width="1.3" height="15.0" fill="rgb(241,166,39)" rx="2" ry="2" />
<text x="702.89" y="1423.5" ></text>
</g>
<g >
<title>update_rq_clock (3,666,288 samples, 0.01%)</title><rect x="970.1" y="1589" width="0.2" height="15.0" fill="rgb(231,119,28)" rx="2" ry="2" />
<text x="973.11" y="1599.5" ></text>
</g>
<g >
<title>__do_softirq (16,323,299 samples, 0.05%)</title><rect x="1136.5" y="1493" width="0.6" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1139.48" y="1503.5" ></text>
</g>
<g >
<title>__do_softirq (5,171,100 samples, 0.02%)</title><rect x="975.2" y="1589" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="978.20" y="1599.5" ></text>
</g>
<g >
<title>exc_page_fault (4,176,115 samples, 0.01%)</title><rect x="963.4" y="1701" width="0.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="966.42" y="1711.5" ></text>
</g>
<g >
<title>d_instantiate (87,954,310 samples, 0.29%)</title><rect x="741.6" y="1445" width="3.5" height="15.0" fill="rgb(229,112,26)" rx="2" ry="2" />
<text x="744.63" y="1455.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="677" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="687.5" ></text>
</g>
<g >
<title>do_syscall_64 (3,972,020 samples, 0.01%)</title><rect x="966.4" y="1669" width="0.1" height="15.0" fill="rgb(209,20,4)" rx="2" ry="2" />
<text x="969.37" y="1679.5" ></text>
</g>
<g >
<title>rcu_core_si (8,777,079 samples, 0.03%)</title><rect x="1136.1" y="1445" width="0.4" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1139.13" y="1455.5" ></text>
</g>
<g >
<title>handle_mm_fault (76,181,085 samples, 0.25%)</title><rect x="941.2" y="1589" width="3.0" height="15.0" fill="rgb(234,135,32)" rx="2" ry="2" />
<text x="944.16" y="1599.5" ></text>
</g>
<g >
<title>do_tkill (14,945,989 samples, 0.05%)</title><rect x="949.3" y="1621" width="0.6" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="952.30" y="1631.5" ></text>
</g>
<g >
<title>memcpy_orig (21,728,552 samples, 0.07%)</title><rect x="740.8" y="1429" width="0.8" height="15.0" fill="rgb(247,194,46)" rx="2" ry="2" />
<text x="743.77" y="1439.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4,988,252 samples, 0.02%)</title><rect x="33.6" y="1557" width="0.2" height="15.0" fill="rgb(251,211,50)" rx="2" ry="2" />
<text x="36.58" y="1567.5" ></text>
</g>
<g >
<title>__handle_mm_fault (15,171,628 samples, 0.05%)</title><rect x="938.6" y="1541" width="0.6" height="15.0" fill="rgb(207,9,2)" rx="2" ry="2" />
<text x="941.65" y="1551.5" ></text>
</g>
<g >
<title>exc_page_fault (2,603,317 samples, 0.01%)</title><rect x="10.4" y="1749" width="0.1" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="13.41" y="1759.5" ></text>
</g>
<g >
<title>rcu_core_si (2,942,702 samples, 0.01%)</title><rect x="1129.8" y="1461" width="0.1" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1132.79" y="1471.5" ></text>
</g>
<g >
<title>[go] (4,783,270 samples, 0.02%)</title><rect x="25.5" y="1253" width="0.2" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.49" y="1263.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (107,626,415 samples, 0.36%)</title><rect x="569.6" y="1397" width="4.2" height="15.0" fill="rgb(212,35,8)" rx="2" ry="2" />
<text x="572.61" y="1407.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (348,695,614 samples, 1.16%)</title><rect x="1097.1" y="1573" width="13.7" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1100.08" y="1583.5" ></text>
</g>
<g >
<title>[vet] (4,122,735 samples, 0.01%)</title><rect x="1183.3" y="1765" width="0.2" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1186.31" y="1775.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (5,988,977 samples, 0.02%)</title><rect x="958.3" y="1493" width="0.2" height="15.0" fill="rgb(230,118,28)" rx="2" ry="2" />
<text x="961.26" y="1503.5" ></text>
</g>
<g >
<title>__vmalloc_node_range (5,455,429 samples, 0.02%)</title><rect x="759.4" y="1397" width="0.2" height="15.0" fill="rgb(246,190,45)" rx="2" ry="2" />
<text x="762.40" y="1407.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (12,350,367 samples, 0.04%)</title><rect x="812.1" y="1493" width="0.5" height="15.0" fill="rgb(232,124,29)" rx="2" ry="2" />
<text x="815.10" y="1503.5" ></text>
</g>
<g >
<title>vma_alloc_folio (3,859,670 samples, 0.01%)</title><rect x="515.5" y="1333" width="0.2" height="15.0" fill="rgb(245,187,44)" rx="2" ry="2" />
<text x="518.52" y="1343.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (2,978,971 samples, 0.01%)</title><rect x="1123.8" y="1557" width="0.1" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1126.80" y="1567.5" ></text>
</g>
<g >
<title>rcu_core (4,335,552 samples, 0.01%)</title><rect x="1143.6" y="1445" width="0.2" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1146.64" y="1455.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8,676,699 samples, 0.03%)</title><rect x="29.0" y="1509" width="0.4" height="15.0" fill="rgb(218,63,15)" rx="2" ry="2" />
<text x="32.02" y="1519.5" ></text>
</g>
<g >
<title>madvise_collapse (6,585,443 samples, 0.02%)</title><rect x="26.6" y="1365" width="0.3" height="15.0" fill="rgb(239,160,38)" rx="2" ry="2" />
<text x="29.64" y="1375.5" ></text>
</g>
<g >
<title>[vet] (7,897,606 samples, 0.03%)</title><rect x="1187.7" y="613" width="0.4" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.74" y="623.5" ></text>
</g>
<g >
<title>[unknown] (214,535,410 samples, 0.71%)</title><rect x="964.3" y="1813" width="8.5" height="15.0" fill="rgb(210,24,5)" rx="2" ry="2" />
<text x="967.33" y="1823.5" ></text>
</g>
<g >
<title>idr_preload (6,647,235 samples, 0.02%)</title><rect x="638.7" y="1509" width="0.2" height="15.0" fill="rgb(239,158,37)" rx="2" ry="2" />
<text x="641.68" y="1519.5" ></text>
</g>
<g >
<title>[vet] (109,460,850 samples, 0.36%)</title><rect x="1184.9" y="1621" width="4.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1187.90" y="1631.5" ></text>
</g>
<g >
<title>capable (5,363,693 samples, 0.02%)</title><rect x="638.3" y="1509" width="0.2" height="15.0" fill="rgb(214,41,10)" rx="2" ry="2" />
<text x="641.29" y="1519.5" ></text>
</g>
<g >
<title>irqentry_exit (15,178,676 samples, 0.05%)</title><rect x="959.0" y="1653" width="0.5" height="15.0" fill="rgb(219,66,15)" rx="2" ry="2" />
<text x="961.95" y="1663.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5,911,397 samples, 0.02%)</title><rect x="1160.2" y="1541" width="0.2" height="15.0" fill="rgb(227,101,24)" rx="2" ry="2" />
<text x="1163.21" y="1551.5" ></text>
</g>
<g >
<title>rcu_core (2,922,225 samples, 0.01%)</title><rect x="1169.3" y="1493" width="0.1" height="15.0" fill="rgb(222,81,19)" rx="2" ry="2" />
<text x="1172.28" y="1503.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4,624,462 samples, 0.02%)</title><rect x="1156.6" y="1589" width="0.2" height="15.0" fill="rgb(232,127,30)" rx="2" ry="2" />
<text x="1159.61" y="1599.5" ></text>
</g>
<g >
<title>mmap_region (4,799,373 samples, 0.02%)</title><rect x="29.1" y="1413" width="0.2" height="15.0" fill="rgb(231,121,28)" rx="2" ry="2" />
<text x="32.13" y="1423.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3,873,545 samples, 0.01%)</title><rect x="522.4" y="1333" width="0.2" height="15.0" fill="rgb(252,218,52)" rx="2" ry="2" />
<text x="525.43" y="1343.5" ></text>
</g>
<g >
<title>free_slab (26,609,722 samples, 0.09%)</title><rect x="1133.5" y="1493" width="1.1" height="15.0" fill="rgb(249,204,48)" rx="2" ry="2" />
<text x="1136.55" y="1503.5" ></text>
</g>
<g >
<title>__do_softirq (5,215,371 samples, 0.02%)</title><rect x="1174.1" y="1509" width="0.2" height="15.0" fill="rgb(246,191,45)" rx="2" ry="2" />
<text x="1177.14" y="1519.5" ></text>
</g>
<g >
<title>[vet] (7,214,219 samples, 0.02%)</title><rect x="1187.8" y="533" width="0.3" height="15.0" fill="rgb(210,26,6)" rx="2" ry="2" />
<text x="1190.77" y="543.5" ></text>
</g>
<g >
<title>handle_pte_fault (61,706,898 samples, 0.21%)</title><rect x="516.8" y="1397" width="2.4" height="15.0" fill="rgb(217,57,13)" rx="2" ry="2" />
<text x="519.77" y="1407.5" ></text>
</g>
<g >
<title>lru_add_fn (3,901,988 samples, 0.01%)</title><rect x="524.9" y="1381" width="0.2" height="15.0" fill="rgb(208,14,3)" rx="2" ry="2" />
<text x="527.94" y="1391.5" ></text>
</g>
<g >
<title>[go] (15,009,486 samples, 0.05%)</title><rect x="25.2" y="1349" width="0.6" height="15.0" fill="rgb(242,172,41)" rx="2" ry="2" />
<text x="28.22" y="1359.5" ></text>
</g>
<g >
<title>rcu_do_batch (13,155,790 samples, 0.04%)</title><rect x="1122.4" y="1477" width="0.5" height="15.0" fill="rgb(220,73,17)" rx="2" ry="2" />
<text x="1125.38" y="1487.5" ></text>
</g>
<g >
<title>rcu_core_si (39,087,739 samples, 0.13%)</title><rect x="1021.0" y="1541" width="1.5" height="15.0" fill="rgb(237,150,36)" rx="2" ry="2" />
<text x="1024.00" y="1551.5" ></text>
</g>
</g>
</svg>
This file has been truncated, but you can view the full file.
asm;[asm];[asm];[asm];[asm];[asm];[asm] 678133
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm] 598354
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm] 533873
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;do_vmi_munmap;do_vmi_align_munmap;__split_vma;vma_adjust_trans_huge;_raw_spin_lock 470609
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;do_vmi_munmap;do_vmi_align_munmap;mas_store_gfp;mas_wr_store_entry.isra.0;mas_pop_node 734170
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_clone;__do_sys_clone;kernel_clone;copy_process;__sched_fork 557863
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;blk_start_plug 428560
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush 571440
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_curr;cpuacct_charge 689828
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];asm_exc_page_fault 729073
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];asm_exc_page_fault;exc_page_fault;irqentry_exit;exit_to_user_mode_prepare 736515
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];syscall_return_via_sysret 512633
asm;[asm];[asm];[asm];[asm];[asm];asm_exc_page_fault 578463
asm;[asm];[asm];[asm];[asm];[asm];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__next_zones_zonelist 660707
asm;[asm];[asm];[asm];[asm];[asm];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;mod_lruvec_page_state.constprop.0 502516
asm;[asm];[asm];[asm];[asm];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio 734285
asm;[asm];[asm];[asm];[asm];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio;__mod_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 597544
asm;[asm];[asm];[asm];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;next_uptodate_page 676781
asm;[asm];[asm];[asm];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;xas_find;xas_load 668569
asm;[asm];[asm];[asm];asm_exc_page_fault;exc_page_fault;handle_mm_fault 530532
asm;[asm];[asm];[asm];asm_exc_page_fault;exc_page_fault;lock_mm_and_find_vma 727435
asm;[asm];[asm];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;_raw_spin_unlock 386676
asm;[asm];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;do_set_pte 353347
asm;[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;setup_arg_pages;mprotect_fixup;change_protection;change_protection_range;change_p4d_range;change_pmd_range.isra.0;change_pte_range;flush_tlb_batched_pending 740774
asm;[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;setup_arg_pages;shift_arg_pages;vma_shrink;mas_store_prealloc;mas_wr_store_entry.isra.0;mas_is_span_wr 302605
asm;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;ldt_arch_exit_mmap;free_ldt_pgtables;tlb_finish_mmu;flush_tlb_mm_range;flush_tlb_func;switch_mm_irqs_off 745398
asm;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;tlb_finish_mmu;tlb_batch_pages_flush;free_swap_cache 713235
asm;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range 714551
compile;[compile];[compile];[compile];[compile];[compile] 2862104
compile;[compile];[compile];[compile];[compile];[compile];[compile] 1443474
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile] 2162925
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile] 707522
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile] 728159
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile] 735198
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;do_vmi_munmap;do_vmi_align_munmap;__split_vma;vma_complete;mas_store_prealloc;mas_wr_store_entry.isra.0;mas_wr_modify;mas_wr_node_store;mas_replace 689352
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;do_vmi_munmap;do_vmi_align_munmap;mas_find;mas_next_slot 648022
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_clone;__do_sys_clone;kernel_clone;copy_process;dup_task_struct;alloc_thread_stack_node;__vmalloc_node_range;__vmalloc_area_node;alloc_pages_bulk_array_mempolicy;__alloc_pages_bulk;__rmqueue_pcplist 710660
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;get_mem_cgroup_from_mm 691956
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_clone;__do_sys_clone;kernel_clone;copy_process;perf_event_init_task;perf_event_init_context;inherit_task_group.isra.0;inherit_event.isra.0;find_get_pmu_context;kmalloc_trace;__kmem_cache_alloc_node 684309
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu 635920
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;asm_sysvec_call_function_single 16116
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 12299
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up 61926
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;sched_ttwu_pending;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_cfs_group 34801
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];entry_SYSCALL_64 707342
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];sync_regs 701486
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;_raw_spin_lock 653907
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;next_uptodate_page 636470
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;__next_zones_zonelist 701100
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];syscall_return_via_sysret 677217
compile;[compile];[compile];[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;__pud_alloc;get_zeroed_page;alloc_pages;__alloc_pages;get_page_from_freelist;clear_page_erms 696961
compile;[compile];[compile];[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;_raw_spin_lock 707473
compile;[compile];[compile];[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;next_uptodate_page 713651
compile;[compile];[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;charge_memcg 684024
compile;[compile];[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 684859
compile;[compile];[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;do_set_pte;page_add_file_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state 698334
compile;[compile];[compile];[compile];[compile];exc_page_fault 659386
compile;[compile];[compile];[compile];[compile];sync_regs 701849
compile;[compile];[compile];[compile];__irqentry_text_end 697948
compile;[compile];[compile];[compile];asm_exc_page_fault 666493
compile;[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;__do_fault;filemap_fault 676516
compile;[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;do_set_pte;page_add_file_rmap;__mod_lruvec_state 693192
compile;[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu;mas_walk;mtree_range_walk 674592
compile;[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;setup_arg_pages;expand_stack_locked;expand_downwards 646373
compile;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;free_pgtables;free_pgd_range;free_p4d_range;free_pud_range;___pmd_free_tlb;mod_lruvec_page_state.constprop.0;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state 527662
compile;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;_compound_head 1238322
compile;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput 710660
go;[go] 708458
go;[go];[go] 1446846
go;[go];[go];[go] 1944934
go;[go];[go];[go];[go] 4161249
go;[go];[go];[go];[go];[go] 5996234
go;[go];[go];[go];[go];[go];[go] 44109493
go;[go];[go];[go];[go];[go];[go];[go] 39411483
go;[go];[go];[go];[go];[go];[go];[go];[go] 19876592
go;[go];[go];[go];[go];[go];[go];[go];[go];[go] 13645068
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[[vdso]] 709937
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 19042372
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 26231295
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 16146209
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 16196243
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 9878479
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 13851770
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 10853794
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 11463714
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 31120580
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 21311468
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 6970193
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 7862477
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 4385324
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 4311929
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 1514983
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 3282165
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 649435
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 1396550
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 1367618
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 1972124
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 1397080
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 2018138
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 1328888
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 718331
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 666652
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 732142
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 690472
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 712008
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 617319
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 618705
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 688599
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;open_last_lookups;lookup_fast;__d_lookup_rcu 729504
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];exc_page_fault 726663
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_ctl 633062
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk 738608
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu;mas_walk;mtree_range_walk 660081
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getdents64;iterate_dir;ext4_readdir;ext4_dx_readdir;call_filldir;filldir64;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;get_mem_cgroup_from_mm 627582
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];__irqentry_text_end 705652
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait 88149
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;getname;getname_flags.part.0;strncpy_from_user;__check_object_size;__check_object_size.part.0;is_vmalloc_addr 355238
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];error_entry 737728
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__put_user_8 657666
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_close;close_fd;filp_close;dnotify_flush;fsnotify_find_mark;__srcu_read_lock 725208
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getdents64;iterate_dir;ext4_readdir;ext4_dx_readdir;ext4_htree_fill_tree;htree_dirblock_to_tree;ext4fs_dirhash;__ext4fs_dirhash;half_md4_transform.isra.0 670653
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getdents64;iterate_dir;ext4_readdir;ext4_dx_readdir;ext4_htree_fill_tree;htree_dirblock_to_tree;rb_insert_color 664240
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;iterate_dir 643196
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault 757269
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state 712774
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 697451
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 720311
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;get_unmapped_area;thp_get_unmapped_area;arch_get_unmapped_area_topdown;vm_unmapped_area;mas_empty_area_rev 685926
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;apparmor_inode_getattr 665899
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;inode_permission 670687
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;walk_component;step_into 689838
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 672659
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;__fput;call_rcu;__call_rcu_common.constprop.0 727616
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64 714983
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;__x64_sys_epoll_ctl 712008
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 646679
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 1265959
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 120021
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;__update_blocked_fair 690714
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 1436627
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getdents64;iterate_dir;ext4_readdir;call_filldir 451912
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getdents64;iterate_dir;ext4_readdir;ext4_dx_readdir;call_filldir;filldir64 741141
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getdents64;iterate_dir;ext4_readdir;ext4_dx_readdir;ext4_htree_fill_tree;ext4_htree_store_dirent 522083
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getdents64;iterate_dir;ext4_readdir;ext4_dx_readdir;ext4_htree_fill_tree;htree_dirblock_to_tree;__ext4_read_dirblock;ext4_bread;ext4_getblk;__getblk_gfp;__find_get_block;__find_get_block_slow;__filemap_get_folio;filemap_get_entry 731819
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getdents64;iterate_dir;ext4_readdir;ext4_dx_readdir;ext4_htree_fill_tree;htree_dirblock_to_tree;__ext4_read_dirblock;ext4_bread;ext4_getblk;__getblk_gfp;__find_get_block;__find_get_block_slow;__filemap_get_folio;filemap_get_entry;xas_load;xas_start 738598
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getdents64;iterate_dir;ext4_readdir;ext4_dx_readdir;ext4_htree_fill_tree;htree_dirblock_to_tree;ext4fs_dirhash;str2hashbuf_signed 699179
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;__collapse_huge_page_copy.isra.0;__collapse_huge_page_copy_succeeded.isra.0;free_page_and_swap_cache;__folio_put;__page_cache_release;lru_gen_del_folio.constprop.0;__mod_zone_page_state 738460
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;__collapse_huge_page_copy.isra.0;__collapse_huge_page_copy_succeeded.isra.0;release_pte_folio;mod_node_page_state 721445
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;__collapse_huge_page_copy.isra.0;copy_mc_enhanced_fast_string 1463618
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;alloc_charge_hpage;__alloc_pages;get_page_from_freelist;clear_page_erms 1467671
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;alloc_charge_hpage;__alloc_pages;get_page_from_freelist;clear_page_erms;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;invoke_rcu_core 731528
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;alloc_charge_hpage;__alloc_pages;get_page_from_freelist;post_alloc_hook 733016
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;vm_normal_page 729705
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;do_vmi_munmap 696759
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;alloc_empty_file;kmem_cache_alloc;memcg_slab_post_alloc_hook 159348
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;open_last_lookups;lookup_fast;__d_lookup_rcu 725304
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;get_unused_fd_flags;alloc_fd;expand_files 715619
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 736823
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 718886
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];__irqentry_text_end 718728
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;access_error 737938
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;release_pages 733617
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range 716733
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64 1478583
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 3749947
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64 731307
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule 741903
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;cp_new_stat;from_kgid_munged;map_id_up 724124
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;cp_new_stat;rep_movs_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_mm_and_find_vma 735374
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;cp_new_stat;rep_movs_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_mm_and_find_vma;down_read_killable;rwsem_down_read_slowpath;schedule_preempt_disabled;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 730992
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0 705194
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0;kmem_cache_alloc 745251
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0;kmem_cache_alloc;memcg_slab_post_alloc_hook 606158
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0;memset_orig 1436091
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0;strncpy_from_user;__check_object_size;__check_object_size.part.0;check_heap_object;__virt_addr_valid 625046
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;putname;kmem_cache_free 552917
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;security_inode_getattr 745053
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx 1423581
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0 3631436
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;inode_permission;generic_permission 705679
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;inode_permission;generic_permission;make_vfsuid;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;native_apic_msr_eoi_write 688632
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;inode_permission;security_inode_permission 731198
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;security_inode_permission 739544
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;walk_component 1330287
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;walk_component;lookup_fast;__d_lookup_rcu 1187875
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;walk_component;step_into 702701
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;walk_component;lookup_fast;__d_lookup_rcu 3500299
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;path_put;dput;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_ctx_disable 581307
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;security_inode_getattr;apparmor_inode_getattr 681638
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;vfs_getattr_nosec 737540
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;vfs_getattr_nosec;ext4_file_getattr 702423
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;vfs_getattr_nosec;ext4_file_getattr;ext4_getattr 733696
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;vfs_getattr_nosec;ext4_file_getattr;ext4_getattr;generic_fillattr 745107
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;vfs_getattr_nosec;ext4_getattr 723743
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;alloc_empty_file;kmem_cache_alloc;memcg_slab_post_alloc_hook 592416
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;do_open 735732
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;do_open;vfs_open;do_dentry_open;ext4_file_open;fscrypt_file_open;dput;asm_sysvec_call_function_single;irqentry_exit 731801
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 1472520
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 2933365
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64 157492
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 46025
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64 766041
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr;__cgroup_account_cputime 213446
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;__update_blocked_fair 738287
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0;strncpy_from_user 730256
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;inode_permission 736062
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;do_open;vfs_open;do_dentry_open;path_get 345718
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;do_open;vfs_open;errseq_sample 475428
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;link_path_walk.part.0.constprop.0;inode_permission 730148
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;getname;getname_flags.part.0;memset_orig 729311
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_sched_yield;do_sched_yield;schedule;__schedule;pick_next_task;pick_next_task_fair;update_curr 667304
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 679785
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 1433623
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_create1;do_epoll_create;anon_inode_getfile;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;__rcu_read_lock 647897
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;get_unmapped_area;thp_get_unmapped_area;arch_get_unmapped_area_topdown;vm_unmapped_area 763262
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;mas_preallocate;mas_alloc_nodes;kmem_cache_alloc_bulk;__kmem_cache_alloc_bulk 716242
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;mas_store_prealloc;mas_destroy;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 720224
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;mas_store_prealloc;mas_destroy;kmem_cache_free_bulk;kmem_cache_free_bulk.part.0;slab_update_freelist.isra.0 560499
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;mas_store_prealloc;mas_wr_store_entry.isra.0;mas_wr_modify;mas_wr_bnode;mas_split.isra.0;mas_wmb_replace 620833
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;perf_event_mmap;perf_event_mmap_event;kmalloc_trace;memset_orig 720327
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;vm_area_alloc;kmem_cache_alloc 734131
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;vm_area_alloc;kmem_cache_alloc;___slab_alloc 727117
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_rt_sigaction;do_sigaction;_raw_spin_lock_irq 165853
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 866691
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 689150
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;delayed_put_pid;put_pid.part.0;kmem_cache_free 711975
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;copy_strings.isra.0 235816
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 698573
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_load_avg 677508
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;walk_component;lookup_fast;__d_lookup_rcu 288952
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 99812
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 404163
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault 484266
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state 723012
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__mem_cgroup_charge;get_mem_cgroup_from_mm 732915
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;_raw_spin_unlock 748868
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 285378
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;flush_tlb_func;native_flush_tlb_one_user 738554
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64 681055
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 1357155
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_clone;__do_sys_clone;kernel_clone;copy_process;dup_task_struct;alloc_thread_stack_node;__vmalloc_node_range;__vmalloc_area_node;alloc_pages_bulk_array_mempolicy;__alloc_pages_bulk;__rmqueue_pcplist 614702
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;copy_string_kernel;get_arg_page;get_user_pages_remote;__get_user_pages;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__anon_vma_prepare;kmem_cache_alloc;memcg_slab_post_alloc_hook 240466
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_fcntl;__fget_light 714479
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;dequeue_task;dequeue_task_fair;update_curr 369235
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;psi_task_switch;psi_group_change 647634
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_getattr_nosec 650065
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;walk_component;lookup_fast;__d_lookup_rcu 714163
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;rw_verify_area;security_file_permission;apparmor_file_permission 744548
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 1244623
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;__fput;call_rcu;__call_rcu_common.constprop.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;note_gp_changes 732543
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;__fput;ext4_release_dir;kfree;__kmem_cache_free 760170
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 681706
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 2120969
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64 737827
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;kernel_read;__kernel_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;filemap_get_pages;filemap_get_read_batch;xas_load;xas_start 698573
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;strnlen_user 233075
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_getdents64;iterate_dir;touch_atime;__mark_inode_dirty;ext4_dirty_inode;__ext4_journal_start_sb;jbd2__journal_start 745808
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0;strncpy_from_user;__check_object_size;__check_object_size.part.0;check_heap_object;__check_heap_object 693361
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0;strncpy_from_user;__check_object_size;check_heap_object 596003
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;inode_permission 698445
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;link_path_walk.part.0.constprop.0;walk_component;lookup_fast;__d_lookup_rcu 766536
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;link_path_walk.part.0.constprop.0;walk_component;step_into 681069
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;rep_movs_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 735863
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_enter_from_user_mode 735395
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 1157942
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare 726757
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;calculate_sigpending;recalc_sigpending 24418
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 23489
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 2237085
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 706150
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64 723592
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 3056151
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_fcntl;__fdget_raw;__fget_light 716666
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0;kmem_cache_alloc 1379373
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;complete_walk 696196
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;alloc_empty_file;kmem_cache_alloc;get_obj_cgroup_from_current;__rcu_read_lock 570365
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;link_path_walk.part.0.constprop.0;inode_permission 764869
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;link_path_walk.part.0.constprop.0;inode_permission;generic_permission;make_vfsuid 766203
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;link_path_walk.part.0.constprop.0;inode_permission;security_inode_permission 698573
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;link_path_walk.part.0.constprop.0;walk_component;lookup_fast;__d_lookup_rcu 1364477
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;may_open 400708
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;terminate_walk;lockref_put_return 659733
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;getname;getname_flags.part.0;strncpy_from_user 729776
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;rep_movs_alternative 741776
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_waitid;__do_sys_waitid;kernel_waitid;do_wait;wait_consider_task;wait_task_zombie 614826
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_write;ksys_write;vfs_write;ext4_file_write_iter;ext4_buffered_write_iter;generic_perform_write;balance_dirty_pages_ratelimited;balance_dirty_pages_ratelimited_flags;balance_dirty_pages;mem_cgroup_wb_stats;do_flush_stats;cgroup_rstat_flush;cgroup_rstat_flush_locked;mem_cgroup_css_rstat_flush 614826
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_write;ksys_write;vfs_write;tty_write;file_tty_write.isra.0 463026
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_write;ksys_write;vfs_write;tty_write;file_tty_write.isra.0;do_tty_write;n_tty_write;process_echoes 739931
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;close_fd 80481
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 5582163
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;__fput;__call_rcu_common.constprop.0 733451
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;__fput;__fsnotify_parent 590521
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;__fput;apparmor_file_free_security 675270
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;__fput;ext4_release_file 685245
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;ima_file_free 643389
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 42612
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 5082910
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;do_fault 543569
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 728150
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages 769136
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn 731278
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 731869
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu;mas_walk 713180
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64 736277
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 3380953
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;__x64_sys_read 716555
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_clone;__do_sys_clone;kernel_clone;copy_process;perf_event_init_task;perf_event_init_context;inherit_task_group.isra.0;inherit_event.isra.0;perf_event_alloc;perf_init_event;perf_try_init_event;x86_pmu_event_init;allocate_fake_cpuc;intel_cpuc_prepare 692477
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_clone;__do_sys_clone;kernel_clone;copy_process;sched_cgroup_fork;task_fork_fair 702165
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_fcntl;do_fcntl;setfl;_raw_spin_unlock 732547
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0;update_sg_lb_stats;idle_cpu 684255
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;pick_next_task;put_prev_task_fair;put_prev_entity 730585
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstat;__do_sys_newfstat;vfs_fstat;vfs_getattr_nosec 614402
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0;memset_orig 742900
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0;should_failslab 743622
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0 674077
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;inode_permission;generic_permission 677917
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;link_path_walk.part.0.constprop.0;walk_component;lookup_fast;__d_lookup_rcu 2145207
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;security_inode_getattr;apparmor_inode_getattr 745170
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;alloc_empty_file 680598
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;alloc_empty_file;init_file 767532
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;alloc_empty_file;init_file;hook_file_alloc_security 737678
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;alloc_empty_file;kmem_cache_alloc 677986
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;alloc_empty_file;kmem_cache_alloc;memcg_slab_post_alloc_hook;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state 753961
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;alloc_empty_file;kmem_cache_alloc;pfmemalloc_match 738840
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;do_open;vfs_open;do_dentry_open 762486
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;do_open;vfs_open;do_dentry_open;__fsnotify_parent 768638
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;do_open;vfs_open;do_dentry_open;security_file_open;apparmor_file_open 683493
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;link_path_walk.part.0.constprop.0 1390701
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;link_path_walk.part.0.constprop.0;inode_permission 730983
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;open_last_lookups;lookup_fast;__d_lookup_rcu 639762
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;terminate_walk;mntput;mntput_no_expire 732775
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;getname;getname_flags.part.0;kmem_cache_alloc 1394697
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;getname;getname_flags.part.0;memset_orig 132341
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;getname;getname_flags.part.0;strncpy_from_user 697928
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;getname;getname_flags.part.0;strncpy_from_user;__check_object_size;__check_object_size.part.0;check_heap_object;__virt_addr_valid 413405
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;getname;kmem_cache_alloc 677025
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;__fdget_pos;__fget_light 703285
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read 680132
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read 687663
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;rep_movs_alternative 4385979
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;rep_movs_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;charge_memcg;__count_memcg_events 711796
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;rep_movs_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;charge_memcg;consume_stock 637321
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;rep_movs_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;charge_memcg;try_charge_memcg 659522
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;rep_movs_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;policy_node 613120
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;rep_movs_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;pud_val 741329
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;rep_movs_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_mm_and_find_vma;find_vma 614702
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;filemap_get_pages;filemap_get_read_batch 1044920
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;touch_atime;atime_needs_update 723578
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;rw_verify_area;security_file_permission;apparmor_file_permission 709810
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_wait4;__do_sys_wait4;__put_user_4 499276
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 3611620
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare 736740
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;schedule 639892
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_safe_stack 736778
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0 9759
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 9110
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;sched_ttwu_pending;ttwu_do_activate;check_preempt_curr;set_next_buddy 42127
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;update_rq_clock 20743
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 8276843
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];__irqentry_text_end 735289
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 743500
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_clone;__do_sys_clone;kernel_clone;copy_process;copy_sighand;kmem_cache_alloc;memcg_slab_post_alloc_hook 715320
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_ftruncate;do_sys_ftruncate;do_truncate;notify_change;ext4_setattr;ext4_truncate;ext4_ext_truncate;ext4_ext_remove_space;__ext4_ext_check 741812
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0;kmem_cache_alloc 743949
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0;memset_orig 522591
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;apparmor_inode_getattr 740050
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;security_inode_getattr;apparmor_inode_getattr 741004
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;alloc_empty_file;kmem_cache_alloc;get_obj_cgroup_from_current;__get_obj_cgroup_from_memcg 732313
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;do_open;vfs_open;do_dentry_open 737827
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read 763296
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;rep_movs_alternative 2221507
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;filemap_get_pages;filemap_get_read_batch 766754
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_rmdir;__filename_parentat;path_parentat;complete_walk;try_to_unlazy;legitimize_links 732640
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_rmdir;vfs_rmdir;ext4_rmdir;__ext4_find_entry;ext4_search_dir;ext4_match 746985
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_rmdir;vfs_rmdir;iput;evict;ext4_evict_inode;__ext4_mark_inode_dirty;ext4_mark_iloc_dirty;ext4_do_update_inode.isra.0;ext4_fill_raw_inode 757067
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_rmdir;vfs_rmdir;iput;evict;ext4_evict_inode;__ext4_mark_inode_dirty;ext4_mark_iloc_dirty;ext4_do_update_inode.isra.0;ext4_fill_raw_inode;ext4_inode_csum_set;ext4_inode_csum 746099
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_rmdir;vfs_rmdir;iput;evict;ext4_evict_inode;ext4_free_inode;ext4_read_inode_bitmap;__rcu_read_unlock 753511
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_rmdir;vfs_rmdir;iput;evict;ext4_evict_inode;ext4_truncate;ext4_ext_truncate;ext4_ext_remove_space;ext4_ext_rm_leaf;__ext4_ext_dirty;__ext4_mark_inode_dirty;ext4_mark_iloc_dirty;ext4_do_update_inode.isra.0;__ext4_handle_dirty_metadata;jbd2_journal_dirty_metadata 743043
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_rmdir;vfs_rmdir;iput;evict;ext4_evict_inode;ext4_truncate;ext4_ext_truncate;ext4_ext_remove_space;ext4_ext_rm_leaf;__ext4_ext_dirty;__ext4_mark_inode_dirty;ext4_mark_iloc_dirty;ext4_do_update_inode.isra.0;ext4_fill_raw_inode;ext4_inode_csum_set;ext4_inode_csum;crypto_shash_update;crc32c_pcl_intel_update 752728
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_rmdir;vfs_rmdir;iput;evict;ext4_evict_inode;ext4_truncate;ext4_ext_truncate;ext4_ext_remove_space;ext4_ext_rm_leaf;ext4_remove_blocks;ext4_free_blocks;ext4_mb_clear_bb;ext4_block_bitmap_csum_set;crc32c_pcl_intel_update 749332
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_unlinkat;vfs_unlink;make_vfsgid 741990
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_wait4;__do_sys_wait4;kernel_wait4;do_wait;wait_consider_task;wait_task_zombie;get_task_mm 98041
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_waitid;__do_sys_waitid 28325
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_waitid;__do_sys_waitid;kernel_waitid;do_wait;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 19212
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_enter_from_user_mode;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;perf_event_task_tick;perf_adjust_freq_unthr_context 744497
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 808421
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_safe_stack 721670
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];error_entry 702408
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 1472890
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 526235
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 744794
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;filename_create;lookup_one_qstr_excl;lookup_dcache;d_lookup;d_same_name 728526
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;__ext4_journal_get_write_access 730395
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;__ext4_new_inode;ext4_inode_bitmap_csum_set;crypto_shash_update;crc_pcl 734885
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;__ext4_new_inode;ext4_read_inode_bitmap;__getblk_gfp;__find_get_block;folio_mark_accessed 629968
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;__ext4_new_inode;ext4_read_inode_bitmap;ext4_validate_inode_bitmap 733982
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;__ext4_new_inode;ext4_used_dirs_set 727032
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;__ext4_new_inode;new_inode;alloc_inode;ext4_alloc_inode;kmem_cache_alloc_lru;___slab_alloc 729319
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;__ext4_new_inode;new_inode;alloc_inode;ext4_alloc_inode;kmem_cache_alloc_lru;memcg_slab_post_alloc_hook 705532
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;__ext4_new_inode;new_inode;alloc_inode;ext4_alloc_inode;kmem_cache_alloc_lru;slab_pre_alloc_hook.constprop.0;__rcu_read_unlock 726269
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;ext4_add_entry;add_dirent_to_buf;__ext4_mark_inode_dirty;ext4_mark_iloc_dirty;ext4_do_update_inode.isra.0;ext4_fill_raw_inode 759320
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;ext4_init_new_dir;ext4_append;ext4_bread;ext4_getblk;__ext4_journal_get_create_access;jbd2_journal_cancel_revoke 694527
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;ext4_init_new_dir;ext4_append;ext4_bread;ext4_getblk;ext4_map_blocks;ext4_es_insert_extent;rb_insert_color 722644
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;ext4_init_new_dir;ext4_append;ext4_bread;ext4_getblk;ext4_map_blocks;ext4_ext_map_blocks;ext4_mb_new_blocks;ext4_mb_mark_diskspace_used;ext4_read_block_bitmap;ext4_read_block_bitmap_nowait;__getblk_gfp;__find_get_block;folio_mark_accessed 717203
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;ext4_init_new_dir;ext4_append;ext4_bread;ext4_getblk;ext4_map_blocks;ext4_ext_map_blocks;ext4_mb_new_blocks;ext4_mb_regular_allocator;_find_next_zero_bit 1300627
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;ext4_init_new_dir;ext4_append;ext4_bread;ext4_getblk;ext4_map_blocks;ext4_ext_map_blocks;ext4_mb_new_blocks;ext4_mb_regular_allocator;ext4_mb_prefetch_fini;__rcu_read_unlock 640276
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mkdirat;do_mkdirat;vfs_mkdir;ext4_mkdir;ext4_init_new_dir;ext4_append;ext4_map_blocks;ext4_ext_map_blocks;ext4_find_extent;__kmalloc;kmalloc_slab 731592
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;putname;kmem_cache_free;cache_from_obj 478388
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;vfs_statx;filename_lookup;path_lookupat;walk_component;__lookup_slow;ext4_lookup;__ext4_find_entry;ext4_bread_batch;ext4_getblk;ext4_map_blocks;__check_block_validity.constprop.0;ext4_inode_block_valid;ext4_sb_block_valid 573013
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_pread64;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;filemap_get_pages;filemap_get_read_batch 731196
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 744902
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];__irqentry_text_end 587960
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault 737543
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;__folio_throttle_swaprate 624390
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__folio_throttle_swaprate;kthread_blkcg 738800
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;__rcu_read_unlock 728959
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;charge_memcg 744503
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio 1427018
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_new_anon_rmap;__mod_lruvec_page_state 758285
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__alloc_pages 737734
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 1114109
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode;fpregs_assert_state_consistent 579865
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;update_vsyscall 572468
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;update_load_avg;__update_load_avg_se 411604
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity 697692
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 861569
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;_raw_spin_lock 125904
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns 680342
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_newfstatat;__do_sys_newfstatat;vfs_fstatat;getname_flags;getname_flags.part.0;memset_orig 685542
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_unlinkat;iput;evict;ext4_evict_inode;ext4_free_inode;ext4_clear_inode;jbd2_journal_release_jbd_inode 727861
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_unlinkat;iput;evict;ext4_evict_inode;truncate_inode_pages_final;truncate_inode_pages_range;__folio_batch_release;release_pages 724237
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_unlinkat;iput;evict;ext4_evict_inode;truncate_inode_pages_final;truncate_inode_pages_range;delete_from_page_cache_batch;_raw_spin_unlock_irq;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch 719630
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_unlinkat;iput;evict;ext4_evict_inode;truncate_inode_pages_final;truncate_inode_pages_range;delete_from_page_cache_batch;_raw_spin_unlock_irq;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 1401540
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_unlinkat;iput;evict;ext4_evict_inode;truncate_inode_pages_final;truncate_inode_pages_range;delete_from_page_cache_batch;_raw_spin_unlock_irq;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 724575
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_unlinkat;iput;evict;ext4_evict_inode;truncate_inode_pages_final;truncate_inode_pages_range;delete_from_page_cache_batch;_raw_spin_unlock_irq;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free;__slab_free 713672
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_unlinkat;iput;evict;ext4_evict_inode;truncate_inode_pages_final;truncate_inode_pages_range;delete_from_page_cache_batch;_raw_spin_unlock_irq;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;rcu_cblist_dequeue 1402259
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_unlinkat;iput;evict;ext4_evict_inode;truncate_inode_pages_final;truncate_inode_pages_range;delete_from_page_cache_batch;filemap_unaccount_folio 751391
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_unlinkat;iput;evict;ext4_evict_inode;truncate_inode_pages_final;truncate_inode_pages_range;delete_from_page_cache_batch;xas_store 753590
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_unlinkat;iput;evict;ext4_evict_inode;truncate_inode_pages_final;truncate_inode_pages_range;truncate_cleanup_folio;ext4_invalidate_folio 751404
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 19689
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;_raw_spin_unlock 20073
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;__fput;pipe_release;free_pipe_info 211857
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];sync_regs 1298735
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];__irqentry_text_end 432474
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault 551165
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;next_uptodate_page 634726
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;hrtimer_sleeper_start_expires;hrtimer_start_range_ns;__hrtimer_start_range_ns;get_nohz_timer_target 76279
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read 701421
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;hrtimer_cancel 710331
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;zap_page_range_single;tlb_finish_mmu;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond;flush_tlb_func;native_flush_tlb_one_user 1392043
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;zap_page_range_single;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;__mem_cgroup_uncharge_list;__rcu_read_lock 690228
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_unlinkat;do_rmdir;vfs_rmdir;ext4_rmdir;__ext4_find_entry;ext4_bread_batch;ext4_getblk;__getblk_gfp;__find_get_block;__find_get_block_slow;__filemap_get_folio;filemap_get_entry;xas_load;xas_start 753590
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 739023
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];error_entry 683037
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 1446992
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 696597
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode;fpregs_assert_state_consistent 754863
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_epoll_pwait;do_epoll_pwait.part.0;do_epoll_wait;ep_poll;schedule_hrtimeout_range;schedule_hrtimeout_range_clock;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;sched_ttwu_pending;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 154843
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;hrtimer_sleeper_start_expires;hrtimer_start_range_ns;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 142324
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;dequeue_task;update_cfs_group 93335
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 47531
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt 31111
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;psi_task_switch;record_times 536111
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 26134
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;switch_fpu_return;restore_fpregs_from_fpstate 91173
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 699837
go;[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault 592965
go;[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 688258
go;[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_write;ksys_write;vfs_write;pipe_write;__wake_up_sync_key;__wake_up_common_lock;__wake_up_common;ep_poll_callback 698503
go;[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 743899
go;[go];[go];[go];[go];[go];[go];[go];__irqentry_text_end 708336
go;[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages 680200
go;[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond;flush_tlb_func;native_flush_tlb_one_user 564109
go;[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond;native_send_call_func_single_ipi;native_write_msr 619029
go;[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 137711
go;[go];[go];[go];[go];[go];[go];[go];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;account_process_tick;account_user_time 740442
go;[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 666505
go;[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio 654504
go;[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;mem_cgroup_from_task 690370
go;[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 722555
go;[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_rt_sigreturn;restore_sigcontext;fpu__restore_sig;__fpu_restore_sig;check_xstate_in_sigframe 50289
go;[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_sched_yield;do_sched_yield;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 20081
go;[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_sched_yield;do_sched_yield;schedule;__schedule;finish_task_switch.isra.0;put_task_stack;__call_rcu_common.constprop.0 23312
go;[go];[go];[go];[go];[unknown];[unknown];[go];entry_SYSCALL_64 732356
go;[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 599411
go;[go];[go];[go];asm_exc_page_fault 580797
go;[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page 557886
go;[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 130927
go;[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;next_uptodate_page 367546
go;[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;vma_alloc_folio 526658
go;[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;next_uptodate_page 287418
go;[unknown];[go] 149716037
go;[unknown];[go];[go];[go];[go];[go] 31762
go;[unknown];[go];[go];[go];[go];[go];[[vdso]] 668113
go;[unknown];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;__intel_pmu_enable_all.isra.0 9138
go;[unknown];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 8190
go;[unknown];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;hrtimer_cancel;hrtimer_try_to_cancel.part.0;__raw_spin_lock_irqsave 19522
go;[unknown];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;security_task_kill 48589
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 153879
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep 84484
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;__hrtimer_start_range_ns;enqueue_hrtimer;timerqueue_add 52374
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;_raw_spin_lock_irqsave;__raw_spin_lock_irqsave 713180
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;native_write_msr 106475
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;lapic_next_deadline 84484
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair 169294
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_cfs_group;reweight_entity 67518
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr 287814
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr;__cgroup_account_cputime 75612
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_curr;cpuacct_charge 125152
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_load_avg;__update_load_avg_cfs_rq 56065
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;update_cfs_group 96915
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in 750165
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 39478
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;_raw_spin_unlock 71589
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;flush_tlb_func 23395
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance 162602
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;activate_task 98959
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance 42894
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;_raw_spin_rq_lock_irqsave;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 53813
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;find_busiest_group;update_sd_lb_stats.constprop.0 82347
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;load_balance;update_rq_clock 100487
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;put_prev_task_fair;put_prev_entity 148128
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;__rcu_read_unlock 54100
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;x86_pmu_disable;native_write_msr 80951
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;psi_task_switch;psi_group_change 251013
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock 63822
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;update_rq_clock;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 134367
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;amd_clear_divider 118008
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 509738
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;restore_fpregs_from_fpstate 84484
go;[unknown];[go];[go];[go];[go];[go];syscall_return_via_sysret 74501
go;[unknown];[go];[go];[go];[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;__update_blocked_fair 111825
go;[unknown];[go];[go];entry_SYSCALL_64 40147
go;[unknown];[go];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 1
go;[unknown];[go];asm_exc_page_fault 1469326
go;[unknown];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__pte_offset_map_lock;_raw_spin_lock;native_queued_spin_lock_slowpath 101934
go;[unknown];[go];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu;kmem_cache_free 547243
go;[unknown];[go];entry_SYSCALL_64 726917
go;[unknown];[go];entry_SYSCALL_64_safe_stack 1316292
go;[unknown];[go];error_entry 1454820
go;[unknown];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;asm_sysvec_call_function_single 15939
go;[unknown];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable 7657
go;[unknown];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 7254
go;[unknown];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer 36572
go;[unknown];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;update_blocked_averages;__update_blocked_fair 67103
go;[unknown];[unknown];[go];[go];[go];[go];[go];[[vdso]];__irqentry_text_end 176796
go;[unknown];[unknown];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_clone;__do_sys_clone;kernel_clone;copy_process;perf_event_init_task;perf_event_init_context;inherit_task_group.isra.0;inherit_event.isra.0;_raw_spin_unlock_irqrestore;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;flush_tlb_func;native_flush_tlb_one_user 245976
go;[unknown];[unknown];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;switch_fpu_return 54814
go;[unknown];[unknown];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 92237
go;[unknown];[unknown];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;hrtimer_sleeper_start_expires;hrtimer_start_range_ns;__hrtimer_start_range_ns;enqueue_hrtimer;timerqueue_add 47804
go;[unknown];[unknown];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64 87759
go;[unknown];[unknown];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule 126116
go;[unknown];[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 24838
go;[unknown];[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;__update_blocked_fair 164240
go;[unknown];[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare 23940
go;[unknown];[unknown];[go];entry_SYSCALL_64 1488612
go;[unknown];[unknown];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 1
go;[unknown];[unknown];[unknown];[go];[go];entry_SYSCALL_64 709825
go;[unknown];[unknown];[unknown];[go];error_entry 698372
go;[unknown];[unknown];[unknown];[unknown];[unknown];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 29814
go;[unknown];[unknown];[unknown];[unknown];[unknown];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;sched_ttwu_pending;ttwu_do_activate;enqueue_task;psi_task_change 29250
go;[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];[unknown];[go];[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;kvm_guest_apic_eoi_write 105461
go;[unknown];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;rep_stos_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;put_page 189588
go;[unknown];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;setup_arg_pages;shift_arg_pages;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;uncharge_folio 102767
go;[unknown];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;setup_new_exec;arch_pick_mmap_layout;mmap_base.isra.0 45746
go;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list 694407
go;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;tlb_finish_mmu;tlb_batch_pages_flush;free_swap_cache 680228
go;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;_compound_head 2078266
go;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;task_work_run;____fput;__fput 702961
link;[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;setup_arg_pages;get_random_u16 316740
link;[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_execve;do_execveat_common.isra.0;bprm_execve;bprm_execve.part.0;exec_binprm;search_binary_handler;load_elf_binary;setup_arg_pages;mprotect_fixup;perf_event_mmap;perf_event_mmap_event 306310
link;[link] 370719
link;[link];[link] 401262
link;[link];[link];[link] 1181837
link;[link];[link];[link];[link] 5065107
link;[link];[link];[link];[link];[go];[link];[link];error_entry 220856
link;[link];[link];[link];[link];[link] 41001137
link;[link];[link];[link];[link];[link];[link] 88127171
link;[link];[link];[link];[link];[link];[link];[link] 76430872
link;[link];[link];[link];[link];[link];[link];[link];[link] 47145784
link;[link];[link];[link];[link];[link];[link];[link];[link];[[vdso]] 698968
link;[link];[link];[link];[link];[link];[link];[link];[link];[link] 84151200
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[[vdso]] 2141803
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[[vdso]];__irqentry_text_end 717157
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 41662719
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 10709607
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 2802005
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 2170209
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 1546741
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 777920
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 709823
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 407678
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 526437
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;mas_preallocate;mas_alloc_nodes;kmem_cache_alloc_bulk;__kmem_cache_alloc_bulk;___slab_alloc 612000
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 658117
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];__irqentry_text_end 419362
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault 516020
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;mas_preallocate;mas_alloc_nodes;kmem_cache_alloc_bulk;__kmem_cache_alloc_bulk 444673
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;mas_store_prealloc;mas_wr_store_entry.isra.0;mas_wr_modify;mas_wr_bnode 461221
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64 33793
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_clone;__do_sys_clone;kernel_clone;copy_process;perf_event_fork;perf_iterate_sb.constprop.0;perf_iterate_ctx;__perf_event_header__init_id 574222
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait 16542
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable 8115
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 31655
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues 25193
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out 51688
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_update_vma;split_vma;__split_vma;vma_complete;mas_store_prealloc;mas_wr_store_entry.isra.0;mas_wr_modify;mas_wr_bnode;mas_split.isra.0;mas_push_data;mast_fill_bnode 498898
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_update_vma;split_vma;__split_vma;vma_complete;mas_store_prealloc;mas_wr_store_entry.isra.0;mas_wr_modify;mas_wr_bnode;mas_store_b_node;mas_mab_cp 485506
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;security_vm_enough_memory_mm;cap_vm_enough_memory 350277
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 729307
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault 306813
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe 713711
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter 754725
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;rw_verify_area;security_file_permission;apparmor_file_permission 724630
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru 464827
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read 663713
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter 749794
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;rep_movs_alternative 754724
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];syscall_return_via_sysret 732411
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault 476943
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare 512853
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe 1898523
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_clone;__do_sys_clone;kernel_clone;copy_process;dup_task_struct;alloc_thread_stack_node 598818
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_lseek;ksys_lseek;__fget_light 753497
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;do_vmi_munmap 701056
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;get_unmapped_area;thp_get_unmapped_area;arch_get_unmapped_area_topdown;vm_unmapped_area;mas_empty_area_rev;mas_rev_awalk 736219
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;mas_preallocate;mas_alloc_nodes;kmem_cache_alloc_bulk;__kmem_cache_alloc_bulk 445778
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;mas_preallocate;mas_alloc_nodes;kmem_cache_alloc_bulk;__kmem_cache_alloc_bulk;___slab_alloc 724777
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;mas_store_prealloc;mas_wr_store_entry.isra.0;mas_wr_modify;mas_wr_node_store;mas_pop_node 737405
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;vm_area_alloc;kmem_cache_alloc 743779
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 2135853
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSRETQ_unsafe_stack 729793
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];syscall_return_via_sysret 1182823
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];__sysvec_call_function_single 750829
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 761693
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 757769
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare 311607
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;do_filp_open;path_openat;link_path_walk.part.0.constprop.0;inode_permission 678027
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_openat;do_sys_openat2;getname;getname_flags.part.0;kmem_cache_alloc 734372
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;asm_exc_page_fault 741774
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;rep_movs_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault 690842
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;ext4_file_read_iter;generic_file_read_iter;filemap_read;copy_page_to_iter;_copy_to_iter;rep_movs_alternative;asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 752324
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;rw_verify_area;security_file_permission;__fsnotify_parent 741900
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 727226
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];sync_regs 513166
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__pte_offset_map_lock;_raw_spin_lock;native_queued_spin_lock_slowpath 717119
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 218731
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait 25038
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 18527
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;psi_task_switch 153121
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;acct_collect 53576
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];error_entry 631456
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault 1115636
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault 777713
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;down_read_trylock 582205
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;do_set_pte 750776
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;pte_alloc_one;alloc_pages;__alloc_pages 727454
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;vma_alloc_folio 779582
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__folio_alloc 779387
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_lru_vma;folio_add_lru 777230
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_node_page_state 781117
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;flush_tlb_func;native_flush_tlb_one_user 2327807
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond;flush_tlb_func;native_flush_tlb_one_user 771342
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 2325513
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue 782092
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist 778902
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;mem_cgroup_from_task 768967
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event;native_write_msr 513015
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;error_entry 24294
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 22732
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;perf_event_task_tick 48397
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];error_entry 1553044
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];sysvec_call_function_single 573556
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];__irqentry_text_end 3054051
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault 1553562
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru 1559177
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 2320669
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;_raw_spin_lock 751276
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu;mas_walk;mtree_range_walk 595150
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare 780601
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_ftruncate;do_sys_ftruncate;security_file_truncate 735985
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];error_entry 1558013
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];sync_regs 1542929
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];__irqentry_text_end 2702524
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault 3148410
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault 627469
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault 1018546
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault 1424817
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault 313493
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;charge_memcg;try_charge_memcg 779729
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_new_anon_rmap 765844
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;_raw_spin_trylock 759708
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;asm_sysvec_reschedule_ipi 770331
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 3074888
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue 760615
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist 757660
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;do_set_pte;page_add_file_rmap;__mod_lruvec_page_state;__mod_node_page_state 770343
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;xas_find;xas_load;xas_start 779401
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;__folio_throttle_swaprate 526859
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;__mem_cgroup_charge 720119
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;cpuacct_charge 671331
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__mem_cgroup_charge;__count_memcg_events 769439
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__mem_cgroup_charge;__rcu_read_lock 713093
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_lru_vma;folio_add_lru 720032
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio;__mod_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 493187
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__mod_lruvec_page_state 653716
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__rcu_read_lock 225046
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;native_set_pte 459998
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;update_wall_time 726341
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;flush_tlb_func 154132
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;flush_tlb_func;native_flush_tlb_one_user 638822
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 743954
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 1966735
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist 413259
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;find_suitable_fallback 745397
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk;_raw_spin_unlock_irqrestore;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;sched_ttwu_pending;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 724170
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;count_memcg_events.constprop.0;__count_memcg_events 350515
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu;mas_walk 520438
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu;mas_walk;mtree_range_walk 716813
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;up_read 737827
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 2230074
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;_raw_spin_lock_irq;native_queued_spin_lock_slowpath 1523828
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;handle_signal;x64_setup_rt_frame 759550
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe 572784
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;hrtimer_sleeper_start_expires;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;ktime_get;pvclock_clocksource_read_nowd 706588
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_munmap;__vm_munmap;do_vmi_munmap;do_vmi_align_munmap;unmap_region;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_rmaps;__mod_lruvec_page_state 776557
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_rt_sigreturn;restore_sigcontext;_copy_from_user 760279
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;check_kill_permission;security_task_kill;apparmor_task_kill 404449
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;complete_signal;kick_process;native_smp_send_reschedule;native_write_msr 567350
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_tgkill;do_tkill;do_send_specific;find_task_by_vpid;idr_find;radix_tree_lookup;__radix_tree_lookup 956086
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 2268737
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];sync_regs 753682
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];syscall_return_via_sysret 476319
link;[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;do_user_addr_fault 778855
link;[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault 781395
link;[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;do_anonymous_page 769833
link;[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 2317190
link;[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;__do_fault;filemap_fault;page_cache_async_ra;ondemand_readahead;page_cache_ra_order;page_cache_ra_unbounded;filemap_alloc_folio;folio_alloc;alloc_pages;policy_node 677298
link;[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;__do_fault;filemap_fault;page_cache_ra_order 656208
link;[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 291208
link;[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 297479
link;[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;finish_fault 757861
link;[link];[link];[link];[link];[link];[link];[link];[link];asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;__flush_smp_call_function_queue;sched_ttwu_pending;_raw_spin_rq_lock_irqsave;_raw_spin_lock 671727
link;[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe 508834
link;[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_sched_yield;do_sched_yield;schedule;__schedule 502626
link;[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 1290313
link;[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSRETQ_unsafe_stack 565786
link;[link];[link];[link];[link];[link];[link];[link];[link];error_entry 762467
link;[link];[link];[link];[link];[link];[link];[link];[link];sync_regs 1236723
link;[link];[link];[link];[link];[link];[link];[link];[link];syscall_return_via_sysret 370846
link;[link];[link];[link];[link];[link];[link];[link];__irqentry_text_end 772487
link;[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 1553938
link;[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist 773559
link;[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages 779099
link;[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;_compound_head 774649
link;[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;next_uptodate_page 2329662
link;[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__folio_alloc 489508
link;[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 559309
link;[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk;find_suitable_fallback 771287
link;[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 517013
link;[link];[link];[link];[link];[link];[link];[link];error_entry 761389
link;[link];[link];[link];[link];[link];[link];[link];syscall_return_via_sysret 578315
link;[link];[link];[link];[link];[link];[link];__irqentry_text_end 1944108
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault 2095891
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault 776008
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;try_charge_memcg 160782
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;_raw_spin_lock 560215
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_new_anon_rmap 774349
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 548819
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;do_set_pte;page_add_file_rmap 778725
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;next_uptodate_page 1563086
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__mem_cgroup_charge;__rcu_read_lock 732381
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;percpu_counter_add_batch 743532
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 624477
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;count_memcg_events.constprop.0;__count_memcg_events;cgroup_rstat_updated 725247
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;mem_cgroup_from_task 536640
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;handle_mm_fault 761983
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 1105016
link;[link];[link];[link];[link];[link];[link];error_entry 1802137
link;[link];[link];[link];[link];[link];[link];sync_regs 2209316
link;[link];[link];[link];[link];[link];__irqentry_text_end 746356
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault 777980
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault 734450
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault 710565
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 776081
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;__do_fault;filemap_fault 773526
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;__do_fault;filemap_fault;do_sync_mmap_readahead;page_cache_ra_order;page_cache_ra_unbounded;filemap_alloc_folio;folio_alloc;alloc_pages;__alloc_pages;get_page_from_freelist;clear_page_erms 1529357
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;__do_fault;filemap_fault;page_cache_async_ra;ondemand_readahead;page_cache_ra_order;page_cache_ra_unbounded;filemap_add_folio;__filemap_add_folio 736318
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;__do_fault;filemap_fault;page_cache_async_ra;ondemand_readahead;page_cache_ra_order;page_cache_ra_unbounded;filemap_alloc_folio;folio_alloc;alloc_pages;__alloc_pages;get_page_from_freelist;clear_page_erms 681232
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_page_mkwrite;ext4_page_mkwrite;block_page_mkwrite;__block_write_begin_int;folio_create_empty_buffers;folio_alloc_buffers;alloc_buffer_head;kmem_cache_alloc 774791
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_page_mkwrite;ext4_page_mkwrite;block_page_mkwrite;__block_write_begin_int;folio_create_empty_buffers;folio_alloc_buffers;alloc_buffer_head;kmem_cache_alloc;___slab_alloc 763891
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_page_mkwrite;ext4_page_mkwrite;block_page_mkwrite;__block_write_begin_int;folio_create_empty_buffers;folio_alloc_buffers;alloc_buffer_head;kmem_cache_alloc;memcg_slab_post_alloc_hook 728125
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_page_mkwrite;ext4_page_mkwrite;block_page_mkwrite;__block_write_begin_int;mark_buffer_dirty;__folio_mark_dirty;__xa_set_mark;xas_load 753704
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_page_mkwrite;ext4_page_mkwrite;block_page_mkwrite;folio_mark_dirty 773148
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;do_set_pte;page_add_file_rmap;__mod_lruvec_page_state 621900
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;do_set_pte;page_add_file_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 775540
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;xas_find;xas_load;xas_start 776218
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;fault_dirty_shared_page;balance_dirty_pages_ratelimited;balance_dirty_pages_ratelimited_flags 755320
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 726482
link;[link];[link];[link];[link];[link];error_entry 1437829
link;[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 557794
link;[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;do_set_pte;page_add_file_rmap;__mod_lruvec_page_state;__mod_lruvec_state 523386
link;[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;_raw_spin_lock 121377
link;[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;next_uptodate_page 405420
link;[link];[link];[link];error_entry 450596
link;[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_fault;do_read_fault;filemap_map_pages;do_set_pte 355977
link;[unknown];[go];[link];error_entry 776284
link;[unknown];[link];[link];[link];[link] 80326
link;[unknown];[link];[link];[link];[link];[link] 121874
link;[unknown];[link];[link];[link];[link];[link];[[vdso]] 96915
link;[unknown];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];syscall_return_via_sysret 86135
link;[unknown];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wake;wake_up_q;try_to_wake_up;ttwu_do_activate 333701
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64 43883
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64 24039
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns 100444
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;hrtimer_start_range_ns;hrtimer_reprogram;tick_program_event;clockevents_program_event;native_write_msr 89513
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule 85889
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule 291238
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;asm_sysvec_call_function_single 9288
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair 202047
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_load_avg 48255
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;dequeue_task;dequeue_task_fair;dequeue_entity;update_load_avg;__update_load_avg_cfs_rq 112914
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all 15730
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 45292
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;finish_task_switch.isra.0;asm_sysvec_call_function_single;sysvec_call_function_single;__sysvec_call_function_single;generic_smp_call_function_single_interrupt;llist_reverse_order 20930
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;__msecs_to_jiffies 96893
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance 602653
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages 89750
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;pick_next_task;pick_next_task_fair;newidle_balance;update_blocked_averages;update_rt_rq_load_avg 63535
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;exit_mm_release;mm_release 32273
link;[unknown];[link];[link];[link];[link];[link];syscall_return_via_sysret 232877
link;[unknown];[link];[link];[link];[link];__vdso_clock_gettime 71979
link;[unknown];[link];asm_sysvec_call_function_single 544698
link;[unknown];[link];error_entry 769826
link;[unknown];[link];ret_from_fork_asm;ret_from_fork;schedule_tail;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 26817
link;[unknown];[link];ret_from_fork_asm;ret_from_fork;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_signals 28147
link;[unknown];[unknown];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 97064
link;[unknown];[unknown];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;inc_mm_counter;_raw_spin_lock 658055
link;[unknown];[unknown];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 1329768
link;[unknown];[unknown];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault 89718
link;[unknown];[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe 673363
link;[unknown];[unknown];[link];[link];error_entry 1560404
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_enable 124826
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_sched_yield;do_sched_yield;schedule;__schedule;switch_mm_irqs_off 299473
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mm_update_next_owner 143950
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;lru_add_drain;lru_add_drain_cpu;folio_batch_move_lru;__rcu_read_unlock 100882
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;__tlb_remove_page_size 172083
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;_compound_head 9289090
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;page_remove_rmap 743882
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;page_remove_rmap;__mod_lruvec_page_state 691896
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;page_remove_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state 562713
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache 604995
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0 681000
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;uncharge_folio 651890
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;tlb_flush_mmu;tlb_batch_pages_flush;free_swap_cache 731010
link;ret_from_fork_asm;ret_from_fork;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;free_pages 384332
link;ret_from_fork_asm;ret_from_fork;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;_compound_head 278900
link;ret_from_fork_asm;ret_from_fork;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range 321586
link;ret_from_fork_asm;ret_from_fork;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma;unmap_page_range;zap_pmd_range.isra.0;zap_pte_range;__mod_lruvec_page_state 247793
link;ret_from_fork_asm;ret_from_fork;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;get_signal;do_group_exit;do_exit;exit_mm;mmput;__mmput;uprobe_clear_state;mutex_lock 57662
mapgauge.test;[go];[mapgauge.test];asm_exc_page_fault 779128
mapgauge.test;[mapgauge.test];[mapgauge.test] 748555
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 12253848
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 367034063
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 853574302
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 1501674350
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[[vdso]] 743102
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 445288487
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[[vdso]] 1927370
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 536466497
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[[vdso]] 13170075
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[[vdso]];error_return 617167
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 743924550
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 783231366
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[[vdso]] 749582
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 316045047
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 245460088
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 245083424
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 285259685
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 132216105
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 150873455
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 3818048550
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 193226277
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 141347300
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 175155479
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 99579284
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 95734176
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 35037286
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 8386706
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 5092113
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 28920719
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 1489455
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 9421637
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 36145940
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 49287205
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 2214024
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 1980818
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 1553202
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap 749920
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault 776871
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 772511
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe 778945
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_pread64;vfs_read;kernfs_fop_read_iter;kernfs_file_read_iter;__kmalloc;memset_orig 773442
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_pread64;vfs_read;kernfs_fop_read_iter;kernfs_file_read_iter;_copy_to_iter;rep_movs_alternative 685781
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_pread64;vfs_read;kernfs_fop_read_iter;kernfs_file_read_iter;sysfs_kf_bin_read;memcpy_orig 3877135
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_pread64;vfs_read;rw_verify_area;security_file_permission 708907
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 778825
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;syscall_enter_from_user_mode 773873
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 771205
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;update_load_avg 612129
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe 750858
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_pread64;vfs_read;kernfs_fop_read_iter;kernfs_file_read_iter;__kmalloc;__kmem_cache_alloc_node 759399
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_pread64;vfs_read;kernfs_fop_read_iter;kernfs_file_read_iter;sysfs_kf_bin_read;memcpy_orig 2273811
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];error_entry 753958
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];__irqentry_text_end 775661
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues 755063
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush 763051
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair 758964
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;bpf_prog_load;bpf_prog_select_runtime;bpf_int_jit_compile;do_jit 775964
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];sync_regs 664887
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];__irqentry_text_end 1539969
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault 778705
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio;__mod_zone_page_state 776926
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 1533945
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu 775606
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;__collapse_huge_page_copy.isra.0;copy_mc_enhanced_fast_string 758392
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;__collapse_huge_page_isolate;isolate_lru_page;folio_isolate_lru;lru_gen_del_folio;__mod_lruvec_state;__mod_node_page_state 757996
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;alloc_charge_hpage;__alloc_pages;get_page_from_freelist;clear_page_erms 3036396
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;get_unmapped_area;arch_get_unmapped_area_topdown;vm_unmapped_area 779582
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;perf_event_mmap;perf_event_mmap_event 778723
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;vma_expand;mas_preallocate;mas_alloc_nodes;kmem_cache_alloc 779010
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;vma_expand;mas_store_prealloc;mas_wr_store_entry.isra.0;mas_is_span_wr 778751
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;vma_expand;vma_complete;anon_vma_interval_tree_insert 781938
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;vma_expand;vma_prepare;anon_vma_interval_tree_remove;rb_next 775682
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];error_return 764968
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];sync_regs 780437
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];__irqentry_text_end 1542865
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault 1544813
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;access_error 738568
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault 777078
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;folio_lruvec_lock_irqsave 779408
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 1533210
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;_raw_spin_unlock 776100
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__folio_throttle_swaprate;kthread_blkcg 775294
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__mem_cgroup_charge;get_mem_cgroup_from_mm 1560332
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__pte_offset_map_lock;__pte_offset_map 772517
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio 772722
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__mod_lruvec_page_state 757247
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 760930
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_node_page_state 776644
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__rcu_read_lock 765122
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;native_set_pte 770686
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 747842
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond;flush_tlb_func;native_flush_tlb_one_user 767847
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond;tlb_is_not_lazy 778792
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 3859670
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;count_memcg_events.constprop.0;__count_memcg_events 776135
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 770248
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;up_read 744109
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64 777623
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;btf_new_fd;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru 562021
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd 763030
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;__collapse_huge_page_copy.isra.0;__collapse_huge_page_copy_succeeded.isra.0;release_pte_folio;folio_putback_lru;folio_add_lru;folio_batch_move_lru;release_pages;lru_gen_del_folio.constprop.0 748598
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;__collapse_huge_page_copy.isra.0;copy_mc_enhanced_fast_string 1500048
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;alloc_charge_hpage;__alloc_pages;get_page_from_freelist;clear_page_erms 3008949
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];error_entry 776280
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];sync_regs 2326603
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];__irqentry_text_end 6123816
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault 4540592
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault 771256
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault 764301
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault 3028371
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault 769177
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__folio_throttle_swaprate;blk_cgroup_congested 772104
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;charge_memcg;__count_memcg_events 777514
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;charge_memcg;try_charge_memcg 778663
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;charge_memcg;try_charge_memcg;consume_stock 778824
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;_raw_spin_lock 1558405
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;_raw_spin_unlock 774228
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_gen_add_folio 751381
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_node_page_state 1534338
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_node_page_state 778025
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;pfn_pte 775200
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio 2303903
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist 707071
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 9916262
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;_raw_spin_lock_irqsave 751686
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;post_alloc_hook 773095
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk 779035
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page 780078
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;_raw_spin_unlock 1546742
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy 776493
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__folio_throttle_swaprate;blk_cgroup_congested;kthread_blkcg 774758
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__folio_throttle_swaprate;kthread_blkcg 780602
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__mem_cgroup_charge;charge_memcg;consume_stock 771106
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__mem_cgroup_charge;charge_memcg;try_charge_memcg;consume_stock 765765
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__mem_cgroup_charge;get_mem_cgroup_from_mm 772600
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__pte_offset_map 773891
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn 777009
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio;__mod_lruvec_state;__mod_memcg_lruvec_state 767421
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state 1543211
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_node_page_state 772088
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;percpu_counter_add_batch 779324
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush 779641
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;_find_next_bit 777050
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;flush_tlb_func;native_flush_tlb_one_user 2331670
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond;flush_tlb_func;native_flush_tlb_one_user 3111490
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__alloc_pages 772690
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;__next_zones_zonelist 774119
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist 766632
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 10071480
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;post_alloc_hook 780411
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist 782076
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk 778573
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;rmqueue 773900
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__next_zones_zonelist 1547167
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;pud_val 774745
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu 766146
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu;mas_walk;mtree_range_walk 769455
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 3086487
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task;pick_next_task_fair;rb_next 719921
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];error_entry 3822989
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];sync_regs 2311442
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];__irqentry_text_end 5388260
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault 5406566
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;access_error 764324
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault 1534001
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault 763659
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault 2327308
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge 777112
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_new_anon_rmap 777792
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;percpu_counter_add_batch 776696
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages 773487
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 4648057
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;post_alloc_hook 779469
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__next_zones_zonelist 777966
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy 770894
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;_raw_spin_unlock 777805
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;flush_tlb_func;native_flush_tlb_one_user 1545653
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond;flush_tlb_func;native_flush_tlb_one_user 778974
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio 767222
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;__next_zones_zonelist 774613
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;__zone_watermark_ok 771005
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 1549230
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;should_fail_alloc_page 776432
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;_find_first_bit 777772
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;count_memcg_events.constprop.0;__count_memcg_events 1551119
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu 782247
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu;mas_walk 761741
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;up_read 774817
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 3863964
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];error_entry 1547809
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];sync_regs 1553421
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[unknown];[mapgauge.test];asm_exc_page_fault 774990
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];__irqentry_text_end 6148262
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault 4576606
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault 769761
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault 1547413
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page 772166
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;_raw_spin_trylock 738886
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 3730149
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;vma_alloc_folio 777387
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__mem_cgroup_charge;charge_memcg;try_charge_memcg;page_counter_try_charge 776923
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;__mem_cgroup_charge;get_mem_cgroup_from_mm 777443
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;flush_tlb_mm_range 775514
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__mod_lruvec_page_state 776072
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;flush_tlb_func;native_flush_tlb_one_user 1559339
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 3873545
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;count_memcg_events.constprop.0 780729
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu;mas_walk 1550621
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 2326802
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair;enqueue_entity;update_curr;__cgroup_account_cputime;cgroup_rstat_updated 622309
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;run_posix_cpu_timers 780679
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch 630074
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;bpf_prog_load;bpf_check;do_check_common;do_check;check_mem_access;check_ptr_to_btf_access;btf_nested_type_is_trusted;btf_find_by_name_kind 2325163
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;bpf_prog_load;bpf_check;do_check_common;do_check;check_mem_access;check_ptr_to_btf_access;btf_nested_type_is_trusted;strcmp 777948
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;bpf_prog_load;bpf_prog_select_runtime;bpf_int_jit_compile;do_jit 771840
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;__collapse_huge_page_copy.isra.0;copy_mc_enhanced_fast_string 1538881
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_madvise;do_madvise;madvise_walk_vmas;madvise_vma_behavior;madvise_collapse;hpage_collapse_scan_pmd;collapse_huge_page;alloc_charge_hpage;__alloc_pages;get_page_from_freelist;clear_page_erms 1554121
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;do_vmi_munmap;do_vmi_align_munmap;__split_vma;vma_complete;mas_destroy 779586
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];error_entry 2273560
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];__irqentry_text_end 713813
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault 758915
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__folio_throttle_swaprate;blk_cgroup_congested 781077
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio;__mod_lruvec_state 778190
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 778715
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues 651207
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;__remove_hrtimer;rb_erase 760555
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up 779197
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate 662560
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;update_vsyscall 783099
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;hrtimer_wakeup 661525
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event;native_write_msr 1392476
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;native_apic_msr_eoi_write 652062
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_do_batch;free_fdtable_rcu;kfree;__kmem_cache_free 780422
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers;call_timer_fn;process_timeout;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change 780458
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode 652517
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;__schedule 660479
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;arch_do_signal_or_restart;handle_signal 779707
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in 667592
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_disable;x86_pmu_disable;native_write_msr 668649
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;_raw_spin_unlock 668233
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task;pick_next_task_fair;rb_next 1415119
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;psi_task_switch 792830
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;raw_spin_rq_lock_nested 661581
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;switch_fpu_return;restore_fpregs_from_fpstate 1346695
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_call_function_single;sysvec_call_function_single;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;pick_next_task_fair 772235
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;apparmor_mmap_file 728987
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;do_vmi_munmap;do_vmi_align_munmap 759633
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];sync_regs 1159400
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];__irqentry_text_end 4675439
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;access_error 781991
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault 781474
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;down_read_trylock 724394
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault 755126
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault 1563890
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault 781943
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;__folio_throttle_swaprate 774939
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page 2956492
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge 752820
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;__rcu_read_unlock 797201
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;charge_memcg;__count_memcg_events 1437487
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;blk_cgroup_congested 750271
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru 2300698
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio 1561501
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio;__mod_lruvec_state;__mod_memcg_lruvec_state 1560581
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio;__mod_zone_page_state 779906
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;release_pages 781870
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_new_anon_rmap;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_curr;check_preempt_wakeup;resched_curr 777164
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;get_mem_cgroup_from_mm 770242
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;native_set_pte 780527
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio 776380
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages 782199
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist 1561007
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;__next_zones_zonelist 770357
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;_raw_spin_trylock 777731
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 44198815
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist 5396338
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk 6743297
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;rmqueue 779981
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;policy_node 1560277
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 783847
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;_find_next_bit 763520
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond 753263
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi;on_each_cpu_cond_mask;smp_call_function_many_cond;flush_tlb_func;native_flush_tlb_one_user 1480805
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;set_pte 782072
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;count_memcg_events.constprop.0;__count_memcg_events 778813
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;pgd_none 777539
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;pud_val 748443
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu;mas_walk 779426
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;up_read 772684
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;irqentry_exit;exit_to_user_mode_prepare 1553884
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 9130670
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare 754779
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_curr;set_next_buddy 781850
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;native_apic_msr_eoi_write 732496
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_clone;__do_sys_clone;kernel_clone;wake_up_new_task;__task_rq_lock;raw_spin_rq_lock_nested;_raw_spin_lock;native_queued_spin_lock_slowpath 726659
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_mmap;ksys_mmap_pgoff;vm_mmap_pgoff;do_mmap;mmap_region;vma_expand;mas_store_prealloc 294285
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];sync_regs 772072
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;_raw_spin_lock 758124
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;pfn_pte 711629
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;count_memcg_events.constprop.0 680428
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64 777940
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe 3091582
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64 776211
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read 782724
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;_copy_to_user 765005
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_map_seq_next 40813198
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_map_seq_show 7680122
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_map_seq_start 779456
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read 44496680
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;__check_object_size;__check_object_size.part.0 758619
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;__check_object_size;__check_object_size.part.0;check_heap_object 767563
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;_copy_to_user 747442
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_iter_get_info 15257918
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_iter_run_prog 3099101
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_get_curr_or_next 2332325
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_put 42227658
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next 21619940
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;__bpf_map_inc_not_zero 588233657
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;__bpf_map_inc_not_zero;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;perf_event_task_tick;perf_adjust_freq_unthr_context;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 756203
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;__bpf_map_inc_not_zero;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;update_load_avg;__update_load_avg_se 587088
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;_raw_spin_lock_bh 58038694
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;_raw_spin_unlock_bh 6157786
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;bpf_map_get_curr_or_next 6991059
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;bpf_map_get_curr_or_next;__bpf_map_inc_not_zero 135424842
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;bpf_map_get_curr_or_next;__local_bh_enable_ip 5449116
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;bpf_map_get_curr_or_next;_raw_spin_unlock_bh 6235071
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;bpf_map_get_curr_or_next;_raw_spin_unlock_bh;__local_bh_enable_ip 10827540
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;bpf_map_get_curr_or_next;_raw_spin_unlock_bh;__local_bh_enable_ip;do_softirq.part.0;__do_softirq;run_timer_softirq;__run_timers;call_timer_fn;delayed_work_timer_fn;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;enqueue_task_fair 784882
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;bpf_map_get_curr_or_next;idr_get_next 8510243
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;bpf_map_get_curr_or_next;idr_get_next;idr_get_next_ul 26976646
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;bpf_map_get_curr_or_next;idr_get_next;idr_get_next_ul;radix_tree_next_chunk 106953495
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;bpf_map_get_curr_or_next;idr_get_next;idr_get_next_ul;radix_tree_next_chunk;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;ktime_get_update_offsets_now 672920
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;bpf_map_get_curr_or_next;idr_get_next;radix_tree_next_chunk 7711648
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;bpf_map_get_curr_or_next;idr_get_next_ul 1564671
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_next;idr_get_next 5450794
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show 24134934
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;__rcu_read_lock 3880480
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;__rcu_read_unlock 10809744
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;bpf_iter_get_info 7721439
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;bpf_iter_run_prog 37929516
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;bpf_iter_run_prog;__rcu_read_lock 2184437
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;bpf_iter_run_prog;bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries 212100990
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;bpf_iter_run_prog;bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries;bpf_seq_write;__memcpy 782946
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;bpf_iter_run_prog;bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries;bpf_seq_write;memcpy_orig 23777106
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;bpf_iter_run_prog;bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries;bpf_seq_write;seq_write 6185028
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;bpf_iter_run_prog;bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries;seq_write 1412437
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;bpf_iter_run_prog;bpf_seq_write 5387360
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;bpf_iter_run_prog;migrate_enable 25937908
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries 12357722
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;migrate_disable 9972227
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_show;migrate_enable 6983949
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_start 763815
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;bpf_map_seq_start;bpf_map_get_curr_or_next;idr_get_next;idr_get_next_ul;radix_tree_next_chunk 1494021
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;mutex_lock 756462
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;bpf_seq_read;rep_movs_alternative 3047386
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_read;ksys_read;vfs_read;rw_verify_area;security_file_permission;fsnotify_perm.part.0 780767
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 4638866
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare 1564181
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;prepare_task_switch;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;x86_pmu_disable;native_write_msr 783478
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode;fpregs_assert_state_consistent 761052
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];error_entry 782647
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];sync_regs 642506
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];syscall_return_via_sysret 6796450
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];__irqentry_text_end 1557125
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];__sysvec_apic_timer_interrupt 783233
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault 3048201
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault 781196
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page 764700
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__mem_cgroup_charge;charge_memcg;try_charge_memcg;page_counter_try_charge 768339
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__pte_offset_map_lock 770058
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;charge_memcg 756276
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn 1519671
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_new_anon_rmap 779039
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;folio_add_new_anon_rmap;__mod_lruvec_page_state 778466
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages 767282
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;__next_zones_zonelist 779865
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;__next_zones_zonelist 778880
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 11523360
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist 1544818
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk 1497683
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy 781881
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__rcu_read_lock 779572
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;folio_add_new_anon_rmap;__rcu_read_unlock 780364
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_wp_page;wp_page_copy;ptep_clear_flush;flush_tlb_mm_range;native_flush_tlb_multi 773040
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;mem_cgroup_from_task 779210
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;up_read 778566
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 759376
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare 780947
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_exc_page_fault;exc_page_fault;up_read 778655
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt 1312447
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;enqueue_hrtimer;timerqueue_add 761794
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;check_preempt_wakeup 730153
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;hrtimer_wakeup;wake_up_process;ttwu_do_activate 708457
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;update_load_avg;__update_load_avg_se 782539
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event;native_write_msr 665563
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_disable;x86_pmu_disable;native_write_msr 356375
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;schedule;prepare_task_switch 637595
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];do_syscall_64 10850243
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64 306650396
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe 459016614
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;__x64_sys_bpf 27522678
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64 38030013
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__sys_bpf 6959249
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf 2312042
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__check_object_size 10088691
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf 119323869
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;__check_object_size 1528040
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;__check_object_size.part.0 2339279
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;__check_object_size;__check_object_size.part.0 6923387
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;__check_object_size;__check_object_size.part.0;check_stack_object 6970198
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;__check_object_size;check_stack_object 1537015
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;__mutex_init 13090994
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;_copy_from_user 44933245
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;_raw_spin_lock_bh 52161072
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;_raw_spin_unlock_bh 4591251
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;anon_inode_getfd 6166269
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;array_map_alloc 2985269
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;array_map_alloc_check 39153478
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_do_timer;tick_do_update_jiffies64;update_wall_time;timekeeping_advance;timekeeping_update;update_fast_timekeeper 782675
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;bpf_obj_name_cpy 6234366
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;capable 5363693
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;get_obj_cgroup_from_current 2336371
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;idr_alloc_cyclic 2192150
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;idr_preload 6647235
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create 154926268
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;__anon_inode_getfile 3505047
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;__get_obj_cgroup_from_memcg 3626274
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;__local_bh_enable_ip 6946170
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;__radix_tree_preload 6217771
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;__rcu_read_lock 1501188
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;__rcu_read_unlock 14745030
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;_raw_spin_unlock_bh 2266488
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;_raw_spin_unlock_bh;__local_bh_enable_ip 12247652
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd 21509785
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile 25795592
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file 6035964
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo 29737643
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;__d_alloc 2311725
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;__d_instantiate 3113465
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;_raw_spin_lock 38010949
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;_raw_spin_unlock 6121327
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_empty_file 4614939
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file 38562640
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file 31654703
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;__cond_resched 4654192
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;__mutex_init 6945817
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;_raw_spin_unlock 781031
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;get_obj_cgroup_from_current 3826585
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file 42161332
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;apparmor_file_alloc_security 38196574
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;hook_file_alloc_security 55108295
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;kmem_cache_alloc 2303034
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc 45178538
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;__cond_resched 777717
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;apparmor_file_alloc_security 26958985
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;apparmor_file_alloc_security;__cond_resched 2305088
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;apparmor_file_alloc_security;begin_current_label_crit_section 43587327
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;begin_current_label_crit_section 6966074
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;hook_file_alloc_security 6199192
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc 90535107
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc 3103577
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;get_any_partial 1556131
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;__alloc_pages 1543094
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages 1561626
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;__next_zones_zonelist 777573
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;clear_page_erms 16899114
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;clear_page_erms;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;hrtimer_update_next_event;__hrtimer_next_event_base 485178
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;post_alloc_hook 780201
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk 779057
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;mod_node_page_state 771131
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;setup_object 5407552
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;shuffle_freelist 18109993
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;shuffle_freelist;__get_random_u32_below;get_random_u32 2303720
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;shuffle_freelist;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;task_tick_fair;update_load_avg;__update_load_avg_cfs_rq 781917
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;shuffle_freelist;setup_object 1532245
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;__cond_resched;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable 783305
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;update_curr 712403
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;__cond_resched;__schedule;psi_task_switch 708538
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;kmem_cache_alloc;memcg_slab_post_alloc_hook 4562614
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;memcg_slab_post_alloc_hook 3883360
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;memset_orig 5436570
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;init_file;security_file_alloc;should_failslab 1546944
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc 134235267
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc 10032949
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;get_any_partial 7469140
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;get_any_partial;cpuset_node_allowed 1553583
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;inc_slabs_node 1551468
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab 777587
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab 3813866
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;__alloc_pages 3124252
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages 2204749
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages 1556588
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;__next_zones_zonelist 2340498
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist 6201693
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;__next_zones_zonelist 780173
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;_raw_spin_trylock 5301220
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;clear_page_erms 148630453
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;rmqueue 5435824
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist 1529820
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk 7767193
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk;__mod_zone_page_state 779525
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;_find_first_bit 1548995
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;get_page_from_freelist 5434496
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;policy_node 765203
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;alloc_pages;should_fail_alloc_page 779852
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node 2277217
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node;__cond_resched 633538
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node;__kmem_cache_alloc_node 5050512
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node;__kmem_cache_alloc_node;___slab_alloc;new_slab;allocate_slab;__alloc_pages;get_page_from_freelist;clear_page_erms 1418130
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node;__kmem_cache_alloc_node;memcg_slab_post_alloc_hook 4616673
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node;kmalloc_slab 785321
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node;memcg_slab_post_alloc_hook 780007
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node;memset_orig 2336108
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;mod_node_page_state 4632140
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;policy_nodemask 692874
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;setup_object 3846515
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;shuffle_freelist 23131213
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;shuffle_freelist;__get_random_u32_below 756180
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;shuffle_freelist;__get_random_u32_below;get_random_u32 3773979
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;shuffle_freelist;__get_random_u32_below;get_random_u32;_get_random_bytes;chacha_block_generic;chacha_permute 754996
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;shuffle_freelist;__get_random_u32_below;get_random_u32;_get_random_bytes;crng_make_state;crng_fast_key_erasure;chacha_block_generic;chacha_permute 758919
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;shuffle_freelist;__get_random_u32_below;get_random_u32;crng_make_state 778241
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;allocate_slab;shuffle_freelist;setup_object 4504342
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;___slab_alloc;new_slab;shuffle_freelist 778369
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity;update_curr 782347
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;__cond_resched;__schedule;prepare_task_switch;__perf_event_task_sched_out;_raw_spin_lock 774042
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;__get_obj_cgroup_from_memcg 3083767
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;__rcu_read_lock 11472918
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;__rcu_read_unlock 21419348
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;scheduler_tick;perf_event_task_tick;perf_adjust_freq_unthr_context 781283
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;consume_obj_stock 3849416
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;get_any_partial 596873
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;get_obj_cgroup_from_current 32038810
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;get_obj_cgroup_from_current;__get_obj_cgroup_from_memcg 12988546
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;get_obj_cgroup_from_current;__get_obj_cgroup_from_memcg;__rcu_read_lock 1557704
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;get_obj_cgroup_from_current;__rcu_read_lock 2332499
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;get_obj_cgroup_from_current;__rcu_read_unlock 2342863
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;get_obj_cgroup_from_current;__rcu_read_unlock;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;account_process_tick;account_system_time;account_system_index_time;acct_account_cputime 780620
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;memcg_slab_post_alloc_hook 61962079
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;memcg_slab_post_alloc_hook;__rcu_read_lock 1531393
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;memcg_slab_post_alloc_hook;__rcu_read_unlock 783236
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;memcg_slab_post_alloc_hook;mod_objcg_state 22027092
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;memcg_slab_post_alloc_hook;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state 1555988
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;memcg_slab_post_alloc_hook;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 778148
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;mod_objcg_state 2956358
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;new_slab 777702
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;obj_cgroup_charge 16143240
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;obj_cgroup_charge;__rcu_read_lock 1559120
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;obj_cgroup_charge;consume_obj_stock 17466508
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;obj_cgroup_charge;memcg_account_kmem;mod_memcg_state 1467115
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;obj_cgroup_charge;memcg_account_kmem;mod_memcg_state;__mod_memcg_state 3868282
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;obj_cgroup_charge;memcg_account_kmem;mod_memcg_state;__mod_memcg_state;cgroup_rstat_updated 782670
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;obj_cgroup_charge;refill_obj_stock 770508
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;obj_cgroup_charge;try_charge_memcg 778340
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;obj_cgroup_charge;try_charge_memcg;consume_stock 2170267
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;pfmemalloc_match 779505
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;refill_obj_stock 3046098
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;should_failslab 724630
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;kmem_cache_alloc;try_charge_memcg 1563619
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;memset_orig 27865224
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;obj_cgroup_charge 6136123
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;percpu_counter_add_batch 34128767
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;security_file_alloc 6028269
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;alloc_empty_file;should_failslab 2311600
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;init_file 29004925
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;init_file;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event 783650
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;kmem_cache_alloc 3105606
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;alloc_file;percpu_counter_add_batch 3081761
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo 1540736
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc 58208224
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;___slab_alloc 2313752
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_rebalance_domains;rebalance_domains 853968
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;d_set_d_op 24448267
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;d_set_d_op;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;tick_sched_handle;update_process_times;sched_clock_tick 781294
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru 98727284
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc 4505118
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;get_any_partial 4662272
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;get_any_partial;cpuset_node_allowed 1561921
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;get_partial_node.part.0 2333594
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;inc_slabs_node 2334195
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;alloc_pages 779467
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab 1530438
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;__alloc_pages 1506375
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages 2262873
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages 772067
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;__next_zones_zonelist 761390
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;__zone_watermark_ok 1532383
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist 4293080
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;__next_zones_zonelist 2334296
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;_raw_spin_trylock 2310254
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;clear_page_erms 111763205
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;post_alloc_hook 783256
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;rmqueue 2256948
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk 9195156
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;__alloc_pages;get_page_from_freelist;rmqueue;_raw_spin_unlock 778764
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;get_page_from_freelist 2204071
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;policy_nodemask 775564
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;alloc_pages;should_fail_alloc_page 779574
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node;__kmem_cache_alloc_node 2321212
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node;__kmem_cache_alloc_node;___slab_alloc;new_slab;allocate_slab;__alloc_pages;get_page_from_freelist;clear_page_erms 6927804
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node;__kmem_cache_alloc_node;___slab_alloc;new_slab;allocate_slab;shuffle_freelist;__get_random_u32_below;get_random_u32 757595
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node;__kmem_cache_alloc_node;___slab_alloc;new_slab;allocate_slab;shuffle_freelist;setup_object 1535138
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;kmem_cache_alloc_lru;___slab_alloc;new_slab;allocate_slab;memcg_alloc_slab_cgroups;__kmalloc_node;__kmem_cache_alloc_node;should_failslab 781797
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_bpf;__sys_bpf;map_create;anon_inode_getfd;__anon_inode_getfile;alloc_file_pseudo;d_alloc_pseudo;__d_alloc;km
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment