Skip to content

Instantly share code, notes, and snippets.

@mejedi
Created January 15, 2024 12:10
Show Gist options
  • Save mejedi/9fef8d3e699e3b7bf78bbb8808f442ee to your computer and use it in GitHub Desktop.
Save mejedi/9fef8d3e699e3b7bf78bbb8808f442ee 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="1590" onload="init(evt)" viewBox="0 0 1200 1590" 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;
}
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();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
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
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
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;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").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() {
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]);
update_text(el[i]);
}
search();
}
// 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")
}
}
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) {
currentSearchTerm = term;
search();
}
} 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 (currentSearchTerm === null) return;
var term = currentSearchTerm;
var re = new RegExp(term, 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;
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="1590.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="1573" > </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="1573" > </text>
<g id="frames">
<g >
<title>[mapgauge.test] (7,110 samples, 15.74%)</title><rect x="289.0" y="1253" width="185.7" height="15.0" fill="rgb(225,44,53)" rx="2" ry="2" />
<text x="291.98" y="1263.5" >[mapgauge.test]</text>
</g>
<g >
<title>_raw_spin_lock (40 samples, 0.09%)</title><rect x="580.9" y="1141" width="1.1" height="15.0" fill="rgb(245,171,8)" rx="2" ry="2" />
<text x="583.93" y="1151.5" ></text>
</g>
<g >
<title>place_entity (15 samples, 0.03%)</title><rect x="1009.1" y="1157" width="0.4" height="15.0" fill="rgb(225,224,23)" rx="2" ry="2" />
<text x="1012.06" y="1167.5" ></text>
</g>
<g >
<title>__do_softirq (51 samples, 0.11%)</title><rect x="963.9" y="1205" width="1.3" height="15.0" fill="rgb(217,183,42)" rx="2" ry="2" />
<text x="966.88" y="1215.5" ></text>
</g>
<g >
<title>dnotify_flush (8 samples, 0.02%)</title><rect x="886.3" y="1317" width="0.2" height="15.0" fill="rgb(222,60,45)" rx="2" ry="2" />
<text x="889.29" y="1327.5" ></text>
</g>
<g >
<title>rcu_core (14 samples, 0.03%)</title><rect x="1157.2" y="1189" width="0.4" height="15.0" fill="rgb(223,192,48)" rx="2" ry="2" />
<text x="1160.25" y="1199.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (24 samples, 0.05%)</title><rect x="1173.5" y="1269" width="0.6" height="15.0" fill="rgb(242,83,11)" rx="2" ry="2" />
<text x="1176.52" y="1279.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (99 samples, 0.22%)</title><rect x="1157.8" y="1317" width="2.6" height="15.0" fill="rgb(254,177,16)" rx="2" ry="2" />
<text x="1160.77" y="1327.5" ></text>
</g>
<g >
<title>do_check_common (5 samples, 0.01%)</title><rect x="468.7" y="1109" width="0.1" height="15.0" fill="rgb(226,156,12)" rx="2" ry="2" />
<text x="471.66" y="1119.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (25 samples, 0.06%)</title><rect x="1058.8" y="1269" width="0.6" height="15.0" fill="rgb(227,112,32)" rx="2" ry="2" />
<text x="1061.79" y="1279.5" ></text>
</g>
<g >
<title>[vet] (24 samples, 0.05%)</title><rect x="1187.6" y="885" width="0.6" height="15.0" fill="rgb(239,48,53)" rx="2" ry="2" />
<text x="1190.60" y="895.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="763.6" y="1109" width="0.1" height="15.0" fill="rgb(208,192,0)" rx="2" ry="2" />
<text x="766.57" y="1119.5" ></text>
</g>
<g >
<title>locks_remove_posix (68 samples, 0.15%)</title><rect x="887.2" y="1317" width="1.8" height="15.0" fill="rgb(209,56,3)" rx="2" ry="2" />
<text x="890.18" y="1327.5" ></text>
</g>
<g >
<title>memset_orig (16 samples, 0.04%)</title><rect x="659.9" y="1109" width="0.4" height="15.0" fill="rgb(239,25,8)" rx="2" ry="2" />
<text x="662.86" y="1119.5" ></text>
</g>
<g >
<title>__update_load_avg_se (29 samples, 0.06%)</title><rect x="1088.9" y="1205" width="0.7" height="15.0" fill="rgb(211,109,31)" rx="2" ry="2" />
<text x="1091.85" y="1215.5" ></text>
</g>
<g >
<title>update_load_avg (27 samples, 0.06%)</title><rect x="1091.8" y="1237" width="0.7" height="15.0" fill="rgb(220,85,33)" rx="2" ry="2" />
<text x="1094.83" y="1247.5" ></text>
</g>
<g >
<title>rcu_core (30 samples, 0.07%)</title><rect x="1181.7" y="1253" width="0.8" height="15.0" fill="rgb(248,205,6)" rx="2" ry="2" />
<text x="1184.72" y="1263.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4 samples, 0.01%)</title><rect x="1189.0" y="1301" width="0.1" height="15.0" fill="rgb(217,143,9)" rx="2" ry="2" />
<text x="1192.03" y="1311.5" ></text>
</g>
<g >
<title>allocate_slab (17 samples, 0.04%)</title><rect x="696.5" y="981" width="0.5" height="15.0" fill="rgb(241,187,49)" rx="2" ry="2" />
<text x="699.53" y="991.5" ></text>
</g>
<g >
<title>clear_page_erms (5 samples, 0.01%)</title><rect x="61.8" y="1205" width="0.2" height="15.0" fill="rgb(219,201,13)" rx="2" ry="2" />
<text x="64.84" y="1215.5" ></text>
</g>
<g >
<title>kmalloc_slab (23 samples, 0.05%)</title><rect x="713.2" y="1125" width="0.6" height="15.0" fill="rgb(217,103,34)" rx="2" ry="2" />
<text x="716.22" y="1135.5" ></text>
</g>
<g >
<title>dequeue_entity (59 samples, 0.13%)</title><rect x="861.2" y="1269" width="1.6" height="15.0" fill="rgb(229,218,40)" rx="2" ry="2" />
<text x="864.22" y="1279.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4 samples, 0.01%)</title><rect x="920.7" y="1253" width="0.1" height="15.0" fill="rgb(215,165,42)" rx="2" ry="2" />
<text x="923.74" y="1263.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (59 samples, 0.13%)</title><rect x="41.4" y="1413" width="1.6" height="15.0" fill="rgb(210,146,43)" rx="2" ry="2" />
<text x="44.44" y="1423.5" ></text>
</g>
<g >
<title>exit_mm (19 samples, 0.04%)</title><rect x="64.6" y="1429" width="0.5" height="15.0" fill="rgb(206,33,32)" rx="2" ry="2" />
<text x="67.61" y="1439.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (14 samples, 0.03%)</title><rect x="871.1" y="1285" width="0.4" height="15.0" fill="rgb(209,156,45)" rx="2" ry="2" />
<text x="874.14" y="1295.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (8 samples, 0.02%)</title><rect x="471.1" y="1093" width="0.2" height="15.0" fill="rgb(215,66,31)" rx="2" ry="2" />
<text x="474.14" y="1103.5" ></text>
</g>
<g >
<title>pte_offset_map_nolock (5 samples, 0.01%)</title><rect x="846.3" y="1285" width="0.1" height="15.0" fill="rgb(224,147,8)" rx="2" ry="2" />
<text x="849.25" y="1295.5" ></text>
</g>
<g >
<title>__folio_alloc (4 samples, 0.01%)</title><rect x="461.1" y="1013" width="0.1" height="15.0" fill="rgb(246,184,2)" rx="2" ry="2" />
<text x="464.09" y="1023.5" ></text>
</g>
<g >
<title>[vet] (146 samples, 0.32%)</title><rect x="1185.2" y="1285" width="3.8" height="15.0" fill="rgb(230,224,32)" rx="2" ry="2" />
<text x="1188.17" y="1295.5" ></text>
</g>
<g >
<title>rcu_core_si (4 samples, 0.01%)</title><rect x="1120.3" y="1077" width="0.1" height="15.0" fill="rgb(242,75,19)" rx="2" ry="2" />
<text x="1123.27" y="1087.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (6 samples, 0.01%)</title><rect x="1079.7" y="1253" width="0.1" height="15.0" fill="rgb(249,200,12)" rx="2" ry="2" />
<text x="1082.66" y="1263.5" ></text>
</g>
<g >
<title>file_free_rcu (294 samples, 0.65%)</title><rect x="1045.4" y="1141" width="7.7" height="15.0" fill="rgb(218,139,19)" rx="2" ry="2" />
<text x="1048.42" y="1151.5" ></text>
</g>
<g >
<title>call_rcu (5 samples, 0.01%)</title><rect x="969.5" y="1221" width="0.1" height="15.0" fill="rgb(241,115,29)" rx="2" ry="2" />
<text x="972.47" y="1231.5" ></text>
</g>
<g >
<title>zap_pte_range (12 samples, 0.03%)</title><rect x="64.8" y="1301" width="0.3" height="15.0" fill="rgb(227,38,23)" rx="2" ry="2" />
<text x="67.79" y="1311.5" ></text>
</g>
<g >
<title>[vet] (7 samples, 0.02%)</title><rect x="1188.0" y="197" width="0.2" height="15.0" fill="rgb(228,69,47)" rx="2" ry="2" />
<text x="1191.02" y="207.5" ></text>
</g>
<g >
<title>ihold (36 samples, 0.08%)</title><rect x="666.3" y="1157" width="0.9" height="15.0" fill="rgb(244,107,21)" rx="2" ry="2" />
<text x="669.28" y="1167.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (74 samples, 0.16%)</title><rect x="710.6" y="1109" width="2.0" height="15.0" fill="rgb(219,150,23)" rx="2" ry="2" />
<text x="713.63" y="1119.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (5 samples, 0.01%)</title><rect x="871.2" y="1269" width="0.2" height="15.0" fill="rgb(205,149,12)" rx="2" ry="2" />
<text x="874.22" y="1279.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (37 samples, 0.08%)</title><rect x="1101.2" y="1221" width="0.9" height="15.0" fill="rgb(231,28,40)" rx="2" ry="2" />
<text x="1104.18" y="1231.5" ></text>
</g>
<g >
<title>fd_install (48 samples, 0.11%)</title><rect x="668.2" y="1173" width="1.3" height="15.0" fill="rgb(226,126,18)" rx="2" ry="2" />
<text x="671.22" y="1183.5" ></text>
</g>
<g >
<title>ttwu_do_activate (7 samples, 0.02%)</title><rect x="854.5" y="1237" width="0.2" height="15.0" fill="rgb(233,27,4)" rx="2" ry="2" />
<text x="857.48" y="1247.5" ></text>
</g>
<g >
<title>__kmem_cache_free (16 samples, 0.04%)</title><rect x="1119.7" y="1141" width="0.5" height="15.0" fill="rgb(236,224,2)" rx="2" ry="2" />
<text x="1122.75" y="1151.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (40 samples, 0.09%)</title><rect x="41.6" y="1237" width="1.0" height="15.0" fill="rgb(222,70,15)" rx="2" ry="2" />
<text x="44.60" y="1247.5" ></text>
</g>
<g >
<title>__x64_sys_futex (6 samples, 0.01%)</title><rect x="836.4" y="1301" width="0.2" height="15.0" fill="rgb(234,155,26)" rx="2" ry="2" />
<text x="839.41" y="1311.5" ></text>
</g>
<g >
<title>___slab_alloc (78 samples, 0.17%)</title><rect x="597.9" y="1061" width="2.0" height="15.0" fill="rgb(251,77,12)" rx="2" ry="2" />
<text x="600.91" y="1071.5" ></text>
</g>
<g >
<title>__sysvec_call_function_single (7 samples, 0.02%)</title><rect x="851.3" y="1365" width="0.2" height="15.0" fill="rgb(212,178,16)" rx="2" ry="2" />
<text x="854.27" y="1375.5" ></text>
</g>
<g >
<title>compile (45 samples, 0.10%)</title><rect x="10.8" y="1525" width="1.1" height="15.0" fill="rgb(205,182,13)" rx="2" ry="2" />
<text x="13.76" y="1535.5" ></text>
</g>
<g >
<title>rmqueue_bulk (9 samples, 0.02%)</title><rect x="846.0" y="1173" width="0.2" height="15.0" fill="rgb(235,58,41)" rx="2" ry="2" />
<text x="848.99" y="1183.5" ></text>
</g>
<g >
<title>lockref_put_return (94 samples, 0.21%)</title><rect x="1150.7" y="1301" width="2.5" height="15.0" fill="rgb(235,35,47)" rx="2" ry="2" />
<text x="1153.72" y="1311.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (13 samples, 0.03%)</title><rect x="43.3" y="1413" width="0.4" height="15.0" fill="rgb(224,229,25)" rx="2" ry="2" />
<text x="46.32" y="1423.5" ></text>
</g>
<g >
<title>file_free_rcu (18 samples, 0.04%)</title><rect x="1181.7" y="1221" width="0.5" height="15.0" fill="rgb(209,71,16)" rx="2" ry="2" />
<text x="1184.72" y="1231.5" ></text>
</g>
<g >
<title>handle_pte_fault (9 samples, 0.02%)</title><rect x="60.1" y="1269" width="0.3" height="15.0" fill="rgb(229,187,11)" rx="2" ry="2" />
<text x="63.12" y="1279.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (75 samples, 0.17%)</title><rect x="464.6" y="1189" width="2.0" height="15.0" fill="rgb(250,196,7)" rx="2" ry="2" />
<text x="467.61" y="1199.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (22 samples, 0.05%)</title><rect x="940.3" y="1301" width="0.6" height="15.0" fill="rgb(211,183,42)" rx="2" ry="2" />
<text x="943.33" y="1311.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (24 samples, 0.05%)</title><rect x="859.9" y="1317" width="0.6" height="15.0" fill="rgb(210,36,16)" rx="2" ry="2" />
<text x="862.91" y="1327.5" ></text>
</g>
<g >
<title>select_task_rq_fair (22 samples, 0.05%)</title><rect x="986.7" y="1237" width="0.6" height="15.0" fill="rgb(216,51,54)" rx="2" ry="2" />
<text x="989.71" y="1247.5" ></text>
</g>
<g >
<title>__do_fault (6 samples, 0.01%)</title><rect x="63.7" y="1317" width="0.1" height="15.0" fill="rgb(249,111,45)" rx="2" ry="2" />
<text x="66.67" y="1327.5" ></text>
</g>
<g >
<title>discard_slab (4 samples, 0.01%)</title><rect x="1123.2" y="1045" width="0.2" height="15.0" fill="rgb(254,225,46)" rx="2" ry="2" />
<text x="1126.25" y="1055.5" ></text>
</g>
<g >
<title>do_anonymous_page (4 samples, 0.01%)</title><rect x="469.3" y="1125" width="0.1" height="15.0" fill="rgb(208,137,34)" rx="2" ry="2" />
<text x="472.26" y="1135.5" ></text>
</g>
<g >
<title>exit_mmap (11 samples, 0.02%)</title><rect x="44.1" y="1317" width="0.3" height="15.0" fill="rgb(245,91,5)" rx="2" ry="2" />
<text x="47.13" y="1327.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="27.9" y="1189" width="0.1" height="15.0" fill="rgb(218,78,13)" rx="2" ry="2" />
<text x="30.94" y="1199.5" ></text>
</g>
<g >
<title>get_page_from_freelist (59 samples, 0.13%)</title><rect x="834.0" y="1173" width="1.5" height="15.0" fill="rgb(209,93,1)" rx="2" ry="2" />
<text x="836.98" y="1183.5" ></text>
</g>
<g >
<title>prepare_task_switch (12 samples, 0.03%)</title><rect x="864.6" y="1301" width="0.4" height="15.0" fill="rgb(251,171,42)" rx="2" ry="2" />
<text x="867.64" y="1311.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (12 samples, 0.03%)</title><rect x="516.8" y="1141" width="0.4" height="15.0" fill="rgb(244,38,20)" rx="2" ry="2" />
<text x="519.84" y="1151.5" ></text>
</g>
<g >
<title>do_group_exit (8 samples, 0.02%)</title><rect x="11.7" y="1397" width="0.2" height="15.0" fill="rgb(233,223,36)" rx="2" ry="2" />
<text x="14.72" y="1407.5" ></text>
</g>
<g >
<title>__slab_free (4 samples, 0.01%)</title><rect x="1123.2" y="1093" width="0.2" height="15.0" fill="rgb(243,98,38)" rx="2" ry="2" />
<text x="1126.25" y="1103.5" ></text>
</g>
<g >
<title>wp_page_copy (16 samples, 0.04%)</title><rect x="59.4" y="1221" width="0.5" height="15.0" fill="rgb(220,167,5)" rx="2" ry="2" />
<text x="62.44" y="1231.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (11 samples, 0.02%)</title><rect x="1136.6" y="1253" width="0.3" height="15.0" fill="rgb(212,163,13)" rx="2" ry="2" />
<text x="1139.59" y="1263.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (6 samples, 0.01%)</title><rect x="44.3" y="1253" width="0.1" height="15.0" fill="rgb(253,148,0)" rx="2" ry="2" />
<text x="47.26" y="1263.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (4 samples, 0.01%)</title><rect x="865.8" y="1253" width="0.1" height="15.0" fill="rgb(219,109,44)" rx="2" ry="2" />
<text x="868.76" y="1263.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (11 samples, 0.02%)</title><rect x="653.7" y="1061" width="0.3" height="15.0" fill="rgb(240,11,20)" rx="2" ry="2" />
<text x="656.75" y="1071.5" ></text>
</g>
<g >
<title>file_free_rcu (35 samples, 0.08%)</title><rect x="964.0" y="1141" width="0.9" height="15.0" fill="rgb(218,44,21)" rx="2" ry="2" />
<text x="966.96" y="1151.5" ></text>
</g>
<g >
<title>handle_mm_fault (37 samples, 0.08%)</title><rect x="529.1" y="1221" width="0.9" height="15.0" fill="rgb(220,191,24)" rx="2" ry="2" />
<text x="532.07" y="1231.5" ></text>
</g>
<g >
<title>memcg_account_kmem (12 samples, 0.03%)</title><rect x="1130.9" y="1205" width="0.3" height="15.0" fill="rgb(224,0,1)" rx="2" ry="2" />
<text x="1133.90" y="1215.5" ></text>
</g>
<g >
<title>sched_clock (9 samples, 0.02%)</title><rect x="1032.6" y="1205" width="0.3" height="15.0" fill="rgb(250,225,37)" rx="2" ry="2" />
<text x="1035.65" y="1215.5" ></text>
</g>
<g >
<title>__free_slab (14 samples, 0.03%)</title><rect x="1050.5" y="1029" width="0.4" height="15.0" fill="rgb(226,10,35)" rx="2" ry="2" />
<text x="1053.54" y="1039.5" ></text>
</g>
<g >
<title>file_free_rcu (11 samples, 0.02%)</title><rect x="965.2" y="1157" width="0.3" height="15.0" fill="rgb(238,155,27)" rx="2" ry="2" />
<text x="968.24" y="1167.5" ></text>
</g>
<g >
<title>__do_softirq (9 samples, 0.02%)</title><rect x="930.7" y="1237" width="0.2" height="15.0" fill="rgb(206,65,48)" rx="2" ry="2" />
<text x="933.66" y="1247.5" ></text>
</g>
<g >
<title>_compound_head (15 samples, 0.03%)</title><rect x="891.0" y="1237" width="0.4" height="15.0" fill="rgb(252,220,14)" rx="2" ry="2" />
<text x="894.04" y="1247.5" ></text>
</g>
<g >
<title>[mapgauge.test] (19 samples, 0.04%)</title><rect x="458.7" y="1077" width="0.5" height="15.0" fill="rgb(218,209,44)" rx="2" ry="2" />
<text x="461.74" y="1087.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (59 samples, 0.13%)</title><rect x="651.2" y="1077" width="1.6" height="15.0" fill="rgb(249,102,23)" rx="2" ry="2" />
<text x="654.24" y="1087.5" ></text>
</g>
<g >
<title>do_syscall_64 (26 samples, 0.06%)</title><rect x="854.3" y="1333" width="0.7" height="15.0" fill="rgb(250,170,47)" rx="2" ry="2" />
<text x="857.32" y="1343.5" ></text>
</g>
<g >
<title>handle_mm_fault (59 samples, 0.13%)</title><rect x="464.8" y="1141" width="1.6" height="15.0" fill="rgb(229,50,1)" rx="2" ry="2" />
<text x="467.82" y="1151.5" ></text>
</g>
<g >
<title>[asm] (19 samples, 0.04%)</title><rect x="10.0" y="1477" width="0.5" height="15.0" fill="rgb(247,26,36)" rx="2" ry="2" />
<text x="13.00" y="1487.5" ></text>
</g>
<g >
<title>__handle_mm_fault (6 samples, 0.01%)</title><rect x="851.7" y="1349" width="0.2" height="15.0" fill="rgb(224,224,51)" rx="2" ry="2" />
<text x="854.71" y="1359.5" ></text>
</g>
<g >
<title>[vet] (10 samples, 0.02%)</title><rect x="1187.9" y="245" width="0.3" height="15.0" fill="rgb(252,222,39)" rx="2" ry="2" />
<text x="1190.94" y="255.5" ></text>
</g>
<g >
<title>hrtimer_wakeup (4 samples, 0.01%)</title><rect x="530.2" y="1189" width="0.1" height="15.0" fill="rgb(207,50,45)" rx="2" ry="2" />
<text x="533.22" y="1199.5" ></text>
</g>
<g >
<title>new_slab (70 samples, 0.15%)</title><rect x="598.1" y="1045" width="1.8" height="15.0" fill="rgb(245,138,23)" rx="2" ry="2" />
<text x="601.12" y="1055.5" ></text>
</g>
<g >
<title>filemap_map_pages (5 samples, 0.01%)</title><rect x="62.6" y="1269" width="0.1" height="15.0" fill="rgb(216,87,20)" rx="2" ry="2" />
<text x="65.57" y="1279.5" ></text>
</g>
<g >
<title>bpf_seq_write (19 samples, 0.04%)</title><rect x="775.8" y="1125" width="0.5" height="15.0" fill="rgb(227,175,14)" rx="2" ry="2" />
<text x="778.79" y="1135.5" ></text>
</g>
<g >
<title>perf_ctx_disable (4 samples, 0.01%)</title><rect x="864.7" y="1253" width="0.1" height="15.0" fill="rgb(247,71,47)" rx="2" ry="2" />
<text x="867.72" y="1263.5" ></text>
</g>
<g >
<title>[vet] (35 samples, 0.08%)</title><rect x="1187.4" y="997" width="0.9" height="15.0" fill="rgb(226,145,19)" rx="2" ry="2" />
<text x="1190.39" y="1007.5" ></text>
</g>
<g >
<title>llist_add_batch (32 samples, 0.07%)</title><rect x="1030.8" y="1205" width="0.8" height="15.0" fill="rgb(213,189,54)" rx="2" ry="2" />
<text x="1033.77" y="1215.5" ></text>
</g>
<g >
<title>madvise_vma_behavior (7 samples, 0.02%)</title><rect x="459.7" y="1045" width="0.2" height="15.0" fill="rgb(215,151,41)" rx="2" ry="2" />
<text x="462.73" y="1055.5" ></text>
</g>
<g >
<title>idr_get_next (106 samples, 0.23%)</title><rect x="767.8" y="1141" width="2.8" height="15.0" fill="rgb(233,3,8)" rx="2" ry="2" />
<text x="770.80" y="1151.5" ></text>
</g>
<g >
<title>__alloc_pages (7 samples, 0.02%)</title><rect x="60.2" y="1205" width="0.2" height="15.0" fill="rgb(250,69,14)" rx="2" ry="2" />
<text x="63.17" y="1215.5" ></text>
</g>
<g >
<title>all (45,182 samples, 100%)</title><rect x="10.0" y="1541" width="1180.0" height="15.0" fill="rgb(253,199,20)" rx="2" ry="2" />
<text x="13.00" y="1551.5" ></text>
</g>
<g >
<title>__kmalloc_node (1,459 samples, 3.23%)</title><rect x="678.8" y="1141" width="38.1" height="15.0" fill="rgb(249,72,23)" rx="2" ry="2" />
<text x="681.77" y="1151.5" >__k..</text>
</g>
<g >
<title>rcu_do_batch (5 samples, 0.01%)</title><rect x="1178.5" y="1205" width="0.1" height="15.0" fill="rgb(216,213,43)" rx="2" ry="2" />
<text x="1181.51" y="1215.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (12 samples, 0.03%)</title><rect x="854.7" y="1317" width="0.3" height="15.0" fill="rgb(231,64,28)" rx="2" ry="2" />
<text x="857.69" y="1327.5" ></text>
</g>
<g >
<title>[mapgauge.test] (6,736 samples, 14.91%)</title><rect x="294.2" y="1237" width="175.9" height="15.0" fill="rgb(252,101,13)" rx="2" ry="2" />
<text x="297.17" y="1247.5" >[mapgauge.test]</text>
</g>
<g >
<title>[vet] (18 samples, 0.04%)</title><rect x="1187.7" y="629" width="0.5" height="15.0" fill="rgb(227,152,30)" rx="2" ry="2" />
<text x="1190.73" y="639.5" ></text>
</g>
<g >
<title>link (793 samples, 1.76%)</title><rect x="44.4" y="1525" width="20.7" height="15.0" fill="rgb(245,99,19)" rx="2" ry="2" />
<text x="47.42" y="1535.5" ></text>
</g>
<g >
<title>exit_mmap (103 samples, 0.23%)</title><rect x="890.8" y="1317" width="2.7" height="15.0" fill="rgb(224,110,34)" rx="2" ry="2" />
<text x="893.81" y="1327.5" ></text>
</g>
<g >
<title>copy_fpstate_to_sigframe (4 samples, 0.01%)</title><rect x="847.1" y="1221" width="0.1" height="15.0" fill="rgb(239,7,18)" rx="2" ry="2" />
<text x="850.12" y="1231.5" ></text>
</g>
<g >
<title>xas_start (57 samples, 0.13%)</title><rect x="655.6" y="1045" width="1.5" height="15.0" fill="rgb(214,153,25)" rx="2" ry="2" />
<text x="658.58" y="1055.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (4 samples, 0.01%)</title><rect x="468.1" y="997" width="0.1" height="15.0" fill="rgb(234,201,7)" rx="2" ry="2" />
<text x="471.14" y="1007.5" ></text>
</g>
<g >
<title>[[vdso]] (4 samples, 0.01%)</title><rect x="853.0" y="1429" width="0.1" height="15.0" fill="rgb(217,30,30)" rx="2" ry="2" />
<text x="855.97" y="1439.5" ></text>
</g>
<g >
<title>__do_softirq (5 samples, 0.01%)</title><rect x="1178.5" y="1253" width="0.1" height="15.0" fill="rgb(232,15,14)" rx="2" ry="2" />
<text x="1181.51" y="1263.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4 samples, 0.01%)</title><rect x="1164.5" y="1253" width="0.1" height="15.0" fill="rgb(234,207,40)" rx="2" ry="2" />
<text x="1167.54" y="1263.5" ></text>
</g>
<g >
<title>[vet] (168 samples, 0.37%)</title><rect x="1184.8" y="1317" width="4.4" height="15.0" fill="rgb(248,169,27)" rx="2" ry="2" />
<text x="1187.80" y="1327.5" ></text>
</g>
<g >
<title>exc_page_fault (35 samples, 0.08%)</title><rect x="849.9" y="1381" width="0.9" height="15.0" fill="rgb(234,58,36)" rx="2" ry="2" />
<text x="852.88" y="1391.5" ></text>
</g>
<g >
<title>handle_mm_fault (5 samples, 0.01%)</title><rect x="469.3" y="1173" width="0.1" height="15.0" fill="rgb(236,209,2)" rx="2" ry="2" />
<text x="472.26" y="1183.5" ></text>
</g>
<g >
<title>[asm] (11 samples, 0.02%)</title><rect x="10.1" y="1413" width="0.3" height="15.0" fill="rgb(251,176,48)" rx="2" ry="2" />
<text x="13.08" y="1423.5" ></text>
</g>
<g >
<title>unmap_single_vma (18 samples, 0.04%)</title><rect x="64.6" y="1349" width="0.5" height="15.0" fill="rgb(242,79,39)" rx="2" ry="2" />
<text x="67.64" y="1359.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.02%)</title><rect x="44.1" y="1509" width="0.3" height="15.0" fill="rgb(219,46,53)" rx="2" ry="2" />
<text x="47.13" y="1519.5" ></text>
</g>
<g >
<title>get_page_from_freelist (451 samples, 1.00%)</title><rect x="684.1" y="1029" width="11.8" height="15.0" fill="rgb(251,1,30)" rx="2" ry="2" />
<text x="687.15" y="1039.5" ></text>
</g>
<g >
<title>free_unref_page (5 samples, 0.01%)</title><rect x="1171.2" y="1173" width="0.1" height="15.0" fill="rgb(254,127,5)" rx="2" ry="2" />
<text x="1174.17" y="1183.5" ></text>
</g>
<g >
<title>array_map_free_timers (4 samples, 0.01%)</title><rect x="1059.9" y="1285" width="0.1" height="15.0" fill="rgb(214,18,27)" rx="2" ry="2" />
<text x="1062.91" y="1295.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.02%)</title><rect x="832.5" y="1317" width="0.3" height="15.0" fill="rgb(238,38,49)" rx="2" ry="2" />
<text x="835.52" y="1327.5" ></text>
</g>
<g >
<title>d_set_d_op (5 samples, 0.01%)</title><rect x="660.4" y="1125" width="0.2" height="15.0" fill="rgb(209,119,49)" rx="2" ry="2" />
<text x="663.43" y="1135.5" ></text>
</g>
<g >
<title>alloc_fdtable (16 samples, 0.04%)</title><rect x="675.3" y="1125" width="0.4" height="15.0" fill="rgb(205,228,18)" rx="2" ry="2" />
<text x="678.27" y="1135.5" ></text>
</g>
<g >
<title>rcu_do_batch (5 samples, 0.01%)</title><rect x="1150.6" y="1173" width="0.1" height="15.0" fill="rgb(229,141,28)" rx="2" ry="2" />
<text x="1153.59" y="1183.5" ></text>
</g>
<g >
<title>do_anonymous_page (80 samples, 0.18%)</title><rect x="833.5" y="1237" width="2.0" height="15.0" fill="rgb(225,25,42)" rx="2" ry="2" />
<text x="836.46" y="1247.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (7 samples, 0.02%)</title><rect x="851.7" y="1413" width="0.2" height="15.0" fill="rgb(236,54,40)" rx="2" ry="2" />
<text x="854.71" y="1423.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (14 samples, 0.03%)</title><rect x="639.2" y="1013" width="0.4" height="15.0" fill="rgb(237,173,5)" rx="2" ry="2" />
<text x="642.20" y="1023.5" ></text>
</g>
<g >
<title>discard_slab (14 samples, 0.03%)</title><rect x="1050.5" y="1061" width="0.4" height="15.0" fill="rgb(209,223,11)" rx="2" ry="2" />
<text x="1053.54" y="1071.5" ></text>
</g>
<g >
<title>handle_pte_fault (27 samples, 0.06%)</title><rect x="831.2" y="1221" width="0.7" height="15.0" fill="rgb(254,97,25)" rx="2" ry="2" />
<text x="834.24" y="1231.5" ></text>
</g>
<g >
<title>update_blocked_averages (5 samples, 0.01%)</title><rect x="871.7" y="1237" width="0.1" height="15.0" fill="rgb(227,28,46)" rx="2" ry="2" />
<text x="874.69" y="1247.5" ></text>
</g>
<g >
<title>rcu_core_si (37 samples, 0.08%)</title><rect x="1144.8" y="1157" width="1.0" height="15.0" fill="rgb(219,158,10)" rx="2" ry="2" />
<text x="1147.79" y="1167.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (13 samples, 0.03%)</title><rect x="1148.0" y="1285" width="0.3" height="15.0" fill="rgb(231,120,16)" rx="2" ry="2" />
<text x="1151.00" y="1295.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (17 samples, 0.04%)</title><rect x="1053.5" y="965" width="0.5" height="15.0" fill="rgb(227,193,48)" rx="2" ry="2" />
<text x="1056.54" y="975.5" ></text>
</g>
<g >
<title>do_user_addr_fault (4 samples, 0.01%)</title><rect x="33.8" y="1285" width="0.1" height="15.0" fill="rgb(212,171,38)" rx="2" ry="2" />
<text x="36.77" y="1295.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.01%)</title><rect x="1189.8" y="1477" width="0.2" height="15.0" fill="rgb(252,191,47)" rx="2" ry="2" />
<text x="1192.84" y="1487.5" ></text>
</g>
<g >
<title>error_entry (11 samples, 0.02%)</title><rect x="874.0" y="1429" width="0.3" height="15.0" fill="rgb(225,30,33)" rx="2" ry="2" />
<text x="876.99" y="1439.5" ></text>
</g>
<g >
<title>[vet] (22 samples, 0.05%)</title><rect x="1187.6" y="837" width="0.6" height="15.0" fill="rgb(207,217,42)" rx="2" ry="2" />
<text x="1190.65" y="847.5" ></text>
</g>
<g >
<title>tick_sched_handle (6 samples, 0.01%)</title><rect x="1044.6" y="1173" width="0.1" height="15.0" fill="rgb(236,70,38)" rx="2" ry="2" />
<text x="1047.58" y="1183.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (24 samples, 0.05%)</title><rect x="469.4" y="1221" width="0.6" height="15.0" fill="rgb(252,145,51)" rx="2" ry="2" />
<text x="472.42" y="1231.5" ></text>
</g>
<g >
<title>[vet] (159 samples, 0.35%)</title><rect x="1184.9" y="1301" width="4.1" height="15.0" fill="rgb(214,222,11)" rx="2" ry="2" />
<text x="1187.88" y="1311.5" ></text>
</g>
<g >
<title>__irqentry_text_end (4 samples, 0.01%)</title><rect x="831.1" y="1301" width="0.1" height="15.0" fill="rgb(237,110,16)" rx="2" ry="2" />
<text x="834.05" y="1311.5" ></text>
</g>
<g >
<title>do_syscall_64 (58 samples, 0.13%)</title><rect x="41.5" y="1397" width="1.5" height="15.0" fill="rgb(211,57,14)" rx="2" ry="2" />
<text x="44.47" y="1407.5" ></text>
</g>
<g >
<title>__alloc_pages (71 samples, 0.16%)</title><rect x="471.6" y="1093" width="1.9" height="15.0" fill="rgb(229,72,41)" rx="2" ry="2" />
<text x="474.61" y="1103.5" ></text>
</g>
<g >
<title>[asm] (8 samples, 0.02%)</title><rect x="10.1" y="1381" width="0.2" height="15.0" fill="rgb(222,224,41)" rx="2" ry="2" />
<text x="13.13" y="1391.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5 samples, 0.01%)</title><rect x="934.3" y="1301" width="0.1" height="15.0" fill="rgb(227,186,18)" rx="2" ry="2" />
<text x="937.29" y="1311.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (14 samples, 0.03%)</title><rect x="699.1" y="1109" width="0.4" height="15.0" fill="rgb(214,123,31)" rx="2" ry="2" />
<text x="702.11" y="1119.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.01%)</title><rect x="28.8" y="1221" width="0.1" height="15.0" fill="rgb(226,168,13)" rx="2" ry="2" />
<text x="31.80" y="1231.5" ></text>
</g>
<g >
<title>get_signal (11,754 samples, 26.01%)</title><rect x="875.6" y="1413" width="306.9" height="15.0" fill="rgb(209,27,42)" rx="2" ry="2" />
<text x="878.56" y="1423.5" >get_signal</text>
</g>
<g >
<title>__radix_tree_lookup (268 samples, 0.59%)</title><rect x="969.6" y="1253" width="7.0" height="15.0" fill="rgb(226,5,33)" rx="2" ry="2" />
<text x="972.60" y="1263.5" ></text>
</g>
<g >
<title>__x64_sys_futex (14 samples, 0.03%)</title><rect x="35.3" y="1317" width="0.3" height="15.0" fill="rgb(227,198,16)" rx="2" ry="2" />
<text x="38.28" y="1327.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4 samples, 0.01%)</title><rect x="704.2" y="1093" width="0.1" height="15.0" fill="rgb(226,156,12)" rx="2" ry="2" />
<text x="707.23" y="1103.5" ></text>
</g>
<g >
<title>zap_pte_range (6 samples, 0.01%)</title><rect x="11.8" y="1237" width="0.1" height="15.0" fill="rgb(238,166,30)" rx="2" ry="2" />
<text x="14.78" y="1247.5" ></text>
</g>
<g >
<title>alloc_pages (468 samples, 1.04%)</title><rect x="683.9" y="1061" width="12.3" height="15.0" fill="rgb(243,170,43)" rx="2" ry="2" />
<text x="686.94" y="1071.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (6 samples, 0.01%)</title><rect x="843.3" y="1269" width="0.1" height="15.0" fill="rgb(215,120,25)" rx="2" ry="2" />
<text x="846.28" y="1279.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (10 samples, 0.02%)</title><rect x="1123.4" y="1125" width="0.2" height="15.0" fill="rgb(248,176,52)" rx="2" ry="2" />
<text x="1126.35" y="1135.5" ></text>
</g>
<g >
<title>mntput (49 samples, 0.11%)</title><rect x="1177.4" y="1333" width="1.2" height="15.0" fill="rgb(220,163,0)" rx="2" ry="2" />
<text x="1180.36" y="1343.5" ></text>
</g>
<g >
<title>[unknown] (6 samples, 0.01%)</title><rect x="43.9" y="1477" width="0.2" height="15.0" fill="rgb(227,205,30)" rx="2" ry="2" />
<text x="46.90" y="1487.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (21 samples, 0.05%)</title><rect x="857.1" y="1413" width="0.6" height="15.0" fill="rgb(236,222,29)" rx="2" ry="2" />
<text x="860.14" y="1423.5" ></text>
</g>
<g >
<title>exc_page_fault (4 samples, 0.01%)</title><rect x="36.1" y="1445" width="0.1" height="15.0" fill="rgb(221,92,42)" rx="2" ry="2" />
<text x="39.09" y="1455.5" ></text>
</g>
<g >
<title>[unknown] (67 samples, 0.15%)</title><rect x="873.3" y="1477" width="1.8" height="15.0" fill="rgb(207,123,18)" rx="2" ry="2" />
<text x="876.34" y="1487.5" ></text>
</g>
<g >
<title>native_write_msr (122 samples, 0.27%)</title><rect x="1094.4" y="1189" width="3.2" height="15.0" fill="rgb(238,178,51)" rx="2" ry="2" />
<text x="1097.39" y="1199.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (17 samples, 0.04%)</title><rect x="1013.8" y="1125" width="0.5" height="15.0" fill="rgb(232,203,20)" rx="2" ry="2" />
<text x="1016.82" y="1135.5" ></text>
</g>
<g >
<title>file_free_rcu (8 samples, 0.02%)</title><rect x="1106.6" y="1125" width="0.2" height="15.0" fill="rgb(221,3,37)" rx="2" ry="2" />
<text x="1109.64" y="1135.5" ></text>
</g>
<g >
<title>rmqueue (4 samples, 0.01%)</title><rect x="34.7" y="1157" width="0.1" height="15.0" fill="rgb(236,177,12)" rx="2" ry="2" />
<text x="37.73" y="1167.5" ></text>
</g>
<g >
<title>put_prev_task_fair (5 samples, 0.01%)</title><rect x="864.5" y="1285" width="0.1" height="15.0" fill="rgb(244,70,30)" rx="2" ry="2" />
<text x="867.46" y="1295.5" ></text>
</g>
<g >
<title>ttwu_do_activate (4 samples, 0.01%)</title><rect x="530.2" y="1141" width="0.1" height="15.0" fill="rgb(228,117,32)" rx="2" ry="2" />
<text x="533.22" y="1151.5" ></text>
</g>
<g >
<title>vma_alloc_folio (61 samples, 0.14%)</title><rect x="834.0" y="1221" width="1.5" height="15.0" fill="rgb(206,108,40)" rx="2" ry="2" />
<text x="836.95" y="1231.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (69 samples, 0.15%)</title><rect x="768.6" y="1109" width="1.8" height="15.0" fill="rgb(239,142,26)" rx="2" ry="2" />
<text x="771.56" y="1119.5" ></text>
</g>
<g >
<title>exc_page_fault (94 samples, 0.21%)</title><rect x="461.8" y="1157" width="2.4" height="15.0" fill="rgb(244,201,50)" rx="2" ry="2" />
<text x="464.79" y="1167.5" ></text>
</g>
<g >
<title>do_filp_open (5 samples, 0.01%)</title><rect x="30.1" y="1205" width="0.2" height="15.0" fill="rgb(205,145,14)" rx="2" ry="2" />
<text x="33.14" y="1215.5" ></text>
</g>
<g >
<title>shuffle_freelist (37 samples, 0.08%)</title><rect x="599.0" y="1013" width="0.9" height="15.0" fill="rgb(240,12,10)" rx="2" ry="2" />
<text x="601.98" y="1023.5" ></text>
</g>
<g >
<title>memcpy_orig (12 samples, 0.03%)</title><rect x="775.8" y="1109" width="0.3" height="15.0" fill="rgb(217,148,8)" rx="2" ry="2" />
<text x="778.82" y="1119.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (74 samples, 0.16%)</title><rect x="930.9" y="1317" width="1.9" height="15.0" fill="rgb(249,157,30)" rx="2" ry="2" />
<text x="933.90" y="1327.5" ></text>
</g>
<g >
<title>iput (8 samples, 0.02%)</title><rect x="33.4" y="1221" width="0.2" height="15.0" fill="rgb(212,222,54)" rx="2" ry="2" />
<text x="36.43" y="1231.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (5 samples, 0.01%)</title><rect x="1066.0" y="1157" width="0.1" height="15.0" fill="rgb(231,56,49)" rx="2" ry="2" />
<text x="1068.97" y="1167.5" ></text>
</g>
<g >
<title>vfs_read (1,010 samples, 2.24%)</title><rect x="751.1" y="1205" width="26.4" height="15.0" fill="rgb(248,26,4)" rx="2" ry="2" />
<text x="754.11" y="1215.5" >v..</text>
</g>
<g >
<title>[vet] (7 samples, 0.02%)</title><rect x="1188.0" y="181" width="0.2" height="15.0" fill="rgb(250,29,2)" rx="2" ry="2" />
<text x="1191.02" y="191.5" ></text>
</g>
<g >
<title>__x64_sys_futex (14 samples, 0.03%)</title><rect x="854.3" y="1317" width="0.4" height="15.0" fill="rgb(227,33,37)" rx="2" ry="2" />
<text x="857.32" y="1327.5" ></text>
</g>
<g >
<title>update_rq_clock (75 samples, 0.17%)</title><rect x="1036.4" y="1221" width="1.9" height="15.0" fill="rgb(250,12,9)" rx="2" ry="2" />
<text x="1039.38" y="1231.5" ></text>
</g>
<g >
<title>__do_sys_newfstatat (9 samples, 0.02%)</title><rect x="31.3" y="1237" width="0.2" height="15.0" fill="rgb(243,185,36)" rx="2" ry="2" />
<text x="34.29" y="1247.5" ></text>
</g>
<g >
<title>anon_inode_getfd (3,769 samples, 8.34%)</title><rect x="577.7" y="1189" width="98.4" height="15.0" fill="rgb(250,65,50)" rx="2" ry="2" />
<text x="580.67" y="1199.5" >anon_inode_..</text>
</g>
<g >
<title>irq_exit_rcu (72 samples, 0.16%)</title><rect x="930.9" y="1285" width="1.9" height="15.0" fill="rgb(247,59,36)" rx="2" ry="2" />
<text x="933.95" y="1295.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (13 samples, 0.03%)</title><rect x="869.7" y="1317" width="0.3" height="15.0" fill="rgb(232,212,14)" rx="2" ry="2" />
<text x="872.71" y="1327.5" ></text>
</g>
<g >
<title>mntget (34 samples, 0.08%)</title><rect x="665.2" y="1141" width="0.8" height="15.0" fill="rgb(240,226,11)" rx="2" ry="2" />
<text x="668.16" y="1151.5" ></text>
</g>
<g >
<title>rcu_core_si (35 samples, 0.08%)</title><rect x="1122.7" y="1173" width="0.9" height="15.0" fill="rgb(246,51,8)" rx="2" ry="2" />
<text x="1125.70" y="1183.5" ></text>
</g>
<g >
<title>mapgauge.test (42,788 samples, 94.70%)</title><rect x="65.1" y="1525" width="1117.5" height="15.0" fill="rgb(250,143,45)" rx="2" ry="2" />
<text x="68.13" y="1535.5" >mapgauge.test</text>
</g>
<g >
<title>kmem_cache_alloc (855 samples, 1.89%)</title><rect x="600.7" y="1109" width="22.3" height="15.0" fill="rgb(243,37,45)" rx="2" ry="2" />
<text x="603.65" y="1119.5" >k..</text>
</g>
<g >
<title>path_lookupat (17 samples, 0.04%)</title><rect x="26.8" y="1061" width="0.5" height="15.0" fill="rgb(235,17,39)" rx="2" ry="2" />
<text x="29.82" y="1071.5" ></text>
</g>
<g >
<title>_compound_head (5 samples, 0.01%)</title><rect x="64.7" y="1301" width="0.1" height="15.0" fill="rgb(245,117,13)" rx="2" ry="2" />
<text x="67.66" y="1311.5" ></text>
</g>
<g >
<title>[go] (5 samples, 0.01%)</title><rect x="43.9" y="1413" width="0.1" height="15.0" fill="rgb(224,42,29)" rx="2" ry="2" />
<text x="46.90" y="1423.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (12 samples, 0.03%)</title><rect x="964.9" y="1141" width="0.3" height="15.0" fill="rgb(249,132,13)" rx="2" ry="2" />
<text x="967.90" y="1151.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (4 samples, 0.01%)</title><rect x="855.7" y="1237" width="0.1" height="15.0" fill="rgb(210,146,26)" rx="2" ry="2" />
<text x="858.66" y="1247.5" ></text>
</g>
<g >
<title>check_kill_permission (6 samples, 0.01%)</title><rect x="855.3" y="1301" width="0.2" height="15.0" fill="rgb(239,58,18)" rx="2" ry="2" />
<text x="858.34" y="1311.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (35 samples, 0.08%)</title><rect x="1122.7" y="1205" width="0.9" height="15.0" fill="rgb(216,93,1)" rx="2" ry="2" />
<text x="1125.70" y="1215.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (18 samples, 0.04%)</title><rect x="35.2" y="1349" width="0.5" height="15.0" fill="rgb(242,154,17)" rx="2" ry="2" />
<text x="38.23" y="1359.5" ></text>
</g>
<g >
<title>exc_page_fault (4 samples, 0.01%)</title><rect x="474.7" y="1237" width="0.1" height="15.0" fill="rgb(227,76,10)" rx="2" ry="2" />
<text x="477.72" y="1247.5" ></text>
</g>
<g >
<title>handle_pte_fault (29 samples, 0.06%)</title><rect x="836.8" y="1269" width="0.7" height="15.0" fill="rgb(226,28,31)" rx="2" ry="2" />
<text x="839.77" y="1279.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6 samples, 0.01%)</title><rect x="60.7" y="1253" width="0.1" height="15.0" fill="rgb(238,44,39)" rx="2" ry="2" />
<text x="63.69" y="1263.5" ></text>
</g>
<g >
<title>unmap_page_range (101 samples, 0.22%)</title><rect x="890.9" y="1269" width="2.6" height="15.0" fill="rgb(244,7,30)" rx="2" ry="2" />
<text x="893.86" y="1279.5" ></text>
</g>
<g >
<title>alloc_fd (86 samples, 0.19%)</title><rect x="673.8" y="1157" width="2.2" height="15.0" fill="rgb(245,21,33)" rx="2" ry="2" />
<text x="676.75" y="1167.5" ></text>
</g>
<g >
<title>native_write_msr (8 samples, 0.02%)</title><rect x="863.4" y="1221" width="0.2" height="15.0" fill="rgb(216,79,31)" rx="2" ry="2" />
<text x="866.41" y="1231.5" ></text>
</g>
<g >
<title>[unknown] (867 samples, 1.92%)</title><rect x="852.4" y="1509" width="22.7" height="15.0" fill="rgb(227,194,50)" rx="2" ry="2" />
<text x="855.44" y="1519.5" >[..</text>
</g>
<g >
<title>clear_page_erms (5 samples, 0.01%)</title><rect x="850.1" y="1221" width="0.1" height="15.0" fill="rgb(230,172,10)" rx="2" ry="2" />
<text x="853.12" y="1231.5" ></text>
</g>
<g >
<title>[mapgauge.test] (23,620 samples, 52.28%)</title><rect x="219.8" y="1349" width="616.9" height="15.0" fill="rgb(217,93,14)" rx="2" ry="2" />
<text x="222.82" y="1359.5" >[mapgauge.test]</text>
</g>
<g >
<title>perf_event_context_sched_out (4 samples, 0.01%)</title><rect x="875.5" y="1365" width="0.1" height="15.0" fill="rgb(218,224,41)" rx="2" ry="2" />
<text x="878.45" y="1375.5" ></text>
</g>
<g >
<title>__schedule (7 samples, 0.02%)</title><rect x="832.6" y="1205" width="0.2" height="15.0" fill="rgb(223,135,4)" rx="2" ry="2" />
<text x="835.57" y="1215.5" ></text>
</g>
<g >
<title>__alloc_pages (4 samples, 0.01%)</title><rect x="460.2" y="997" width="0.1" height="15.0" fill="rgb(237,137,8)" rx="2" ry="2" />
<text x="463.17" y="1007.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (84 samples, 0.19%)</title><rect x="1171.3" y="1269" width="2.2" height="15.0" fill="rgb(224,157,20)" rx="2" ry="2" />
<text x="1174.33" y="1279.5" ></text>
</g>
<g >
<title>filename_lookup (5 samples, 0.01%)</title><rect x="31.3" y="1189" width="0.2" height="15.0" fill="rgb(230,98,11)" rx="2" ry="2" />
<text x="34.34" y="1199.5" ></text>
</g>
<g >
<title>[go] (786 samples, 1.74%)</title><rect x="15.3" y="1397" width="20.5" height="15.0" fill="rgb(224,62,47)" rx="2" ry="2" />
<text x="18.30" y="1407.5" ></text>
</g>
<g >
<title>kmem_cache_free (6 samples, 0.01%)</title><rect x="1148.1" y="1141" width="0.1" height="15.0" fill="rgb(209,144,29)" rx="2" ry="2" />
<text x="1151.06" y="1151.5" ></text>
</g>
<g >
<title>psi_group_change (7 samples, 0.02%)</title><rect x="872.2" y="1269" width="0.2" height="15.0" fill="rgb(206,45,13)" rx="2" ry="2" />
<text x="875.24" y="1279.5" ></text>
</g>
<g >
<title>handle_pte_fault (4 samples, 0.01%)</title><rect x="33.8" y="1237" width="0.1" height="15.0" fill="rgb(210,57,47)" rx="2" ry="2" />
<text x="36.77" y="1247.5" ></text>
</g>
<g >
<title>rcu_core (4 samples, 0.01%)</title><rect x="1105.6" y="1173" width="0.1" height="15.0" fill="rgb(239,3,39)" rx="2" ry="2" />
<text x="1108.57" y="1183.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (10 samples, 0.02%)</title><rect x="1181.1" y="1301" width="0.3" height="15.0" fill="rgb(242,166,13)" rx="2" ry="2" />
<text x="1184.12" y="1311.5" ></text>
</g>
<g >
<title>[compile] (6 samples, 0.01%)</title><rect x="11.0" y="1317" width="0.2" height="15.0" fill="rgb(238,14,29)" rx="2" ry="2" />
<text x="14.02" y="1327.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (4 samples, 0.01%)</title><rect x="684.5" y="1013" width="0.1" height="15.0" fill="rgb(226,79,45)" rx="2" ry="2" />
<text x="687.49" y="1023.5" ></text>
</g>
<g >
<title>get_any_partial (12 samples, 0.03%)</title><rect x="633.9" y="1077" width="0.3" height="15.0" fill="rgb(212,196,46)" rx="2" ry="2" />
<text x="636.93" y="1087.5" ></text>
</g>
<g >
<title>__kmalloc_node (41 samples, 0.09%)</title><rect x="696.2" y="1045" width="1.1" height="15.0" fill="rgb(244,46,52)" rx="2" ry="2" />
<text x="699.21" y="1055.5" ></text>
</g>
<g >
<title>cpuacct_charge (10 samples, 0.02%)</title><rect x="1084.5" y="1221" width="0.3" height="15.0" fill="rgb(210,69,17)" rx="2" ry="2" />
<text x="1087.52" y="1231.5" ></text>
</g>
<g >
<title>rcu_segcblist_enqueue (91 samples, 0.20%)</title><rect x="1066.1" y="1285" width="2.4" height="15.0" fill="rgb(219,227,22)" rx="2" ry="2" />
<text x="1069.10" y="1295.5" ></text>
</g>
<g >
<title>__folio_alloc (18 samples, 0.04%)</title><rect x="462.3" y="1045" width="0.5" height="15.0" fill="rgb(229,63,39)" rx="2" ry="2" />
<text x="465.29" y="1055.5" ></text>
</g>
<g >
<title>fput (26 samples, 0.06%)</title><rect x="886.5" y="1317" width="0.7" height="15.0" fill="rgb(229,101,26)" rx="2" ry="2" />
<text x="889.50" y="1327.5" ></text>
</g>
<g >
<title>idr_alloc_u32 (304 samples, 0.67%)</title><rect x="737.3" y="1173" width="8.0" height="15.0" fill="rgb(249,53,4)" rx="2" ry="2" />
<text x="740.32" y="1183.5" ></text>
</g>
<g >
<title>[vet] (4 samples, 0.01%)</title><rect x="1188.1" y="69" width="0.1" height="15.0" fill="rgb(243,174,20)" rx="2" ry="2" />
<text x="1191.09" y="79.5" ></text>
</g>
<g >
<title>handle_mm_fault (6 samples, 0.01%)</title><rect x="851.7" y="1365" width="0.2" height="15.0" fill="rgb(210,69,37)" rx="2" ry="2" />
<text x="854.71" y="1375.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (21 samples, 0.05%)</title><rect x="940.4" y="1253" width="0.5" height="15.0" fill="rgb(217,205,24)" rx="2" ry="2" />
<text x="943.35" y="1263.5" ></text>
</g>
<g >
<title>[mapgauge.test] (30,143 samples, 66.71%)</title><rect x="65.2" y="1493" width="787.2" height="15.0" fill="rgb(210,77,22)" rx="2" ry="2" />
<text x="68.16" y="1503.5" >[mapgauge.test]</text>
</g>
<g >
<title>file_free_rcu (5 samples, 0.01%)</title><rect x="1178.5" y="1189" width="0.1" height="15.0" fill="rgb(208,118,9)" rx="2" ry="2" />
<text x="1181.51" y="1199.5" ></text>
</g>
<g >
<title>__handle_mm_fault (171 samples, 0.38%)</title><rect x="841.9" y="1317" width="4.5" height="15.0" fill="rgb(225,133,0)" rx="2" ry="2" />
<text x="844.94" y="1327.5" ></text>
</g>
<g >
<title>kmem_cache_free (7 samples, 0.02%)</title><rect x="1181.1" y="1173" width="0.2" height="15.0" fill="rgb(254,130,33)" rx="2" ry="2" />
<text x="1184.15" y="1183.5" ></text>
</g>
<g >
<title>psi_task_change (104 samples, 0.23%)</title><rect x="1011.6" y="1189" width="2.7" height="15.0" fill="rgb(212,150,39)" rx="2" ry="2" />
<text x="1014.60" y="1199.5" ></text>
</g>
<g >
<title>[mapgauge.test] (18 samples, 0.04%)</title><rect x="868.6" y="1381" width="0.5" height="15.0" fill="rgb(223,134,15)" rx="2" ry="2" />
<text x="871.64" y="1391.5" ></text>
</g>
<g >
<title>futex_wait (5 samples, 0.01%)</title><rect x="836.4" y="1269" width="0.1" height="15.0" fill="rgb(212,197,2)" rx="2" ry="2" />
<text x="839.41" y="1279.5" ></text>
</g>
<g >
<title>radix_tree_node_rcu_free (5 samples, 0.01%)</title><rect x="1123.2" y="1125" width="0.2" height="15.0" fill="rgb(207,182,19)" rx="2" ry="2" />
<text x="1126.22" y="1135.5" ></text>
</g>
<g >
<title>rcu_core_si (5 samples, 0.01%)</title><rect x="1149.2" y="1205" width="0.1" height="15.0" fill="rgb(236,57,52)" rx="2" ry="2" />
<text x="1152.21" y="1215.5" ></text>
</g>
<g >
<title>vfs_mkdir (11 samples, 0.02%)</title><rect x="33.9" y="1253" width="0.3" height="15.0" fill="rgb(236,133,32)" rx="2" ry="2" />
<text x="36.90" y="1263.5" ></text>
</g>
<g >
<title>mod_memcg_state (12 samples, 0.03%)</title><rect x="1130.9" y="1189" width="0.3" height="15.0" fill="rgb(253,161,12)" rx="2" ry="2" />
<text x="1133.90" y="1199.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.01%)</title><rect x="32.6" y="1253" width="0.1" height="15.0" fill="rgb(230,4,23)" rx="2" ry="2" />
<text x="35.62" y="1263.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (11 samples, 0.02%)</title><rect x="468.0" y="1013" width="0.2" height="15.0" fill="rgb(206,48,30)" rx="2" ry="2" />
<text x="470.95" y="1023.5" ></text>
</g>
<g >
<title>rcu_core_si (4 samples, 0.01%)</title><rect x="920.7" y="1221" width="0.1" height="15.0" fill="rgb(249,109,27)" rx="2" ry="2" />
<text x="923.74" y="1231.5" ></text>
</g>
<g >
<title>rcu_do_batch (12 samples, 0.03%)</title><rect x="1148.0" y="1173" width="0.3" height="15.0" fill="rgb(219,43,13)" rx="2" ry="2" />
<text x="1151.03" y="1183.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (86 samples, 0.19%)</title><rect x="1120.5" y="1237" width="2.2" height="15.0" fill="rgb(222,195,12)" rx="2" ry="2" />
<text x="1123.45" y="1247.5" ></text>
</g>
<g >
<title>exc_page_fault (32 samples, 0.07%)</title><rect x="836.8" y="1333" width="0.8" height="15.0" fill="rgb(215,110,25)" rx="2" ry="2" />
<text x="839.77" y="1343.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (4 samples, 0.01%)</title><rect x="567.6" y="1205" width="0.1" height="15.0" fill="rgb(208,61,10)" rx="2" ry="2" />
<text x="570.56" y="1215.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4 samples, 0.01%)</title><rect x="612.4" y="1029" width="0.1" height="15.0" fill="rgb(218,176,49)" rx="2" ry="2" />
<text x="615.35" y="1039.5" ></text>
</g>
<g >
<title>do_anonymous_page (26 samples, 0.06%)</title><rect x="836.8" y="1253" width="0.7" height="15.0" fill="rgb(247,16,21)" rx="2" ry="2" />
<text x="839.80" y="1263.5" ></text>
</g>
<g >
<title>handle_mm_fault (12 samples, 0.03%)</title><rect x="62.4" y="1349" width="0.3" height="15.0" fill="rgb(236,172,53)" rx="2" ry="2" />
<text x="65.39" y="1359.5" ></text>
</g>
<g >
<title>__handle_mm_fault (14 samples, 0.03%)</title><rect x="63.7" y="1365" width="0.3" height="15.0" fill="rgb(208,118,51)" rx="2" ry="2" />
<text x="66.67" y="1375.5" ></text>
</g>
<g >
<title>do_user_addr_fault (6 samples, 0.01%)</title><rect x="851.7" y="1381" width="0.2" height="15.0" fill="rgb(237,150,43)" rx="2" ry="2" />
<text x="854.71" y="1391.5" ></text>
</g>
<g >
<title>chacha_permute (4 samples, 0.01%)</title><rect x="614.2" y="933" width="0.1" height="15.0" fill="rgb(207,228,34)" rx="2" ry="2" />
<text x="617.16" y="943.5" ></text>
</g>
<g >
<title>_atomic_dec_and_lock (5 samples, 0.01%)</title><rect x="1135.5" y="1269" width="0.2" height="15.0" fill="rgb(249,102,28)" rx="2" ry="2" />
<text x="1138.52" y="1279.5" ></text>
</g>
<g >
<title>__handle_mm_fault (23 samples, 0.05%)</title><rect x="60.6" y="1301" width="0.6" height="15.0" fill="rgb(208,100,17)" rx="2" ry="2" />
<text x="63.64" y="1311.5" ></text>
</g>
<g >
<title>rcu_do_batch (14 samples, 0.03%)</title><rect x="1106.6" y="1141" width="0.4" height="15.0" fill="rgb(215,216,51)" rx="2" ry="2" />
<text x="1109.64" y="1151.5" ></text>
</g>
<g >
<title>[vet] (14 samples, 0.03%)</title><rect x="1187.8" y="421" width="0.4" height="15.0" fill="rgb(251,97,31)" rx="2" ry="2" />
<text x="1190.83" y="431.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (5 samples, 0.01%)</title><rect x="1189.8" y="1445" width="0.2" height="15.0" fill="rgb(243,111,29)" rx="2" ry="2" />
<text x="1192.84" y="1455.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (5 samples, 0.01%)</title><rect x="10.6" y="1509" width="0.2" height="15.0" fill="rgb(234,107,42)" rx="2" ry="2" />
<text x="13.63" y="1519.5" ></text>
</g>
<g >
<title>__check_object_size (4 samples, 0.01%)</title><rect x="477.8" y="1157" width="0.1" height="15.0" fill="rgb(206,160,32)" rx="2" ry="2" />
<text x="480.80" y="1167.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5 samples, 0.01%)</title><rect x="617.4" y="1077" width="0.1" height="15.0" fill="rgb(243,178,13)" rx="2" ry="2" />
<text x="620.39" y="1087.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8 samples, 0.02%)</title><rect x="1145.8" y="1237" width="0.2" height="15.0" fill="rgb(249,76,29)" rx="2" ry="2" />
<text x="1148.76" y="1247.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (11 samples, 0.02%)</title><rect x="1118.4" y="1141" width="0.3" height="15.0" fill="rgb(248,28,21)" rx="2" ry="2" />
<text x="1121.39" y="1151.5" ></text>
</g>
<g >
<title>rcu_core (4 samples, 0.01%)</title><rect x="1176.6" y="1221" width="0.1" height="15.0" fill="rgb(229,156,24)" rx="2" ry="2" />
<text x="1179.60" y="1231.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6 samples, 0.01%)</title><rect x="459.6" y="1125" width="0.1" height="15.0" fill="rgb(245,75,35)" rx="2" ry="2" />
<text x="462.57" y="1135.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4 samples, 0.01%)</title><rect x="474.7" y="1253" width="0.1" height="15.0" fill="rgb(232,6,35)" rx="2" ry="2" />
<text x="477.72" y="1263.5" ></text>
</g>
<g >
<title>error_entry (6 samples, 0.01%)</title><rect x="466.6" y="1189" width="0.2" height="15.0" fill="rgb(217,43,17)" rx="2" ry="2" />
<text x="469.65" y="1199.5" ></text>
</g>
<g >
<title>tick_program_event (5 samples, 0.01%)</title><rect x="869.9" y="1285" width="0.1" height="15.0" fill="rgb(232,26,42)" rx="2" ry="2" />
<text x="872.89" y="1295.5" ></text>
</g>
<g >
<title>[link] (670 samples, 1.48%)</title><rect x="46.1" y="1429" width="17.5" height="15.0" fill="rgb(214,27,43)" rx="2" ry="2" />
<text x="49.09" y="1439.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4 samples, 0.01%)</title><rect x="930.8" y="1173" width="0.1" height="15.0" fill="rgb(216,76,8)" rx="2" ry="2" />
<text x="933.79" y="1183.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (12 samples, 0.03%)</title><rect x="35.3" y="1157" width="0.3" height="15.0" fill="rgb(222,94,18)" rx="2" ry="2" />
<text x="38.33" y="1167.5" ></text>
</g>
<g >
<title>[vet] (22 samples, 0.05%)</title><rect x="1187.6" y="821" width="0.6" height="15.0" fill="rgb(230,26,20)" rx="2" ry="2" />
<text x="1190.65" y="831.5" ></text>
</g>
<g >
<title>__d_alloc (4 samples, 0.01%)</title><rect x="580.7" y="1141" width="0.1" height="15.0" fill="rgb(253,71,8)" rx="2" ry="2" />
<text x="583.70" y="1151.5" ></text>
</g>
<g >
<title>__slab_free (6 samples, 0.01%)</title><rect x="1182.0" y="1189" width="0.1" height="15.0" fill="rgb(222,14,7)" rx="2" ry="2" />
<text x="1184.98" y="1199.5" ></text>
</g>
<g >
<title>rmqueue (14 samples, 0.03%)</title><rect x="473.1" y="1061" width="0.4" height="15.0" fill="rgb(237,49,16)" rx="2" ry="2" />
<text x="476.10" y="1071.5" ></text>
</g>
<g >
<title>init_file (42 samples, 0.09%)</title><rect x="625.5" y="1125" width="1.1" height="15.0" fill="rgb(252,125,3)" rx="2" ry="2" />
<text x="628.46" y="1135.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (6 samples, 0.01%)</title><rect x="626.6" y="1125" width="0.1" height="15.0" fill="rgb(237,108,15)" rx="2" ry="2" />
<text x="629.56" y="1135.5" ></text>
</g>
<g >
<title>ctx_resched (11 samples, 0.02%)</title><rect x="1182.6" y="1301" width="0.3" height="15.0" fill="rgb(235,140,23)" rx="2" ry="2" />
<text x="1185.64" y="1311.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (4 samples, 0.01%)</title><rect x="955.1" y="1141" width="0.1" height="15.0" fill="rgb(233,97,1)" rx="2" ry="2" />
<text x="958.11" y="1151.5" ></text>
</g>
<g >
<title>rcu_do_batch (10 samples, 0.02%)</title><rect x="1118.4" y="1077" width="0.3" height="15.0" fill="rgb(218,100,42)" rx="2" ry="2" />
<text x="1121.41" y="1087.5" ></text>
</g>
<g >
<title>exc_page_fault (7 samples, 0.02%)</title><rect x="469.2" y="1205" width="0.2" height="15.0" fill="rgb(215,227,18)" rx="2" ry="2" />
<text x="472.23" y="1215.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="28.2" y="1205" width="0.2" height="15.0" fill="rgb(249,225,46)" rx="2" ry="2" />
<text x="31.23" y="1215.5" ></text>
</g>
<g >
<title>rcu_do_batch (5 samples, 0.01%)</title><rect x="1061.2" y="1173" width="0.2" height="15.0" fill="rgb(231,69,12)" rx="2" ry="2" />
<text x="1064.25" y="1183.5" ></text>
</g>
<g >
<title>wake_up_process (12 samples, 0.03%)</title><rect x="1058.5" y="1269" width="0.3" height="15.0" fill="rgb(221,134,7)" rx="2" ry="2" />
<text x="1061.48" y="1279.5" ></text>
</g>
<g >
<title>migrate_enable (6 samples, 0.01%)</title><rect x="527.9" y="1141" width="0.2" height="15.0" fill="rgb(231,138,29)" rx="2" ry="2" />
<text x="530.92" y="1151.5" ></text>
</g>
<g >
<title>vma_alloc_folio (18 samples, 0.04%)</title><rect x="463.1" y="1045" width="0.5" height="15.0" fill="rgb(240,71,50)" rx="2" ry="2" />
<text x="466.12" y="1055.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (7 samples, 0.02%)</title><rect x="27.6" y="1141" width="0.1" height="15.0" fill="rgb(245,160,9)" rx="2" ry="2" />
<text x="30.55" y="1151.5" ></text>
</g>
<g >
<title>do_sys_openat2 (22 samples, 0.05%)</title><rect x="31.5" y="1237" width="0.6" height="15.0" fill="rgb(217,112,1)" rx="2" ry="2" />
<text x="34.55" y="1247.5" ></text>
</g>
<g >
<title>bpf_map_put (73 samples, 0.16%)</title><rect x="478.5" y="1157" width="1.9" height="15.0" fill="rgb(221,199,25)" rx="2" ry="2" />
<text x="481.51" y="1167.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (112 samples, 0.25%)</title><rect x="833.2" y="1333" width="2.9" height="15.0" fill="rgb(253,143,29)" rx="2" ry="2" />
<text x="836.20" y="1343.5" ></text>
</g>
<g >
<title>irq_exit_rcu (9 samples, 0.02%)</title><rect x="930.7" y="1269" width="0.2" height="15.0" fill="rgb(236,153,37)" rx="2" ry="2" />
<text x="933.66" y="1279.5" ></text>
</g>
<g >
<title>_raw_spin_lock (89 samples, 0.20%)</title><rect x="1041.9" y="1269" width="2.3" height="15.0" fill="rgb(222,173,34)" rx="2" ry="2" />
<text x="1044.92" y="1279.5" ></text>
</g>
<g >
<title>vfs_statx (4 samples, 0.01%)</title><rect x="25.7" y="1045" width="0.1" height="15.0" fill="rgb(243,194,15)" rx="2" ry="2" />
<text x="28.72" y="1055.5" ></text>
</g>
<g >
<title>rcu_do_batch (19 samples, 0.04%)</title><rect x="965.2" y="1173" width="0.5" height="15.0" fill="rgb(228,130,39)" rx="2" ry="2" />
<text x="968.24" y="1183.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4 samples, 0.01%)</title><rect x="1150.3" y="1253" width="0.1" height="15.0" fill="rgb(213,134,41)" rx="2" ry="2" />
<text x="1153.33" y="1263.5" ></text>
</g>
<g >
<title>rb_next (7 samples, 0.02%)</title><rect x="1090.3" y="1237" width="0.2" height="15.0" fill="rgb(227,41,38)" rx="2" ry="2" />
<text x="1093.29" y="1247.5" ></text>
</g>
<g >
<title>__folio_alloc (8 samples, 0.02%)</title><rect x="61.8" y="1253" width="0.2" height="15.0" fill="rgb(211,221,8)" rx="2" ry="2" />
<text x="64.82" y="1263.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (8 samples, 0.02%)</title><rect x="847.0" y="1317" width="0.2" height="15.0" fill="rgb(225,66,16)" rx="2" ry="2" />
<text x="850.04" y="1327.5" ></text>
</g>
<g >
<title>unmap_vmas (18 samples, 0.04%)</title><rect x="64.6" y="1365" width="0.5" height="15.0" fill="rgb(249,168,2)" rx="2" ry="2" />
<text x="67.64" y="1375.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (14 samples, 0.03%)</title><rect x="1106.6" y="1253" width="0.4" height="15.0" fill="rgb(205,195,6)" rx="2" ry="2" />
<text x="1109.64" y="1263.5" ></text>
</g>
<g >
<title>cpuacct_charge (16 samples, 0.04%)</title><rect x="1086.0" y="1205" width="0.4" height="15.0" fill="rgb(208,118,33)" rx="2" ry="2" />
<text x="1088.95" y="1215.5" ></text>
</g>
<g >
<title>amd_clear_divider (8 samples, 0.02%)</title><rect x="777.5" y="1237" width="0.2" height="15.0" fill="rgb(240,68,23)" rx="2" ry="2" />
<text x="780.49" y="1247.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (11 samples, 0.02%)</title><rect x="1182.2" y="1221" width="0.3" height="15.0" fill="rgb(227,123,17)" rx="2" ry="2" />
<text x="1185.22" y="1231.5" ></text>
</g>
<g >
<title>handle_pte_fault (55 samples, 0.12%)</title><rect x="464.9" y="1109" width="1.5" height="15.0" fill="rgb(235,185,21)" rx="2" ry="2" />
<text x="467.92" y="1119.5" ></text>
</g>
<g >
<title>[go] (4 samples, 0.01%)</title><rect x="25.2" y="949" width="0.1" height="15.0" fill="rgb(251,65,42)" rx="2" ry="2" />
<text x="28.23" y="959.5" ></text>
</g>
<g >
<title>search_binary_handler (13 samples, 0.03%)</title><rect x="1182.6" y="1381" width="0.3" height="15.0" fill="rgb(237,156,16)" rx="2" ry="2" />
<text x="1185.61" y="1391.5" ></text>
</g>
<g >
<title>[asm] (21 samples, 0.05%)</title><rect x="10.0" y="1509" width="0.5" height="15.0" fill="rgb(223,138,11)" rx="2" ry="2" />
<text x="13.00" y="1519.5" ></text>
</g>
<g >
<title>exc_page_fault (112 samples, 0.25%)</title><rect x="833.2" y="1317" width="2.9" height="15.0" fill="rgb(229,34,12)" rx="2" ry="2" />
<text x="836.20" y="1327.5" ></text>
</g>
<g >
<title>__cond_resched (25 samples, 0.06%)</title><rect x="877.5" y="1365" width="0.6" height="15.0" fill="rgb(212,181,4)" rx="2" ry="2" />
<text x="880.49" y="1375.5" ></text>
</g>
<g >
<title>__irqentry_text_end (7 samples, 0.02%)</title><rect x="464.4" y="1189" width="0.2" height="15.0" fill="rgb(238,202,1)" rx="2" ry="2" />
<text x="467.43" y="1199.5" ></text>
</g>
<g >
<title>[vet] (32 samples, 0.07%)</title><rect x="1187.5" y="981" width="0.8" height="15.0" fill="rgb(224,208,48)" rx="2" ry="2" />
<text x="1190.47" y="991.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (10 samples, 0.02%)</title><rect x="473.7" y="1189" width="0.2" height="15.0" fill="rgb(241,4,22)" rx="2" ry="2" />
<text x="476.67" y="1199.5" ></text>
</g>
<g >
<title>mmap_region (5 samples, 0.01%)</title><rect x="58.6" y="1189" width="0.1" height="15.0" fill="rgb(210,52,42)" rx="2" ry="2" />
<text x="61.60" y="1199.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (5 samples, 0.01%)</title><rect x="468.5" y="1157" width="0.1" height="15.0" fill="rgb(250,35,29)" rx="2" ry="2" />
<text x="471.50" y="1167.5" ></text>
</g>
<g >
<title>__free_pages (5 samples, 0.01%)</title><rect x="1050.5" y="1013" width="0.2" height="15.0" fill="rgb(213,6,42)" rx="2" ry="2" />
<text x="1053.54" y="1023.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.01%)</title><rect x="1189.8" y="1509" width="0.2" height="15.0" fill="rgb(239,104,14)" rx="2" ry="2" />
<text x="1192.84" y="1519.5" ></text>
</g>
<g >
<title>rcu_core (10 samples, 0.02%)</title><rect x="1181.1" y="1221" width="0.3" height="15.0" fill="rgb(238,28,23)" rx="2" ry="2" />
<text x="1184.12" y="1231.5" ></text>
</g>
<g >
<title>__refill_stock (4 samples, 0.01%)</title><rect x="1131.3" y="1189" width="0.1" height="15.0" fill="rgb(242,58,19)" rx="2" ry="2" />
<text x="1134.32" y="1199.5" ></text>
</g>
<g >
<title>__check_object_size (5 samples, 0.01%)</title><rect x="559.5" y="1221" width="0.1" height="15.0" fill="rgb(238,121,22)" rx="2" ry="2" />
<text x="562.52" y="1231.5" ></text>
</g>
<g >
<title>ext4_getblk (5 samples, 0.01%)</title><rect x="34.1" y="1173" width="0.1" height="15.0" fill="rgb(253,194,53)" rx="2" ry="2" />
<text x="37.05" y="1183.5" ></text>
</g>
<g >
<title>do_epoll_wait (8 samples, 0.02%)</title><rect x="856.8" y="1333" width="0.2" height="15.0" fill="rgb(209,211,31)" rx="2" ry="2" />
<text x="859.78" y="1343.5" ></text>
</g>
<g >
<title>vma_alloc_folio (12 samples, 0.03%)</title><rect x="466.0" y="1061" width="0.4" height="15.0" fill="rgb(228,216,50)" rx="2" ry="2" />
<text x="469.05" y="1071.5" ></text>
</g>
<g >
<title>capable (174 samples, 0.39%)</title><rect x="717.8" y="1173" width="4.6" height="15.0" fill="rgb(212,121,30)" rx="2" ry="2" />
<text x="720.81" y="1183.5" ></text>
</g>
<g >
<title>__alloc_pages (11 samples, 0.02%)</title><rect x="34.5" y="1189" width="0.3" height="15.0" fill="rgb(227,14,53)" rx="2" ry="2" />
<text x="37.55" y="1199.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (9 samples, 0.02%)</title><rect x="1105.7" y="1237" width="0.2" height="15.0" fill="rgb(221,171,49)" rx="2" ry="2" />
<text x="1108.70" y="1247.5" ></text>
</g>
<g >
<title>do_user_addr_fault (98 samples, 0.22%)</title><rect x="833.2" y="1301" width="2.6" height="15.0" fill="rgb(220,25,39)" rx="2" ry="2" />
<text x="836.25" y="1311.5" ></text>
</g>
<g >
<title>rcu_do_batch (49 samples, 0.11%)</title><rect x="954.3" y="1189" width="1.3" height="15.0" fill="rgb(251,121,13)" rx="2" ry="2" />
<text x="957.30" y="1199.5" ></text>
</g>
<g >
<title>exc_page_fault (30 samples, 0.07%)</title><rect x="460.5" y="1141" width="0.8" height="15.0" fill="rgb(213,222,48)" rx="2" ry="2" />
<text x="463.54" y="1151.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.01%)</title><rect x="25.7" y="1109" width="0.1" height="15.0" fill="rgb(253,152,36)" rx="2" ry="2" />
<text x="28.70" y="1119.5" ></text>
</g>
<g >
<title>__alloc_pages (17 samples, 0.04%)</title><rect x="831.4" y="1157" width="0.5" height="15.0" fill="rgb(247,38,50)" rx="2" ry="2" />
<text x="834.45" y="1167.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (11,754 samples, 26.01%)</title><rect x="875.6" y="1445" width="306.9" height="15.0" fill="rgb(248,50,17)" rx="2" ry="2" />
<text x="878.56" y="1455.5" >exit_to_user_mode_loop</text>
</g>
<g >
<title>native_write_msr (11 samples, 0.02%)</title><rect x="1182.6" y="1237" width="0.3" height="15.0" fill="rgb(214,123,4)" rx="2" ry="2" />
<text x="1185.64" y="1247.5" ></text>
</g>
<g >
<title>bpf_map_put (3,990 samples, 8.83%)</title><rect x="955.6" y="1301" width="104.2" height="15.0" fill="rgb(206,147,19)" rx="2" ry="2" />
<text x="958.58" y="1311.5" >bpf_map_put</text>
</g>
<g >
<title>do_mkdirat (12 samples, 0.03%)</title><rect x="33.9" y="1269" width="0.3" height="15.0" fill="rgb(207,199,20)" rx="2" ry="2" />
<text x="36.87" y="1279.5" ></text>
</g>
<g >
<title>mmput (5 samples, 0.01%)</title><rect x="10.6" y="1349" width="0.2" height="15.0" fill="rgb(219,224,17)" rx="2" ry="2" />
<text x="13.63" y="1359.5" ></text>
</g>
<g >
<title>mod_objcg_state (11 samples, 0.02%)</title><rect x="1132.1" y="1269" width="0.3" height="15.0" fill="rgb(209,79,48)" rx="2" ry="2" />
<text x="1135.10" y="1279.5" ></text>
</g>
<g >
<title>bpf_map_release (45 samples, 0.10%)</title><rect x="1175.1" y="1333" width="1.2" height="15.0" fill="rgb(213,112,36)" rx="2" ry="2" />
<text x="1178.11" y="1343.5" ></text>
</g>
<g >
<title>file_free_rcu (33 samples, 0.07%)</title><rect x="1080.1" y="1125" width="0.9" height="15.0" fill="rgb(246,165,16)" rx="2" ry="2" />
<text x="1083.10" y="1135.5" ></text>
</g>
<g >
<title>file_free_rcu (7 samples, 0.02%)</title><rect x="1148.0" y="1157" width="0.2" height="15.0" fill="rgb(212,51,46)" rx="2" ry="2" />
<text x="1151.03" y="1167.5" ></text>
</g>
<g >
<title>[mapgauge.test] (1,704 samples, 3.77%)</title><rect x="424.7" y="1221" width="44.5" height="15.0" fill="rgb(207,83,15)" rx="2" ry="2" />
<text x="427.68" y="1231.5" >[map..</text>
</g>
<g >
<title>[mapgauge.test] (50 samples, 0.11%)</title><rect x="458.3" y="1125" width="1.3" height="15.0" fill="rgb(224,157,17)" rx="2" ry="2" />
<text x="461.27" y="1135.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (11 samples, 0.02%)</title><rect x="990.3" y="1221" width="0.3" height="15.0" fill="rgb(248,229,37)" rx="2" ry="2" />
<text x="993.31" y="1231.5" ></text>
</g>
<g >
<title>post_alloc_hook (4 samples, 0.01%)</title><rect x="611.9" y="997" width="0.1" height="15.0" fill="rgb(252,123,54)" rx="2" ry="2" />
<text x="614.91" y="1007.5" ></text>
</g>
<g >
<title>irq_exit_rcu (14 samples, 0.03%)</title><rect x="1106.6" y="1221" width="0.4" height="15.0" fill="rgb(236,51,32)" rx="2" ry="2" />
<text x="1109.64" y="1231.5" ></text>
</g>
<g >
<title>rcu_do_batch (4 samples, 0.01%)</title><rect x="934.3" y="1189" width="0.1" height="15.0" fill="rgb(254,183,50)" rx="2" ry="2" />
<text x="937.32" y="1199.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (96 samples, 0.21%)</title><rect x="701.7" y="1093" width="2.5" height="15.0" fill="rgb(212,173,39)" rx="2" ry="2" />
<text x="704.72" y="1103.5" ></text>
</g>
<g >
<title>file_free_rcu (7 samples, 0.02%)</title><rect x="1148.5" y="1173" width="0.2" height="15.0" fill="rgb(237,222,23)" rx="2" ry="2" />
<text x="1151.50" y="1183.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (32 samples, 0.07%)</title><rect x="836.8" y="1349" width="0.8" height="15.0" fill="rgb(234,115,30)" rx="2" ry="2" />
<text x="839.77" y="1359.5" ></text>
</g>
<g >
<title>do_fault (5 samples, 0.01%)</title><rect x="63.1" y="1317" width="0.1" height="15.0" fill="rgb(219,104,50)" rx="2" ry="2" />
<text x="66.07" y="1327.5" ></text>
</g>
<g >
<title>do_group_exit (11 samples, 0.02%)</title><rect x="44.1" y="1397" width="0.3" height="15.0" fill="rgb(232,212,10)" rx="2" ry="2" />
<text x="47.13" y="1407.5" ></text>
</g>
<g >
<title>memset_orig (63 samples, 0.14%)</title><rect x="714.8" y="1125" width="1.6" height="15.0" fill="rgb(230,196,24)" rx="2" ry="2" />
<text x="717.78" y="1135.5" ></text>
</g>
<g >
<title>[vet] (43 samples, 0.10%)</title><rect x="1187.3" y="1045" width="1.1" height="15.0" fill="rgb(234,164,14)" rx="2" ry="2" />
<text x="1190.28" y="1055.5" ></text>
</g>
<g >
<title>irqentry_exit (12 samples, 0.03%)</title><rect x="474.0" y="1205" width="0.4" height="15.0" fill="rgb(226,229,31)" rx="2" ry="2" />
<text x="477.04" y="1215.5" ></text>
</g>
<g >
<title>__do_softirq (4 samples, 0.01%)</title><rect x="920.7" y="1237" width="0.1" height="15.0" fill="rgb(218,104,24)" rx="2" ry="2" />
<text x="923.74" y="1247.5" ></text>
</g>
<g >
<title>[mapgauge.test] (24,601 samples, 54.45%)</title><rect x="195.2" y="1365" width="642.5" height="15.0" fill="rgb(213,89,24)" rx="2" ry="2" />
<text x="198.25" y="1375.5" >[mapgauge.test]</text>
</g>
<g >
<title>get_page_from_freelist (97 samples, 0.21%)</title><rect x="843.7" y="1221" width="2.6" height="15.0" fill="rgb(214,97,19)" rx="2" ry="2" />
<text x="846.72" y="1231.5" ></text>
</g>
<g >
<title>irq_exit_rcu (15 samples, 0.03%)</title><rect x="921.5" y="1269" width="0.4" height="15.0" fill="rgb(206,112,5)" rx="2" ry="2" />
<text x="924.52" y="1279.5" ></text>
</g>
<g >
<title>rmqueue (10 samples, 0.02%)</title><rect x="835.3" y="1157" width="0.2" height="15.0" fill="rgb(227,78,7)" rx="2" ry="2" />
<text x="838.26" y="1167.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (4 samples, 0.01%)</title><rect x="477.8" y="1141" width="0.1" height="15.0" fill="rgb(228,117,11)" rx="2" ry="2" />
<text x="480.80" y="1151.5" ></text>
</g>
<g >
<title>psi_group_change (7 samples, 0.02%)</title><rect x="1097.7" y="1269" width="0.2" height="15.0" fill="rgb(205,50,15)" rx="2" ry="2" />
<text x="1100.73" y="1279.5" ></text>
</g>
<g >
<title>do_user_addr_fault (4 samples, 0.01%)</title><rect x="460.2" y="1109" width="0.1" height="15.0" fill="rgb(221,201,44)" rx="2" ry="2" />
<text x="463.17" y="1119.5" ></text>
</g>
<g >
<title>vfs_statx (27 samples, 0.06%)</title><rect x="26.7" y="1093" width="0.7" height="15.0" fill="rgb(241,77,5)" rx="2" ry="2" />
<text x="29.74" y="1103.5" ></text>
</g>
<g >
<title>[asm] (16 samples, 0.04%)</title><rect x="10.0" y="1461" width="0.4" height="15.0" fill="rgb(206,207,26)" rx="2" ry="2" />
<text x="13.03" y="1471.5" ></text>
</g>
<g >
<title>__mutex_init (5 samples, 0.01%)</title><rect x="585.3" y="1109" width="0.1" height="15.0" fill="rgb(238,33,40)" rx="2" ry="2" />
<text x="588.30" y="1119.5" ></text>
</g>
<g >
<title>expand_files (32 samples, 0.07%)</title><rect x="675.2" y="1141" width="0.8" height="15.0" fill="rgb(221,104,19)" rx="2" ry="2" />
<text x="678.16" y="1151.5" ></text>
</g>
<g >
<title>do_nanosleep (6 samples, 0.01%)</title><rect x="875.4" y="1445" width="0.2" height="15.0" fill="rgb(221,32,44)" rx="2" ry="2" />
<text x="878.40" y="1455.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4 samples, 0.01%)</title><rect x="1079.6" y="1253" width="0.1" height="15.0" fill="rgb(226,62,14)" rx="2" ry="2" />
<text x="1082.55" y="1263.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (6 samples, 0.01%)</title><rect x="58.6" y="1253" width="0.1" height="15.0" fill="rgb(249,49,38)" rx="2" ry="2" />
<text x="61.58" y="1263.5" ></text>
</g>
<g >
<title>__mod_memcg_state (10 samples, 0.02%)</title><rect x="711.8" y="1061" width="0.2" height="15.0" fill="rgb(232,69,13)" rx="2" ry="2" />
<text x="714.78" y="1071.5" ></text>
</g>
<g >
<title>array_map_alloc (1,775 samples, 3.93%)</title><rect x="676.1" y="1189" width="46.4" height="15.0" fill="rgb(221,143,31)" rx="2" ry="2" />
<text x="679.10" y="1199.5" >arra..</text>
</g>
<g >
<title>should_failslab (5 samples, 0.01%)</title><rect x="625.3" y="1109" width="0.2" height="15.0" fill="rgb(210,25,49)" rx="2" ry="2" />
<text x="628.33" y="1119.5" ></text>
</g>
<g >
<title>[asm] (6 samples, 0.01%)</title><rect x="10.1" y="1333" width="0.2" height="15.0" fill="rgb(217,146,32)" rx="2" ry="2" />
<text x="13.13" y="1343.5" ></text>
</g>
<g >
<title>[vet] (18 samples, 0.04%)</title><rect x="1187.7" y="709" width="0.5" height="15.0" fill="rgb(211,217,7)" rx="2" ry="2" />
<text x="1190.73" y="719.5" ></text>
</g>
<g >
<title>[mapgauge.test] (21 samples, 0.05%)</title><rect x="458.7" y="1093" width="0.6" height="15.0" fill="rgb(244,71,40)" rx="2" ry="2" />
<text x="461.71" y="1103.5" ></text>
</g>
<g >
<title>__cond_resched (4 samples, 0.01%)</title><rect x="679.6" y="1125" width="0.1" height="15.0" fill="rgb(248,218,15)" rx="2" ry="2" />
<text x="682.60" y="1135.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (9 samples, 0.02%)</title><rect x="1164.3" y="1269" width="0.2" height="15.0" fill="rgb(248,90,34)" rx="2" ry="2" />
<text x="1167.30" y="1279.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (9 samples, 0.02%)</title><rect x="1164.3" y="1285" width="0.2" height="15.0" fill="rgb(205,160,17)" rx="2" ry="2" />
<text x="1167.30" y="1295.5" ></text>
</g>
<g >
<title>idr_get_next (187 samples, 0.41%)</title><rect x="510.6" y="1125" width="4.9" height="15.0" fill="rgb(228,164,4)" rx="2" ry="2" />
<text x="513.63" y="1135.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (8 samples, 0.02%)</title><rect x="1173.9" y="1157" width="0.2" height="15.0" fill="rgb(228,150,44)" rx="2" ry="2" />
<text x="1176.94" y="1167.5" ></text>
</g>
<g >
<title>security_task_kill (6 samples, 0.01%)</title><rect x="855.3" y="1285" width="0.2" height="15.0" fill="rgb(251,19,25)" rx="2" ry="2" />
<text x="858.34" y="1295.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (10 samples, 0.02%)</title><rect x="955.3" y="1173" width="0.3" height="15.0" fill="rgb(254,65,37)" rx="2" ry="2" />
<text x="958.32" y="1183.5" ></text>
</g>
<g >
<title>tick_sched_timer (5 samples, 0.01%)</title><rect x="1079.9" y="1173" width="0.1" height="15.0" fill="rgb(238,107,14)" rx="2" ry="2" />
<text x="1082.87" y="1183.5" ></text>
</g>
<g >
<title>rcu_core (8 samples, 0.02%)</title><rect x="1145.8" y="1157" width="0.2" height="15.0" fill="rgb(211,128,30)" rx="2" ry="2" />
<text x="1148.76" y="1167.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (187 samples, 0.41%)</title><rect x="652.8" y="1077" width="4.9" height="15.0" fill="rgb(217,108,20)" rx="2" ry="2" />
<text x="655.78" y="1087.5" ></text>
</g>
<g >
<title>get_random_u32 (6 samples, 0.01%)</title><rect x="698.3" y="1029" width="0.1" height="15.0" fill="rgb(213,95,54)" rx="2" ry="2" />
<text x="701.25" y="1039.5" ></text>
</g>
<g >
<title>[mapgauge.test] (29 samples, 0.06%)</title><rect x="854.3" y="1365" width="0.8" height="15.0" fill="rgb(220,169,6)" rx="2" ry="2" />
<text x="857.30" y="1375.5" ></text>
</g>
<g >
<title>kmem_cache_free (4 samples, 0.01%)</title><rect x="1123.2" y="1109" width="0.2" height="15.0" fill="rgb(224,2,51)" rx="2" ry="2" />
<text x="1126.25" y="1119.5" ></text>
</g>
<g >
<title>pick_next_task (4 samples, 0.01%)</title><rect x="854.8" y="1237" width="0.2" height="15.0" fill="rgb(233,119,51)" rx="2" ry="2" />
<text x="857.85" y="1247.5" ></text>
</g>
<g >
<title>update_curr (11 samples, 0.02%)</title><rect x="1091.5" y="1237" width="0.3" height="15.0" fill="rgb(244,179,17)" rx="2" ry="2" />
<text x="1094.54" y="1247.5" ></text>
</g>
<g >
<title>rcu_core (51 samples, 0.11%)</title><rect x="963.9" y="1173" width="1.3" height="15.0" fill="rgb(223,63,53)" rx="2" ry="2" />
<text x="966.88" y="1183.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (5 samples, 0.01%)</title><rect x="1131.1" y="1157" width="0.1" height="15.0" fill="rgb(244,83,38)" rx="2" ry="2" />
<text x="1134.05" y="1167.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (54 samples, 0.12%)</title><rect x="855.1" y="1381" width="1.4" height="15.0" fill="rgb(240,127,1)" rx="2" ry="2" />
<text x="858.08" y="1391.5" ></text>
</g>
<g >
<title>do_send_specific (10 samples, 0.02%)</title><rect x="868.8" y="1301" width="0.3" height="15.0" fill="rgb(219,1,20)" rx="2" ry="2" />
<text x="871.82" y="1311.5" ></text>
</g>
<g >
<title>lru_add_fn (12 samples, 0.03%)</title><rect x="842.9" y="1221" width="0.3" height="15.0" fill="rgb(234,65,13)" rx="2" ry="2" />
<text x="845.91" y="1231.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (6 samples, 0.01%)</title><rect x="468.6" y="1173" width="0.2" height="15.0" fill="rgb(241,221,29)" rx="2" ry="2" />
<text x="471.63" y="1183.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (9 samples, 0.02%)</title><rect x="1148.5" y="1285" width="0.2" height="15.0" fill="rgb(209,141,54)" rx="2" ry="2" />
<text x="1151.47" y="1295.5" ></text>
</g>
<g >
<title>cache_from_obj (65 samples, 0.14%)</title><rect x="1123.6" y="1253" width="1.7" height="15.0" fill="rgb(223,141,22)" rx="2" ry="2" />
<text x="1126.61" y="1263.5" ></text>
</g>
<g >
<title>get_page_from_freelist (12 samples, 0.03%)</title><rect x="696.5" y="949" width="0.3" height="15.0" fill="rgb(229,24,15)" rx="2" ry="2" />
<text x="699.53" y="959.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4 samples, 0.01%)</title><rect x="1118.6" y="1061" width="0.1" height="15.0" fill="rgb(247,82,26)" rx="2" ry="2" />
<text x="1121.57" y="1071.5" ></text>
</g>
<g >
<title>__free_pages (4 samples, 0.01%)</title><rect x="1123.2" y="997" width="0.2" height="15.0" fill="rgb(219,137,23)" rx="2" ry="2" />
<text x="1126.25" y="1007.5" ></text>
</g>
<g >
<title>__irqentry_text_end (34 samples, 0.08%)</title><rect x="839.4" y="1381" width="0.9" height="15.0" fill="rgb(216,228,20)" rx="2" ry="2" />
<text x="842.38" y="1391.5" ></text>
</g>
<g >
<title>get_page_from_freelist (16 samples, 0.04%)</title><rect x="831.5" y="1141" width="0.4" height="15.0" fill="rgb(240,17,53)" rx="2" ry="2" />
<text x="834.47" y="1151.5" ></text>
</g>
<g >
<title>reweight_entity (6 samples, 0.01%)</title><rect x="861.6" y="1237" width="0.1" height="15.0" fill="rgb(229,75,21)" rx="2" ry="2" />
<text x="864.56" y="1247.5" ></text>
</g>
<g >
<title>queue_work_on (19 samples, 0.04%)</title><rect x="1060.9" y="1301" width="0.5" height="15.0" fill="rgb(223,153,0)" rx="2" ry="2" />
<text x="1063.88" y="1311.5" ></text>
</g>
<g >
<title>do_anonymous_page (102 samples, 0.23%)</title><rect x="470.9" y="1141" width="2.6" height="15.0" fill="rgb(241,112,0)" rx="2" ry="2" />
<text x="473.85" y="1151.5" ></text>
</g>
<g >
<title>handle_mm_fault (19 samples, 0.04%)</title><rect x="61.7" y="1333" width="0.5" height="15.0" fill="rgb(215,147,5)" rx="2" ry="2" />
<text x="64.68" y="1343.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5 samples, 0.01%)</title><rect x="1149.2" y="1269" width="0.1" height="15.0" fill="rgb(206,229,19)" rx="2" ry="2" />
<text x="1152.21" y="1279.5" ></text>
</g>
<g >
<title>[vet] (14 samples, 0.03%)</title><rect x="1187.8" y="501" width="0.4" height="15.0" fill="rgb(242,61,1)" rx="2" ry="2" />
<text x="1190.83" y="511.5" ></text>
</g>
<g >
<title>__kmalloc_node (22 samples, 0.05%)</title><rect x="612.5" y="1029" width="0.6" height="15.0" fill="rgb(216,113,41)" rx="2" ry="2" />
<text x="615.51" y="1039.5" ></text>
</g>
<g >
<title>x86_pmu_enable (12 samples, 0.03%)</title><rect x="35.3" y="1173" width="0.3" height="15.0" fill="rgb(220,31,18)" rx="2" ry="2" />
<text x="38.33" y="1183.5" ></text>
</g>
<g >
<title>do_tkill (11 samples, 0.02%)</title><rect x="868.8" y="1317" width="0.3" height="15.0" fill="rgb(205,187,50)" rx="2" ry="2" />
<text x="871.79" y="1327.5" ></text>
</g>
<g >
<title>psi_group_change (83 samples, 0.18%)</title><rect x="1098.9" y="1253" width="2.1" height="15.0" fill="rgb(243,75,50)" rx="2" ry="2" />
<text x="1101.88" y="1263.5" ></text>
</g>
<g >
<title>__handle_mm_fault (28 samples, 0.06%)</title><rect x="831.2" y="1237" width="0.7" height="15.0" fill="rgb(215,179,47)" rx="2" ry="2" />
<text x="834.21" y="1247.5" ></text>
</g>
<g >
<title>rcu_core (14 samples, 0.03%)</title><rect x="1106.6" y="1157" width="0.4" height="15.0" fill="rgb(220,175,42)" rx="2" ry="2" />
<text x="1109.64" y="1167.5" ></text>
</g>
<g >
<title>rcu_do_batch (8 samples, 0.02%)</title><rect x="924.7" y="1189" width="0.2" height="15.0" fill="rgb(240,74,15)" rx="2" ry="2" />
<text x="927.66" y="1199.5" ></text>
</g>
<g >
<title>__x64_sys_unlinkat (4 samples, 0.01%)</title><rect x="35.0" y="1301" width="0.1" height="15.0" fill="rgb(250,47,7)" rx="2" ry="2" />
<text x="37.97" y="1311.5" ></text>
</g>
<g >
<title>rcu_core_si (21 samples, 0.05%)</title><rect x="940.4" y="1221" width="0.5" height="15.0" fill="rgb(213,154,1)" rx="2" ry="2" />
<text x="943.35" y="1231.5" ></text>
</g>
<g >
<title>[link] (70 samples, 0.15%)</title><rect x="57.5" y="1333" width="1.8" height="15.0" fill="rgb(205,93,15)" rx="2" ry="2" />
<text x="60.45" y="1343.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (8 samples, 0.02%)</title><rect x="1084.2" y="1221" width="0.2" height="15.0" fill="rgb(219,76,18)" rx="2" ry="2" />
<text x="1087.20" y="1231.5" ></text>
</g>
<g >
<title>mmput (19 samples, 0.04%)</title><rect x="64.6" y="1413" width="0.5" height="15.0" fill="rgb(210,214,36)" rx="2" ry="2" />
<text x="67.61" y="1423.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.02%)</title><rect x="58.3" y="1253" width="0.2" height="15.0" fill="rgb(234,214,37)" rx="2" ry="2" />
<text x="61.29" y="1263.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="869.1" y="1381" width="0.1" height="15.0" fill="rgb(223,53,54)" rx="2" ry="2" />
<text x="872.13" y="1391.5" ></text>
</g>
<g >
<title>__x64_sys_unlinkat (12 samples, 0.03%)</title><rect x="33.4" y="1269" width="0.3" height="15.0" fill="rgb(217,109,40)" rx="2" ry="2" />
<text x="36.40" y="1279.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (9 samples, 0.02%)</title><rect x="528.5" y="1253" width="0.2" height="15.0" fill="rgb(209,172,43)" rx="2" ry="2" />
<text x="531.47" y="1263.5" ></text>
</g>
<g >
<title>idr_get_next_ul (159 samples, 0.35%)</title><rect x="511.0" y="1109" width="4.1" height="15.0" fill="rgb(226,152,4)" rx="2" ry="2" />
<text x="513.97" y="1119.5" ></text>
</g>
<g >
<title>mmput (103 samples, 0.23%)</title><rect x="890.8" y="1349" width="2.7" height="15.0" fill="rgb(236,41,42)" rx="2" ry="2" />
<text x="893.81" y="1359.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (13 samples, 0.03%)</title><rect x="465.7" y="997" width="0.3" height="15.0" fill="rgb(229,131,41)" rx="2" ry="2" />
<text x="468.71" y="1007.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (19 samples, 0.04%)</title><rect x="1127.4" y="1221" width="0.5" height="15.0" fill="rgb(231,22,38)" rx="2" ry="2" />
<text x="1130.40" y="1231.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4 samples, 0.01%)</title><rect x="639.4" y="933" width="0.1" height="15.0" fill="rgb(206,79,10)" rx="2" ry="2" />
<text x="642.38" y="943.5" ></text>
</g>
<g >
<title>rcu_do_batch (21 samples, 0.05%)</title><rect x="1065.6" y="1173" width="0.5" height="15.0" fill="rgb(221,208,7)" rx="2" ry="2" />
<text x="1068.55" y="1183.5" ></text>
</g>
<g >
<title>rcu_core (20 samples, 0.04%)</title><rect x="965.2" y="1189" width="0.5" height="15.0" fill="rgb(229,63,33)" rx="2" ry="2" />
<text x="968.21" y="1199.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (15 samples, 0.03%)</title><rect x="516.5" y="1141" width="0.3" height="15.0" fill="rgb(207,23,30)" rx="2" ry="2" />
<text x="519.45" y="1151.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (222 samples, 0.49%)</title><rect x="594.5" y="1077" width="5.8" height="15.0" fill="rgb(215,23,54)" rx="2" ry="2" />
<text x="597.46" y="1087.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (15 samples, 0.03%)</title><rect x="465.7" y="1029" width="0.3" height="15.0" fill="rgb(209,202,46)" rx="2" ry="2" />
<text x="468.66" y="1039.5" ></text>
</g>
<g >
<title>exc_page_fault (5 samples, 0.01%)</title><rect x="1189.6" y="1397" width="0.1" height="15.0" fill="rgb(239,176,3)" rx="2" ry="2" />
<text x="1192.58" y="1407.5" ></text>
</g>
<g >
<title>[vet] (10 samples, 0.02%)</title><rect x="1187.9" y="277" width="0.3" height="15.0" fill="rgb(227,159,27)" rx="2" ry="2" />
<text x="1190.94" y="287.5" ></text>
</g>
<g >
<title>free_unref_page_prepare (6 samples, 0.01%)</title><rect x="1119.5" y="1125" width="0.1" height="15.0" fill="rgb(221,197,38)" rx="2" ry="2" />
<text x="1122.49" y="1135.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (172 samples, 0.38%)</title><rect x="1093.2" y="1253" width="4.5" height="15.0" fill="rgb(208,38,20)" rx="2" ry="2" />
<text x="1096.21" y="1263.5" ></text>
</g>
<g >
<title>lockref_mark_dead (11 samples, 0.02%)</title><rect x="1150.4" y="1301" width="0.3" height="15.0" fill="rgb(236,182,21)" rx="2" ry="2" />
<text x="1153.43" y="1311.5" ></text>
</g>
<g >
<title>complete_signal (6 samples, 0.01%)</title><rect x="838.8" y="1237" width="0.1" height="15.0" fill="rgb(247,9,50)" rx="2" ry="2" />
<text x="841.76" y="1247.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (14 samples, 0.03%)</title><rect x="477.9" y="1157" width="0.4" height="15.0" fill="rgb(225,22,8)" rx="2" ry="2" />
<text x="480.90" y="1167.5" ></text>
</g>
<g >
<title>apparmor_capable (155 samples, 0.34%)</title><rect x="728.3" y="1157" width="4.0" height="15.0" fill="rgb(227,167,33)" rx="2" ry="2" />
<text x="731.28" y="1167.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5 samples, 0.01%)</title><rect x="1061.2" y="1285" width="0.2" height="15.0" fill="rgb(223,97,15)" rx="2" ry="2" />
<text x="1064.25" y="1295.5" ></text>
</g>
<g >
<title>rmqueue (12 samples, 0.03%)</title><rect x="612.0" y="997" width="0.3" height="15.0" fill="rgb(223,74,45)" rx="2" ry="2" />
<text x="615.01" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="61.4" y="1349" width="0.1" height="15.0" fill="rgb(232,112,1)" rx="2" ry="2" />
<text x="64.40" y="1359.5" ></text>
</g>
<g >
<title>do_user_addr_fault (11 samples, 0.02%)</title><rect x="60.1" y="1317" width="0.3" height="15.0" fill="rgb(235,11,33)" rx="2" ry="2" />
<text x="63.07" y="1327.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (9 samples, 0.02%)</title><rect x="1136.4" y="1253" width="0.2" height="15.0" fill="rgb(206,6,40)" rx="2" ry="2" />
<text x="1139.36" y="1263.5" ></text>
</g>
<g >
<title>clear_page_erms (25 samples, 0.06%)</title><rect x="598.2" y="965" width="0.7" height="15.0" fill="rgb(206,113,38)" rx="2" ry="2" />
<text x="601.22" y="975.5" ></text>
</g>
<g >
<title>irq_exit_rcu (7 samples, 0.02%)</title><rect x="1102.4" y="1253" width="0.2" height="15.0" fill="rgb(253,200,4)" rx="2" ry="2" />
<text x="1105.40" y="1263.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (8 samples, 0.02%)</title><rect x="11.7" y="1445" width="0.2" height="15.0" fill="rgb(216,174,18)" rx="2" ry="2" />
<text x="14.72" y="1455.5" ></text>
</g>
<g >
<title>__rcu_read_lock (6 samples, 0.01%)</title><rect x="645.5" y="1077" width="0.1" height="15.0" fill="rgb(206,51,27)" rx="2" ry="2" />
<text x="648.47" y="1087.5" ></text>
</g>
<g >
<title>__slab_free (6 samples, 0.01%)</title><rect x="1145.2" y="1077" width="0.1" height="15.0" fill="rgb(234,16,8)" rx="2" ry="2" />
<text x="1148.16" y="1087.5" ></text>
</g>
<g >
<title>__rcu_read_lock (18 samples, 0.04%)</title><rect x="698.6" y="1109" width="0.5" height="15.0" fill="rgb(251,202,11)" rx="2" ry="2" />
<text x="701.64" y="1119.5" ></text>
</g>
<g >
<title>__do_softirq (9 samples, 0.02%)</title><rect x="1148.5" y="1237" width="0.2" height="15.0" fill="rgb(247,80,36)" rx="2" ry="2" />
<text x="1151.47" y="1247.5" ></text>
</g>
<g >
<title>rcu_core_si (9 samples, 0.02%)</title><rect x="1105.7" y="1205" width="0.2" height="15.0" fill="rgb(245,114,50)" rx="2" ry="2" />
<text x="1108.70" y="1215.5" ></text>
</g>
<g >
<title>rcu_core (21 samples, 0.05%)</title><rect x="940.4" y="1205" width="0.5" height="15.0" fill="rgb(223,127,27)" rx="2" ry="2" />
<text x="943.35" y="1215.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (12 samples, 0.03%)</title><rect x="35.3" y="1221" width="0.3" height="15.0" fill="rgb(226,207,24)" rx="2" ry="2" />
<text x="38.33" y="1231.5" ></text>
</g>
<g >
<title>pick_next_task (31 samples, 0.07%)</title><rect x="863.8" y="1301" width="0.8" height="15.0" fill="rgb(230,71,39)" rx="2" ry="2" />
<text x="866.78" y="1311.5" ></text>
</g>
<g >
<title>do_user_addr_fault (15 samples, 0.03%)</title><rect x="62.9" y="1381" width="0.4" height="15.0" fill="rgb(206,180,34)" rx="2" ry="2" />
<text x="65.94" y="1391.5" ></text>
</g>
<g >
<title>[asm] (6 samples, 0.01%)</title><rect x="10.1" y="1285" width="0.2" height="15.0" fill="rgb(235,107,15)" rx="2" ry="2" />
<text x="13.13" y="1295.5" ></text>
</g>
<g >
<title>[asm] (9 samples, 0.02%)</title><rect x="10.1" y="1397" width="0.2" height="15.0" fill="rgb(220,56,3)" rx="2" ry="2" />
<text x="13.10" y="1407.5" ></text>
</g>
<g >
<title>rcu_core (13 samples, 0.03%)</title><rect x="1122.4" y="1125" width="0.3" height="15.0" fill="rgb(235,65,9)" rx="2" ry="2" />
<text x="1125.36" y="1135.5" ></text>
</g>
<g >
<title>exit_mmap (8 samples, 0.02%)</title><rect x="11.7" y="1317" width="0.2" height="15.0" fill="rgb(218,27,49)" rx="2" ry="2" />
<text x="14.72" y="1327.5" ></text>
</g>
<g >
<title>[go] (845 samples, 1.87%)</title><rect x="13.8" y="1413" width="22.1" height="15.0" fill="rgb(251,212,45)" rx="2" ry="2" />
<text x="16.79" y="1423.5" >[..</text>
</g>
<g >
<title>put_prev_entity (273 samples, 0.60%)</title><rect x="1082.8" y="1237" width="7.1" height="15.0" fill="rgb(246,171,0)" rx="2" ry="2" />
<text x="1085.79" y="1247.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (526 samples, 1.16%)</title><rect x="1044.7" y="1221" width="13.8" height="15.0" fill="rgb(227,173,9)" rx="2" ry="2" />
<text x="1047.74" y="1231.5" ></text>
</g>
<g >
<title>tick_program_event (23 samples, 0.05%)</title><rect x="859.9" y="1301" width="0.6" height="15.0" fill="rgb(249,161,10)" rx="2" ry="2" />
<text x="862.94" y="1311.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (11 samples, 0.02%)</title><rect x="44.1" y="1429" width="0.3" height="15.0" fill="rgb(207,95,27)" rx="2" ry="2" />
<text x="47.13" y="1439.5" ></text>
</g>
<g >
<title>exc_page_fault (36 samples, 0.08%)</title><rect x="831.2" y="1285" width="0.9" height="15.0" fill="rgb(217,133,54)" rx="2" ry="2" />
<text x="834.16" y="1295.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (6 samples, 0.01%)</title><rect x="872.0" y="1269" width="0.2" height="15.0" fill="rgb(228,215,13)" rx="2" ry="2" />
<text x="875.00" y="1279.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (116 samples, 0.26%)</title><rect x="869.6" y="1365" width="3.0" height="15.0" fill="rgb(234,216,52)" rx="2" ry="2" />
<text x="872.60" y="1375.5" ></text>
</g>
<g >
<title>do_wp_page (12 samples, 0.03%)</title><rect x="460.9" y="1061" width="0.3" height="15.0" fill="rgb(234,57,4)" rx="2" ry="2" />
<text x="463.88" y="1071.5" ></text>
</g>
<g >
<title>futex_wait_queue (7 samples, 0.02%)</title><rect x="832.6" y="1237" width="0.2" height="15.0" fill="rgb(217,80,43)" rx="2" ry="2" />
<text x="835.57" y="1247.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (11 samples, 0.02%)</title><rect x="1118.4" y="1189" width="0.3" height="15.0" fill="rgb(235,130,0)" rx="2" ry="2" />
<text x="1121.39" y="1199.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (8 samples, 0.02%)</title><rect x="58.3" y="1269" width="0.2" height="15.0" fill="rgb(235,74,46)" rx="2" ry="2" />
<text x="61.26" y="1279.5" ></text>
</g>
<g >
<title>should_failslab (8 samples, 0.02%)</title><rect x="716.7" y="1125" width="0.2" height="15.0" fill="rgb(233,73,46)" rx="2" ry="2" />
<text x="719.66" y="1135.5" ></text>
</g>
<g >
<title>__hrtimer_init (6 samples, 0.01%)</title><rect x="858.7" y="1349" width="0.2" height="15.0" fill="rgb(241,219,7)" rx="2" ry="2" />
<text x="861.71" y="1359.5" ></text>
</g>
<g >
<title>__slab_free (5 samples, 0.01%)</title><rect x="1107.1" y="1269" width="0.1" height="15.0" fill="rgb(218,138,50)" rx="2" ry="2" />
<text x="1110.08" y="1279.5" ></text>
</g>
<g >
<title>[mapgauge.test] (1,307 samples, 2.89%)</title><rect x="432.7" y="1205" width="34.1" height="15.0" fill="rgb(214,46,36)" rx="2" ry="2" />
<text x="435.70" y="1215.5" >[m..</text>
</g>
<g >
<title>__tlb_remove_page_size (6 samples, 0.01%)</title><rect x="890.9" y="1237" width="0.1" height="15.0" fill="rgb(214,77,1)" rx="2" ry="2" />
<text x="893.89" y="1247.5" ></text>
</g>
<g >
<title>madvise_walk_vmas (7 samples, 0.02%)</title><rect x="459.7" y="1061" width="0.2" height="15.0" fill="rgb(206,180,35)" rx="2" ry="2" />
<text x="462.73" y="1071.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (5 samples, 0.01%)</title><rect x="847.4" y="1381" width="0.2" height="15.0" fill="rgb(253,19,20)" rx="2" ry="2" />
<text x="850.43" y="1391.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4 samples, 0.01%)</title><rect x="33.8" y="1253" width="0.1" height="15.0" fill="rgb(236,161,2)" rx="2" ry="2" />
<text x="36.77" y="1263.5" ></text>
</g>
<g >
<title>handle_pte_fault (22 samples, 0.05%)</title><rect x="460.6" y="1077" width="0.6" height="15.0" fill="rgb(235,109,11)" rx="2" ry="2" />
<text x="463.62" y="1087.5" ></text>
</g>
<g >
<title>rcu_core (5 samples, 0.01%)</title><rect x="1061.2" y="1189" width="0.2" height="15.0" fill="rgb(220,168,20)" rx="2" ry="2" />
<text x="1064.25" y="1199.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (6 samples, 0.01%)</title><rect x="835.6" y="1285" width="0.2" height="15.0" fill="rgb(215,108,46)" rx="2" ry="2" />
<text x="838.62" y="1295.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (94 samples, 0.21%)</title><rect x="960.7" y="1285" width="2.4" height="15.0" fill="rgb(231,222,2)" rx="2" ry="2" />
<text x="963.67" y="1295.5" ></text>
</g>
<g >
<title>rcu_core (10 samples, 0.02%)</title><rect x="1170.8" y="1173" width="0.2" height="15.0" fill="rgb(220,1,49)" rx="2" ry="2" />
<text x="1173.78" y="1183.5" ></text>
</g>
<g >
<title>get_page_from_freelist (8 samples, 0.02%)</title><rect x="744.1" y="1029" width="0.2" height="15.0" fill="rgb(218,1,18)" rx="2" ry="2" />
<text x="747.06" y="1039.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (86 samples, 0.19%)</title><rect x="502.4" y="1141" width="2.2" height="15.0" fill="rgb(215,120,6)" rx="2" ry="2" />
<text x="505.38" y="1151.5" ></text>
</g>
<g >
<title>do_wp_page (16 samples, 0.04%)</title><rect x="59.4" y="1237" width="0.5" height="15.0" fill="rgb(232,188,5)" rx="2" ry="2" />
<text x="62.44" y="1247.5" ></text>
</g>
<g >
<title>__rcu_read_lock (16 samples, 0.04%)</title><rect x="650.2" y="1077" width="0.4" height="15.0" fill="rgb(234,126,29)" rx="2" ry="2" />
<text x="653.22" y="1087.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.01%)</title><rect x="29.4" y="1221" width="0.1" height="15.0" fill="rgb(211,129,36)" rx="2" ry="2" />
<text x="32.35" y="1231.5" ></text>
</g>
<g >
<title>[mapgauge.test] (22,024 samples, 48.75%)</title><rect x="257.1" y="1317" width="575.2" height="15.0" fill="rgb(214,180,42)" rx="2" ry="2" />
<text x="260.14" y="1327.5" >[mapgauge.test]</text>
</g>
<g >
<title>asm_exc_page_fault (6 samples, 0.01%)</title><rect x="867.9" y="1477" width="0.2" height="15.0" fill="rgb(212,194,6)" rx="2" ry="2" />
<text x="870.93" y="1487.5" ></text>
</g>
<g >
<title>__folio_alloc (6 samples, 0.01%)</title><rect x="465.1" y="1061" width="0.1" height="15.0" fill="rgb(253,217,5)" rx="2" ry="2" />
<text x="468.08" y="1071.5" ></text>
</g>
<g >
<title>mod_node_page_state (4 samples, 0.01%)</title><rect x="1120.2" y="1157" width="0.1" height="15.0" fill="rgb(244,78,24)" rx="2" ry="2" />
<text x="1123.16" y="1167.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (58 samples, 0.13%)</title><rect x="892.0" y="1205" width="1.5" height="15.0" fill="rgb(242,123,25)" rx="2" ry="2" />
<text x="894.98" y="1215.5" ></text>
</g>
<g >
<title>exc_page_fault (214 samples, 0.47%)</title><rect x="841.7" y="1365" width="5.6" height="15.0" fill="rgb(235,135,21)" rx="2" ry="2" />
<text x="844.68" y="1375.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (22 samples, 0.05%)</title><rect x="986.0" y="1237" width="0.6" height="15.0" fill="rgb(246,7,11)" rx="2" ry="2" />
<text x="989.00" y="1247.5" ></text>
</g>
<g >
<title>rcu_core (4 samples, 0.01%)</title><rect x="33.0" y="1205" width="0.1" height="15.0" fill="rgb(234,194,36)" rx="2" ry="2" />
<text x="35.96" y="1215.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6 samples, 0.01%)</title><rect x="675.5" y="1029" width="0.2" height="15.0" fill="rgb(248,112,25)" rx="2" ry="2" />
<text x="678.53" y="1039.5" ></text>
</g>
<g >
<title>[compile] (35 samples, 0.08%)</title><rect x="10.8" y="1477" width="0.9" height="15.0" fill="rgb(206,100,34)" rx="2" ry="2" />
<text x="13.76" y="1487.5" ></text>
</g>
<g >
<title>task_work_run (4 samples, 0.01%)</title><rect x="30.7" y="1189" width="0.1" height="15.0" fill="rgb(252,221,43)" rx="2" ry="2" />
<text x="33.66" y="1199.5" ></text>
</g>
<g >
<title>irq_exit_rcu (9 samples, 0.02%)</title><rect x="1148.5" y="1269" width="0.2" height="15.0" fill="rgb(217,199,28)" rx="2" ry="2" />
<text x="1151.47" y="1279.5" ></text>
</g>
<g >
<title>[vet] (18 samples, 0.04%)</title><rect x="1187.7" y="613" width="0.5" height="15.0" fill="rgb(233,143,42)" rx="2" ry="2" />
<text x="1190.73" y="623.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (5 samples, 0.01%)</title><rect x="10.6" y="1461" width="0.2" height="15.0" fill="rgb(206,6,14)" rx="2" ry="2" />
<text x="13.63" y="1471.5" ></text>
</g>
<g >
<title>perf_ctx_enable (5 samples, 0.01%)</title><rect x="871.2" y="1253" width="0.2" height="15.0" fill="rgb(212,90,4)" rx="2" ry="2" />
<text x="874.22" y="1263.5" ></text>
</g>
<g >
<title>irq_exit_rcu (14 samples, 0.03%)</title><rect x="1157.2" y="1253" width="0.4" height="15.0" fill="rgb(208,117,8)" rx="2" ry="2" />
<text x="1160.25" y="1263.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.02%)</title><rect x="28.5" y="1205" width="0.2" height="15.0" fill="rgb(228,188,51)" rx="2" ry="2" />
<text x="31.49" y="1215.5" ></text>
</g>
<g >
<title>mmput (11 samples, 0.02%)</title><rect x="44.1" y="1349" width="0.3" height="15.0" fill="rgb(207,0,17)" rx="2" ry="2" />
<text x="47.13" y="1359.5" ></text>
</g>
<g >
<title>do_user_addr_fault (20 samples, 0.04%)</title><rect x="34.4" y="1301" width="0.5" height="15.0" fill="rgb(230,185,51)" rx="2" ry="2" />
<text x="37.39" y="1311.5" ></text>
</g>
<g >
<title>mntput (114 samples, 0.25%)</title><rect x="1154.6" y="1317" width="3.0" height="15.0" fill="rgb(214,10,49)" rx="2" ry="2" />
<text x="1157.64" y="1327.5" ></text>
</g>
<g >
<title>unmap_single_vma (101 samples, 0.22%)</title><rect x="890.9" y="1285" width="2.6" height="15.0" fill="rgb(230,31,11)" rx="2" ry="2" />
<text x="893.86" y="1295.5" ></text>
</g>
<g >
<title>exec_binprm (13 samples, 0.03%)</title><rect x="1182.6" y="1397" width="0.3" height="15.0" fill="rgb(249,35,5)" rx="2" ry="2" />
<text x="1185.61" y="1407.5" ></text>
</g>
<g >
<title>[mapgauge.test] (13 samples, 0.03%)</title><rect x="458.8" y="1061" width="0.3" height="15.0" fill="rgb(222,221,48)" rx="2" ry="2" />
<text x="461.79" y="1071.5" ></text>
</g>
<g >
<title>[go] (5 samples, 0.01%)</title><rect x="43.9" y="1445" width="0.1" height="15.0" fill="rgb(224,107,42)" rx="2" ry="2" />
<text x="46.90" y="1455.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (15 samples, 0.03%)</title><rect x="868.7" y="1365" width="0.4" height="15.0" fill="rgb(239,195,50)" rx="2" ry="2" />
<text x="871.71" y="1375.5" ></text>
</g>
<g >
<title>[go] (927 samples, 2.05%)</title><rect x="12.0" y="1477" width="24.2" height="15.0" fill="rgb(246,86,2)" rx="2" ry="2" />
<text x="14.98" y="1487.5" >[..</text>
</g>
<g >
<title>rcu_core (53 samples, 0.12%)</title><rect x="1080.0" y="1157" width="1.4" height="15.0" fill="rgb(253,203,19)" rx="2" ry="2" />
<text x="1083.05" y="1167.5" ></text>
</g>
<g >
<title>x86_pmu_disable (5 samples, 0.01%)</title><rect x="1097.6" y="1221" width="0.1" height="15.0" fill="rgb(220,63,27)" rx="2" ry="2" />
<text x="1100.57" y="1231.5" ></text>
</g>
<g >
<title>[link] (195 samples, 0.43%)</title><rect x="55.4" y="1365" width="5.1" height="15.0" fill="rgb(242,53,43)" rx="2" ry="2" />
<text x="58.42" y="1375.5" ></text>
</g>
<g >
<title>perf_ctx_enable (11 samples, 0.02%)</title><rect x="1182.6" y="1285" width="0.3" height="15.0" fill="rgb(238,48,14)" rx="2" ry="2" />
<text x="1185.64" y="1295.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (7 samples, 0.02%)</title><rect x="638.9" y="981" width="0.2" height="15.0" fill="rgb(219,146,11)" rx="2" ry="2" />
<text x="641.89" y="991.5" ></text>
</g>
<g >
<title>update_curr (8 samples, 0.02%)</title><rect x="870.5" y="1237" width="0.2" height="15.0" fill="rgb(230,96,42)" rx="2" ry="2" />
<text x="873.49" y="1247.5" ></text>
</g>
<g >
<title>__do_softirq (9 samples, 0.02%)</title><rect x="1136.4" y="1189" width="0.2" height="15.0" fill="rgb(226,38,27)" rx="2" ry="2" />
<text x="1139.36" y="1199.5" ></text>
</g>
<g >
<title>[vet] (12 samples, 0.03%)</title><rect x="1187.9" y="373" width="0.3" height="15.0" fill="rgb(247,79,2)" rx="2" ry="2" />
<text x="1190.88" y="383.5" ></text>
</g>
<g >
<title>get_page_from_freelist (70 samples, 0.15%)</title><rect x="471.6" y="1077" width="1.9" height="15.0" fill="rgb(213,68,17)" rx="2" ry="2" />
<text x="474.64" y="1087.5" ></text>
</g>
<g >
<title>do_futex (8 samples, 0.02%)</title><rect x="832.5" y="1269" width="0.3" height="15.0" fill="rgb(252,39,45)" rx="2" ry="2" />
<text x="835.54" y="1279.5" ></text>
</g>
<g >
<title>vma_alloc_folio (6 samples, 0.01%)</title><rect x="465.1" y="1077" width="0.1" height="15.0" fill="rgb(239,62,51)" rx="2" ry="2" />
<text x="468.08" y="1087.5" ></text>
</g>
<g >
<title>__slab_free (15 samples, 0.03%)</title><rect x="1080.4" y="1093" width="0.4" height="15.0" fill="rgb(250,127,45)" rx="2" ry="2" />
<text x="1083.41" y="1103.5" ></text>
</g>
<g >
<title>sched_clock_cpu (5 samples, 0.01%)</title><rect x="865.7" y="1285" width="0.2" height="15.0" fill="rgb(254,213,20)" rx="2" ry="2" />
<text x="868.74" y="1295.5" ></text>
</g>
<g >
<title>mntget (8 samples, 0.02%)</title><rect x="667.2" y="1157" width="0.2" height="15.0" fill="rgb(245,7,54)" rx="2" ry="2" />
<text x="670.22" y="1167.5" ></text>
</g>
<g >
<title>do_syscall_64 (129 samples, 0.29%)</title><rect x="869.6" y="1381" width="3.4" height="15.0" fill="rgb(251,9,54)" rx="2" ry="2" />
<text x="872.60" y="1391.5" ></text>
</g>
<g >
<title>__do_softirq (8 samples, 0.02%)</title><rect x="1145.8" y="1189" width="0.2" height="15.0" fill="rgb(209,174,40)" rx="2" ry="2" />
<text x="1148.76" y="1199.5" ></text>
</g>
<g >
<title>sched_clock_cpu (8 samples, 0.02%)</title><rect x="1002.1" y="1221" width="0.2" height="15.0" fill="rgb(253,190,28)" rx="2" ry="2" />
<text x="1005.09" y="1231.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (15 samples, 0.03%)</title><rect x="515.1" y="1109" width="0.4" height="15.0" fill="rgb(210,151,7)" rx="2" ry="2" />
<text x="518.12" y="1119.5" ></text>
</g>
<g >
<title>[vet] (15 samples, 0.03%)</title><rect x="1187.8" y="517" width="0.4" height="15.0" fill="rgb(215,137,26)" rx="2" ry="2" />
<text x="1190.81" y="527.5" ></text>
</g>
<g >
<title>__free_one_page (15 samples, 0.03%)</title><rect x="892.5" y="1109" width="0.4" height="15.0" fill="rgb(232,19,53)" rx="2" ry="2" />
<text x="895.51" y="1119.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="1105.6" y="1269" width="0.1" height="15.0" fill="rgb(233,36,17)" rx="2" ry="2" />
<text x="1108.57" y="1279.5" ></text>
</g>
<g >
<title>[mapgauge.test] (30,141 samples, 66.71%)</title><rect x="65.2" y="1477" width="787.1" height="15.0" fill="rgb(216,185,33)" rx="2" ry="2" />
<text x="68.16" y="1487.5" >[mapgauge.test]</text>
</g>
<g >
<title>__irq_exit_rcu (14 samples, 0.03%)</title><rect x="1106.6" y="1205" width="0.4" height="15.0" fill="rgb(213,75,2)" rx="2" ry="2" />
<text x="1109.64" y="1215.5" ></text>
</g>
<g >
<title>anon_inode_getfd (16 samples, 0.04%)</title><rect x="567.7" y="1205" width="0.4" height="15.0" fill="rgb(253,64,3)" rx="2" ry="2" />
<text x="570.67" y="1215.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5 samples, 0.01%)</title><rect x="877.4" y="1317" width="0.1" height="15.0" fill="rgb(253,200,3)" rx="2" ry="2" />
<text x="880.36" y="1327.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.01%)</title><rect x="852.4" y="1477" width="0.1" height="15.0" fill="rgb(248,9,26)" rx="2" ry="2" />
<text x="855.44" y="1487.5" ></text>
</g>
<g >
<title>get_page_from_freelist (8 samples, 0.02%)</title><rect x="61.8" y="1221" width="0.2" height="15.0" fill="rgb(211,57,26)" rx="2" ry="2" />
<text x="64.82" y="1231.5" ></text>
</g>
<g >
<title>bpf_map_put_uref (9 samples, 0.02%)</title><rect x="1059.8" y="1301" width="0.2" height="15.0" fill="rgb(233,10,24)" rx="2" ry="2" />
<text x="1062.78" y="1311.5" ></text>
</g>
<g >
<title>madvise_collapse (7 samples, 0.02%)</title><rect x="459.7" y="1029" width="0.2" height="15.0" fill="rgb(213,49,51)" rx="2" ry="2" />
<text x="462.73" y="1039.5" ></text>
</g>
<g >
<title>rmqueue_bulk (5 samples, 0.01%)</title><rect x="835.4" y="1125" width="0.1" height="15.0" fill="rgb(217,33,0)" rx="2" ry="2" />
<text x="838.39" y="1135.5" ></text>
</g>
<g >
<title>__kmalloc_node (9 samples, 0.02%)</title><rect x="675.3" y="1093" width="0.2" height="15.0" fill="rgb(243,50,44)" rx="2" ry="2" />
<text x="678.27" y="1103.5" ></text>
</g>
<g >
<title>native_write_msr (11 samples, 0.02%)</title><rect x="860.2" y="1269" width="0.3" height="15.0" fill="rgb(250,31,47)" rx="2" ry="2" />
<text x="863.17" y="1279.5" ></text>
</g>
<g >
<title>clear_page_erms (12 samples, 0.03%)</title><rect x="831.5" y="1125" width="0.3" height="15.0" fill="rgb(219,157,20)" rx="2" ry="2" />
<text x="834.47" y="1135.5" ></text>
</g>
<g >
<title>ext4_ext_map_blocks (5 samples, 0.01%)</title><rect x="34.1" y="1141" width="0.1" height="15.0" fill="rgb(210,80,50)" rx="2" ry="2" />
<text x="37.05" y="1151.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (15 samples, 0.03%)</title><rect x="921.5" y="1285" width="0.4" height="15.0" fill="rgb(247,96,47)" rx="2" ry="2" />
<text x="924.52" y="1295.5" ></text>
</g>
<g >
<title>pick_next_task_fair (5 samples, 0.01%)</title><rect x="42.7" y="1285" width="0.2" height="15.0" fill="rgb(231,63,14)" rx="2" ry="2" />
<text x="45.72" y="1295.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_lru (1,149 samples, 2.54%)</title><rect x="629.7" y="1109" width="30.1" height="15.0" fill="rgb(209,171,37)" rx="2" ry="2" />
<text x="632.75" y="1119.5" >km..</text>
</g>
<g >
<title>__irq_exit_rcu (10 samples, 0.02%)</title><rect x="1136.6" y="1221" width="0.3" height="15.0" fill="rgb(243,115,9)" rx="2" ry="2" />
<text x="1139.62" y="1231.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (8 samples, 0.02%)</title><rect x="893.2" y="1141" width="0.2" height="15.0" fill="rgb(237,123,18)" rx="2" ry="2" />
<text x="896.21" y="1151.5" ></text>
</g>
<g >
<title>do_syscall_64 (9 samples, 0.02%)</title><rect x="836.4" y="1317" width="0.2" height="15.0" fill="rgb(237,77,18)" rx="2" ry="2" />
<text x="839.38" y="1327.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (23 samples, 0.05%)</title><rect x="1132.4" y="1269" width="0.6" height="15.0" fill="rgb(252,190,9)" rx="2" ry="2" />
<text x="1135.39" y="1279.5" ></text>
</g>
<g >
<title>vma_alloc_folio (19 samples, 0.04%)</title><rect x="462.3" y="1061" width="0.5" height="15.0" fill="rgb(234,92,47)" rx="2" ry="2" />
<text x="465.26" y="1071.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (169 samples, 0.37%)</title><rect x="1054.0" y="1141" width="4.4" height="15.0" fill="rgb(235,173,16)" rx="2" ry="2" />
<text x="1056.98" y="1151.5" ></text>
</g>
<g >
<title>rcu_segcblist_enqueue (4 samples, 0.01%)</title><rect x="1068.5" y="1301" width="0.1" height="15.0" fill="rgb(229,46,28)" rx="2" ry="2" />
<text x="1071.48" y="1311.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (9 samples, 0.02%)</title><rect x="459.9" y="1077" width="0.2" height="15.0" fill="rgb(222,107,18)" rx="2" ry="2" />
<text x="462.91" y="1087.5" ></text>
</g>
<g >
<title>call_rcu (16 samples, 0.04%)</title><rect x="1176.3" y="1333" width="0.4" height="15.0" fill="rgb(226,126,32)" rx="2" ry="2" />
<text x="1179.29" y="1343.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (8 samples, 0.02%)</title><rect x="920.1" y="1317" width="0.2" height="15.0" fill="rgb(245,181,42)" rx="2" ry="2" />
<text x="923.08" y="1327.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (4 samples, 0.01%)</title><rect x="471.0" y="1125" width="0.1" height="15.0" fill="rgb(245,144,43)" rx="2" ry="2" />
<text x="473.96" y="1135.5" ></text>
</g>
<g >
<title>get_signal (5 samples, 0.01%)</title><rect x="1189.8" y="1413" width="0.2" height="15.0" fill="rgb(230,83,4)" rx="2" ry="2" />
<text x="1192.84" y="1423.5" ></text>
</g>
<g >
<title>exit_files (485 samples, 1.07%)</title><rect x="878.1" y="1365" width="12.7" height="15.0" fill="rgb(236,3,52)" rx="2" ry="2" />
<text x="881.14" y="1375.5" ></text>
</g>
<g >
<title>do_exit (5 samples, 0.01%)</title><rect x="10.6" y="1381" width="0.2" height="15.0" fill="rgb(248,117,46)" rx="2" ry="2" />
<text x="13.63" y="1391.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (5 samples, 0.01%)</title><rect x="836.2" y="1333" width="0.1" height="15.0" fill="rgb(223,130,36)" rx="2" ry="2" />
<text x="839.20" y="1343.5" ></text>
</g>
<g >
<title>bpf_seq_write (6 samples, 0.01%)</title><rect x="526.1" y="1125" width="0.1" height="15.0" fill="rgb(236,218,8)" rx="2" ry="2" />
<text x="529.06" y="1135.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (7 samples, 0.02%)</title><rect x="965.6" y="1157" width="0.1" height="15.0" fill="rgb(243,125,45)" rx="2" ry="2" />
<text x="968.55" y="1167.5" ></text>
</g>
<g >
<title>tlb_batch_pages_flush (4 samples, 0.01%)</title><rect x="65.0" y="1269" width="0.1" height="15.0" fill="rgb(252,121,11)" rx="2" ry="2" />
<text x="68.00" y="1279.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (36 samples, 0.08%)</title><rect x="1029.8" y="1189" width="0.9" height="15.0" fill="rgb(230,40,47)" rx="2" ry="2" />
<text x="1032.77" y="1199.5" ></text>
</g>
<g >
<title>__slab_free (13 samples, 0.03%)</title><rect x="1119.8" y="1125" width="0.4" height="15.0" fill="rgb(226,210,0)" rx="2" ry="2" />
<text x="1122.82" y="1135.5" ></text>
</g>
<g >
<title>vfs_read (2,041 samples, 4.52%)</title><rect x="475.1" y="1189" width="53.3" height="15.0" fill="rgb(223,200,6)" rx="2" ry="2" />
<text x="478.06" y="1199.5" >vfs_r..</text>
</g>
<g >
<title>native_write_msr (353 samples, 0.78%)</title><rect x="1018.7" y="1173" width="9.2" height="15.0" fill="rgb(229,144,4)" rx="2" ry="2" />
<text x="1021.73" y="1183.5" ></text>
</g>
<g >
<title>path_lookupat (5 samples, 0.01%)</title><rect x="31.3" y="1173" width="0.2" height="15.0" fill="rgb(227,139,12)" rx="2" ry="2" />
<text x="34.34" y="1183.5" ></text>
</g>
<g >
<title>[compile] (31 samples, 0.07%)</title><rect x="10.8" y="1461" width="0.8" height="15.0" fill="rgb(227,44,4)" rx="2" ry="2" />
<text x="13.81" y="1471.5" ></text>
</g>
<g >
<title>irqentry_exit (5 samples, 0.01%)</title><rect x="468.5" y="1173" width="0.1" height="15.0" fill="rgb(216,57,41)" rx="2" ry="2" />
<text x="471.50" y="1183.5" ></text>
</g>
<g >
<title>native_write_msr (39 samples, 0.09%)</title><rect x="41.6" y="1221" width="1.0" height="15.0" fill="rgb(228,160,22)" rx="2" ry="2" />
<text x="44.63" y="1231.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (101 samples, 0.22%)</title><rect x="461.6" y="1173" width="2.6" height="15.0" fill="rgb(246,3,39)" rx="2" ry="2" />
<text x="464.61" y="1183.5" ></text>
</g>
<g >
<title>mod_objcg_state (39 samples, 0.09%)</title><rect x="645.7" y="1077" width="1.0" height="15.0" fill="rgb(222,152,14)" rx="2" ry="2" />
<text x="648.68" y="1087.5" ></text>
</g>
<g >
<title>__do_softirq (55 samples, 0.12%)</title><rect x="1080.0" y="1189" width="1.5" height="15.0" fill="rgb(210,118,9)" rx="2" ry="2" />
<text x="1083.05" y="1199.5" ></text>
</g>
<g >
<title>apparmor_capable (79 samples, 0.17%)</title><rect x="720.1" y="1141" width="2.0" height="15.0" fill="rgb(234,51,35)" rx="2" ry="2" />
<text x="723.06" y="1151.5" ></text>
</g>
<g >
<title>locks_remove_posix (5 samples, 0.01%)</title><rect x="890.7" y="1333" width="0.1" height="15.0" fill="rgb(227,117,36)" rx="2" ry="2" />
<text x="893.68" y="1343.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (11 samples, 0.02%)</title><rect x="1173.2" y="1237" width="0.3" height="15.0" fill="rgb(234,29,17)" rx="2" ry="2" />
<text x="1176.23" y="1247.5" ></text>
</g>
<g >
<title>do_user_addr_fault (30 samples, 0.07%)</title><rect x="836.8" y="1317" width="0.8" height="15.0" fill="rgb(218,162,28)" rx="2" ry="2" />
<text x="839.77" y="1327.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="920.7" y="1301" width="0.1" height="15.0" fill="rgb(242,162,17)" rx="2" ry="2" />
<text x="923.74" y="1311.5" ></text>
</g>
<g >
<title>do_syscall_64 (16 samples, 0.04%)</title><rect x="459.7" y="1109" width="0.4" height="15.0" fill="rgb(238,125,7)" rx="2" ry="2" />
<text x="462.73" y="1119.5" ></text>
</g>
<g >
<title>handle_pte_fault (5 samples, 0.01%)</title><rect x="1189.6" y="1333" width="0.1" height="15.0" fill="rgb(211,11,47)" rx="2" ry="2" />
<text x="1192.58" y="1343.5" ></text>
</g>
<g >
<title>file_free_rcu (4 samples, 0.01%)</title><rect x="1176.1" y="1189" width="0.1" height="15.0" fill="rgb(240,215,19)" rx="2" ry="2" />
<text x="1179.13" y="1199.5" ></text>
</g>
<g >
<title>__do_softirq (15 samples, 0.03%)</title><rect x="921.5" y="1237" width="0.4" height="15.0" fill="rgb(249,216,45)" rx="2" ry="2" />
<text x="924.52" y="1247.5" ></text>
</g>
<g >
<title>chacha_block_generic (4 samples, 0.01%)</title><rect x="614.2" y="949" width="0.1" height="15.0" fill="rgb(224,19,54)" rx="2" ry="2" />
<text x="617.16" y="959.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4 samples, 0.01%)</title><rect x="920.7" y="1269" width="0.1" height="15.0" fill="rgb(224,101,21)" rx="2" ry="2" />
<text x="923.74" y="1279.5" ></text>
</g>
<g >
<title>rcu_core_si (19 samples, 0.04%)</title><rect x="1127.4" y="1157" width="0.5" height="15.0" fill="rgb(205,115,52)" rx="2" ry="2" />
<text x="1130.40" y="1167.5" ></text>
</g>
<g >
<title>___slab_alloc (281 samples, 0.62%)</title><rect x="633.4" y="1093" width="7.3" height="15.0" fill="rgb(250,187,38)" rx="2" ry="2" />
<text x="636.38" y="1103.5" ></text>
</g>
<g >
<title>alloc_charge_hpage (4 samples, 0.01%)</title><rect x="459.8" y="981" width="0.1" height="15.0" fill="rgb(227,214,51)" rx="2" ry="2" />
<text x="462.81" y="991.5" ></text>
</g>
<g >
<title>free_unref_page_commit (18 samples, 0.04%)</title><rect x="1053.5" y="981" width="0.5" height="15.0" fill="rgb(234,32,47)" rx="2" ry="2" />
<text x="1056.51" y="991.5" ></text>
</g>
<g >
<title>file_free_rcu (6 samples, 0.01%)</title><rect x="1118.4" y="1061" width="0.2" height="15.0" fill="rgb(222,33,18)" rx="2" ry="2" />
<text x="1121.41" y="1071.5" ></text>
</g>
<g >
<title>[go] (334 samples, 0.74%)</title><rect x="20.8" y="1269" width="8.7" height="15.0" fill="rgb(253,140,32)" rx="2" ry="2" />
<text x="23.81" y="1279.5" ></text>
</g>
<g >
<title>__virt_addr_valid (4 samples, 0.01%)</title><rect x="477.8" y="1109" width="0.1" height="15.0" fill="rgb(237,45,36)" rx="2" ry="2" />
<text x="480.80" y="1119.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (10 samples, 0.02%)</title><rect x="1105.7" y="1285" width="0.2" height="15.0" fill="rgb(230,8,21)" rx="2" ry="2" />
<text x="1108.67" y="1295.5" ></text>
</g>
<g >
<title>ptep_clear_flush (8 samples, 0.02%)</title><rect x="850.4" y="1269" width="0.2" height="15.0" fill="rgb(246,209,12)" rx="2" ry="2" />
<text x="853.35" y="1279.5" ></text>
</g>
<g >
<title>do_anonymous_page (6 samples, 0.01%)</title><rect x="60.7" y="1269" width="0.1" height="15.0" fill="rgb(205,32,28)" rx="2" ry="2" />
<text x="63.69" y="1279.5" ></text>
</g>
<g >
<title>setup_object (4 samples, 0.01%)</title><rect x="698.4" y="1045" width="0.1" height="15.0" fill="rgb(220,175,20)" rx="2" ry="2" />
<text x="701.41" y="1055.5" ></text>
</g>
<g >
<title>free_slab (4 samples, 0.01%)</title><rect x="1123.2" y="1029" width="0.2" height="15.0" fill="rgb(242,105,28)" rx="2" ry="2" />
<text x="1126.25" y="1039.5" ></text>
</g>
<g >
<title>rcu_core_si (12 samples, 0.03%)</title><rect x="1148.0" y="1205" width="0.3" height="15.0" fill="rgb(243,5,28)" rx="2" ry="2" />
<text x="1151.03" y="1215.5" ></text>
</g>
<g >
<title>irq_exit_rcu (51 samples, 0.11%)</title><rect x="963.9" y="1237" width="1.3" height="15.0" fill="rgb(226,67,33)" rx="2" ry="2" />
<text x="966.88" y="1247.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (20 samples, 0.04%)</title><rect x="577.1" y="1173" width="0.6" height="15.0" fill="rgb(227,7,54)" rx="2" ry="2" />
<text x="580.15" y="1183.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="1176.6" y="1301" width="0.1" height="15.0" fill="rgb(217,217,32)" rx="2" ry="2" />
<text x="1179.60" y="1311.5" ></text>
</g>
<g >
<title>[mapgauge.test] (21,638 samples, 47.89%)</title><rect x="265.9" y="1301" width="565.2" height="15.0" fill="rgb(253,136,3)" rx="2" ry="2" />
<text x="268.94" y="1311.5" >[mapgauge.test]</text>
</g>
<g >
<title>bpf_map_put_uref (248 samples, 0.55%)</title><rect x="934.4" y="1317" width="6.5" height="15.0" fill="rgb(216,12,50)" rx="2" ry="2" />
<text x="937.42" y="1327.5" ></text>
</g>
<g >
<title>map_create (6,781 samples, 15.01%)</title><rect x="570.0" y="1205" width="177.1" height="15.0" fill="rgb(247,99,23)" rx="2" ry="2" />
<text x="573.02" y="1215.5" >map_create</text>
</g>
<g >
<title>alloc_pages (178 samples, 0.39%)</title><rect x="634.5" y="1045" width="4.7" height="15.0" fill="rgb(217,110,42)" rx="2" ry="2" />
<text x="637.53" y="1055.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (11 samples, 0.02%)</title><rect x="471.1" y="1125" width="0.3" height="15.0" fill="rgb(210,135,24)" rx="2" ry="2" />
<text x="474.09" y="1135.5" ></text>
</g>
<g >
<title>do_syscall_64 (14 samples, 0.03%)</title><rect x="868.7" y="1349" width="0.4" height="15.0" fill="rgb(253,118,25)" rx="2" ry="2" />
<text x="871.74" y="1359.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (7 samples, 0.02%)</title><rect x="847.1" y="1285" width="0.1" height="15.0" fill="rgb(246,67,7)" rx="2" ry="2" />
<text x="850.06" y="1295.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (50 samples, 0.11%)</title><rect x="954.3" y="1253" width="1.3" height="15.0" fill="rgb(225,123,4)" rx="2" ry="2" />
<text x="957.27" y="1263.5" ></text>
</g>
<g >
<title>locks_remove_file (12 samples, 0.03%)</title><rect x="1154.3" y="1317" width="0.3" height="15.0" fill="rgb(254,52,17)" rx="2" ry="2" />
<text x="1157.32" y="1327.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="61.4" y="1365" width="0.1" height="15.0" fill="rgb(247,63,44)" rx="2" ry="2" />
<text x="64.40" y="1375.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (11 samples, 0.02%)</title><rect x="850.8" y="1397" width="0.3" height="15.0" fill="rgb(223,159,0)" rx="2" ry="2" />
<text x="853.80" y="1407.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (51 samples, 0.11%)</title><rect x="26.4" y="1173" width="1.3" height="15.0" fill="rgb(229,1,22)" rx="2" ry="2" />
<text x="29.40" y="1183.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (67 samples, 0.15%)</title><rect x="734.3" y="1189" width="1.8" height="15.0" fill="rgb(236,165,15)" rx="2" ry="2" />
<text x="737.32" y="1199.5" ></text>
</g>
<g >
<title>update_load_avg (21 samples, 0.05%)</title><rect x="1091.0" y="1221" width="0.5" height="15.0" fill="rgb(223,182,1)" rx="2" ry="2" />
<text x="1093.99" y="1231.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (12 samples, 0.03%)</title><rect x="1170.7" y="1269" width="0.3" height="15.0" fill="rgb(239,103,54)" rx="2" ry="2" />
<text x="1173.73" y="1279.5" ></text>
</g>
<g >
<title>__x64_sys_execve (13 samples, 0.03%)</title><rect x="1182.6" y="1461" width="0.3" height="15.0" fill="rgb(246,143,18)" rx="2" ry="2" />
<text x="1185.61" y="1471.5" ></text>
</g>
<g >
<title>[go] (217 samples, 0.48%)</title><rect x="22.8" y="1221" width="5.6" height="15.0" fill="rgb(205,165,53)" rx="2" ry="2" />
<text x="25.77" y="1231.5" ></text>
</g>
<g >
<title>kmem_cache_free (395 samples, 0.87%)</title><rect x="1164.8" y="1301" width="10.3" height="15.0" fill="rgb(216,19,7)" rx="2" ry="2" />
<text x="1167.77" y="1311.5" ></text>
</g>
<g >
<title>put_cpu_partial (19 samples, 0.04%)</title><rect x="1053.5" y="1093" width="0.5" height="15.0" fill="rgb(238,77,16)" rx="2" ry="2" />
<text x="1056.49" y="1103.5" ></text>
</g>
<g >
<title>[vet] (11 samples, 0.02%)</title><rect x="1187.9" y="325" width="0.3" height="15.0" fill="rgb(209,53,27)" rx="2" ry="2" />
<text x="1190.91" y="335.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (4 samples, 0.01%)</title><rect x="478.3" y="1157" width="0.1" height="15.0" fill="rgb(221,26,34)" rx="2" ry="2" />
<text x="481.27" y="1167.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (9 samples, 0.02%)</title><rect x="1148.5" y="1253" width="0.2" height="15.0" fill="rgb(236,6,50)" rx="2" ry="2" />
<text x="1151.47" y="1263.5" ></text>
</g>
<g >
<title>fd_install (52 samples, 0.12%)</title><rect x="733.0" y="1189" width="1.3" height="15.0" fill="rgb(220,127,26)" rx="2" ry="2" />
<text x="735.96" y="1199.5" ></text>
</g>
<g >
<title>[link] (401 samples, 0.89%)</title><rect x="51.9" y="1397" width="10.5" height="15.0" fill="rgb(246,73,35)" rx="2" ry="2" />
<text x="54.89" y="1407.5" ></text>
</g>
<g >
<title>[mapgauge.test] (29,628 samples, 65.57%)</title><rect x="78.4" y="1429" width="773.8" height="15.0" fill="rgb(239,46,7)" rx="2" ry="2" />
<text x="81.40" y="1439.5" >[mapgauge.test]</text>
</g>
<g >
<title>queue_work_on (3,166 samples, 7.01%)</title><rect x="976.8" y="1285" width="82.6" height="15.0" fill="rgb(240,46,11)" rx="2" ry="2" />
<text x="979.76" y="1295.5" >queue_wor..</text>
</g>
<g >
<title>block_page_mkwrite (6 samples, 0.01%)</title><rect x="63.8" y="1285" width="0.2" height="15.0" fill="rgb(252,56,4)" rx="2" ry="2" />
<text x="66.83" y="1295.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (9 samples, 0.02%)</title><rect x="862.5" y="1237" width="0.2" height="15.0" fill="rgb(226,128,47)" rx="2" ry="2" />
<text x="865.47" y="1247.5" ></text>
</g>
<g >
<title>enqueue_task (5 samples, 0.01%)</title><rect x="854.5" y="1221" width="0.2" height="15.0" fill="rgb(217,30,47)" rx="2" ry="2" />
<text x="857.53" y="1231.5" ></text>
</g>
<g >
<title>[link] (761 samples, 1.68%)</title><rect x="44.4" y="1477" width="19.9" height="15.0" fill="rgb(231,44,17)" rx="2" ry="2" />
<text x="47.45" y="1487.5" ></text>
</g>
<g >
<title>update_load_avg (8 samples, 0.02%)</title><rect x="870.7" y="1237" width="0.2" height="15.0" fill="rgb(244,145,23)" rx="2" ry="2" />
<text x="873.70" y="1247.5" ></text>
</g>
<g >
<title>__x64_sys_newfstatat (35 samples, 0.08%)</title><rect x="26.5" y="1141" width="0.9" height="15.0" fill="rgb(219,69,33)" rx="2" ry="2" />
<text x="29.53" y="1151.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (12 samples, 0.03%)</title><rect x="35.3" y="1205" width="0.3" height="15.0" fill="rgb(250,70,41)" rx="2" ry="2" />
<text x="38.33" y="1215.5" ></text>
</g>
<g >
<title>[vet] (16 samples, 0.04%)</title><rect x="1187.8" y="565" width="0.4" height="15.0" fill="rgb(248,187,28)" rx="2" ry="2" />
<text x="1190.78" y="575.5" ></text>
</g>
<g >
<title>[go] (269 samples, 0.60%)</title><rect x="21.7" y="1237" width="7.0" height="15.0" fill="rgb(234,56,47)" rx="2" ry="2" />
<text x="24.67" y="1247.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (4 samples, 0.01%)</title><rect x="569.1" y="1205" width="0.1" height="15.0" fill="rgb(205,199,39)" rx="2" ry="2" />
<text x="572.13" y="1215.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10 samples, 0.02%)</title><rect x="1181.1" y="1285" width="0.3" height="15.0" fill="rgb(228,175,38)" rx="2" ry="2" />
<text x="1184.12" y="1295.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (4 samples, 0.01%)</title><rect x="763.6" y="1077" width="0.1" height="15.0" fill="rgb(226,8,33)" rx="2" ry="2" />
<text x="766.57" y="1087.5" ></text>
</g>
<g >
<title>prepare_task_switch (5 samples, 0.01%)</title><rect x="875.4" y="1397" width="0.2" height="15.0" fill="rgb(237,113,23)" rx="2" ry="2" />
<text x="878.43" y="1407.5" ></text>
</g>
<g >
<title>get_page_from_freelist (17 samples, 0.04%)</title><rect x="463.1" y="997" width="0.5" height="15.0" fill="rgb(243,167,37)" rx="2" ry="2" />
<text x="466.12" y="1007.5" ></text>
</g>
<g >
<title>file_free_rcu (6 samples, 0.01%)</title><rect x="1136.4" y="1125" width="0.1" height="15.0" fill="rgb(244,146,3)" rx="2" ry="2" />
<text x="1139.36" y="1135.5" ></text>
</g>
<g >
<title>kmem_cache_free (21 samples, 0.05%)</title><rect x="964.3" y="1125" width="0.5" height="15.0" fill="rgb(221,215,6)" rx="2" ry="2" />
<text x="967.30" y="1135.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (497 samples, 1.10%)</title><rect x="1133.0" y="1285" width="13.0" height="15.0" fill="rgb(231,183,35)" rx="2" ry="2" />
<text x="1135.99" y="1295.5" ></text>
</g>
<g >
<title>__radix_tree_delete (90 samples, 0.20%)</title><rect x="967.3" y="1253" width="2.3" height="15.0" fill="rgb(252,133,6)" rx="2" ry="2" />
<text x="970.25" y="1263.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (5 samples, 0.01%)</title><rect x="1189.8" y="1429" width="0.2" height="15.0" fill="rgb(231,206,19)" rx="2" ry="2" />
<text x="1192.84" y="1439.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (8 samples, 0.02%)</title><rect x="1131.9" y="1253" width="0.2" height="15.0" fill="rgb(229,9,35)" rx="2" ry="2" />
<text x="1134.89" y="1263.5" ></text>
</g>
<g >
<title>allocate_slab (568 samples, 1.26%)</title><rect x="683.7" y="1077" width="14.8" height="15.0" fill="rgb(240,166,33)" rx="2" ry="2" />
<text x="686.68" y="1087.5" ></text>
</g>
<g >
<title>__mod_memcg_state (4 samples, 0.01%)</title><rect x="659.3" y="1029" width="0.1" height="15.0" fill="rgb(224,221,31)" rx="2" ry="2" />
<text x="662.26" y="1039.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (6 samples, 0.01%)</title><rect x="31.8" y="1189" width="0.2" height="15.0" fill="rgb(251,138,24)" rx="2" ry="2" />
<text x="34.81" y="1199.5" ></text>
</g>
<g >
<title>__irqentry_text_end (7 samples, 0.02%)</title><rect x="528.7" y="1269" width="0.2" height="15.0" fill="rgb(217,4,35)" rx="2" ry="2" />
<text x="531.70" y="1279.5" ></text>
</g>
<g >
<title>[vet] (11 samples, 0.02%)</title><rect x="1187.9" y="309" width="0.3" height="15.0" fill="rgb(221,15,16)" rx="2" ry="2" />
<text x="1190.91" y="319.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5 samples, 0.01%)</title><rect x="1178.5" y="1285" width="0.1" height="15.0" fill="rgb(214,117,28)" rx="2" ry="2" />
<text x="1181.51" y="1295.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="1164.5" y="1301" width="0.1" height="15.0" fill="rgb(207,125,49)" rx="2" ry="2" />
<text x="1167.54" y="1311.5" ></text>
</g>
<g >
<title>free_slab (8 samples, 0.02%)</title><rect x="1171.1" y="1221" width="0.2" height="15.0" fill="rgb(235,175,3)" rx="2" ry="2" />
<text x="1174.12" y="1231.5" ></text>
</g>
<g >
<title>irq_exit_rcu (14 samples, 0.03%)</title><rect x="1130.2" y="1189" width="0.4" height="15.0" fill="rgb(215,209,21)" rx="2" ry="2" />
<text x="1133.22" y="1199.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (14 samples, 0.03%)</title><rect x="712.8" y="1125" width="0.4" height="15.0" fill="rgb(249,8,7)" rx="2" ry="2" />
<text x="715.85" y="1135.5" ></text>
</g>
<g >
<title>[go] (929 samples, 2.06%)</title><rect x="11.9" y="1509" width="24.3" height="15.0" fill="rgb(228,45,34)" rx="2" ry="2" />
<text x="14.93" y="1519.5" >[..</text>
</g>
<g >
<title>bpf_map_area_alloc (1,507 samples, 3.34%)</title><rect x="678.1" y="1173" width="39.4" height="15.0" fill="rgb(223,10,41)" rx="2" ry="2" />
<text x="681.14" y="1183.5" >bpf..</text>
</g>
<g >
<title>__do_softirq (4 samples, 0.01%)</title><rect x="33.0" y="1237" width="0.1" height="15.0" fill="rgb(206,48,54)" rx="2" ry="2" />
<text x="35.96" y="1247.5" ></text>
</g>
<g >
<title>do_user_addr_fault (25 samples, 0.06%)</title><rect x="460.6" y="1125" width="0.6" height="15.0" fill="rgb(229,91,15)" rx="2" ry="2" />
<text x="463.56" y="1135.5" ></text>
</g>
<g >
<title>handle_pte_fault (5 samples, 0.01%)</title><rect x="851.7" y="1333" width="0.2" height="15.0" fill="rgb(245,100,44)" rx="2" ry="2" />
<text x="854.74" y="1343.5" ></text>
</g>
<g >
<title>__irqentry_text_end (5 samples, 0.01%)</title><rect x="460.3" y="1157" width="0.2" height="15.0" fill="rgb(254,221,51)" rx="2" ry="2" />
<text x="463.33" y="1167.5" ></text>
</g>
<g >
<title>idr_alloc_cyclic (334 samples, 0.74%)</title><rect x="736.8" y="1189" width="8.7" height="15.0" fill="rgb(211,116,17)" rx="2" ry="2" />
<text x="739.77" y="1199.5" ></text>
</g>
<g >
<title>__alloc_pages (60 samples, 0.13%)</title><rect x="834.0" y="1189" width="1.5" height="15.0" fill="rgb(235,218,43)" rx="2" ry="2" />
<text x="836.95" y="1199.5" ></text>
</g>
<g >
<title>fpregs_assert_state_consistent (17 samples, 0.04%)</title><rect x="802.8" y="1205" width="0.4" height="15.0" fill="rgb(208,95,9)" rx="2" ry="2" />
<text x="805.77" y="1215.5" ></text>
</g>
<g >
<title>capable (338 samples, 0.75%)</title><rect x="724.1" y="1189" width="8.9" height="15.0" fill="rgb(246,164,53)" rx="2" ry="2" />
<text x="727.13" y="1199.5" ></text>
</g>
<g >
<title>rmqueue (12 samples, 0.03%)</title><rect x="845.9" y="1205" width="0.4" height="15.0" fill="rgb(209,99,32)" rx="2" ry="2" />
<text x="848.94" y="1215.5" ></text>
</g>
<g >
<title>____fput (10,726 samples, 23.74%)</title><rect x="901.3" y="1349" width="280.1" height="15.0" fill="rgb(245,203,28)" rx="2" ry="2" />
<text x="904.25" y="1359.5" >____fput</text>
</g>
<g >
<title>pick_next_task_fair (14 samples, 0.03%)</title><rect x="871.5" y="1269" width="0.4" height="15.0" fill="rgb(216,1,23)" rx="2" ry="2" />
<text x="874.51" y="1279.5" ></text>
</g>
<g >
<title>apparmor_capable (31 samples, 0.07%)</title><rect x="718.0" y="1157" width="0.9" height="15.0" fill="rgb(217,130,19)" rx="2" ry="2" />
<text x="721.05" y="1167.5" ></text>
</g>
<g >
<title>[[vdso]] (8 samples, 0.02%)</title><rect x="853.9" y="1413" width="0.2" height="15.0" fill="rgb(208,94,43)" rx="2" ry="2" />
<text x="856.88" y="1423.5" ></text>
</g>
<g >
<title>__radix_tree_replace (18 samples, 0.04%)</title><rect x="744.4" y="1141" width="0.5" height="15.0" fill="rgb(209,177,1)" rx="2" ry="2" />
<text x="747.40" y="1151.5" ></text>
</g>
<g >
<title>[vet] (259 samples, 0.57%)</title><rect x="1183.1" y="1509" width="6.7" height="15.0" fill="rgb(231,85,13)" rx="2" ry="2" />
<text x="1186.08" y="1519.5" ></text>
</g>
<g >
<title>get_signal (11 samples, 0.02%)</title><rect x="44.1" y="1413" width="0.3" height="15.0" fill="rgb(233,115,50)" rx="2" ry="2" />
<text x="47.13" y="1423.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (14 samples, 0.03%)</title><rect x="1130.2" y="1221" width="0.4" height="15.0" fill="rgb(224,53,44)" rx="2" ry="2" />
<text x="1133.22" y="1231.5" ></text>
</g>
<g >
<title>get_unused_fd_flags (27 samples, 0.06%)</title><rect x="736.1" y="1189" width="0.7" height="15.0" fill="rgb(224,171,35)" rx="2" ry="2" />
<text x="739.07" y="1199.5" ></text>
</g>
<g >
<title>dput (17 samples, 0.04%)</title><rect x="1176.7" y="1333" width="0.5" height="15.0" fill="rgb(231,88,29)" rx="2" ry="2" />
<text x="1179.71" y="1343.5" ></text>
</g>
<g >
<title>__do_softirq (10 samples, 0.02%)</title><rect x="1170.8" y="1205" width="0.2" height="15.0" fill="rgb(220,73,16)" rx="2" ry="2" />
<text x="1173.78" y="1215.5" ></text>
</g>
<g >
<title>[vet] (139 samples, 0.31%)</title><rect x="1185.3" y="1269" width="3.6" height="15.0" fill="rgb(214,50,23)" rx="2" ry="2" />
<text x="1188.30" y="1279.5" ></text>
</g>
<g >
<title>handle_mm_fault (29 samples, 0.06%)</title><rect x="831.2" y="1253" width="0.7" height="15.0" fill="rgb(247,208,9)" rx="2" ry="2" />
<text x="834.18" y="1263.5" ></text>
</g>
<g >
<title>exit_mm (5 samples, 0.01%)</title><rect x="10.6" y="1365" width="0.2" height="15.0" fill="rgb(230,63,32)" rx="2" ry="2" />
<text x="13.63" y="1375.5" ></text>
</g>
<g >
<title>futex_wait_queue (5 samples, 0.01%)</title><rect x="836.4" y="1253" width="0.1" height="15.0" fill="rgb(207,50,22)" rx="2" ry="2" />
<text x="839.41" y="1263.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5 samples, 0.01%)</title><rect x="1178.5" y="1301" width="0.1" height="15.0" fill="rgb(208,89,39)" rx="2" ry="2" />
<text x="1181.51" y="1311.5" ></text>
</g>
<g >
<title>ksys_mmap_pgoff (6 samples, 0.01%)</title><rect x="58.6" y="1237" width="0.1" height="15.0" fill="rgb(247,51,25)" rx="2" ry="2" />
<text x="61.58" y="1247.5" ></text>
</g>
<g >
<title>rcu_do_batch (36 samples, 0.08%)</title><rect x="1144.8" y="1125" width="1.0" height="15.0" fill="rgb(219,128,3)" rx="2" ry="2" />
<text x="1147.82" y="1135.5" ></text>
</g>
<g >
<title>do_anonymous_page (9 samples, 0.02%)</title><rect x="850.0" y="1301" width="0.2" height="15.0" fill="rgb(230,92,22)" rx="2" ry="2" />
<text x="853.01" y="1311.5" ></text>
</g>
<g >
<title>rcu_core (5 samples, 0.01%)</title><rect x="934.3" y="1205" width="0.1" height="15.0" fill="rgb(211,41,14)" rx="2" ry="2" />
<text x="937.29" y="1215.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (40 samples, 0.09%)</title><rect x="41.6" y="1285" width="1.0" height="15.0" fill="rgb(209,227,26)" rx="2" ry="2" />
<text x="44.60" y="1295.5" ></text>
</g>
<g >
<title>___slab_alloc (13 samples, 0.03%)</title><rect x="744.0" y="1109" width="0.3" height="15.0" fill="rgb(233,157,2)" rx="2" ry="2" />
<text x="746.98" y="1119.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (10 samples, 0.02%)</title><rect x="1105.7" y="1269" width="0.2" height="15.0" fill="rgb(235,169,17)" rx="2" ry="2" />
<text x="1108.67" y="1279.5" ></text>
</g>
<g >
<title>futex_wait (8 samples, 0.02%)</title><rect x="832.5" y="1253" width="0.3" height="15.0" fill="rgb(211,102,11)" rx="2" ry="2" />
<text x="835.54" y="1263.5" ></text>
</g>
<g >
<title>irqentry_exit (26 samples, 0.06%)</title><rect x="846.6" y="1349" width="0.6" height="15.0" fill="rgb(241,134,31)" rx="2" ry="2" />
<text x="849.57" y="1359.5" ></text>
</g>
<g >
<title>rcu_core (7 samples, 0.02%)</title><rect x="1176.1" y="1221" width="0.2" height="15.0" fill="rgb(222,79,51)" rx="2" ry="2" />
<text x="1179.11" y="1231.5" ></text>
</g>
<g >
<title>dentry_unlink_inode (42 samples, 0.09%)</title><rect x="1149.3" y="1301" width="1.1" height="15.0" fill="rgb(219,198,54)" rx="2" ry="2" />
<text x="1152.34" y="1311.5" ></text>
</g>
<g >
<title>mtree_range_walk (6 samples, 0.01%)</title><rect x="473.8" y="1157" width="0.1" height="15.0" fill="rgb(240,42,10)" rx="2" ry="2" />
<text x="476.78" y="1167.5" ></text>
</g>
<g >
<title>errseq_sample (23 samples, 0.05%)</title><rect x="664.6" y="1141" width="0.6" height="15.0" fill="rgb(237,86,44)" rx="2" ry="2" />
<text x="667.56" y="1151.5" ></text>
</g>
<g >
<title>__do_softirq (4 samples, 0.01%)</title><rect x="1150.3" y="1221" width="0.1" height="15.0" fill="rgb(221,108,47)" rx="2" ry="2" />
<text x="1153.33" y="1231.5" ></text>
</g>
<g >
<title>schedule (5 samples, 0.01%)</title><rect x="836.4" y="1237" width="0.1" height="15.0" fill="rgb(238,0,35)" rx="2" ry="2" />
<text x="839.41" y="1247.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (185 samples, 0.41%)</title><rect x="505.2" y="1125" width="4.9" height="15.0" fill="rgb(251,45,39)" rx="2" ry="2" />
<text x="508.25" y="1135.5" ></text>
</g>
<g >
<title>rcu_do_batch (10 samples, 0.02%)</title><rect x="1136.6" y="1157" width="0.3" height="15.0" fill="rgb(216,56,44)" rx="2" ry="2" />
<text x="1139.62" y="1167.5" ></text>
</g>
<g >
<title>kfree (19 samples, 0.04%)</title><rect x="1119.7" y="1157" width="0.5" height="15.0" fill="rgb(253,110,31)" rx="2" ry="2" />
<text x="1122.67" y="1167.5" ></text>
</g>
<g >
<title>do_user_addr_fault (34 samples, 0.08%)</title><rect x="849.9" y="1365" width="0.9" height="15.0" fill="rgb(208,144,4)" rx="2" ry="2" />
<text x="852.88" y="1375.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (8 samples, 0.02%)</title><rect x="990.6" y="1221" width="0.2" height="15.0" fill="rgb(243,138,32)" rx="2" ry="2" />
<text x="993.63" y="1231.5" ></text>
</g>
<g >
<title>enqueue_task (288 samples, 0.64%)</title><rect x="1006.9" y="1205" width="7.5" height="15.0" fill="rgb(218,123,15)" rx="2" ry="2" />
<text x="1009.92" y="1215.5" ></text>
</g>
<g >
<title>rcu_core_si (51 samples, 0.11%)</title><rect x="963.9" y="1189" width="1.3" height="15.0" fill="rgb(240,49,34)" rx="2" ry="2" />
<text x="966.88" y="1199.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5 samples, 0.01%)</title><rect x="459.6" y="1093" width="0.1" height="15.0" fill="rgb(220,32,44)" rx="2" ry="2" />
<text x="462.60" y="1103.5" ></text>
</g>
<g >
<title>__schedule (5 samples, 0.01%)</title><rect x="836.4" y="1221" width="0.1" height="15.0" fill="rgb(216,34,9)" rx="2" ry="2" />
<text x="839.41" y="1231.5" ></text>
</g>
<g >
<title>[mapgauge.test] (4 samples, 0.01%)</title><rect x="458.9" y="1013" width="0.1" height="15.0" fill="rgb(254,63,12)" rx="2" ry="2" />
<text x="461.92" y="1023.5" ></text>
</g>
<g >
<title>mmput (8 samples, 0.02%)</title><rect x="11.7" y="1349" width="0.2" height="15.0" fill="rgb(229,78,4)" rx="2" ry="2" />
<text x="14.72" y="1359.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (7 samples, 0.02%)</title><rect x="1130.4" y="1093" width="0.2" height="15.0" fill="rgb(214,56,18)" rx="2" ry="2" />
<text x="1133.40" y="1103.5" ></text>
</g>
<g >
<title>try_to_wake_up (11 samples, 0.02%)</title><rect x="854.4" y="1253" width="0.3" height="15.0" fill="rgb(211,137,7)" rx="2" ry="2" />
<text x="857.38" y="1263.5" ></text>
</g>
<g >
<title>x64_setup_rt_frame (5 samples, 0.01%)</title><rect x="847.1" y="1253" width="0.1" height="15.0" fill="rgb(218,79,31)" rx="2" ry="2" />
<text x="850.12" y="1263.5" ></text>
</g>
<g >
<title>from_kuid_munged (5 samples, 0.01%)</title><rect x="856.3" y="1317" width="0.1" height="15.0" fill="rgb(207,142,15)" rx="2" ry="2" />
<text x="859.28" y="1327.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (65 samples, 0.14%)</title><rect x="1079.8" y="1253" width="1.7" height="15.0" fill="rgb(224,167,34)" rx="2" ry="2" />
<text x="1082.81" y="1263.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (114 samples, 0.25%)</title><rect x="800.3" y="1221" width="2.9" height="15.0" fill="rgb(228,47,45)" rx="2" ry="2" />
<text x="803.26" y="1231.5" ></text>
</g>
<g >
<title>sched_clock (59 samples, 0.13%)</title><rect x="1036.8" y="1189" width="1.5" height="15.0" fill="rgb(216,99,7)" rx="2" ry="2" />
<text x="1039.77" y="1199.5" ></text>
</g>
<g >
<title>_atomic_dec_and_lock (332 samples, 0.73%)</title><rect x="1137.1" y="1253" width="8.7" height="15.0" fill="rgb(208,119,0)" rx="2" ry="2" />
<text x="1140.09" y="1263.5" ></text>
</g>
<g >
<title>__update_load_avg_se (11 samples, 0.02%)</title><rect x="1010.4" y="1141" width="0.3" height="15.0" fill="rgb(251,40,36)" rx="2" ry="2" />
<text x="1013.45" y="1151.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5 samples, 0.01%)</title><rect x="1149.2" y="1285" width="0.1" height="15.0" fill="rgb(215,111,15)" rx="2" ry="2" />
<text x="1152.21" y="1295.5" ></text>
</g>
<g >
<title>rcu_do_batch (8 samples, 0.02%)</title><rect x="1164.3" y="1173" width="0.2" height="15.0" fill="rgb(236,169,53)" rx="2" ry="2" />
<text x="1167.33" y="1183.5" ></text>
</g>
<g >
<title>bprm_execve (13 samples, 0.03%)</title><rect x="1182.6" y="1429" width="0.3" height="15.0" fill="rgb(223,174,31)" rx="2" ry="2" />
<text x="1185.61" y="1439.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (29 samples, 0.06%)</title><rect x="615.0" y="1093" width="0.7" height="15.0" fill="rgb(246,122,27)" rx="2" ry="2" />
<text x="617.96" y="1103.5" ></text>
</g>
<g >
<title>psi_task_change (4 samples, 0.01%)</title><rect x="1014.9" y="1205" width="0.1" height="15.0" fill="rgb(209,175,14)" rx="2" ry="2" />
<text x="1017.91" y="1215.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (11 samples, 0.02%)</title><rect x="835.8" y="1285" width="0.3" height="15.0" fill="rgb(224,142,40)" rx="2" ry="2" />
<text x="838.81" y="1295.5" ></text>
</g>
<g >
<title>sched_clock_cpu (40 samples, 0.09%)</title><rect x="1101.1" y="1253" width="1.1" height="15.0" fill="rgb(221,152,41)" rx="2" ry="2" />
<text x="1104.13" y="1263.5" ></text>
</g>
<g >
<title>__sys_bpf (7,304 samples, 16.17%)</title><rect x="559.6" y="1221" width="190.8" height="15.0" fill="rgb(221,82,6)" rx="2" ry="2" />
<text x="562.65" y="1231.5" >__sys_bpf</text>
</g>
<g >
<title>update_process_times (4 samples, 0.01%)</title><rect x="469.6" y="1109" width="0.1" height="15.0" fill="rgb(238,175,11)" rx="2" ry="2" />
<text x="472.63" y="1119.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (7 samples, 0.02%)</title><rect x="467.7" y="1077" width="0.2" height="15.0" fill="rgb(251,42,2)" rx="2" ry="2" />
<text x="470.72" y="1087.5" ></text>
</g>
<g >
<title>check_stack_object (8 samples, 0.02%)</title><rect x="563.6" y="1173" width="0.3" height="15.0" fill="rgb(248,190,42)" rx="2" ry="2" />
<text x="566.65" y="1183.5" ></text>
</g>
<g >
<title>rcu_core_si (11 samples, 0.02%)</title><rect x="1173.2" y="1173" width="0.3" height="15.0" fill="rgb(248,21,19)" rx="2" ry="2" />
<text x="1176.23" y="1183.5" ></text>
</g>
<g >
<title>[vet] (4 samples, 0.01%)</title><rect x="1188.1" y="53" width="0.1" height="15.0" fill="rgb(221,1,44)" rx="2" ry="2" />
<text x="1191.09" y="63.5" ></text>
</g>
<g >
<title>ima_file_free (9 samples, 0.02%)</title><rect x="1153.2" y="1317" width="0.2" height="15.0" fill="rgb(209,45,54)" rx="2" ry="2" />
<text x="1156.18" y="1327.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (7 samples, 0.02%)</title><rect x="1044.6" y="1237" width="0.1" height="15.0" fill="rgb(222,104,3)" rx="2" ry="2" />
<text x="1047.56" y="1247.5" ></text>
</g>
<g >
<title>unmap_single_vma (7 samples, 0.02%)</title><rect x="11.7" y="1285" width="0.2" height="15.0" fill="rgb(206,48,20)" rx="2" ry="2" />
<text x="14.75" y="1295.5" ></text>
</g>
<g >
<title>init_file (571 samples, 1.26%)</title><rect x="585.7" y="1109" width="15.0" height="15.0" fill="rgb(225,10,29)" rx="2" ry="2" />
<text x="588.74" y="1119.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4 samples, 0.01%)</title><rect x="654.8" y="1045" width="0.1" height="15.0" fill="rgb(217,0,7)" rx="2" ry="2" />
<text x="657.79" y="1055.5" ></text>
</g>
<g >
<title>__rcu_read_lock (6 samples, 0.01%)</title><rect x="1114.7" y="1253" width="0.2" height="15.0" fill="rgb(210,55,23)" rx="2" ry="2" />
<text x="1117.73" y="1263.5" ></text>
</g>
<g >
<title>__alloc_pages (4 samples, 0.01%)</title><rect x="461.1" y="997" width="0.1" height="15.0" fill="rgb(240,85,42)" rx="2" ry="2" />
<text x="464.09" y="1007.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (16 samples, 0.04%)</title><rect x="612.5" y="1013" width="0.5" height="15.0" fill="rgb(220,148,16)" rx="2" ry="2" />
<text x="615.54" y="1023.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.01%)</title><rect x="64.5" y="1493" width="0.1" height="15.0" fill="rgb(215,82,26)" rx="2" ry="2" />
<text x="67.51" y="1503.5" ></text>
</g>
<g >
<title>__slab_free (15 samples, 0.03%)</title><rect x="931.7" y="1157" width="0.3" height="15.0" fill="rgb(228,228,35)" rx="2" ry="2" />
<text x="934.65" y="1167.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (6 samples, 0.01%)</title><rect x="803.3" y="1253" width="0.1" height="15.0" fill="rgb(235,211,21)" rx="2" ry="2" />
<text x="806.29" y="1263.5" ></text>
</g>
<g >
<title>page_remove_rmap (11 samples, 0.02%)</title><rect x="891.7" y="1221" width="0.3" height="15.0" fill="rgb(230,129,3)" rx="2" ry="2" />
<text x="894.70" y="1231.5" ></text>
</g>
<g >
<title>do_syscall_64 (50 samples, 0.11%)</title><rect x="855.2" y="1365" width="1.3" height="15.0" fill="rgb(246,160,14)" rx="2" ry="2" />
<text x="858.19" y="1375.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="837.9" y="1349" width="0.2" height="15.0" fill="rgb(241,136,26)" rx="2" ry="2" />
<text x="840.95" y="1359.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (20 samples, 0.04%)</title><rect x="965.2" y="1237" width="0.5" height="15.0" fill="rgb(243,97,44)" rx="2" ry="2" />
<text x="968.21" y="1247.5" ></text>
</g>
<g >
<title>kmem_cache_free (4 samples, 0.01%)</title><rect x="1105.8" y="1141" width="0.1" height="15.0" fill="rgb(211,96,20)" rx="2" ry="2" />
<text x="1108.77" y="1151.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (26 samples, 0.06%)</title><rect x="866.3" y="1381" width="0.6" height="15.0" fill="rgb(214,165,5)" rx="2" ry="2" />
<text x="869.26" y="1391.5" ></text>
</g>
<g >
<title>__folio_alloc (5 samples, 0.01%)</title><rect x="468.2" y="1061" width="0.2" height="15.0" fill="rgb(239,10,51)" rx="2" ry="2" />
<text x="471.24" y="1071.5" ></text>
</g>
<g >
<title>ret_from_fork (8 samples, 0.02%)</title><rect x="11.7" y="1493" width="0.2" height="15.0" fill="rgb(210,176,41)" rx="2" ry="2" />
<text x="14.72" y="1503.5" ></text>
</g>
<g >
<title>[go] (9 samples, 0.02%)</title><rect x="25.1" y="1029" width="0.3" height="15.0" fill="rgb(219,188,51)" rx="2" ry="2" />
<text x="28.15" y="1039.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (12 samples, 0.03%)</title><rect x="1145.4" y="1109" width="0.4" height="15.0" fill="rgb(207,78,37)" rx="2" ry="2" />
<text x="1148.45" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (341 samples, 0.75%)</title><rect x="530.8" y="1269" width="8.9" height="15.0" fill="rgb(240,57,11)" rx="2" ry="2" />
<text x="533.84" y="1279.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (50 samples, 0.11%)</title><rect x="1037.0" y="1173" width="1.3" height="15.0" fill="rgb(221,167,17)" rx="2" ry="2" />
<text x="1040.01" y="1183.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (126 samples, 0.28%)</title><rect x="1128.2" y="1253" width="3.3" height="15.0" fill="rgb(211,98,19)" rx="2" ry="2" />
<text x="1131.18" y="1263.5" ></text>
</g>
<g >
<title>newidle_balance (15 samples, 0.03%)</title><rect x="864.0" y="1269" width="0.4" height="15.0" fill="rgb(209,18,45)" rx="2" ry="2" />
<text x="866.99" y="1279.5" ></text>
</g>
<g >
<title>security_file_free (69 samples, 0.15%)</title><rect x="1179.6" y="1333" width="1.8" height="15.0" fill="rgb(240,217,10)" rx="2" ry="2" />
<text x="1182.58" y="1343.5" ></text>
</g>
<g >
<title>__do_sys_newfstatat (5 samples, 0.01%)</title><rect x="30.0" y="1221" width="0.1" height="15.0" fill="rgb(210,196,40)" rx="2" ry="2" />
<text x="33.01" y="1231.5" ></text>
</g>
<g >
<title>setup_object (8 samples, 0.02%)</title><rect x="599.7" y="997" width="0.2" height="15.0" fill="rgb(208,7,47)" rx="2" ry="2" />
<text x="602.74" y="1007.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (7 samples, 0.02%)</title><rect x="1102.4" y="1269" width="0.2" height="15.0" fill="rgb(217,72,11)" rx="2" ry="2" />
<text x="1105.40" y="1279.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (9 samples, 0.02%)</title><rect x="710.2" y="1077" width="0.2" height="15.0" fill="rgb(217,212,18)" rx="2" ry="2" />
<text x="713.21" y="1087.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (9 samples, 0.02%)</title><rect x="1148.5" y="1301" width="0.2" height="15.0" fill="rgb(243,14,41)" rx="2" ry="2" />
<text x="1151.47" y="1311.5" ></text>
</g>
<g >
<title>rcu_do_batch (9 samples, 0.02%)</title><rect x="1105.7" y="1173" width="0.2" height="15.0" fill="rgb(254,11,6)" rx="2" ry="2" />
<text x="1108.70" y="1183.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (28 samples, 0.06%)</title><rect x="983.9" y="1237" width="0.7" height="15.0" fill="rgb(210,109,49)" rx="2" ry="2" />
<text x="986.91" y="1247.5" ></text>
</g>
<g >
<title>security_capable (113 samples, 0.25%)</title><rect x="719.4" y="1157" width="3.0" height="15.0" fill="rgb(243,61,26)" rx="2" ry="2" />
<text x="722.41" y="1167.5" ></text>
</g>
<g >
<title>x86_pmu_enable (93 samples, 0.21%)</title><rect x="1077.1" y="1221" width="2.5" height="15.0" fill="rgb(216,12,24)" rx="2" ry="2" />
<text x="1080.12" y="1231.5" ></text>
</g>
<g >
<title>enqueue_task_fair (4 samples, 0.01%)</title><rect x="854.5" y="1205" width="0.1" height="15.0" fill="rgb(236,47,49)" rx="2" ry="2" />
<text x="857.53" y="1215.5" ></text>
</g>
<g >
<title>file_free_rcu (9 samples, 0.02%)</title><rect x="1122.4" y="1093" width="0.2" height="15.0" fill="rgb(207,177,40)" rx="2" ry="2" />
<text x="1125.36" y="1103.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4 samples, 0.01%)</title><rect x="460.2" y="1141" width="0.1" height="15.0" fill="rgb(250,155,38)" rx="2" ry="2" />
<text x="463.17" y="1151.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (5 samples, 0.01%)</title><rect x="478.4" y="1157" width="0.1" height="15.0" fill="rgb(246,54,48)" rx="2" ry="2" />
<text x="481.38" y="1167.5" ></text>
</g>
<g >
<title>rcu_core_si (30 samples, 0.07%)</title><rect x="1181.7" y="1269" width="0.8" height="15.0" fill="rgb(206,61,28)" rx="2" ry="2" />
<text x="1184.72" y="1279.5" ></text>
</g>
<g >
<title>kmem_cache_free (7 samples, 0.02%)</title><rect x="965.3" y="1141" width="0.2" height="15.0" fill="rgb(222,161,14)" rx="2" ry="2" />
<text x="968.35" y="1151.5" ></text>
</g>
<g >
<title>rcu_core (14 samples, 0.03%)</title><rect x="1130.2" y="1125" width="0.4" height="15.0" fill="rgb(250,99,42)" rx="2" ry="2" />
<text x="1133.22" y="1135.5" ></text>
</g>
<g >
<title>file_free_rcu (18 samples, 0.04%)</title><rect x="1122.7" y="1125" width="0.5" height="15.0" fill="rgb(223,63,11)" rx="2" ry="2" />
<text x="1125.75" y="1135.5" ></text>
</g>
<g >
<title>do_group_exit (19 samples, 0.04%)</title><rect x="64.6" y="1461" width="0.5" height="15.0" fill="rgb(233,63,12)" rx="2" ry="2" />
<text x="67.61" y="1471.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (78 samples, 0.17%)</title><rect x="1077.5" y="1205" width="2.1" height="15.0" fill="rgb(231,140,7)" rx="2" ry="2" />
<text x="1080.52" y="1215.5" ></text>
</g>
<g >
<title>dequeue_task (77 samples, 0.17%)</title><rect x="861.0" y="1301" width="2.0" height="15.0" fill="rgb(223,94,20)" rx="2" ry="2" />
<text x="863.96" y="1311.5" ></text>
</g>
<g >
<title>__free_slab (4 samples, 0.01%)</title><rect x="1123.2" y="1013" width="0.2" height="15.0" fill="rgb(230,4,50)" rx="2" ry="2" />
<text x="1126.25" y="1023.5" ></text>
</g>
<g >
<title>lockref_put_return (28 samples, 0.06%)</title><rect x="1153.6" y="1317" width="0.7" height="15.0" fill="rgb(216,86,28)" rx="2" ry="2" />
<text x="1156.59" y="1327.5" ></text>
</g>
<g >
<title>rcu_core_si (525 samples, 1.16%)</title><rect x="1044.7" y="1189" width="13.8" height="15.0" fill="rgb(233,176,20)" rx="2" ry="2" />
<text x="1047.74" y="1199.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (9 samples, 0.02%)</title><rect x="1136.4" y="1237" width="0.2" height="15.0" fill="rgb(236,174,35)" rx="2" ry="2" />
<text x="1139.36" y="1247.5" ></text>
</g>
<g >
<title>irq_exit_rcu (30 samples, 0.07%)</title><rect x="1181.7" y="1317" width="0.8" height="15.0" fill="rgb(227,91,30)" rx="2" ry="2" />
<text x="1184.72" y="1327.5" ></text>
</g>
<g >
<title>rcu_core_si (14 samples, 0.03%)</title><rect x="1106.6" y="1173" width="0.4" height="15.0" fill="rgb(235,79,53)" rx="2" ry="2" />
<text x="1109.64" y="1183.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5 samples, 0.01%)</title><rect x="1189.6" y="1349" width="0.1" height="15.0" fill="rgb(220,16,4)" rx="2" ry="2" />
<text x="1192.58" y="1359.5" ></text>
</g>
<g >
<title>try_to_wake_up (1,955 samples, 4.33%)</title><rect x="987.3" y="1237" width="51.0" height="15.0" fill="rgb(230,214,3)" rx="2" ry="2" />
<text x="990.28" y="1247.5" >try_t..</text>
</g>
<g >
<title>try_charge_memcg (12 samples, 0.03%)</title><rect x="712.2" y="1093" width="0.4" height="15.0" fill="rgb(235,131,23)" rx="2" ry="2" />
<text x="715.25" y="1103.5" ></text>
</g>
<g >
<title>irq_exit_rcu (37 samples, 0.08%)</title><rect x="1144.8" y="1205" width="1.0" height="15.0" fill="rgb(220,137,5)" rx="2" ry="2" />
<text x="1147.79" y="1215.5" ></text>
</g>
<g >
<title>pick_next_task_fair (8 samples, 0.02%)</title><rect x="848.0" y="1269" width="0.2" height="15.0" fill="rgb(207,221,44)" rx="2" ry="2" />
<text x="850.95" y="1279.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (7 samples, 0.02%)</title><rect x="847.1" y="1301" width="0.1" height="15.0" fill="rgb(223,121,33)" rx="2" ry="2" />
<text x="850.06" y="1311.5" ></text>
</g>
<g >
<title>clear_page_erms (6 samples, 0.01%)</title><rect x="34.6" y="1157" width="0.1" height="15.0" fill="rgb(207,30,43)" rx="2" ry="2" />
<text x="37.58" y="1167.5" ></text>
</g>
<g >
<title>rcu_core_si (13 samples, 0.03%)</title><rect x="1122.4" y="1141" width="0.3" height="15.0" fill="rgb(223,20,39)" rx="2" ry="2" />
<text x="1125.36" y="1151.5" ></text>
</g>
<g >
<title>array_map_alloc_check (36 samples, 0.08%)</title><rect x="568.2" y="1205" width="0.9" height="15.0" fill="rgb(231,145,9)" rx="2" ry="2" />
<text x="571.16" y="1215.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (4 samples, 0.01%)</title><rect x="465.5" y="1061" width="0.1" height="15.0" fill="rgb(229,43,1)" rx="2" ry="2" />
<text x="468.53" y="1071.5" ></text>
</g>
<g >
<title>refill_obj_stock (4 samples, 0.01%)</title><rect x="955.1" y="1125" width="0.1" height="15.0" fill="rgb(252,112,20)" rx="2" ry="2" />
<text x="958.11" y="1135.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (4 samples, 0.01%)</title><rect x="30.7" y="1205" width="0.1" height="15.0" fill="rgb(215,147,40)" rx="2" ry="2" />
<text x="33.66" y="1215.5" ></text>
</g>
<g >
<title>kmem_cache_free (26 samples, 0.06%)</title><rect x="1080.3" y="1109" width="0.6" height="15.0" fill="rgb(209,188,8)" rx="2" ry="2" />
<text x="1083.26" y="1119.5" ></text>
</g>
<g >
<title>do_wp_page (32 samples, 0.07%)</title><rect x="462.8" y="1077" width="0.8" height="15.0" fill="rgb(228,182,18)" rx="2" ry="2" />
<text x="465.76" y="1087.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (19 samples, 0.04%)</title><rect x="1127.4" y="1237" width="0.5" height="15.0" fill="rgb(245,220,19)" rx="2" ry="2" />
<text x="1130.40" y="1247.5" ></text>
</g>
<g >
<title>sched_clock_cpu (134 samples, 0.30%)</title><rect x="1032.9" y="1205" width="3.5" height="15.0" fill="rgb(220,98,24)" rx="2" ry="2" />
<text x="1035.88" y="1215.5" ></text>
</g>
<g >
<title>do_anonymous_page (4 samples, 0.01%)</title><rect x="62.4" y="1301" width="0.1" height="15.0" fill="rgb(212,87,41)" rx="2" ry="2" />
<text x="65.44" y="1311.5" ></text>
</g>
<g >
<title>kick_process (6 samples, 0.01%)</title><rect x="838.8" y="1221" width="0.1" height="15.0" fill="rgb(243,56,35)" rx="2" ry="2" />
<text x="841.76" y="1231.5" ></text>
</g>
<g >
<title>inode_permission (4 samples, 0.01%)</title><rect x="26.9" y="1029" width="0.2" height="15.0" fill="rgb(208,52,38)" rx="2" ry="2" />
<text x="29.95" y="1039.5" ></text>
</g>
<g >
<title>vfs_rmdir (9 samples, 0.02%)</title><rect x="33.4" y="1237" width="0.2" height="15.0" fill="rgb(228,67,4)" rx="2" ry="2" />
<text x="36.40" y="1247.5" ></text>
</g>
<g >
<title>unmap_page_range (7 samples, 0.02%)</title><rect x="11.7" y="1269" width="0.2" height="15.0" fill="rgb(245,123,14)" rx="2" ry="2" />
<text x="14.75" y="1279.5" ></text>
</g>
<g >
<title>xas_descend (20 samples, 0.04%)</title><rect x="657.1" y="1061" width="0.5" height="15.0" fill="rgb(224,165,27)" rx="2" ry="2" />
<text x="660.06" y="1071.5" ></text>
</g>
<g >
<title>clear_page_erms (10 samples, 0.02%)</title><rect x="529.4" y="1093" width="0.2" height="15.0" fill="rgb(209,210,1)" rx="2" ry="2" />
<text x="532.38" y="1103.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (6 samples, 0.01%)</title><rect x="642.5" y="1093" width="0.1" height="15.0" fill="rgb(211,9,21)" rx="2" ry="2" />
<text x="645.47" y="1103.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.01%)</title><rect x="468.6" y="1189" width="0.2" height="15.0" fill="rgb(231,185,40)" rx="2" ry="2" />
<text x="471.63" y="1199.5" ></text>
</g>
<g >
<title>[vet] (119 samples, 0.26%)</title><rect x="1185.6" y="1221" width="3.1" height="15.0" fill="rgb(247,10,41)" rx="2" ry="2" />
<text x="1188.64" y="1231.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="763.6" y="1141" width="0.1" height="15.0" fill="rgb(245,27,23)" rx="2" ry="2" />
<text x="766.57" y="1151.5" ></text>
</g>
<g >
<title>prepare_task_switch (189 samples, 0.42%)</title><rect x="1092.8" y="1269" width="4.9" height="15.0" fill="rgb(205,12,27)" rx="2" ry="2" />
<text x="1095.77" y="1279.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (405 samples, 0.90%)</title><rect x="966.2" y="1269" width="10.6" height="15.0" fill="rgb(238,44,28)" rx="2" ry="2" />
<text x="969.18" y="1279.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5 samples, 0.01%)</title><rect x="459.6" y="1061" width="0.1" height="15.0" fill="rgb(250,78,15)" rx="2" ry="2" />
<text x="462.60" y="1071.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (101 samples, 0.22%)</title><rect x="1033.5" y="1157" width="2.6" height="15.0" fill="rgb(233,171,25)" rx="2" ry="2" />
<text x="1036.46" y="1167.5" ></text>
</g>
<g >
<title>__vmalloc_area_node (7 samples, 0.02%)</title><rect x="675.5" y="1077" width="0.2" height="15.0" fill="rgb(224,179,36)" rx="2" ry="2" />
<text x="678.50" y="1087.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (12 samples, 0.03%)</title><rect x="717.5" y="1173" width="0.3" height="15.0" fill="rgb(239,147,28)" rx="2" ry="2" />
<text x="720.50" y="1183.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (9 samples, 0.02%)</title><rect x="530.2" y="1253" width="0.2" height="15.0" fill="rgb(216,206,53)" rx="2" ry="2" />
<text x="533.19" y="1263.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (223 samples, 0.49%)</title><rect x="771.1" y="1157" width="5.8" height="15.0" fill="rgb(214,130,37)" rx="2" ry="2" />
<text x="774.06" y="1167.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4 samples, 0.01%)</title><rect x="1105.6" y="1237" width="0.1" height="15.0" fill="rgb(244,75,21)" rx="2" ry="2" />
<text x="1108.57" y="1247.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (43 samples, 0.10%)</title><rect x="41.6" y="1301" width="1.1" height="15.0" fill="rgb(252,173,34)" rx="2" ry="2" />
<text x="44.60" y="1311.5" ></text>
</g>
<g >
<title>[vet] (249 samples, 0.55%)</title><rect x="1183.2" y="1429" width="6.5" height="15.0" fill="rgb(254,153,14)" rx="2" ry="2" />
<text x="1186.21" y="1439.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (13 samples, 0.03%)</title><rect x="575.7" y="1189" width="0.4" height="15.0" fill="rgb(245,206,48)" rx="2" ry="2" />
<text x="578.74" y="1199.5" ></text>
</g>
<g >
<title>file_free_rcu (6 samples, 0.01%)</title><rect x="1136.6" y="1141" width="0.2" height="15.0" fill="rgb(226,213,2)" rx="2" ry="2" />
<text x="1139.62" y="1151.5" ></text>
</g>
<g >
<title>exc_page_fault (30 samples, 0.07%)</title><rect x="60.6" y="1349" width="0.8" height="15.0" fill="rgb(249,84,34)" rx="2" ry="2" />
<text x="63.61" y="1359.5" ></text>
</g>
<g >
<title>refill_obj_stock (5 samples, 0.01%)</title><rect x="1080.8" y="1077" width="0.1" height="15.0" fill="rgb(251,11,43)" rx="2" ry="2" />
<text x="1083.81" y="1087.5" ></text>
</g>
<g >
<title>record_times (4 samples, 0.01%)</title><rect x="1013.6" y="1157" width="0.1" height="15.0" fill="rgb(235,36,17)" rx="2" ry="2" />
<text x="1016.63" y="1167.5" ></text>
</g>
<g >
<title>handle_pte_fault (163 samples, 0.36%)</title><rect x="842.1" y="1301" width="4.3" height="15.0" fill="rgb(240,3,7)" rx="2" ry="2" />
<text x="845.13" y="1311.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (8 samples, 0.02%)</title><rect x="620.7" y="1045" width="0.2" height="15.0" fill="rgb(210,131,48)" rx="2" ry="2" />
<text x="623.71" y="1055.5" ></text>
</g>
<g >
<title>[go] (5 samples, 0.01%)</title><rect x="25.2" y="981" width="0.1" height="15.0" fill="rgb(238,212,29)" rx="2" ry="2" />
<text x="28.20" y="991.5" ></text>
</g>
<g >
<title>[go] (921 samples, 2.04%)</title><rect x="12.0" y="1461" width="24.1" height="15.0" fill="rgb(217,139,28)" rx="2" ry="2" />
<text x="15.01" y="1471.5" >[..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (24 samples, 0.05%)</title><rect x="33.1" y="1301" width="0.6" height="15.0" fill="rgb(231,46,21)" rx="2" ry="2" />
<text x="36.09" y="1311.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (5 samples, 0.01%)</title><rect x="767.7" y="1125" width="0.1" height="15.0" fill="rgb(224,189,11)" rx="2" ry="2" />
<text x="770.67" y="1135.5" ></text>
</g>
<g >
<title>_raw_spin_lock (60 samples, 0.13%)</title><rect x="1146.8" y="1301" width="1.5" height="15.0" fill="rgb(229,113,7)" rx="2" ry="2" />
<text x="1149.78" y="1311.5" ></text>
</g>
<g >
<title>__alloc_pages (12 samples, 0.03%)</title><rect x="837.1" y="1205" width="0.4" height="15.0" fill="rgb(249,98,2)" rx="2" ry="2" />
<text x="840.14" y="1215.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (5 samples, 0.01%)</title><rect x="931.9" y="1141" width="0.1" height="15.0" fill="rgb(223,75,54)" rx="2" ry="2" />
<text x="934.92" y="1151.5" ></text>
</g>
<g >
<title>clear_page_erms (6 samples, 0.01%)</title><rect x="675.5" y="1013" width="0.2" height="15.0" fill="rgb(237,15,34)" rx="2" ry="2" />
<text x="678.53" y="1023.5" ></text>
</g>
<g >
<title>_raw_spin_lock (14 samples, 0.03%)</title><rect x="1093.5" y="1237" width="0.3" height="15.0" fill="rgb(216,217,21)" rx="2" ry="2" />
<text x="1096.47" y="1247.5" ></text>
</g>
<g >
<title>rcu_core (9 samples, 0.02%)</title><rect x="1164.3" y="1189" width="0.2" height="15.0" fill="rgb(206,186,21)" rx="2" ry="2" />
<text x="1167.30" y="1199.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4 samples, 0.01%)</title><rect x="1150.3" y="1237" width="0.1" height="15.0" fill="rgb(226,164,26)" rx="2" ry="2" />
<text x="1153.33" y="1247.5" ></text>
</g>
<g >
<title>cache_from_obj (24 samples, 0.05%)</title><rect x="1174.1" y="1285" width="0.7" height="15.0" fill="rgb(229,124,6)" rx="2" ry="2" />
<text x="1177.15" y="1295.5" ></text>
</g>
<g >
<title>do_exit (19 samples, 0.04%)</title><rect x="64.6" y="1445" width="0.5" height="15.0" fill="rgb(206,130,49)" rx="2" ry="2" />
<text x="67.61" y="1455.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5 samples, 0.01%)</title><rect x="1149.2" y="1237" width="0.1" height="15.0" fill="rgb(249,210,20)" rx="2" ry="2" />
<text x="1152.21" y="1247.5" ></text>
</g>
<g >
<title>wp_page_copy (12 samples, 0.03%)</title><rect x="850.2" y="1285" width="0.4" height="15.0" fill="rgb(238,90,28)" rx="2" ry="2" />
<text x="853.25" y="1295.5" ></text>
</g>
<g >
<title>kmem_cache_free (12 samples, 0.03%)</title><rect x="1122.9" y="1109" width="0.3" height="15.0" fill="rgb(230,56,39)" rx="2" ry="2" />
<text x="1125.91" y="1119.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (14 samples, 0.03%)</title><rect x="1130.2" y="1173" width="0.4" height="15.0" fill="rgb(254,80,43)" rx="2" ry="2" />
<text x="1133.22" y="1183.5" ></text>
</g>
<g >
<title>bpf_check (6 samples, 0.01%)</title><rect x="468.6" y="1125" width="0.2" height="15.0" fill="rgb(213,20,48)" rx="2" ry="2" />
<text x="471.63" y="1135.5" ></text>
</g>
<g >
<title>[go] (23 samples, 0.05%)</title><rect x="24.9" y="1061" width="0.6" height="15.0" fill="rgb(249,100,44)" rx="2" ry="2" />
<text x="27.89" y="1071.5" ></text>
</g>
<g >
<title>mod_node_page_state (6 samples, 0.01%)</title><rect x="613.1" y="1045" width="0.1" height="15.0" fill="rgb(216,101,9)" rx="2" ry="2" />
<text x="616.08" y="1055.5" ></text>
</g>
<g >
<title>folio_add_lru (10 samples, 0.02%)</title><rect x="471.1" y="1109" width="0.3" height="15.0" fill="rgb(231,146,20)" rx="2" ry="2" />
<text x="474.11" y="1119.5" ></text>
</g>
<g >
<title>perf_ctx_enable (40 samples, 0.09%)</title><rect x="41.6" y="1269" width="1.0" height="15.0" fill="rgb(236,186,49)" rx="2" ry="2" />
<text x="44.60" y="1279.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4 samples, 0.01%)</title><rect x="61.1" y="1237" width="0.1" height="15.0" fill="rgb(229,145,44)" rx="2" ry="2" />
<text x="64.14" y="1247.5" ></text>
</g>
<g >
<title>file_free_rcu (21 samples, 0.05%)</title><rect x="1144.8" y="1109" width="0.6" height="15.0" fill="rgb(239,152,16)" rx="2" ry="2" />
<text x="1147.82" y="1119.5" ></text>
</g>
<g >
<title>[go] (61 samples, 0.14%)</title><rect x="41.4" y="1445" width="1.6" height="15.0" fill="rgb(220,78,18)" rx="2" ry="2" />
<text x="44.42" y="1455.5" ></text>
</g>
<g >
<title>do_group_exit (5 samples, 0.01%)</title><rect x="1189.8" y="1397" width="0.2" height="15.0" fill="rgb(238,1,20)" rx="2" ry="2" />
<text x="1192.84" y="1407.5" ></text>
</g>
<g >
<title>do_anonymous_page (12 samples, 0.03%)</title><rect x="464.9" y="1093" width="0.3" height="15.0" fill="rgb(205,125,32)" rx="2" ry="2" />
<text x="467.92" y="1103.5" ></text>
</g>
<g >
<title>[vet] (132 samples, 0.29%)</title><rect x="1185.4" y="1253" width="3.4" height="15.0" fill="rgb(236,225,1)" rx="2" ry="2" />
<text x="1188.38" y="1263.5" ></text>
</g>
<g >
<title>new_slab (244 samples, 0.54%)</title><rect x="634.3" y="1077" width="6.4" height="15.0" fill="rgb(207,105,2)" rx="2" ry="2" />
<text x="637.34" y="1087.5" ></text>
</g>
<g >
<title>__kmem_cache_free (7 samples, 0.02%)</title><rect x="1050.7" y="997" width="0.2" height="15.0" fill="rgb(229,21,36)" rx="2" ry="2" />
<text x="1053.69" y="1007.5" ></text>
</g>
<g >
<title>__folio_alloc (17 samples, 0.04%)</title><rect x="831.4" y="1173" width="0.5" height="15.0" fill="rgb(232,18,39)" rx="2" ry="2" />
<text x="834.45" y="1183.5" ></text>
</g>
<g >
<title>do_syscall_64 (13 samples, 0.03%)</title><rect x="1182.6" y="1477" width="0.3" height="15.0" fill="rgb(214,184,6)" rx="2" ry="2" />
<text x="1185.61" y="1487.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (10 samples, 0.02%)</title><rect x="930.6" y="1285" width="0.3" height="15.0" fill="rgb(226,134,20)" rx="2" ry="2" />
<text x="933.64" y="1295.5" ></text>
</g>
<g >
<title>do_epoll_pwait.part.0 (10 samples, 0.02%)</title><rect x="856.7" y="1349" width="0.3" height="15.0" fill="rgb(218,106,8)" rx="2" ry="2" />
<text x="859.73" y="1359.5" ></text>
</g>
<g >
<title>alloc_pages (29 samples, 0.06%)</title><rect x="598.2" y="1013" width="0.7" height="15.0" fill="rgb(224,185,54)" rx="2" ry="2" />
<text x="601.17" y="1023.5" ></text>
</g>
<g >
<title>rcu_do_batch (11 samples, 0.02%)</title><rect x="1173.2" y="1141" width="0.3" height="15.0" fill="rgb(209,197,22)" rx="2" ry="2" />
<text x="1176.23" y="1151.5" ></text>
</g>
<g >
<title>__rcu_read_lock (4 samples, 0.01%)</title><rect x="516.3" y="1141" width="0.2" height="15.0" fill="rgb(232,118,9)" rx="2" ry="2" />
<text x="519.35" y="1151.5" ></text>
</g>
<g >
<title>clear_page_erms (4 samples, 0.01%)</title><rect x="59.7" y="1141" width="0.1" height="15.0" fill="rgb(227,85,23)" rx="2" ry="2" />
<text x="62.70" y="1151.5" ></text>
</g>
<g >
<title>do_syscall_64 (10 samples, 0.02%)</title><rect x="832.5" y="1301" width="0.3" height="15.0" fill="rgb(215,162,16)" rx="2" ry="2" />
<text x="835.54" y="1311.5" ></text>
</g>
<g >
<title>__mmput (5 samples, 0.01%)</title><rect x="10.6" y="1333" width="0.2" height="15.0" fill="rgb(216,208,9)" rx="2" ry="2" />
<text x="13.63" y="1343.5" ></text>
</g>
<g >
<title>xa_load (116 samples, 0.26%)</title><rect x="654.0" y="1061" width="3.1" height="15.0" fill="rgb(231,153,34)" rx="2" ry="2" />
<text x="657.04" y="1071.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (5 samples, 0.01%)</title><rect x="471.4" y="1109" width="0.1" height="15.0" fill="rgb(212,94,24)" rx="2" ry="2" />
<text x="474.40" y="1119.5" ></text>
</g>
<g >
<title>[go] (414 samples, 0.92%)</title><rect x="20.3" y="1285" width="10.8" height="15.0" fill="rgb(205,76,8)" rx="2" ry="2" />
<text x="23.26" y="1295.5" ></text>
</g>
<g >
<title>[compile] (27 samples, 0.06%)</title><rect x="10.8" y="1445" width="0.7" height="15.0" fill="rgb(231,44,46)" rx="2" ry="2" />
<text x="13.81" y="1455.5" ></text>
</g>
<g >
<title>__d_alloc (1,276 samples, 2.82%)</title><rect x="627.1" y="1125" width="33.3" height="15.0" fill="rgb(231,186,51)" rx="2" ry="2" />
<text x="630.06" y="1135.5" >__..</text>
</g>
<g >
<title>__alloc_pages (173 samples, 0.38%)</title><rect x="634.6" y="1029" width="4.5" height="15.0" fill="rgb(206,221,1)" rx="2" ry="2" />
<text x="637.60" y="1039.5" ></text>
</g>
<g >
<title>getname_flags.part.0 (5 samples, 0.01%)</title><rect x="26.6" y="1077" width="0.1" height="15.0" fill="rgb(223,73,14)" rx="2" ry="2" />
<text x="29.58" y="1087.5" ></text>
</g>
<g >
<title>timerqueue_add (10 samples, 0.02%)</title><rect x="859.3" y="1285" width="0.3" height="15.0" fill="rgb(214,184,21)" rx="2" ry="2" />
<text x="862.31" y="1295.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4 samples, 0.01%)</title><rect x="1122.6" y="1093" width="0.1" height="15.0" fill="rgb(211,64,49)" rx="2" ry="2" />
<text x="1125.59" y="1103.5" ></text>
</g>
<g >
<title>consume_obj_stock (9 samples, 0.02%)</title><rect x="651.0" y="1077" width="0.2" height="15.0" fill="rgb(230,63,17)" rx="2" ry="2" />
<text x="654.01" y="1087.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (18 samples, 0.04%)</title><rect x="63.6" y="1429" width="0.5" height="15.0" fill="rgb(220,73,13)" rx="2" ry="2" />
<text x="66.59" y="1439.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (96 samples, 0.21%)</title><rect x="998.7" y="1221" width="2.6" height="15.0" fill="rgb(248,63,49)" rx="2" ry="2" />
<text x="1001.75" y="1231.5" ></text>
</g>
<g >
<title>[link] (14 samples, 0.03%)</title><rect x="57.8" y="1253" width="0.4" height="15.0" fill="rgb(234,79,34)" rx="2" ry="2" />
<text x="60.79" y="1263.5" ></text>
</g>
<g >
<title>__mutex_init (12 samples, 0.03%)</title><rect x="563.9" y="1205" width="0.3" height="15.0" fill="rgb(216,177,52)" rx="2" ry="2" />
<text x="566.93" y="1215.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (5 samples, 0.01%)</title><rect x="1148.3" y="1301" width="0.2" height="15.0" fill="rgb(226,19,50)" rx="2" ry="2" />
<text x="1151.34" y="1311.5" ></text>
</g>
<g >
<title>rmqueue_bulk (7 samples, 0.02%)</title><rect x="612.1" y="965" width="0.2" height="15.0" fill="rgb(251,128,11)" rx="2" ry="2" />
<text x="615.14" y="975.5" ></text>
</g>
<g >
<title>mas_walk (7 samples, 0.02%)</title><rect x="473.8" y="1173" width="0.1" height="15.0" fill="rgb(243,47,24)" rx="2" ry="2" />
<text x="476.75" y="1183.5" ></text>
</g>
<g >
<title>native_write_msr (46 samples, 0.10%)</title><rect x="1078.4" y="1189" width="1.2" height="15.0" fill="rgb(234,199,50)" rx="2" ry="2" />
<text x="1081.35" y="1199.5" ></text>
</g>
<g >
<title>cap_capable (24 samples, 0.05%)</title><rect x="732.3" y="1157" width="0.7" height="15.0" fill="rgb(249,2,2)" rx="2" ry="2" />
<text x="735.33" y="1167.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (80 samples, 0.18%)</title><rect x="963.1" y="1285" width="2.1" height="15.0" fill="rgb(226,201,21)" rx="2" ry="2" />
<text x="966.13" y="1295.5" ></text>
</g>
<g >
<title>[compile] (8 samples, 0.02%)</title><rect x="11.0" y="1349" width="0.2" height="15.0" fill="rgb(205,130,26)" rx="2" ry="2" />
<text x="14.02" y="1359.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (4 samples, 0.01%)</title><rect x="471.4" y="1093" width="0.1" height="15.0" fill="rgb(243,102,18)" rx="2" ry="2" />
<text x="474.43" y="1103.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (64 samples, 0.14%)</title><rect x="467.0" y="1205" width="1.6" height="15.0" fill="rgb(247,133,38)" rx="2" ry="2" />
<text x="469.96" y="1215.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="763.6" y="1125" width="0.1" height="15.0" fill="rgb(245,126,22)" rx="2" ry="2" />
<text x="766.57" y="1135.5" ></text>
</g>
<g >
<title>__fput (10,479 samples, 23.19%)</title><rect x="901.4" y="1333" width="273.7" height="15.0" fill="rgb(219,173,41)" rx="2" ry="2" />
<text x="904.41" y="1343.5" >__fput</text>
</g>
<g >
<title>irq_exit_rcu (4 samples, 0.01%)</title><rect x="33.0" y="1269" width="0.1" height="15.0" fill="rgb(211,40,52)" rx="2" ry="2" />
<text x="35.96" y="1279.5" ></text>
</g>
<g >
<title>rcu_core (15 samples, 0.03%)</title><rect x="921.5" y="1205" width="0.4" height="15.0" fill="rgb(249,184,12)" rx="2" ry="2" />
<text x="924.52" y="1215.5" ></text>
</g>
<g >
<title>__folio_alloc (4 samples, 0.01%)</title><rect x="460.2" y="1013" width="0.1" height="15.0" fill="rgb(247,126,31)" rx="2" ry="2" />
<text x="463.17" y="1023.5" ></text>
</g>
<g >
<title>idr_remove (422 samples, 0.93%)</title><rect x="965.7" y="1285" width="11.1" height="15.0" fill="rgb(213,155,28)" rx="2" ry="2" />
<text x="968.74" y="1295.5" ></text>
</g>
<g >
<title>free_unref_page_list (26 samples, 0.06%)</title><rect x="892.3" y="1157" width="0.7" height="15.0" fill="rgb(233,27,46)" rx="2" ry="2" />
<text x="895.32" y="1167.5" ></text>
</g>
<g >
<title>__do_softirq (72 samples, 0.16%)</title><rect x="930.9" y="1253" width="1.9" height="15.0" fill="rgb(249,38,53)" rx="2" ry="2" />
<text x="933.95" y="1263.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (6 samples, 0.01%)</title><rect x="612.8" y="997" width="0.2" height="15.0" fill="rgb(251,203,45)" rx="2" ry="2" />
<text x="615.80" y="1007.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (14 samples, 0.03%)</title><rect x="563.5" y="1189" width="0.4" height="15.0" fill="rgb(212,51,30)" rx="2" ry="2" />
<text x="566.49" y="1199.5" ></text>
</g>
<g >
<title>file_free_rcu (4 samples, 0.01%)</title><rect x="1102.4" y="1157" width="0.1" height="15.0" fill="rgb(239,157,30)" rx="2" ry="2" />
<text x="1105.43" y="1167.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (13 samples, 0.03%)</title><rect x="473.1" y="1045" width="0.4" height="15.0" fill="rgb(252,117,33)" rx="2" ry="2" />
<text x="476.13" y="1055.5" ></text>
</g>
<g >
<title>free_slab (56 samples, 0.12%)</title><rect x="1118.9" y="1189" width="1.5" height="15.0" fill="rgb(208,114,22)" rx="2" ry="2" />
<text x="1121.91" y="1199.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (4 samples, 0.01%)</title><rect x="865.8" y="1237" width="0.1" height="15.0" fill="rgb(245,197,34)" rx="2" ry="2" />
<text x="868.76" y="1247.5" ></text>
</g>
<g >
<title>__alloc_pages (101 samples, 0.22%)</title><rect x="843.6" y="1237" width="2.7" height="15.0" fill="rgb(238,126,48)" rx="2" ry="2" />
<text x="846.62" y="1247.5" ></text>
</g>
<g >
<title>vma_alloc_folio (7 samples, 0.02%)</title><rect x="60.2" y="1237" width="0.2" height="15.0" fill="rgb(231,212,28)" rx="2" ry="2" />
<text x="63.17" y="1247.5" ></text>
</g>
<g >
<title>[mapgauge.test] (459 samples, 1.02%)</title><rect x="449.5" y="1173" width="12.0" height="15.0" fill="rgb(209,38,38)" rx="2" ry="2" />
<text x="452.46" y="1183.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (4 samples, 0.01%)</title><rect x="869.7" y="1301" width="0.1" height="15.0" fill="rgb(232,98,50)" rx="2" ry="2" />
<text x="872.73" y="1311.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (4 samples, 0.01%)</title><rect x="34.7" y="1141" width="0.1" height="15.0" fill="rgb(237,222,35)" rx="2" ry="2" />
<text x="37.73" y="1151.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (7 samples, 0.02%)</title><rect x="850.8" y="1333" width="0.2" height="15.0" fill="rgb(205,203,6)" rx="2" ry="2" />
<text x="853.80" y="1343.5" ></text>
</g>
<g >
<title>[vet] (112 samples, 0.25%)</title><rect x="1185.8" y="1205" width="2.9" height="15.0" fill="rgb(214,21,28)" rx="2" ry="2" />
<text x="1188.80" y="1215.5" ></text>
</g>
<g >
<title>[mapgauge.test] (30,145 samples, 66.72%)</title><rect x="65.2" y="1509" width="787.2" height="15.0" fill="rgb(247,214,25)" rx="2" ry="2" />
<text x="68.16" y="1519.5" >[mapgauge.test]</text>
</g>
<g >
<title>[compile] (8 samples, 0.02%)</title><rect x="11.0" y="1365" width="0.2" height="15.0" fill="rgb(239,9,3)" rx="2" ry="2" />
<text x="14.02" y="1375.5" ></text>
</g>
<g >
<title>__do_softirq (526 samples, 1.16%)</title><rect x="1044.7" y="1205" width="13.8" height="15.0" fill="rgb(238,112,17)" rx="2" ry="2" />
<text x="1047.74" y="1215.5" ></text>
</g>
<g >
<title>rcu_core (5 samples, 0.01%)</title><rect x="1149.2" y="1189" width="0.1" height="15.0" fill="rgb(239,24,24)" rx="2" ry="2" />
<text x="1152.21" y="1199.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (15 samples, 0.03%)</title><rect x="469.4" y="1189" width="0.4" height="15.0" fill="rgb(244,38,34)" rx="2" ry="2" />
<text x="472.42" y="1199.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (10 samples, 0.02%)</title><rect x="620.7" y="1061" width="0.2" height="15.0" fill="rgb(238,108,1)" rx="2" ry="2" />
<text x="623.66" y="1071.5" ></text>
</g>
<g >
<title>handle_mm_fault (175 samples, 0.39%)</title><rect x="841.9" y="1333" width="4.5" height="15.0" fill="rgb(222,4,46)" rx="2" ry="2" />
<text x="844.87" y="1343.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (14 samples, 0.03%)</title><rect x="1157.2" y="1269" width="0.4" height="15.0" fill="rgb(226,114,16)" rx="2" ry="2" />
<text x="1160.25" y="1279.5" ></text>
</g>
<g >
<title>__x64_sys_newfstatat (5 samples, 0.01%)</title><rect x="25.7" y="1093" width="0.1" height="15.0" fill="rgb(216,214,19)" rx="2" ry="2" />
<text x="28.70" y="1103.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (4 samples, 0.01%)</title><rect x="635.0" y="997" width="0.2" height="15.0" fill="rgb(226,169,48)" rx="2" ry="2" />
<text x="638.05" y="1007.5" ></text>
</g>
<g >
<title>__irqentry_text_end (8 samples, 0.02%)</title><rect x="849.7" y="1397" width="0.2" height="15.0" fill="rgb(240,41,46)" rx="2" ry="2" />
<text x="852.67" y="1407.5" ></text>
</g>
<g >
<title>[go] (62 samples, 0.14%)</title><rect x="41.4" y="1477" width="1.6" height="15.0" fill="rgb(209,137,13)" rx="2" ry="2" />
<text x="44.42" y="1487.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (40 samples, 0.09%)</title><rect x="1031.6" y="1205" width="1.0" height="15.0" fill="rgb(240,4,52)" rx="2" ry="2" />
<text x="1034.60" y="1215.5" ></text>
</g>
<g >
<title>__update_load_avg_se (4 samples, 0.01%)</title><rect x="1084.4" y="1221" width="0.1" height="15.0" fill="rgb(221,7,39)" rx="2" ry="2" />
<text x="1087.41" y="1231.5" ></text>
</g>
<g >
<title>[vet] (41 samples, 0.09%)</title><rect x="1187.3" y="1029" width="1.1" height="15.0" fill="rgb(233,204,1)" rx="2" ry="2" />
<text x="1190.28" y="1039.5" ></text>
</g>
<g >
<title>wp_page_copy (29 samples, 0.06%)</title><rect x="467.6" y="1093" width="0.8" height="15.0" fill="rgb(228,134,36)" rx="2" ry="2" />
<text x="470.61" y="1103.5" ></text>
</g>
<g >
<title>btf_nested_type_is_trusted (5 samples, 0.01%)</title><rect x="468.7" y="1045" width="0.1" height="15.0" fill="rgb(226,181,15)" rx="2" ry="2" />
<text x="471.66" y="1055.5" ></text>
</g>
<g >
<title>_raw_spin_lock (282 samples, 0.62%)</title><rect x="991.2" y="1189" width="7.4" height="15.0" fill="rgb(242,20,19)" rx="2" ry="2" />
<text x="994.23" y="1199.5" ></text>
</g>
<g >
<title>exc_page_fault (148 samples, 0.33%)</title><rect x="470.5" y="1221" width="3.9" height="15.0" fill="rgb(229,85,15)" rx="2" ry="2" />
<text x="473.49" y="1231.5" ></text>
</g>
<g >
<title>setup_object (6 samples, 0.01%)</title><rect x="640.6" y="1029" width="0.1" height="15.0" fill="rgb(249,197,30)" rx="2" ry="2" />
<text x="643.56" y="1039.5" ></text>
</g>
<g >
<title>[vet] (20 samples, 0.04%)</title><rect x="1187.7" y="725" width="0.5" height="15.0" fill="rgb(210,109,17)" rx="2" ry="2" />
<text x="1190.70" y="735.5" ></text>
</g>
<g >
<title>path_openat (18 samples, 0.04%)</title><rect x="31.5" y="1205" width="0.5" height="15.0" fill="rgb(245,129,38)" rx="2" ry="2" />
<text x="34.55" y="1215.5" ></text>
</g>
<g >
<title>perf-exec (13 samples, 0.03%)</title><rect x="1182.6" y="1525" width="0.3" height="15.0" fill="rgb(225,15,32)" rx="2" ry="2" />
<text x="1185.61" y="1535.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (43 samples, 0.10%)</title><rect x="29.6" y="1269" width="1.2" height="15.0" fill="rgb(220,206,40)" rx="2" ry="2" />
<text x="32.64" y="1279.5" ></text>
</g>
<g >
<title>rcu_do_batch (23 samples, 0.05%)</title><rect x="1173.5" y="1173" width="0.6" height="15.0" fill="rgb(214,208,26)" rx="2" ry="2" />
<text x="1176.55" y="1183.5" ></text>
</g>
<g >
<title>rcu_do_batch (13 samples, 0.03%)</title><rect x="1122.4" y="1109" width="0.3" height="15.0" fill="rgb(231,40,3)" rx="2" ry="2" />
<text x="1125.36" y="1119.5" ></text>
</g>
<g >
<title>rcu_core (11 samples, 0.02%)</title><rect x="1118.4" y="1093" width="0.3" height="15.0" fill="rgb(212,78,25)" rx="2" ry="2" />
<text x="1121.39" y="1103.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (24 samples, 0.05%)</title><rect x="59.3" y="1333" width="0.7" height="15.0" fill="rgb(219,53,39)" rx="2" ry="2" />
<text x="62.33" y="1343.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (7 samples, 0.02%)</title><rect x="710.2" y="1061" width="0.2" height="15.0" fill="rgb(244,0,50)" rx="2" ry="2" />
<text x="713.24" y="1071.5" ></text>
</g>
<g >
<title>[vet] (4 samples, 0.01%)</title><rect x="1188.1" y="101" width="0.1" height="15.0" fill="rgb(218,153,46)" rx="2" ry="2" />
<text x="1191.09" y="111.5" ></text>
</g>
<g >
<title>copy_page_to_iter (8 samples, 0.02%)</title><rect x="32.2" y="1157" width="0.2" height="15.0" fill="rgb(243,205,27)" rx="2" ry="2" />
<text x="35.23" y="1167.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4 samples, 0.01%)</title><rect x="459.8" y="949" width="0.1" height="15.0" fill="rgb(251,55,54)" rx="2" ry="2" />
<text x="462.81" y="959.5" ></text>
</g>
<g >
<title>[asm] (13 samples, 0.03%)</title><rect x="10.1" y="1429" width="0.3" height="15.0" fill="rgb(217,49,0)" rx="2" ry="2" />
<text x="13.08" y="1439.5" ></text>
</g>
<g >
<title>__folio_alloc (4 samples, 0.01%)</title><rect x="61.1" y="1221" width="0.1" height="15.0" fill="rgb(234,133,26)" rx="2" ry="2" />
<text x="64.14" y="1231.5" ></text>
</g>
<g >
<title>rcu_core_si (4 samples, 0.01%)</title><rect x="1150.3" y="1205" width="0.1" height="15.0" fill="rgb(241,14,29)" rx="2" ry="2" />
<text x="1153.33" y="1215.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (4 samples, 0.01%)</title><rect x="530.1" y="1221" width="0.1" height="15.0" fill="rgb(228,131,14)" rx="2" ry="2" />
<text x="533.09" y="1231.5" ></text>
</g>
<g >
<title>__slab_free (10 samples, 0.02%)</title><rect x="964.4" y="1109" width="0.2" height="15.0" fill="rgb(209,30,49)" rx="2" ry="2" />
<text x="967.38" y="1119.5" ></text>
</g>
<g >
<title>seq_write (6 samples, 0.01%)</title><rect x="776.1" y="1109" width="0.2" height="15.0" fill="rgb(221,142,1)" rx="2" ry="2" />
<text x="779.13" y="1119.5" ></text>
</g>
<g >
<title>check_mem_access (5 samples, 0.01%)</title><rect x="468.7" y="1077" width="0.1" height="15.0" fill="rgb(221,110,33)" rx="2" ry="2" />
<text x="471.66" y="1087.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (74 samples, 0.16%)</title><rect x="592.0" y="1077" width="1.9" height="15.0" fill="rgb(225,71,46)" rx="2" ry="2" />
<text x="595.01" y="1087.5" ></text>
</g>
<g >
<title>filename_lookup (19 samples, 0.04%)</title><rect x="26.8" y="1077" width="0.5" height="15.0" fill="rgb(236,196,44)" rx="2" ry="2" />
<text x="29.77" y="1087.5" ></text>
</g>
<g >
<title>rcu_do_batch (4 samples, 0.01%)</title><rect x="1164.5" y="1189" width="0.1" height="15.0" fill="rgb(243,216,36)" rx="2" ry="2" />
<text x="1167.54" y="1199.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (22 samples, 0.05%)</title><rect x="1065.5" y="1269" width="0.6" height="15.0" fill="rgb(247,0,42)" rx="2" ry="2" />
<text x="1068.53" y="1279.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (7 samples, 0.02%)</title><rect x="985.8" y="1237" width="0.2" height="15.0" fill="rgb(244,75,33)" rx="2" ry="2" />
<text x="988.82" y="1247.5" ></text>
</g>
<g >
<title>update_process_times (6 samples, 0.01%)</title><rect x="1044.6" y="1157" width="0.1" height="15.0" fill="rgb(226,30,36)" rx="2" ry="2" />
<text x="1047.58" y="1167.5" ></text>
</g>
<g >
<title>[link] (5 samples, 0.01%)</title><rect x="57.8" y="1221" width="0.2" height="15.0" fill="rgb(244,214,7)" rx="2" ry="2" />
<text x="60.82" y="1231.5" ></text>
</g>
<g >
<title>do_user_addr_fault (23 samples, 0.05%)</title><rect x="59.3" y="1301" width="0.6" height="15.0" fill="rgb(206,143,39)" rx="2" ry="2" />
<text x="62.33" y="1311.5" ></text>
</g>
<g >
<title>[mapgauge.test] (31 samples, 0.07%)</title><rect x="458.6" y="1109" width="0.8" height="15.0" fill="rgb(231,190,46)" rx="2" ry="2" />
<text x="461.58" y="1119.5" ></text>
</g>
<g >
<title>schedule (55 samples, 0.12%)</title><rect x="41.5" y="1333" width="1.4" height="15.0" fill="rgb(241,55,39)" rx="2" ry="2" />
<text x="44.50" y="1343.5" ></text>
</g>
<g >
<title>_find_next_zero_bit (100 samples, 0.22%)</title><rect x="670.1" y="1157" width="2.6" height="15.0" fill="rgb(221,12,43)" rx="2" ry="2" />
<text x="673.07" y="1167.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (14 samples, 0.03%)</title><rect x="856.6" y="1397" width="0.4" height="15.0" fill="rgb(236,156,41)" rx="2" ry="2" />
<text x="859.65" y="1407.5" ></text>
</g>
<g >
<title>put_prev_task_fair (4 samples, 0.01%)</title><rect x="871.9" y="1269" width="0.1" height="15.0" fill="rgb(254,212,27)" rx="2" ry="2" />
<text x="874.87" y="1279.5" ></text>
</g>
<g >
<title>[vet] (17 samples, 0.04%)</title><rect x="1187.8" y="597" width="0.4" height="15.0" fill="rgb(253,93,47)" rx="2" ry="2" />
<text x="1190.75" y="607.5" ></text>
</g>
<g >
<title>rcu_core (525 samples, 1.16%)</title><rect x="1044.7" y="1173" width="13.8" height="15.0" fill="rgb(243,62,46)" rx="2" ry="2" />
<text x="1047.74" y="1183.5" ></text>
</g>
<g >
<title>get_page_from_freelist (27 samples, 0.06%)</title><rect x="598.2" y="981" width="0.7" height="15.0" fill="rgb(226,83,38)" rx="2" ry="2" />
<text x="601.17" y="991.5" ></text>
</g>
<g >
<title>clear_page_erms (140 samples, 0.31%)</title><rect x="635.2" y="997" width="3.6" height="15.0" fill="rgb(241,119,18)" rx="2" ry="2" />
<text x="638.15" y="1007.5" ></text>
</g>
<g >
<title>[mapgauge.test] (30,137 samples, 66.70%)</title><rect x="65.2" y="1461" width="787.1" height="15.0" fill="rgb(213,205,32)" rx="2" ry="2" />
<text x="68.24" y="1471.5" >[mapgauge.test]</text>
</g>
<g >
<title>[compile] (5 samples, 0.01%)</title><rect x="11.0" y="1301" width="0.1" height="15.0" fill="rgb(240,141,1)" rx="2" ry="2" />
<text x="14.02" y="1311.5" ></text>
</g>
<g >
<title>do_anonymous_page (4 samples, 0.01%)</title><rect x="1189.6" y="1317" width="0.1" height="15.0" fill="rgb(237,180,13)" rx="2" ry="2" />
<text x="1192.58" y="1327.5" ></text>
</g>
<g >
<title>__dentry_kill (7 samples, 0.02%)</title><rect x="920.7" y="1317" width="0.1" height="15.0" fill="rgb(235,88,17)" rx="2" ry="2" />
<text x="923.66" y="1327.5" ></text>
</g>
<g >
<title>[go] (562 samples, 1.24%)</title><rect x="19.0" y="1317" width="14.7" height="15.0" fill="rgb(208,5,45)" rx="2" ry="2" />
<text x="22.04" y="1327.5" ></text>
</g>
<g >
<title>alloc_file (1,713 samples, 3.79%)</title><rect x="582.2" y="1141" width="44.7" height="15.0" fill="rgb(222,6,46)" rx="2" ry="2" />
<text x="585.16" y="1151.5" >allo..</text>
</g>
<g >
<title>flush_tlb_func (5 samples, 0.01%)</title><rect x="851.3" y="1317" width="0.1" height="15.0" fill="rgb(222,198,48)" rx="2" ry="2" />
<text x="854.27" y="1327.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6 samples, 0.01%)</title><rect x="1189.6" y="1413" width="0.1" height="15.0" fill="rgb(208,163,6)" rx="2" ry="2" />
<text x="1192.56" y="1423.5" ></text>
</g>
<g >
<title>vfs_fstatat (9 samples, 0.02%)</title><rect x="31.3" y="1221" width="0.2" height="15.0" fill="rgb(254,197,41)" rx="2" ry="2" />
<text x="34.29" y="1231.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5 samples, 0.01%)</title><rect x="877.4" y="1333" width="0.1" height="15.0" fill="rgb(247,208,10)" rx="2" ry="2" />
<text x="880.36" y="1343.5" ></text>
</g>
<g >
<title>__x64_sys_epoll_pwait (10 samples, 0.02%)</title><rect x="856.7" y="1365" width="0.3" height="15.0" fill="rgb(238,163,28)" rx="2" ry="2" />
<text x="859.73" y="1375.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (11 samples, 0.02%)</title><rect x="1136.6" y="1269" width="0.3" height="15.0" fill="rgb(231,192,39)" rx="2" ry="2" />
<text x="1139.59" y="1279.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (14 samples, 0.03%)</title><rect x="1157.2" y="1285" width="0.4" height="15.0" fill="rgb(251,84,11)" rx="2" ry="2" />
<text x="1160.25" y="1295.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (4 samples, 0.01%)</title><rect x="622.4" y="1029" width="0.1" height="15.0" fill="rgb(250,179,53)" rx="2" ry="2" />
<text x="625.41" y="1039.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (55 samples, 0.12%)</title><rect x="41.5" y="1365" width="1.4" height="15.0" fill="rgb(249,117,43)" rx="2" ry="2" />
<text x="44.50" y="1375.5" ></text>
</g>
<g >
<title>walk_component (4 samples, 0.01%)</title><rect x="27.1" y="1029" width="0.1" height="15.0" fill="rgb(251,39,39)" rx="2" ry="2" />
<text x="30.08" y="1039.5" ></text>
</g>
<g >
<title>bpf_seq_read (978 samples, 2.16%)</title><rect x="751.9" y="1189" width="25.5" height="15.0" fill="rgb(254,55,27)" rx="2" ry="2" />
<text x="754.89" y="1199.5" >b..</text>
</g>
<g >
<title>[go] (6 samples, 0.01%)</title><rect x="43.9" y="1461" width="0.2" height="15.0" fill="rgb(214,206,44)" rx="2" ry="2" />
<text x="46.90" y="1471.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5 samples, 0.01%)</title><rect x="934.3" y="1285" width="0.1" height="15.0" fill="rgb(223,8,2)" rx="2" ry="2" />
<text x="937.29" y="1295.5" ></text>
</g>
<g >
<title>__folio_alloc (73 samples, 0.16%)</title><rect x="471.6" y="1109" width="1.9" height="15.0" fill="rgb(246,29,18)" rx="2" ry="2" />
<text x="474.61" y="1119.5" ></text>
</g>
<g >
<title>__mod_memcg_state (9 samples, 0.02%)</title><rect x="1131.0" y="1173" width="0.2" height="15.0" fill="rgb(227,24,23)" rx="2" ry="2" />
<text x="1133.95" y="1183.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (26 samples, 0.06%)</title><rect x="846.6" y="1333" width="0.6" height="15.0" fill="rgb(230,91,32)" rx="2" ry="2" />
<text x="849.57" y="1343.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (27 samples, 0.06%)</title><rect x="803.4" y="1253" width="0.8" height="15.0" fill="rgb(230,120,49)" rx="2" ry="2" />
<text x="806.45" y="1263.5" ></text>
</g>
<g >
<title>__folio_alloc (6 samples, 0.01%)</title><rect x="60.7" y="1237" width="0.1" height="15.0" fill="rgb(213,141,9)" rx="2" ry="2" />
<text x="63.69" y="1247.5" ></text>
</g>
<g >
<title>rcu_core_si (10 samples, 0.02%)</title><rect x="1170.8" y="1189" width="0.2" height="15.0" fill="rgb(227,131,51)" rx="2" ry="2" />
<text x="1173.78" y="1199.5" ></text>
</g>
<g >
<title>__do_softirq (14 samples, 0.03%)</title><rect x="1130.2" y="1157" width="0.4" height="15.0" fill="rgb(239,214,18)" rx="2" ry="2" />
<text x="1133.22" y="1167.5" ></text>
</g>
<g >
<title>__get_random_u32_below (11 samples, 0.02%)</title><rect x="614.0" y="1029" width="0.3" height="15.0" fill="rgb(246,174,30)" rx="2" ry="2" />
<text x="617.02" y="1039.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (8 samples, 0.02%)</title><rect x="924.7" y="1253" width="0.2" height="15.0" fill="rgb(245,137,35)" rx="2" ry="2" />
<text x="927.66" y="1263.5" ></text>
</g>
<g >
<title>handle_mm_fault (19 samples, 0.04%)</title><rect x="34.4" y="1285" width="0.5" height="15.0" fill="rgb(227,33,4)" rx="2" ry="2" />
<text x="37.39" y="1295.5" ></text>
</g>
<g >
<title>irq_exit_rcu (526 samples, 1.16%)</title><rect x="1044.7" y="1237" width="13.8" height="15.0" fill="rgb(216,29,16)" rx="2" ry="2" />
<text x="1047.74" y="1247.5" ></text>
</g>
<g >
<title>[asm] (20 samples, 0.04%)</title><rect x="10.0" y="1493" width="0.5" height="15.0" fill="rgb(252,214,45)" rx="2" ry="2" />
<text x="13.00" y="1503.5" ></text>
</g>
<g >
<title>smp_call_function_many_cond (7 samples, 0.02%)</title><rect x="850.4" y="1205" width="0.2" height="15.0" fill="rgb(212,64,19)" rx="2" ry="2" />
<text x="853.38" y="1215.5" ></text>
</g>
<g >
<title>pick_next_task (429 samples, 0.95%)</title><rect x="1081.5" y="1269" width="11.2" height="15.0" fill="rgb(237,116,27)" rx="2" ry="2" />
<text x="1084.54" y="1279.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.03%)</title><rect x="26.0" y="1157" width="0.3" height="15.0" fill="rgb(242,20,49)" rx="2" ry="2" />
<text x="28.96" y="1167.5" ></text>
</g>
<g >
<title>__do_softirq (35 samples, 0.08%)</title><rect x="1122.7" y="1189" width="0.9" height="15.0" fill="rgb(232,60,3)" rx="2" ry="2" />
<text x="1125.70" y="1199.5" ></text>
</g>
<g >
<title>psi_group_change (22 samples, 0.05%)</title><rect x="865.2" y="1285" width="0.5" height="15.0" fill="rgb(253,185,47)" rx="2" ry="2" />
<text x="868.16" y="1295.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (11,765 samples, 26.04%)</title><rect x="875.3" y="1509" width="307.2" height="15.0" fill="rgb(236,105,44)" rx="2" ry="2" />
<text x="878.27" y="1519.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>do_group_exit (11,754 samples, 26.01%)</title><rect x="875.6" y="1397" width="306.9" height="15.0" fill="rgb(221,218,1)" rx="2" ry="2" />
<text x="878.56" y="1407.5" >do_group_exit</text>
</g>
<g >
<title>rcu_core_si (5 samples, 0.01%)</title><rect x="877.4" y="1269" width="0.1" height="15.0" fill="rgb(254,152,2)" rx="2" ry="2" />
<text x="880.36" y="1279.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (50 samples, 0.11%)</title><rect x="954.3" y="1301" width="1.3" height="15.0" fill="rgb(236,202,1)" rx="2" ry="2" />
<text x="957.27" y="1311.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (9 samples, 0.02%)</title><rect x="872.7" y="1365" width="0.3" height="15.0" fill="rgb(240,111,14)" rx="2" ry="2" />
<text x="875.74" y="1375.5" ></text>
</g>
<g >
<title>dentry_free (1,036 samples, 2.29%)</title><rect x="1105.9" y="1285" width="27.1" height="15.0" fill="rgb(253,182,15)" rx="2" ry="2" />
<text x="1108.93" y="1295.5" >d..</text>
</g>
<g >
<title>_raw_spin_lock (29 samples, 0.06%)</title><rect x="983.9" y="1253" width="0.7" height="15.0" fill="rgb(247,193,16)" rx="2" ry="2" />
<text x="986.89" y="1263.5" ></text>
</g>
<g >
<title>__handle_mm_fault (9 samples, 0.02%)</title><rect x="63.0" y="1349" width="0.2" height="15.0" fill="rgb(242,25,18)" rx="2" ry="2" />
<text x="65.99" y="1359.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (12 samples, 0.03%)</title><rect x="1174.8" y="1285" width="0.3" height="15.0" fill="rgb(217,7,2)" rx="2" ry="2" />
<text x="1177.77" y="1295.5" ></text>
</g>
<g >
<title>__handle_mm_fault (19 samples, 0.04%)</title><rect x="61.7" y="1317" width="0.5" height="15.0" fill="rgb(205,25,3)" rx="2" ry="2" />
<text x="64.68" y="1327.5" ></text>
</g>
<g >
<title>begin_new_exec (12 samples, 0.03%)</title><rect x="1182.6" y="1349" width="0.3" height="15.0" fill="rgb(234,116,5)" rx="2" ry="2" />
<text x="1185.61" y="1359.5" ></text>
</g>
<g >
<title>vma_alloc_folio (19 samples, 0.04%)</title><rect x="831.4" y="1189" width="0.5" height="15.0" fill="rgb(238,124,11)" rx="2" ry="2" />
<text x="834.39" y="1199.5" ></text>
</g>
<g >
<title>get_signal (8 samples, 0.02%)</title><rect x="11.7" y="1413" width="0.2" height="15.0" fill="rgb(246,136,12)" rx="2" ry="2" />
<text x="14.72" y="1423.5" ></text>
</g>
<g >
<title>rcu_core_si (4 samples, 0.01%)</title><rect x="1164.5" y="1221" width="0.1" height="15.0" fill="rgb(218,144,38)" rx="2" ry="2" />
<text x="1167.54" y="1231.5" ></text>
</g>
<g >
<title>__do_softirq (14 samples, 0.03%)</title><rect x="1157.2" y="1221" width="0.4" height="15.0" fill="rgb(220,11,35)" rx="2" ry="2" />
<text x="1160.25" y="1231.5" ></text>
</g>
<g >
<title>__sys_bpf (4 samples, 0.01%)</title><rect x="875.3" y="1461" width="0.1" height="15.0" fill="rgb(248,205,43)" rx="2" ry="2" />
<text x="878.27" y="1471.5" ></text>
</g>
<g >
<title>do_anonymous_page (4 samples, 0.01%)</title><rect x="460.2" y="1045" width="0.1" height="15.0" fill="rgb(252,71,22)" rx="2" ry="2" />
<text x="463.17" y="1055.5" ></text>
</g>
<g >
<title>vma_alloc_folio (11 samples, 0.02%)</title><rect x="34.5" y="1221" width="0.3" height="15.0" fill="rgb(231,36,8)" rx="2" ry="2" />
<text x="37.55" y="1231.5" ></text>
</g>
<g >
<title>__do_softirq (4 samples, 0.01%)</title><rect x="1105.6" y="1205" width="0.1" height="15.0" fill="rgb(210,229,34)" rx="2" ry="2" />
<text x="1108.57" y="1215.5" ></text>
</g>
<g >
<title>rcu_core_si (9 samples, 0.02%)</title><rect x="1148.5" y="1221" width="0.2" height="15.0" fill="rgb(229,81,48)" rx="2" ry="2" />
<text x="1151.47" y="1231.5" ></text>
</g>
<g >
<title>do_madvise (7 samples, 0.02%)</title><rect x="459.7" y="1077" width="0.2" height="15.0" fill="rgb(247,3,44)" rx="2" ry="2" />
<text x="462.73" y="1087.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (36 samples, 0.08%)</title><rect x="831.2" y="1301" width="0.9" height="15.0" fill="rgb(242,166,24)" rx="2" ry="2" />
<text x="834.16" y="1311.5" ></text>
</g>
<g >
<title>[link] (762 samples, 1.69%)</title><rect x="44.4" y="1509" width="19.9" height="15.0" fill="rgb(232,108,33)" rx="2" ry="2" />
<text x="47.45" y="1519.5" ></text>
</g>
<g >
<title>__do_softirq (11 samples, 0.02%)</title><rect x="1118.4" y="1125" width="0.3" height="15.0" fill="rgb(246,94,36)" rx="2" ry="2" />
<text x="1121.39" y="1135.5" ></text>
</g>
<g >
<title>path_openat (5 samples, 0.01%)</title><rect x="33.2" y="1221" width="0.1" height="15.0" fill="rgb(216,201,18)" rx="2" ry="2" />
<text x="36.19" y="1231.5" ></text>
</g>
<g >
<title>do_wp_page (14 samples, 0.03%)</title><rect x="60.9" y="1269" width="0.3" height="15.0" fill="rgb(207,39,2)" rx="2" ry="2" />
<text x="63.88" y="1279.5" ></text>
</g>
<g >
<title>mntput_no_expire (6 samples, 0.01%)</title><rect x="1157.6" y="1317" width="0.2" height="15.0" fill="rgb(211,183,49)" rx="2" ry="2" />
<text x="1160.62" y="1327.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (20 samples, 0.04%)</title><rect x="34.4" y="1333" width="0.5" height="15.0" fill="rgb(243,147,15)" rx="2" ry="2" />
<text x="37.39" y="1343.5" ></text>
</g>
<g >
<title>__handle_mm_fault (20 samples, 0.04%)</title><rect x="59.3" y="1269" width="0.6" height="15.0" fill="rgb(229,5,52)" rx="2" ry="2" />
<text x="62.33" y="1279.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (13 samples, 0.03%)</title><rect x="43.3" y="1365" width="0.4" height="15.0" fill="rgb(244,7,50)" rx="2" ry="2" />
<text x="46.32" y="1375.5" ></text>
</g>
<g >
<title>do_fault (13 samples, 0.03%)</title><rect x="63.7" y="1333" width="0.3" height="15.0" fill="rgb(239,111,25)" rx="2" ry="2" />
<text x="66.67" y="1343.5" ></text>
</g>
<g >
<title>bpf_map_release (4,613 samples, 10.21%)</title><rect x="940.9" y="1317" width="120.5" height="15.0" fill="rgb(225,119,35)" rx="2" ry="2" />
<text x="943.90" y="1327.5" >bpf_map_release</text>
</g>
<g >
<title>vma_alloc_folio (4 samples, 0.01%)</title><rect x="460.2" y="1029" width="0.1" height="15.0" fill="rgb(216,43,34)" rx="2" ry="2" />
<text x="463.17" y="1039.5" ></text>
</g>
<g >
<title>[vet] (66 samples, 0.15%)</title><rect x="1186.8" y="1125" width="1.8" height="15.0" fill="rgb(214,223,40)" rx="2" ry="2" />
<text x="1189.84" y="1135.5" ></text>
</g>
<g >
<title>[vet] (226 samples, 0.50%)</title><rect x="1183.7" y="1413" width="5.9" height="15.0" fill="rgb(215,164,35)" rx="2" ry="2" />
<text x="1186.65" y="1423.5" ></text>
</g>
<g >
<title>rcu_note_context_switch (6 samples, 0.01%)</title><rect x="1102.2" y="1269" width="0.1" height="15.0" fill="rgb(205,65,12)" rx="2" ry="2" />
<text x="1105.17" y="1279.5" ></text>
</g>
<g >
<title>file_free_rcu (4 samples, 0.01%)</title><rect x="920.7" y="1173" width="0.1" height="15.0" fill="rgb(214,118,47)" rx="2" ry="2" />
<text x="923.74" y="1183.5" ></text>
</g>
<g >
<title>unmap_single_vma (6 samples, 0.01%)</title><rect x="44.3" y="1285" width="0.1" height="15.0" fill="rgb(216,204,8)" rx="2" ry="2" />
<text x="47.26" y="1295.5" ></text>
</g>
<g >
<title>ondemand_readahead (5 samples, 0.01%)</title><rect x="63.7" y="1269" width="0.1" height="15.0" fill="rgb(252,49,49)" rx="2" ry="2" />
<text x="66.70" y="1279.5" ></text>
</g>
<g >
<title>update_blocked_averages (8 samples, 0.02%)</title><rect x="864.2" y="1253" width="0.2" height="15.0" fill="rgb(237,186,51)" rx="2" ry="2" />
<text x="867.17" y="1263.5" ></text>
</g>
<g >
<title>__radix_tree_preload (20 samples, 0.04%)</title><rect x="745.7" y="1173" width="0.5" height="15.0" fill="rgb(241,82,21)" rx="2" ry="2" />
<text x="748.65" y="1183.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (51 samples, 0.11%)</title><rect x="963.9" y="1221" width="1.3" height="15.0" fill="rgb(214,37,52)" rx="2" ry="2" />
<text x="966.88" y="1231.5" ></text>
</g>
<g >
<title>page_cache_async_ra (5 samples, 0.01%)</title><rect x="63.7" y="1285" width="0.1" height="15.0" fill="rgb(247,147,4)" rx="2" ry="2" />
<text x="66.70" y="1295.5" ></text>
</g>
<g >
<title>__folio_alloc (11 samples, 0.02%)</title><rect x="466.1" y="1045" width="0.3" height="15.0" fill="rgb(232,27,23)" rx="2" ry="2" />
<text x="469.07" y="1055.5" ></text>
</g>
<g >
<title>do_wp_page (6 samples, 0.01%)</title><rect x="529.9" y="1173" width="0.1" height="15.0" fill="rgb(232,129,3)" rx="2" ry="2" />
<text x="532.85" y="1183.5" ></text>
</g>
<g >
<title>filemap_read (15 samples, 0.03%)</title><rect x="32.2" y="1173" width="0.4" height="15.0" fill="rgb(205,212,20)" rx="2" ry="2" />
<text x="35.23" y="1183.5" ></text>
</g>
<g >
<title>perf_ctx_enable (116 samples, 0.26%)</title><rect x="1076.5" y="1237" width="3.1" height="15.0" fill="rgb(226,77,29)" rx="2" ry="2" />
<text x="1079.52" y="1247.5" ></text>
</g>
<g >
<title>security_file_free (564 samples, 1.25%)</title><rect x="1160.4" y="1317" width="14.7" height="15.0" fill="rgb(213,13,3)" rx="2" ry="2" />
<text x="1163.36" y="1327.5" ></text>
</g>
<g >
<title>ext4_mb_new_blocks (4 samples, 0.01%)</title><rect x="34.1" y="1125" width="0.1" height="15.0" fill="rgb(249,24,39)" rx="2" ry="2" />
<text x="37.08" y="1135.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (22 samples, 0.05%)</title><rect x="1065.5" y="1237" width="0.6" height="15.0" fill="rgb(234,162,28)" rx="2" ry="2" />
<text x="1068.53" y="1247.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4 samples, 0.01%)</title><rect x="1148.2" y="1157" width="0.1" height="15.0" fill="rgb(215,154,51)" rx="2" ry="2" />
<text x="1151.24" y="1167.5" ></text>
</g>
<g >
<title>handle_mm_fault (28 samples, 0.06%)</title><rect x="849.9" y="1349" width="0.7" height="15.0" fill="rgb(212,185,53)" rx="2" ry="2" />
<text x="852.88" y="1359.5" ></text>
</g>
<g >
<title>memcpy_orig (22 samples, 0.05%)</title><rect x="524.9" y="1093" width="0.6" height="15.0" fill="rgb(213,115,43)" rx="2" ry="2" />
<text x="527.89" y="1103.5" ></text>
</g>
<g >
<title>do_futex (14 samples, 0.03%)</title><rect x="854.3" y="1301" width="0.4" height="15.0" fill="rgb(225,55,20)" rx="2" ry="2" />
<text x="857.32" y="1311.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5 samples, 0.01%)</title><rect x="36.1" y="1461" width="0.1" height="15.0" fill="rgb(218,133,53)" rx="2" ry="2" />
<text x="39.06" y="1471.5" ></text>
</g>
<g >
<title>__rcu_read_lock (30 samples, 0.07%)</title><rect x="1106.2" y="1269" width="0.8" height="15.0" fill="rgb(225,107,20)" rx="2" ry="2" />
<text x="1109.22" y="1279.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (14 samples, 0.03%)</title><rect x="1122.3" y="1221" width="0.4" height="15.0" fill="rgb(206,30,6)" rx="2" ry="2" />
<text x="1125.33" y="1231.5" ></text>
</g>
<g >
<title>[vet] (12 samples, 0.03%)</title><rect x="1187.9" y="389" width="0.3" height="15.0" fill="rgb(218,63,53)" rx="2" ry="2" />
<text x="1190.88" y="399.5" ></text>
</g>
<g >
<title>[vet] (85 samples, 0.19%)</title><rect x="1186.4" y="1157" width="2.3" height="15.0" fill="rgb(250,10,37)" rx="2" ry="2" />
<text x="1189.45" y="1167.5" ></text>
</g>
<g >
<title>pick_next_entity (4 samples, 0.01%)</title><rect x="1081.7" y="1253" width="0.1" height="15.0" fill="rgb(243,103,37)" rx="2" ry="2" />
<text x="1084.67" y="1263.5" ></text>
</g>
<g >
<title>do_user_addr_fault (4 samples, 0.01%)</title><rect x="832.3" y="1285" width="0.1" height="15.0" fill="rgb(251,104,39)" rx="2" ry="2" />
<text x="835.33" y="1295.5" ></text>
</g>
<g >
<title>do_anonymous_page (13 samples, 0.03%)</title><rect x="61.7" y="1285" width="0.3" height="15.0" fill="rgb(239,220,25)" rx="2" ry="2" />
<text x="64.68" y="1295.5" ></text>
</g>
<g >
<title>memset_orig (7 samples, 0.02%)</title><rect x="639.6" y="1013" width="0.1" height="15.0" fill="rgb(222,97,17)" rx="2" ry="2" />
<text x="642.57" y="1023.5" ></text>
</g>
<g >
<title>hrtimer_start_range_ns (51 samples, 0.11%)</title><rect x="859.2" y="1333" width="1.3" height="15.0" fill="rgb(225,186,48)" rx="2" ry="2" />
<text x="862.21" y="1343.5" ></text>
</g>
<g >
<title>rcu_core (71 samples, 0.16%)</title><rect x="930.9" y="1221" width="1.9" height="15.0" fill="rgb(240,37,21)" rx="2" ry="2" />
<text x="933.95" y="1231.5" ></text>
</g>
<g >
<title>alloc_file_pseudo (3,312 samples, 7.33%)</title><rect x="579.6" y="1157" width="86.5" height="15.0" fill="rgb(253,98,19)" rx="2" ry="2" />
<text x="582.60" y="1167.5" >alloc_file..</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5 samples, 0.01%)</title><rect x="877.4" y="1349" width="0.1" height="15.0" fill="rgb(239,61,17)" rx="2" ry="2" />
<text x="880.36" y="1359.5" ></text>
</g>
<g >
<title>__schedule (53 samples, 0.12%)</title><rect x="41.5" y="1317" width="1.4" height="15.0" fill="rgb(219,197,25)" rx="2" ry="2" />
<text x="44.52" y="1327.5" ></text>
</g>
<g >
<title>__alloc_pages (4 samples, 0.01%)</title><rect x="459.8" y="965" width="0.1" height="15.0" fill="rgb(237,46,47)" rx="2" ry="2" />
<text x="462.81" y="975.5" ></text>
</g>
<g >
<title>[go] (4 samples, 0.01%)</title><rect x="43.7" y="1429" width="0.1" height="15.0" fill="rgb(236,197,18)" rx="2" ry="2" />
<text x="46.66" y="1439.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (22 samples, 0.05%)</title><rect x="1065.5" y="1285" width="0.6" height="15.0" fill="rgb(254,80,31)" rx="2" ry="2" />
<text x="1068.53" y="1295.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (6 samples, 0.01%)</title><rect x="831.9" y="1253" width="0.2" height="15.0" fill="rgb(249,33,31)" rx="2" ry="2" />
<text x="834.94" y="1263.5" ></text>
</g>
<g >
<title>_raw_spin_lock (8 samples, 0.02%)</title><rect x="1075.0" y="1269" width="0.2" height="15.0" fill="rgb(248,213,16)" rx="2" ry="2" />
<text x="1078.01" y="1279.5" ></text>
</g>
<g >
<title>exc_page_fault (20 samples, 0.04%)</title><rect x="34.4" y="1317" width="0.5" height="15.0" fill="rgb(227,168,34)" rx="2" ry="2" />
<text x="37.39" y="1327.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (306 samples, 0.68%)</title><rect x="858.2" y="1381" width="8.0" height="15.0" fill="rgb(219,89,31)" rx="2" ry="2" />
<text x="861.24" y="1391.5" ></text>
</g>
<g >
<title>exc_page_fault (7 samples, 0.02%)</title><rect x="851.7" y="1397" width="0.2" height="15.0" fill="rgb(217,77,25)" rx="2" ry="2" />
<text x="854.71" y="1407.5" ></text>
</g>
<g >
<title>irq_exit_rcu (11 samples, 0.02%)</title><rect x="1173.2" y="1221" width="0.3" height="15.0" fill="rgb(211,136,14)" rx="2" ry="2" />
<text x="1176.23" y="1231.5" ></text>
</g>
<g >
<title>[go] (929 samples, 2.06%)</title><rect x="11.9" y="1493" width="24.3" height="15.0" fill="rgb(225,196,6)" rx="2" ry="2" />
<text x="14.93" y="1503.5" >[..</text>
</g>
<g >
<title>rcu_core (4 samples, 0.01%)</title><rect x="1120.3" y="1061" width="0.1" height="15.0" fill="rgb(231,226,21)" rx="2" ry="2" />
<text x="1123.27" y="1071.5" ></text>
</g>
<g >
<title>[mapgauge.test] (197 samples, 0.44%)</title><rect x="868.2" y="1477" width="5.1" height="15.0" fill="rgb(236,164,36)" rx="2" ry="2" />
<text x="871.19" y="1487.5" ></text>
</g>
<g >
<title>rcu_core_si (71 samples, 0.16%)</title><rect x="930.9" y="1237" width="1.9" height="15.0" fill="rgb(234,110,45)" rx="2" ry="2" />
<text x="933.95" y="1247.5" ></text>
</g>
<g >
<title>__folio_alloc (18 samples, 0.04%)</title><rect x="529.4" y="1141" width="0.5" height="15.0" fill="rgb(247,100,9)" rx="2" ry="2" />
<text x="532.38" y="1151.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (20 samples, 0.04%)</title><rect x="965.2" y="1269" width="0.5" height="15.0" fill="rgb(228,126,40)" rx="2" ry="2" />
<text x="968.21" y="1279.5" ></text>
</g>
<g >
<title>radix_tree_delete_item (13 samples, 0.03%)</title><rect x="1059.4" y="1285" width="0.4" height="15.0" fill="rgb(232,158,16)" rx="2" ry="2" />
<text x="1062.44" y="1295.5" ></text>
</g>
<g >
<title>memcg_account_kmem (4 samples, 0.01%)</title><rect x="659.3" y="1061" width="0.1" height="15.0" fill="rgb(209,141,3)" rx="2" ry="2" />
<text x="662.26" y="1071.5" ></text>
</g>
<g >
<title>unmap_page_range (6 samples, 0.01%)</title><rect x="44.3" y="1269" width="0.1" height="15.0" fill="rgb(221,2,4)" rx="2" ry="2" />
<text x="47.26" y="1279.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (282 samples, 0.62%)</title><rect x="518.7" y="1125" width="7.4" height="15.0" fill="rgb(214,170,6)" rx="2" ry="2" />
<text x="521.70" y="1135.5" ></text>
</g>
<g >
<title>kmem_cache_free (8 samples, 0.02%)</title><rect x="1173.7" y="1141" width="0.2" height="15.0" fill="rgb(225,102,12)" rx="2" ry="2" />
<text x="1176.70" y="1151.5" ></text>
</g>
<g >
<title>put_cpu_partial (4 samples, 0.01%)</title><rect x="1123.2" y="1077" width="0.2" height="15.0" fill="rgb(233,1,6)" rx="2" ry="2" />
<text x="1126.25" y="1087.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (186 samples, 0.41%)</title><rect x="699.7" y="1109" width="4.8" height="15.0" fill="rgb(230,27,6)" rx="2" ry="2" />
<text x="702.66" y="1119.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (15 samples, 0.03%)</title><rect x="469.4" y="1173" width="0.4" height="15.0" fill="rgb(205,33,7)" rx="2" ry="2" />
<text x="472.42" y="1183.5" ></text>
</g>
<g >
<title>sync_regs (10 samples, 0.02%)</title><rect x="849.2" y="1381" width="0.3" height="15.0" fill="rgb(249,107,24)" rx="2" ry="2" />
<text x="852.23" y="1391.5" ></text>
</g>
<g >
<title>flush_tlb_func (4 samples, 0.01%)</title><rect x="850.4" y="1189" width="0.1" height="15.0" fill="rgb(225,124,7)" rx="2" ry="2" />
<text x="853.41" y="1199.5" ></text>
</g>
<g >
<title>rcu_do_batch (18 samples, 0.04%)</title><rect x="940.4" y="1189" width="0.5" height="15.0" fill="rgb(208,207,22)" rx="2" ry="2" />
<text x="943.43" y="1199.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (11 samples, 0.02%)</title><rect x="1118.4" y="1205" width="0.3" height="15.0" fill="rgb(251,11,52)" rx="2" ry="2" />
<text x="1121.39" y="1215.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4 samples, 0.01%)</title><rect x="33.8" y="1317" width="0.1" height="15.0" fill="rgb(247,98,42)" rx="2" ry="2" />
<text x="36.77" y="1327.5" ></text>
</g>
<g >
<title>dequeue_entity (26 samples, 0.06%)</title><rect x="870.3" y="1253" width="0.7" height="15.0" fill="rgb(225,90,1)" rx="2" ry="2" />
<text x="873.28" y="1263.5" ></text>
</g>
<g >
<title>new_slab (569 samples, 1.26%)</title><rect x="683.7" y="1093" width="14.8" height="15.0" fill="rgb(220,208,30)" rx="2" ry="2" />
<text x="686.65" y="1103.5" ></text>
</g>
<g >
<title>perf_event_enable_on_exec (12 samples, 0.03%)</title><rect x="1182.6" y="1317" width="0.3" height="15.0" fill="rgb(220,81,28)" rx="2" ry="2" />
<text x="1185.61" y="1327.5" ></text>
</g>
<g >
<title>get_page_from_freelist (8 samples, 0.02%)</title><rect x="466.1" y="1013" width="0.2" height="15.0" fill="rgb(238,51,6)" rx="2" ry="2" />
<text x="469.13" y="1023.5" ></text>
</g>
<g >
<title>rmqueue (4 samples, 0.01%)</title><rect x="831.8" y="1125" width="0.1" height="15.0" fill="rgb(217,87,49)" rx="2" ry="2" />
<text x="834.78" y="1135.5" ></text>
</g>
<g >
<title>tick_sched_handle (5 samples, 0.01%)</title><rect x="469.6" y="1125" width="0.1" height="15.0" fill="rgb(251,111,17)" rx="2" ry="2" />
<text x="472.60" y="1135.5" ></text>
</g>
<g >
<title>kmem_cache_free (4 samples, 0.01%)</title><rect x="1148.6" y="1157" width="0.1" height="15.0" fill="rgb(231,229,22)" rx="2" ry="2" />
<text x="1151.58" y="1167.5" ></text>
</g>
<g >
<title>newidle_balance (4 samples, 0.01%)</title><rect x="42.8" y="1269" width="0.1" height="15.0" fill="rgb(252,205,30)" rx="2" ry="2" />
<text x="45.75" y="1279.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (5 samples, 0.01%)</title><rect x="874.5" y="1429" width="0.1" height="15.0" fill="rgb(243,153,48)" rx="2" ry="2" />
<text x="877.46" y="1439.5" ></text>
</g>
<g >
<title>schedule (10 samples, 0.02%)</title><rect x="847.9" y="1317" width="0.3" height="15.0" fill="rgb(208,78,2)" rx="2" ry="2" />
<text x="850.90" y="1327.5" ></text>
</g>
<g >
<title>try_to_wake_up (4 samples, 0.01%)</title><rect x="530.2" y="1157" width="0.1" height="15.0" fill="rgb(224,113,9)" rx="2" ry="2" />
<text x="533.22" y="1167.5" ></text>
</g>
<g >
<title>unmap_vmas (6 samples, 0.01%)</title><rect x="44.3" y="1301" width="0.1" height="15.0" fill="rgb(221,50,35)" rx="2" ry="2" />
<text x="47.26" y="1311.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (5 samples, 0.01%)</title><rect x="10.6" y="1429" width="0.2" height="15.0" fill="rgb(243,30,44)" rx="2" ry="2" />
<text x="13.63" y="1439.5" ></text>
</g>
<g >
<title>__do_softirq (7 samples, 0.02%)</title><rect x="1102.4" y="1221" width="0.2" height="15.0" fill="rgb(220,126,14)" rx="2" ry="2" />
<text x="1105.40" y="1231.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (11 samples, 0.02%)</title><rect x="1173.2" y="1205" width="0.3" height="15.0" fill="rgb(217,226,24)" rx="2" ry="2" />
<text x="1176.23" y="1215.5" ></text>
</g>
<g >
<title>asm (29 samples, 0.06%)</title><rect x="10.0" y="1525" width="0.8" height="15.0" fill="rgb(212,71,41)" rx="2" ry="2" />
<text x="13.00" y="1535.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (37 samples, 0.08%)</title><rect x="1144.8" y="1237" width="1.0" height="15.0" fill="rgb(248,51,39)" rx="2" ry="2" />
<text x="1147.79" y="1247.5" ></text>
</g>
<g >
<title>do_anonymous_page (6 samples, 0.01%)</title><rect x="467.4" y="1109" width="0.1" height="15.0" fill="rgb(229,182,24)" rx="2" ry="2" />
<text x="470.38" y="1119.5" ></text>
</g>
<g >
<title>__mod_memcg_state (8 samples, 0.02%)</title><rect x="622.3" y="1045" width="0.2" height="15.0" fill="rgb(254,131,4)" rx="2" ry="2" />
<text x="625.30" y="1055.5" ></text>
</g>
<g >
<title>idr_get_next_ul (91 samples, 0.20%)</title><rect x="768.0" y="1125" width="2.4" height="15.0" fill="rgb(219,229,2)" rx="2" ry="2" />
<text x="770.98" y="1135.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (5 samples, 0.01%)</title><rect x="1047.5" y="1125" width="0.2" height="15.0" fill="rgb(218,1,21)" rx="2" ry="2" />
<text x="1050.53" y="1135.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (31 samples, 0.07%)</title><rect x="1130.6" y="1221" width="0.8" height="15.0" fill="rgb(234,213,48)" rx="2" ry="2" />
<text x="1133.61" y="1231.5" ></text>
</g>
<g >
<title>[vet] (18 samples, 0.04%)</title><rect x="1187.7" y="645" width="0.5" height="15.0" fill="rgb(250,71,13)" rx="2" ry="2" />
<text x="1190.73" y="655.5" ></text>
</g>
<g >
<title>[mapgauge.test] (25,491 samples, 56.42%)</title><rect x="173.6" y="1381" width="665.8" height="15.0" fill="rgb(216,118,29)" rx="2" ry="2" />
<text x="176.65" y="1391.5" >[mapgauge.test]</text>
</g>
<g >
<title>do_fault (4 samples, 0.01%)</title><rect x="62.0" y="1285" width="0.1" height="15.0" fill="rgb(210,163,16)" rx="2" ry="2" />
<text x="65.02" y="1295.5" ></text>
</g>
<g >
<title>__folio_alloc (11 samples, 0.02%)</title><rect x="34.5" y="1205" width="0.3" height="15.0" fill="rgb(230,138,44)" rx="2" ry="2" />
<text x="37.55" y="1215.5" ></text>
</g>
<g >
<title>[go] (89 samples, 0.20%)</title><rect x="24.0" y="1173" width="2.3" height="15.0" fill="rgb(247,118,30)" rx="2" ry="2" />
<text x="27.00" y="1183.5" ></text>
</g>
<g >
<title>__schedule (1,119 samples, 2.48%)</title><rect x="1073.2" y="1285" width="29.2" height="15.0" fill="rgb(240,224,9)" rx="2" ry="2" />
<text x="1076.18" y="1295.5" >__..</text>
</g>
<g >
<title>hrtimer_interrupt (7 samples, 0.02%)</title><rect x="1044.6" y="1221" width="0.1" height="15.0" fill="rgb(216,18,45)" rx="2" ry="2" />
<text x="1047.56" y="1231.5" ></text>
</g>
<g >
<title>[link] (4 samples, 0.01%)</title><rect x="57.8" y="1205" width="0.2" height="15.0" fill="rgb(231,0,50)" rx="2" ry="2" />
<text x="60.85" y="1215.5" ></text>
</g>
<g >
<title>kmem_cache_free (11 samples, 0.02%)</title><rect x="1065.7" y="1141" width="0.2" height="15.0" fill="rgb(224,180,50)" rx="2" ry="2" />
<text x="1068.66" y="1151.5" ></text>
</g>
<g >
<title>consume_obj_stock (21 samples, 0.05%)</title><rect x="621.7" y="1077" width="0.6" height="15.0" fill="rgb(216,25,52)" rx="2" ry="2" />
<text x="624.70" y="1087.5" ></text>
</g>
<g >
<title>__free_slab (47 samples, 0.10%)</title><rect x="1119.0" y="1173" width="1.3" height="15.0" fill="rgb(251,41,19)" rx="2" ry="2" />
<text x="1122.04" y="1183.5" ></text>
</g>
<g >
<title>folio_add_lru (19 samples, 0.04%)</title><rect x="842.8" y="1253" width="0.5" height="15.0" fill="rgb(217,114,0)" rx="2" ry="2" />
<text x="845.78" y="1263.5" ></text>
</g>
<g >
<title>[go] (5 samples, 0.01%)</title><rect x="43.9" y="1397" width="0.1" height="15.0" fill="rgb(218,185,42)" rx="2" ry="2" />
<text x="46.90" y="1407.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (14 samples, 0.03%)</title><rect x="1122.3" y="1205" width="0.4" height="15.0" fill="rgb(217,98,21)" rx="2" ry="2" />
<text x="1125.33" y="1215.5" ></text>
</g>
<g >
<title>rcu_core (5 samples, 0.01%)</title><rect x="1150.6" y="1189" width="0.1" height="15.0" fill="rgb(228,96,48)" rx="2" ry="2" />
<text x="1153.59" y="1199.5" ></text>
</g>
<g >
<title>__do_softirq (10 samples, 0.02%)</title><rect x="1181.1" y="1253" width="0.3" height="15.0" fill="rgb(221,48,49)" rx="2" ry="2" />
<text x="1184.12" y="1263.5" ></text>
</g>
<g >
<title>psi_task_switch (12 samples, 0.03%)</title><rect x="872.2" y="1285" width="0.3" height="15.0" fill="rgb(249,34,54)" rx="2" ry="2" />
<text x="875.16" y="1295.5" ></text>
</g>
<g >
<title>free_unref_page (18 samples, 0.04%)</title><rect x="1053.5" y="997" width="0.5" height="15.0" fill="rgb(224,201,35)" rx="2" ry="2" />
<text x="1056.51" y="1007.5" ></text>
</g>
<g >
<title>rcu_core (12 samples, 0.03%)</title><rect x="1148.0" y="1189" width="0.3" height="15.0" fill="rgb(214,212,50)" rx="2" ry="2" />
<text x="1151.03" y="1199.5" ></text>
</g>
<g >
<title>d_flags_for_inode (5 samples, 0.01%)</title><rect x="662.5" y="1109" width="0.2" height="15.0" fill="rgb(216,215,26)" rx="2" ry="2" />
<text x="665.52" y="1119.5" ></text>
</g>
<g >
<title>__alloc_pages (457 samples, 1.01%)</title><rect x="684.0" y="1045" width="12.0" height="15.0" fill="rgb(235,224,28)" rx="2" ry="2" />
<text x="687.04" y="1055.5" ></text>
</g>
<g >
<title>rcu_do_batch (10 samples, 0.02%)</title><rect x="1181.1" y="1205" width="0.3" height="15.0" fill="rgb(242,35,42)" rx="2" ry="2" />
<text x="1184.12" y="1215.5" ></text>
</g>
<g >
<title>handle_mm_fault (43 samples, 0.10%)</title><rect x="467.2" y="1157" width="1.2" height="15.0" fill="rgb(228,213,43)" rx="2" ry="2" />
<text x="470.25" y="1167.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.01%)</title><rect x="1189.3" y="1381" width="0.2" height="15.0" fill="rgb(223,211,2)" rx="2" ry="2" />
<text x="1192.35" y="1391.5" ></text>
</g>
<g >
<title>new_slab (10 samples, 0.02%)</title><rect x="744.1" y="1093" width="0.2" height="15.0" fill="rgb(221,189,37)" rx="2" ry="2" />
<text x="747.06" y="1103.5" ></text>
</g>
<g >
<title>filemap_get_pages (6 samples, 0.01%)</title><rect x="32.4" y="1157" width="0.2" height="15.0" fill="rgb(207,87,37)" rx="2" ry="2" />
<text x="35.43" y="1167.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (7 samples, 0.02%)</title><rect x="850.4" y="1221" width="0.2" height="15.0" fill="rgb(217,23,54)" rx="2" ry="2" />
<text x="853.38" y="1231.5" ></text>
</g>
<g >
<title>exc_page_fault (17 samples, 0.04%)</title><rect x="63.6" y="1413" width="0.5" height="15.0" fill="rgb(224,226,50)" rx="2" ry="2" />
<text x="66.62" y="1423.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (533 samples, 1.18%)</title><rect x="1044.6" y="1269" width="13.9" height="15.0" fill="rgb(213,1,37)" rx="2" ry="2" />
<text x="1047.56" y="1279.5" ></text>
</g>
<g >
<title>do_sys_openat2 (6 samples, 0.01%)</title><rect x="30.1" y="1221" width="0.2" height="15.0" fill="rgb(215,131,36)" rx="2" ry="2" />
<text x="33.14" y="1231.5" ></text>
</g>
<g >
<title>filp_close (411 samples, 0.91%)</title><rect x="879.0" y="1333" width="10.7" height="15.0" fill="rgb(218,173,22)" rx="2" ry="2" />
<text x="882.00" y="1343.5" ></text>
</g>
<g >
<title>clear_page_erms (9 samples, 0.02%)</title><rect x="837.2" y="1173" width="0.2" height="15.0" fill="rgb(240,24,18)" rx="2" ry="2" />
<text x="840.19" y="1183.5" ></text>
</g>
<g >
<title>rcu_do_batch (4 samples, 0.01%)</title><rect x="1149.2" y="1173" width="0.1" height="15.0" fill="rgb(244,100,39)" rx="2" ry="2" />
<text x="1152.23" y="1183.5" ></text>
</g>
<g >
<title>consume_stock (6 samples, 0.01%)</title><rect x="712.4" y="1077" width="0.2" height="15.0" fill="rgb(237,165,39)" rx="2" ry="2" />
<text x="715.41" y="1087.5" ></text>
</g>
<g >
<title>ext4_init_new_dir (5 samples, 0.01%)</title><rect x="34.1" y="1221" width="0.1" height="15.0" fill="rgb(244,23,30)" rx="2" ry="2" />
<text x="37.05" y="1231.5" ></text>
</g>
<g >
<title>mod_objcg_state (4 samples, 0.01%)</title><rect x="710.4" y="1109" width="0.2" height="15.0" fill="rgb(221,34,46)" rx="2" ry="2" />
<text x="713.45" y="1119.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (957 samples, 2.12%)</title><rect x="778.3" y="1237" width="25.0" height="15.0" fill="rgb(210,179,18)" rx="2" ry="2" />
<text x="781.30" y="1247.5" >s..</text>
</g>
<g >
<title>irqentry_exit_to_user_mode (4 samples, 0.01%)</title><rect x="461.2" y="1109" width="0.1" height="15.0" fill="rgb(245,7,53)" rx="2" ry="2" />
<text x="464.22" y="1119.5" ></text>
</g>
<g >
<title>mas_store_prealloc (4 samples, 0.01%)</title><rect x="58.6" y="1173" width="0.1" height="15.0" fill="rgb(234,19,10)" rx="2" ry="2" />
<text x="61.60" y="1183.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (55 samples, 0.12%)</title><rect x="1080.0" y="1205" width="1.5" height="15.0" fill="rgb(239,150,28)" rx="2" ry="2" />
<text x="1083.05" y="1215.5" ></text>
</g>
<g >
<title>x2apic_send_IPI (70 samples, 0.15%)</title><rect x="1027.9" y="1173" width="1.9" height="15.0" fill="rgb(227,14,50)" rx="2" ry="2" />
<text x="1030.95" y="1183.5" ></text>
</g>
<g >
<title>do_filp_open (5 samples, 0.01%)</title><rect x="33.2" y="1237" width="0.1" height="15.0" fill="rgb(237,215,54)" rx="2" ry="2" />
<text x="36.19" y="1247.5" ></text>
</g>
<g >
<title>update_load_avg (33 samples, 0.07%)</title><rect x="1009.9" y="1157" width="0.8" height="15.0" fill="rgb(238,28,44)" rx="2" ry="2" />
<text x="1012.87" y="1167.5" ></text>
</g>
<g >
<title>__alloc_pages (12 samples, 0.03%)</title><rect x="696.5" y="965" width="0.3" height="15.0" fill="rgb(215,69,17)" rx="2" ry="2" />
<text x="699.53" y="975.5" ></text>
</g>
<g >
<title>__irqentry_text_end (5 samples, 0.01%)</title><rect x="466.8" y="1205" width="0.2" height="15.0" fill="rgb(234,205,37)" rx="2" ry="2" />
<text x="469.83" y="1215.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (51 samples, 0.11%)</title><rect x="963.9" y="1253" width="1.3" height="15.0" fill="rgb(242,168,2)" rx="2" ry="2" />
<text x="966.88" y="1263.5" ></text>
</g>
<g >
<title>__handle_mm_fault (84 samples, 0.19%)</title><rect x="833.4" y="1269" width="2.2" height="15.0" fill="rgb(236,203,45)" rx="2" ry="2" />
<text x="836.38" y="1279.5" ></text>
</g>
<g >
<title>[asm] (8 samples, 0.02%)</title><rect x="10.1" y="1349" width="0.2" height="15.0" fill="rgb(216,162,30)" rx="2" ry="2" />
<text x="13.13" y="1359.5" ></text>
</g>
<g >
<title>vfs_open (5 samples, 0.01%)</title><rect x="31.7" y="1173" width="0.1" height="15.0" fill="rgb(226,24,35)" rx="2" ry="2" />
<text x="34.65" y="1183.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5 samples, 0.01%)</title><rect x="1150.6" y="1237" width="0.1" height="15.0" fill="rgb(215,140,13)" rx="2" ry="2" />
<text x="1153.59" y="1247.5" ></text>
</g>
<g >
<title>do_mmap (6 samples, 0.01%)</title><rect x="58.6" y="1205" width="0.1" height="15.0" fill="rgb(211,47,45)" rx="2" ry="2" />
<text x="61.58" y="1215.5" ></text>
</g>
<g >
<title>__cond_resched (1,187 samples, 2.63%)</title><rect x="1071.9" y="1301" width="31.0" height="15.0" fill="rgb(205,47,34)" rx="2" ry="2" />
<text x="1074.87" y="1311.5" >__..</text>
</g>
<g >
<title>idr_alloc_cyclic (7 samples, 0.02%)</title><rect x="569.5" y="1205" width="0.2" height="15.0" fill="rgb(213,137,49)" rx="2" ry="2" />
<text x="572.55" y="1215.5" ></text>
</g>
<g >
<title>do_anonymous_page (25 samples, 0.06%)</title><rect x="831.2" y="1205" width="0.7" height="15.0" fill="rgb(215,1,29)" rx="2" ry="2" />
<text x="834.24" y="1215.5" ></text>
</g>
<g >
<title>bpf_seq_read (1,980 samples, 4.38%)</title><rect x="476.5" y="1173" width="51.8" height="15.0" fill="rgb(228,216,10)" rx="2" ry="2" />
<text x="479.55" y="1183.5" >bpf_s..</text>
</g>
<g >
<title>irq_exit_rcu (10 samples, 0.02%)</title><rect x="1170.8" y="1237" width="0.2" height="15.0" fill="rgb(230,144,33)" rx="2" ry="2" />
<text x="1173.78" y="1247.5" ></text>
</g>
<g >
<title>schedule (8 samples, 0.02%)</title><rect x="854.8" y="1269" width="0.2" height="15.0" fill="rgb(211,222,44)" rx="2" ry="2" />
<text x="857.77" y="1279.5" ></text>
</g>
<g >
<title>check_heap_object (4 samples, 0.01%)</title><rect x="477.8" y="1125" width="0.1" height="15.0" fill="rgb(251,202,17)" rx="2" ry="2" />
<text x="480.80" y="1135.5" ></text>
</g>
<g >
<title>[vet] (77 samples, 0.17%)</title><rect x="1186.6" y="1141" width="2.0" height="15.0" fill="rgb(239,126,44)" rx="2" ry="2" />
<text x="1189.60" y="1151.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5 samples, 0.01%)</title><rect x="1061.2" y="1237" width="0.2" height="15.0" fill="rgb(225,158,32)" rx="2" ry="2" />
<text x="1064.25" y="1247.5" ></text>
</g>
<g >
<title>[go] (914 samples, 2.02%)</title><rect x="12.1" y="1445" width="23.9" height="15.0" fill="rgb(235,48,49)" rx="2" ry="2" />
<text x="15.14" y="1455.5" >[..</text>
</g>
<g >
<title>exit_to_user_mode_prepare (5 samples, 0.01%)</title><rect x="30.6" y="1221" width="0.2" height="15.0" fill="rgb(232,104,6)" rx="2" ry="2" />
<text x="33.63" y="1231.5" ></text>
</g>
<g >
<title>[vet] (10 samples, 0.02%)</title><rect x="1187.9" y="293" width="0.3" height="15.0" fill="rgb(231,43,36)" rx="2" ry="2" />
<text x="1190.94" y="303.5" ></text>
</g>
<g >
<title>ptep_clear_flush (4 samples, 0.01%)</title><rect x="463.0" y="1045" width="0.1" height="15.0" fill="rgb(238,111,54)" rx="2" ry="2" />
<text x="466.02" y="1055.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4 samples, 0.01%)</title><rect x="35.9" y="1413" width="0.1" height="15.0" fill="rgb(222,224,29)" rx="2" ry="2" />
<text x="38.86" y="1423.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4 samples, 0.01%)</title><rect x="874.3" y="1445" width="0.1" height="15.0" fill="rgb(211,68,9)" rx="2" ry="2" />
<text x="877.28" y="1455.5" ></text>
</g>
<g >
<title>handle_mm_fault (72 samples, 0.16%)</title><rect x="461.8" y="1125" width="1.9" height="15.0" fill="rgb(227,122,12)" rx="2" ry="2" />
<text x="464.82" y="1135.5" ></text>
</g>
<g >
<title>newidle_balance (11 samples, 0.02%)</title><rect x="871.5" y="1253" width="0.3" height="15.0" fill="rgb(223,100,28)" rx="2" ry="2" />
<text x="874.53" y="1263.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5 samples, 0.01%)</title><rect x="1178.5" y="1317" width="0.1" height="15.0" fill="rgb(220,75,35)" rx="2" ry="2" />
<text x="1181.51" y="1327.5" ></text>
</g>
<g >
<title>[link] (17 samples, 0.04%)</title><rect x="57.8" y="1269" width="0.4" height="15.0" fill="rgb(228,197,26)" rx="2" ry="2" />
<text x="60.77" y="1279.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (5 samples, 0.01%)</title><rect x="735.9" y="1173" width="0.2" height="15.0" fill="rgb(224,58,50)" rx="2" ry="2" />
<text x="738.94" y="1183.5" ></text>
</g>
<g >
<title>__dentry_kill (1,670 samples, 3.70%)</title><rect x="1102.9" y="1301" width="43.6" height="15.0" fill="rgb(225,171,41)" rx="2" ry="2" />
<text x="1105.88" y="1311.5" >__de..</text>
</g>
<g >
<title>hpage_collapse_scan_pmd (7 samples, 0.02%)</title><rect x="459.7" y="1013" width="0.2" height="15.0" fill="rgb(223,143,25)" rx="2" ry="2" />
<text x="462.73" y="1023.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (12 samples, 0.03%)</title><rect x="58.6" y="1285" width="0.3" height="15.0" fill="rgb(249,227,17)" rx="2" ry="2" />
<text x="61.55" y="1295.5" ></text>
</g>
<g >
<title>do_filp_open (18 samples, 0.04%)</title><rect x="31.5" y="1221" width="0.5" height="15.0" fill="rgb(235,90,43)" rx="2" ry="2" />
<text x="34.55" y="1231.5" ></text>
</g>
<g >
<title>[vet] (18 samples, 0.04%)</title><rect x="1187.7" y="693" width="0.5" height="15.0" fill="rgb(214,171,20)" rx="2" ry="2" />
<text x="1190.73" y="703.5" ></text>
</g>
<g >
<title>exc_page_fault (24 samples, 0.05%)</title><rect x="59.3" y="1317" width="0.7" height="15.0" fill="rgb(222,25,22)" rx="2" ry="2" />
<text x="62.33" y="1327.5" ></text>
</g>
<g >
<title>do_syscall_64 (17 samples, 0.04%)</title><rect x="33.9" y="1301" width="0.4" height="15.0" fill="rgb(231,202,2)" rx="2" ry="2" />
<text x="36.87" y="1311.5" ></text>
</g>
<g >
<title>__do_softirq (19 samples, 0.04%)</title><rect x="1127.4" y="1173" width="0.5" height="15.0" fill="rgb(208,94,30)" rx="2" ry="2" />
<text x="1130.40" y="1183.5" ></text>
</g>
<g >
<title>[go] (8 samples, 0.02%)</title><rect x="25.2" y="1013" width="0.2" height="15.0" fill="rgb(239,197,16)" rx="2" ry="2" />
<text x="28.17" y="1023.5" ></text>
</g>
<g >
<title>do_wp_page (32 samples, 0.07%)</title><rect x="467.5" y="1109" width="0.9" height="15.0" fill="rgb(250,16,37)" rx="2" ry="2" />
<text x="470.54" y="1119.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (9 samples, 0.02%)</title><rect x="1127.9" y="1221" width="0.3" height="15.0" fill="rgb(245,151,50)" rx="2" ry="2" />
<text x="1130.92" y="1231.5" ></text>
</g>
<g >
<title>_raw_spin_lock (56 samples, 0.12%)</title><rect x="662.7" y="1125" width="1.4" height="15.0" fill="rgb(238,23,12)" rx="2" ry="2" />
<text x="665.65" y="1135.5" ></text>
</g>
<g >
<title>radix_tree_node_alloc.constprop.0 (16 samples, 0.04%)</title><rect x="743.9" y="1141" width="0.4" height="15.0" fill="rgb(207,17,12)" rx="2" ry="2" />
<text x="746.93" y="1151.5" ></text>
</g>
<g >
<title>crng_make_state (4 samples, 0.01%)</title><rect x="614.2" y="981" width="0.1" height="15.0" fill="rgb(223,73,23)" rx="2" ry="2" />
<text x="617.16" y="991.5" ></text>
</g>
<g >
<title>get_any_partial (10 samples, 0.02%)</title><rect x="605.9" y="1077" width="0.3" height="15.0" fill="rgb(235,32,48)" rx="2" ry="2" />
<text x="608.93" y="1087.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (15 samples, 0.03%)</title><rect x="1033.1" y="1173" width="0.4" height="15.0" fill="rgb(222,63,38)" rx="2" ry="2" />
<text x="1036.07" y="1183.5" ></text>
</g>
<g >
<title>do_syscall_64 (26 samples, 0.06%)</title><rect x="838.5" y="1349" width="0.7" height="15.0" fill="rgb(219,225,17)" rx="2" ry="2" />
<text x="841.50" y="1359.5" ></text>
</g>
<g >
<title>perf_ctx_enable (12 samples, 0.03%)</title><rect x="863.3" y="1269" width="0.3" height="15.0" fill="rgb(208,184,49)" rx="2" ry="2" />
<text x="866.31" y="1279.5" ></text>
</g>
<g >
<title>vma_alloc_folio (7 samples, 0.02%)</title><rect x="59.7" y="1205" width="0.2" height="15.0" fill="rgb(230,123,30)" rx="2" ry="2" />
<text x="62.67" y="1215.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="874.6" y="1429" width="0.1" height="15.0" fill="rgb(226,98,45)" rx="2" ry="2" />
<text x="877.59" y="1439.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4 samples, 0.01%)</title><rect x="61.1" y="1189" width="0.1" height="15.0" fill="rgb(214,76,26)" rx="2" ry="2" />
<text x="64.14" y="1199.5" ></text>
</g>
<g >
<title>__x64_sys_madvise (7 samples, 0.02%)</title><rect x="459.7" y="1093" width="0.2" height="15.0" fill="rgb(242,62,53)" rx="2" ry="2" />
<text x="462.73" y="1103.5" ></text>
</g>
<g >
<title>consume_stock (5 samples, 0.01%)</title><rect x="622.6" y="1061" width="0.2" height="15.0" fill="rgb(250,104,46)" rx="2" ry="2" />
<text x="625.64" y="1071.5" ></text>
</g>
<g >
<title>[vet] (176 samples, 0.39%)</title><rect x="1184.7" y="1349" width="4.6" height="15.0" fill="rgb(249,162,52)" rx="2" ry="2" />
<text x="1187.70" y="1359.5" ></text>
</g>
<g >
<title>allocate_slab (244 samples, 0.54%)</title><rect x="634.3" y="1061" width="6.4" height="15.0" fill="rgb(207,146,14)" rx="2" ry="2" />
<text x="637.34" y="1071.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (8 samples, 0.02%)</title><rect x="764.5" y="1157" width="0.2" height="15.0" fill="rgb(221,154,33)" rx="2" ry="2" />
<text x="767.46" y="1167.5" ></text>
</g>
<g >
<title>discard_slab (8 samples, 0.02%)</title><rect x="1171.1" y="1237" width="0.2" height="15.0" fill="rgb(239,100,17)" rx="2" ry="2" />
<text x="1174.12" y="1247.5" ></text>
</g>
<g >
<title>handle_pte_fault (14 samples, 0.03%)</title><rect x="63.7" y="1349" width="0.3" height="15.0" fill="rgb(221,146,17)" rx="2" ry="2" />
<text x="66.67" y="1359.5" ></text>
</g>
<g >
<title>[mapgauge.test] (256 samples, 0.57%)</title><rect x="453.6" y="1157" width="6.7" height="15.0" fill="rgb(215,5,41)" rx="2" ry="2" />
<text x="456.64" y="1167.5" ></text>
</g>
<g >
<title>__alloc_pages (6 samples, 0.01%)</title><rect x="60.7" y="1221" width="0.1" height="15.0" fill="rgb(246,130,34)" rx="2" ry="2" />
<text x="63.69" y="1231.5" ></text>
</g>
<g >
<title>__x64_sys_mkdirat (12 samples, 0.03%)</title><rect x="33.9" y="1285" width="0.3" height="15.0" fill="rgb(228,194,15)" rx="2" ry="2" />
<text x="36.87" y="1295.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5 samples, 0.01%)</title><rect x="1178.5" y="1269" width="0.1" height="15.0" fill="rgb(235,72,22)" rx="2" ry="2" />
<text x="1181.51" y="1279.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (8 samples, 0.02%)</title><rect x="469.2" y="1221" width="0.2" height="15.0" fill="rgb(243,120,2)" rx="2" ry="2" />
<text x="472.21" y="1231.5" ></text>
</g>
<g >
<title>do_syscall_64 (16 samples, 0.04%)</title><rect x="530.4" y="1269" width="0.4" height="15.0" fill="rgb(231,221,33)" rx="2" ry="2" />
<text x="533.43" y="1279.5" ></text>
</g>
<g >
<title>idr_remove (14 samples, 0.03%)</title><rect x="1060.5" y="1301" width="0.4" height="15.0" fill="rgb(223,186,10)" rx="2" ry="2" />
<text x="1063.51" y="1311.5" ></text>
</g>
<g >
<title>[link] (50 samples, 0.11%)</title><rect x="57.7" y="1301" width="1.3" height="15.0" fill="rgb(206,177,35)" rx="2" ry="2" />
<text x="60.66" y="1311.5" ></text>
</g>
<g >
<title>folio_add_lru (6 samples, 0.01%)</title><rect x="833.7" y="1205" width="0.2" height="15.0" fill="rgb(206,41,51)" rx="2" ry="2" />
<text x="836.72" y="1215.5" ></text>
</g>
<g >
<title>memcg_account_kmem (10 samples, 0.02%)</title><rect x="622.3" y="1077" width="0.2" height="15.0" fill="rgb(228,118,50)" rx="2" ry="2" />
<text x="625.25" y="1087.5" ></text>
</g>
<g >
<title>[go] (4 samples, 0.01%)</title><rect x="43.7" y="1461" width="0.1" height="15.0" fill="rgb(242,89,27)" rx="2" ry="2" />
<text x="46.66" y="1471.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (254 samples, 0.56%)</title><rect x="770.8" y="1173" width="6.6" height="15.0" fill="rgb(244,59,6)" rx="2" ry="2" />
<text x="773.75" y="1183.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (8 samples, 0.02%)</title><rect x="924.7" y="1285" width="0.2" height="15.0" fill="rgb(206,178,32)" rx="2" ry="2" />
<text x="927.66" y="1295.5" ></text>
</g>
<g >
<title>ttwu_do_activate (393 samples, 0.87%)</title><rect x="1004.8" y="1221" width="10.2" height="15.0" fill="rgb(208,193,11)" rx="2" ry="2" />
<text x="1007.75" y="1231.5" ></text>
</g>
<g >
<title>send_signal_locked (16 samples, 0.04%)</title><rect x="855.6" y="1285" width="0.4" height="15.0" fill="rgb(254,38,38)" rx="2" ry="2" />
<text x="858.60" y="1295.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (37 samples, 0.08%)</title><rect x="847.6" y="1381" width="0.9" height="15.0" fill="rgb(230,181,3)" rx="2" ry="2" />
<text x="850.56" y="1391.5" ></text>
</g>
<g >
<title>rcu_core_si (10 samples, 0.02%)</title><rect x="1181.1" y="1237" width="0.3" height="15.0" fill="rgb(240,195,38)" rx="2" ry="2" />
<text x="1184.12" y="1247.5" ></text>
</g>
<g >
<title>[mapgauge.test] (113 samples, 0.25%)</title><rect x="854.1" y="1413" width="2.9" height="15.0" fill="rgb(211,58,27)" rx="2" ry="2" />
<text x="857.09" y="1423.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.04%)</title><rect x="29.1" y="1253" width="0.4" height="15.0" fill="rgb(233,187,23)" rx="2" ry="2" />
<text x="32.09" y="1263.5" ></text>
</g>
<g >
<title>rcu_core_si (4 samples, 0.01%)</title><rect x="33.0" y="1221" width="0.1" height="15.0" fill="rgb(222,172,51)" rx="2" ry="2" />
<text x="35.96" y="1231.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (22 samples, 0.05%)</title><rect x="695.4" y="997" width="0.5" height="15.0" fill="rgb(254,29,50)" rx="2" ry="2" />
<text x="698.35" y="1007.5" ></text>
</g>
<g >
<title>____fput (4 samples, 0.01%)</title><rect x="30.7" y="1173" width="0.1" height="15.0" fill="rgb(250,106,36)" rx="2" ry="2" />
<text x="33.66" y="1183.5" ></text>
</g>
<g >
<title>[mapgauge.test] (589 samples, 1.30%)</title><rect x="852.5" y="1477" width="15.4" height="15.0" fill="rgb(249,193,29)" rx="2" ry="2" />
<text x="855.55" y="1487.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (22 samples, 0.05%)</title><rect x="1178.9" y="1333" width="0.5" height="15.0" fill="rgb(216,53,41)" rx="2" ry="2" />
<text x="1181.87" y="1343.5" ></text>
</g>
<g >
<title>__alloc_pages (18 samples, 0.04%)</title><rect x="462.3" y="1029" width="0.5" height="15.0" fill="rgb(212,88,51)" rx="2" ry="2" />
<text x="465.29" y="1039.5" ></text>
</g>
<g >
<title>wake_up_process (2,034 samples, 4.50%)</title><rect x="985.5" y="1253" width="53.2" height="15.0" fill="rgb(236,228,37)" rx="2" ry="2" />
<text x="988.53" y="1263.5" >wake_..</text>
</g>
<g >
<title>bpf_iter_run_prog (5 samples, 0.01%)</title><rect x="752.5" y="1173" width="0.1" height="15.0" fill="rgb(216,118,39)" rx="2" ry="2" />
<text x="755.47" y="1183.5" ></text>
</g>
<g >
<title>ext4_bread (5 samples, 0.01%)</title><rect x="34.1" y="1189" width="0.1" height="15.0" fill="rgb(253,221,32)" rx="2" ry="2" />
<text x="37.05" y="1199.5" ></text>
</g>
<g >
<title>rmqueue (25 samples, 0.06%)</title><rect x="695.3" y="1013" width="0.6" height="15.0" fill="rgb(224,66,12)" rx="2" ry="2" />
<text x="698.27" y="1023.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (15 samples, 0.03%)</title><rect x="921.5" y="1301" width="0.4" height="15.0" fill="rgb(238,40,26)" rx="2" ry="2" />
<text x="924.52" y="1311.5" ></text>
</g>
<g >
<title>___slab_alloc (8 samples, 0.02%)</title><rect x="639.3" y="997" width="0.2" height="15.0" fill="rgb(235,222,9)" rx="2" ry="2" />
<text x="642.33" y="1007.5" ></text>
</g>
<g >
<title>rcu_core (4 samples, 0.01%)</title><rect x="1150.3" y="1189" width="0.1" height="15.0" fill="rgb(218,115,31)" rx="2" ry="2" />
<text x="1153.33" y="1199.5" ></text>
</g>
<g >
<title>__alloc_pages (6 samples, 0.01%)</title><rect x="465.1" y="1045" width="0.1" height="15.0" fill="rgb(225,90,2)" rx="2" ry="2" />
<text x="468.08" y="1055.5" ></text>
</g>
<g >
<title>memcpy_orig (23 samples, 0.05%)</title><rect x="660.6" y="1125" width="0.6" height="15.0" fill="rgb(253,98,26)" rx="2" ry="2" />
<text x="663.64" y="1135.5" ></text>
</g>
<g >
<title>idr_preload (11 samples, 0.02%)</title><rect x="569.7" y="1205" width="0.3" height="15.0" fill="rgb(226,163,25)" rx="2" ry="2" />
<text x="572.73" y="1215.5" ></text>
</g>
<g >
<title>[vet] (17 samples, 0.04%)</title><rect x="1187.8" y="581" width="0.4" height="15.0" fill="rgb(222,151,12)" rx="2" ry="2" />
<text x="1190.75" y="591.5" ></text>
</g>
<g >
<title>file_free_rcu (14 samples, 0.03%)</title><rect x="1065.6" y="1157" width="0.3" height="15.0" fill="rgb(225,124,2)" rx="2" ry="2" />
<text x="1068.58" y="1167.5" ></text>
</g>
<g >
<title>handle_pte_fault (19 samples, 0.04%)</title><rect x="61.7" y="1301" width="0.5" height="15.0" fill="rgb(243,101,16)" rx="2" ry="2" />
<text x="64.68" y="1311.5" ></text>
</g>
<g >
<title>pick_next_task_fair (412 samples, 0.91%)</title><rect x="1081.8" y="1253" width="10.7" height="15.0" fill="rgb(218,53,9)" rx="2" ry="2" />
<text x="1084.77" y="1263.5" ></text>
</g>
<g >
<title>__x64_sys_getdents64 (8 samples, 0.02%)</title><rect x="26.0" y="1125" width="0.2" height="15.0" fill="rgb(223,226,11)" rx="2" ry="2" />
<text x="28.96" y="1135.5" ></text>
</g>
<g >
<title>enqueue_task_fair (149 samples, 0.33%)</title><rect x="1007.4" y="1189" width="3.9" height="15.0" fill="rgb(213,58,38)" rx="2" ry="2" />
<text x="1010.45" y="1199.5" ></text>
</g>
<g >
<title>do_check (5 samples, 0.01%)</title><rect x="468.7" y="1093" width="0.1" height="15.0" fill="rgb(223,57,29)" rx="2" ry="2" />
<text x="471.66" y="1103.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4 samples, 0.01%)</title><rect x="832.3" y="1317" width="0.1" height="15.0" fill="rgb(239,72,41)" rx="2" ry="2" />
<text x="835.33" y="1327.5" ></text>
</g>
<g >
<title>native_write_msr (13 samples, 0.03%)</title><rect x="43.3" y="1349" width="0.4" height="15.0" fill="rgb(237,26,3)" rx="2" ry="2" />
<text x="46.32" y="1359.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.01%)</title><rect x="25.7" y="1125" width="0.1" height="15.0" fill="rgb(247,52,43)" rx="2" ry="2" />
<text x="28.70" y="1135.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (8 samples, 0.02%)</title><rect x="510.1" y="1125" width="0.2" height="15.0" fill="rgb(208,0,48)" rx="2" ry="2" />
<text x="513.08" y="1135.5" ></text>
</g>
<g >
<title>__update_load_avg_se (6 samples, 0.01%)</title><rect x="1008.9" y="1157" width="0.2" height="15.0" fill="rgb(239,23,51)" rx="2" ry="2" />
<text x="1011.91" y="1167.5" ></text>
</g>
<g >
<title>handle_pte_fault (9 samples, 0.02%)</title><rect x="63.0" y="1333" width="0.2" height="15.0" fill="rgb(238,163,2)" rx="2" ry="2" />
<text x="65.99" y="1343.5" ></text>
</g>
<g >
<title>kmem_cache_free (13 samples, 0.03%)</title><rect x="1181.9" y="1205" width="0.3" height="15.0" fill="rgb(205,120,6)" rx="2" ry="2" />
<text x="1184.85" y="1215.5" ></text>
</g>
<g >
<title>rcu_do_batch (9 samples, 0.02%)</title><rect x="1148.5" y="1189" width="0.2" height="15.0" fill="rgb(230,138,54)" rx="2" ry="2" />
<text x="1151.47" y="1199.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4 samples, 0.01%)</title><rect x="461.1" y="981" width="0.1" height="15.0" fill="rgb(249,98,53)" rx="2" ry="2" />
<text x="464.09" y="991.5" ></text>
</g>
<g >
<title>do_syscall_64 (11 samples, 0.02%)</title><rect x="44.1" y="1493" width="0.3" height="15.0" fill="rgb(213,122,33)" rx="2" ry="2" />
<text x="47.13" y="1503.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (6 samples, 0.01%)</title><rect x="530.2" y="1221" width="0.2" height="15.0" fill="rgb(224,31,10)" rx="2" ry="2" />
<text x="533.22" y="1231.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (4 samples, 0.01%)</title><rect x="891.8" y="1205" width="0.1" height="15.0" fill="rgb(208,30,19)" rx="2" ry="2" />
<text x="894.83" y="1215.5" ></text>
</g>
<g >
<title>_raw_spin_lock (56 samples, 0.12%)</title><rect x="921.9" y="1317" width="1.5" height="15.0" fill="rgb(253,6,10)" rx="2" ry="2" />
<text x="924.94" y="1327.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (51 samples, 0.11%)</title><rect x="963.9" y="1269" width="1.3" height="15.0" fill="rgb(251,83,9)" rx="2" ry="2" />
<text x="966.88" y="1279.5" ></text>
</g>
<g >
<title>rcu_core (9 samples, 0.02%)</title><rect x="1148.5" y="1205" width="0.2" height="15.0" fill="rgb(216,43,21)" rx="2" ry="2" />
<text x="1151.47" y="1215.5" ></text>
</g>
<g >
<title>d_set_d_op (34 samples, 0.08%)</title><rect x="628.9" y="1109" width="0.8" height="15.0" fill="rgb(217,171,16)" rx="2" ry="2" />
<text x="631.86" y="1119.5" ></text>
</g>
<g >
<title>do_send_sig_info (11 samples, 0.02%)</title><rect x="838.7" y="1285" width="0.2" height="15.0" fill="rgb(230,69,45)" rx="2" ry="2" />
<text x="841.65" y="1295.5" ></text>
</g>
<g >
<title>[mapgauge.test] (9 samples, 0.02%)</title><rect x="458.8" y="1029" width="0.2" height="15.0" fill="rgb(209,26,46)" rx="2" ry="2" />
<text x="461.79" y="1039.5" ></text>
</g>
<g >
<title>__alloc_pages (4 samples, 0.01%)</title><rect x="639.4" y="949" width="0.1" height="15.0" fill="rgb(235,20,29)" rx="2" ry="2" />
<text x="642.38" y="959.5" ></text>
</g>
<g >
<title>psi_flags_change (9 samples, 0.02%)</title><rect x="1011.3" y="1189" width="0.3" height="15.0" fill="rgb(216,77,37)" rx="2" ry="2" />
<text x="1014.34" y="1199.5" ></text>
</g>
<g >
<title>[go] (504 samples, 1.12%)</title><rect x="19.7" y="1301" width="13.2" height="15.0" fill="rgb(222,117,7)" rx="2" ry="2" />
<text x="22.69" y="1311.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (36 samples, 0.08%)</title><rect x="1135.7" y="1269" width="0.9" height="15.0" fill="rgb(243,163,1)" rx="2" ry="2" />
<text x="1138.65" y="1279.5" ></text>
</g>
<g >
<title>handle_mm_fault (5 samples, 0.01%)</title><rect x="1189.6" y="1365" width="0.1" height="15.0" fill="rgb(248,205,23)" rx="2" ry="2" />
<text x="1192.58" y="1375.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5 samples, 0.01%)</title><rect x="1149.2" y="1253" width="0.1" height="15.0" fill="rgb(237,140,3)" rx="2" ry="2" />
<text x="1152.21" y="1263.5" ></text>
</g>
<g >
<title>__schedule (10 samples, 0.02%)</title><rect x="847.9" y="1301" width="0.3" height="15.0" fill="rgb(210,57,35)" rx="2" ry="2" />
<text x="850.90" y="1311.5" ></text>
</g>
<g >
<title>hrtimer_reprogram (5 samples, 0.01%)</title><rect x="869.9" y="1301" width="0.1" height="15.0" fill="rgb(218,191,15)" rx="2" ry="2" />
<text x="872.89" y="1311.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (13 samples, 0.03%)</title><rect x="510.3" y="1125" width="0.3" height="15.0" fill="rgb(230,45,23)" rx="2" ry="2" />
<text x="513.29" y="1135.5" ></text>
</g>
<g >
<title>discard_slab (65 samples, 0.14%)</title><rect x="1118.7" y="1205" width="1.7" height="15.0" fill="rgb(216,140,6)" rx="2" ry="2" />
<text x="1121.68" y="1215.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (7 samples, 0.02%)</title><rect x="704.3" y="1093" width="0.2" height="15.0" fill="rgb(218,221,28)" rx="2" ry="2" />
<text x="707.34" y="1103.5" ></text>
</g>
<g >
<title>rcu_core_si (22 samples, 0.05%)</title><rect x="1065.5" y="1205" width="0.6" height="15.0" fill="rgb(207,173,5)" rx="2" ry="2" />
<text x="1068.53" y="1215.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (6 samples, 0.01%)</title><rect x="462.1" y="1061" width="0.2" height="15.0" fill="rgb(211,132,30)" rx="2" ry="2" />
<text x="465.10" y="1071.5" ></text>
</g>
<g >
<title>__x64_sys_newfstatat (9 samples, 0.02%)</title><rect x="31.3" y="1253" width="0.2" height="15.0" fill="rgb(254,140,27)" rx="2" ry="2" />
<text x="34.29" y="1263.5" ></text>
</g>
<g >
<title>bpf_map_area_alloc (6 samples, 0.01%)</title><rect x="722.9" y="1189" width="0.2" height="15.0" fill="rgb(211,11,37)" rx="2" ry="2" />
<text x="725.93" y="1199.5" ></text>
</g>
<g >
<title>__do_softirq (22 samples, 0.05%)</title><rect x="1065.5" y="1221" width="0.6" height="15.0" fill="rgb(246,134,34)" rx="2" ry="2" />
<text x="1068.53" y="1231.5" ></text>
</g>
<g >
<title>handle_pte_fault (10 samples, 0.02%)</title><rect x="62.4" y="1317" width="0.3" height="15.0" fill="rgb(234,20,29)" rx="2" ry="2" />
<text x="65.44" y="1327.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (7 samples, 0.02%)</title><rect x="1176.1" y="1301" width="0.2" height="15.0" fill="rgb(216,49,18)" rx="2" ry="2" />
<text x="1179.11" y="1311.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (272 samples, 0.60%)</title><rect x="1061.4" y="1301" width="7.1" height="15.0" fill="rgb(236,155,40)" rx="2" ry="2" />
<text x="1064.38" y="1311.5" ></text>
</g>
<g >
<title>handle_pte_fault (81 samples, 0.18%)</title><rect x="833.5" y="1253" width="2.1" height="15.0" fill="rgb(244,210,41)" rx="2" ry="2" />
<text x="836.46" y="1263.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (24 samples, 0.05%)</title><rect x="1173.5" y="1285" width="0.6" height="15.0" fill="rgb(240,173,18)" rx="2" ry="2" />
<text x="1176.52" y="1295.5" ></text>
</g>
<g >
<title>handle_pte_fault (20 samples, 0.04%)</title><rect x="59.3" y="1253" width="0.6" height="15.0" fill="rgb(221,14,36)" rx="2" ry="2" />
<text x="62.33" y="1263.5" ></text>
</g>
<g >
<title>idr_get_free (242 samples, 0.54%)</title><rect x="738.0" y="1157" width="6.3" height="15.0" fill="rgb(211,42,4)" rx="2" ry="2" />
<text x="741.03" y="1167.5" ></text>
</g>
<g >
<title>[vet] (4 samples, 0.01%)</title><rect x="1188.1" y="117" width="0.1" height="15.0" fill="rgb(251,73,5)" rx="2" ry="2" />
<text x="1191.09" y="127.5" ></text>
</g>
<g >
<title>[mapgauge.test] (28,460 samples, 62.99%)</title><rect x="108.4" y="1413" width="743.3" height="15.0" fill="rgb(222,88,18)" rx="2" ry="2" />
<text x="111.41" y="1423.5" >[mapgauge.test]</text>
</g>
<g >
<title>__free_one_page (12 samples, 0.03%)</title><rect x="1053.7" y="949" width="0.3" height="15.0" fill="rgb(254,50,25)" rx="2" ry="2" />
<text x="1056.67" y="959.5" ></text>
</g>
<g >
<title>[go] (5 samples, 0.01%)</title><rect x="25.2" y="965" width="0.1" height="15.0" fill="rgb(205,152,25)" rx="2" ry="2" />
<text x="28.20" y="975.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10 samples, 0.02%)</title><rect x="837.2" y="1189" width="0.3" height="15.0" fill="rgb(216,210,41)" rx="2" ry="2" />
<text x="840.19" y="1199.5" ></text>
</g>
<g >
<title>ret_from_fork (5 samples, 0.01%)</title><rect x="10.6" y="1493" width="0.2" height="15.0" fill="rgb(245,192,48)" rx="2" ry="2" />
<text x="13.63" y="1503.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (4 samples, 0.01%)</title><rect x="875.3" y="1477" width="0.1" height="15.0" fill="rgb(212,161,51)" rx="2" ry="2" />
<text x="878.27" y="1487.5" ></text>
</g>
<g >
<title>iput (348 samples, 0.77%)</title><rect x="1136.9" y="1269" width="9.1" height="15.0" fill="rgb(238,124,24)" rx="2" ry="2" />
<text x="1139.88" y="1279.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (4 samples, 0.01%)</title><rect x="58.9" y="1285" width="0.1" height="15.0" fill="rgb(216,102,15)" rx="2" ry="2" />
<text x="61.86" y="1295.5" ></text>
</g>
<g >
<title>update_curr (18 samples, 0.04%)</title><rect x="861.7" y="1253" width="0.5" height="15.0" fill="rgb(232,22,15)" rx="2" ry="2" />
<text x="864.71" y="1263.5" ></text>
</g>
<g >
<title>_raw_spin_lock_irqsave (9 samples, 0.02%)</title><rect x="985.6" y="1237" width="0.2" height="15.0" fill="rgb(229,74,22)" rx="2" ry="2" />
<text x="988.59" y="1247.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (12 samples, 0.03%)</title><rect x="474.0" y="1189" width="0.4" height="15.0" fill="rgb(230,128,12)" rx="2" ry="2" />
<text x="477.04" y="1199.5" ></text>
</g>
<g >
<title>__unfreeze_partials (81 samples, 0.18%)</title><rect x="1118.3" y="1221" width="2.1" height="15.0" fill="rgb(230,193,40)" rx="2" ry="2" />
<text x="1121.26" y="1231.5" ></text>
</g>
<g >
<title>[mapgauge.test] (89 samples, 0.20%)</title><rect x="854.2" y="1397" width="2.4" height="15.0" fill="rgb(214,30,20)" rx="2" ry="2" />
<text x="857.25" y="1407.5" ></text>
</g>
<g >
<title>update_curr (63 samples, 0.14%)</title><rect x="1084.8" y="1221" width="1.6" height="15.0" fill="rgb(251,16,30)" rx="2" ry="2" />
<text x="1087.78" y="1231.5" ></text>
</g>
<g >
<title>rep_movs_alternative (60 samples, 0.13%)</title><rect x="748.3" y="1205" width="1.6" height="15.0" fill="rgb(222,55,14)" rx="2" ry="2" />
<text x="751.32" y="1215.5" ></text>
</g>
<g >
<title>do_anonymous_page (9 samples, 0.02%)</title><rect x="60.1" y="1253" width="0.3" height="15.0" fill="rgb(205,81,10)" rx="2" ry="2" />
<text x="63.12" y="1263.5" ></text>
</g>
<g >
<title>refill_obj_stock (4 samples, 0.01%)</title><rect x="964.7" y="1093" width="0.1" height="15.0" fill="rgb(254,89,54)" rx="2" ry="2" />
<text x="967.72" y="1103.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (132 samples, 0.29%)</title><rect x="1076.1" y="1253" width="3.5" height="15.0" fill="rgb(216,37,19)" rx="2" ry="2" />
<text x="1079.11" y="1263.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (8 samples, 0.02%)</title><rect x="1145.8" y="1205" width="0.2" height="15.0" fill="rgb(238,117,4)" rx="2" ry="2" />
<text x="1148.76" y="1215.5" ></text>
</g>
<g >
<title>perf_ctx_enable (13 samples, 0.03%)</title><rect x="43.3" y="1397" width="0.4" height="15.0" fill="rgb(223,43,29)" rx="2" ry="2" />
<text x="46.32" y="1407.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (7 samples, 0.02%)</title><rect x="850.4" y="1237" width="0.2" height="15.0" fill="rgb(239,39,11)" rx="2" ry="2" />
<text x="853.38" y="1247.5" ></text>
</g>
<g >
<title>free_unref_page (9 samples, 0.02%)</title><rect x="1119.4" y="1141" width="0.2" height="15.0" fill="rgb(239,65,38)" rx="2" ry="2" />
<text x="1122.41" y="1151.5" ></text>
</g>
<g >
<title>zap_pte_range (78 samples, 0.17%)</title><rect x="891.5" y="1237" width="2.0" height="15.0" fill="rgb(208,140,2)" rx="2" ry="2" />
<text x="894.46" y="1247.5" ></text>
</g>
<g >
<title>complete_signal (6 samples, 0.01%)</title><rect x="855.8" y="1253" width="0.1" height="15.0" fill="rgb(211,196,30)" rx="2" ry="2" />
<text x="858.76" y="1263.5" ></text>
</g>
<g >
<title>mod_objcg_state (4 samples, 0.01%)</title><rect x="620.9" y="1093" width="0.1" height="15.0" fill="rgb(215,55,43)" rx="2" ry="2" />
<text x="623.92" y="1103.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (4 samples, 0.01%)</title><rect x="865.8" y="1221" width="0.1" height="15.0" fill="rgb(234,2,31)" rx="2" ry="2" />
<text x="868.76" y="1231.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (10 samples, 0.02%)</title><rect x="854.7" y="1301" width="0.3" height="15.0" fill="rgb(242,105,4)" rx="2" ry="2" />
<text x="857.74" y="1311.5" ></text>
</g>
<g >
<title>[go] (32 samples, 0.07%)</title><rect x="24.7" y="1109" width="0.9" height="15.0" fill="rgb(239,120,15)" rx="2" ry="2" />
<text x="27.73" y="1119.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5 samples, 0.01%)</title><rect x="1061.2" y="1269" width="0.2" height="15.0" fill="rgb(229,0,15)" rx="2" ry="2" />
<text x="1064.25" y="1279.5" ></text>
</g>
<g >
<title>kmem_cache_free (5 samples, 0.01%)</title><rect x="924.7" y="1157" width="0.2" height="15.0" fill="rgb(236,63,15)" rx="2" ry="2" />
<text x="927.73" y="1167.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.01%)</title><rect x="34.9" y="1317" width="0.2" height="15.0" fill="rgb(215,140,35)" rx="2" ry="2" />
<text x="37.94" y="1327.5" ></text>
</g>
<g >
<title>[vet] (25 samples, 0.06%)</title><rect x="1187.6" y="949" width="0.6" height="15.0" fill="rgb(246,154,54)" rx="2" ry="2" />
<text x="1190.57" y="959.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (9 samples, 0.02%)</title><rect x="716.4" y="1125" width="0.3" height="15.0" fill="rgb(217,189,2)" rx="2" ry="2" />
<text x="719.43" y="1135.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (24 samples, 0.05%)</title><rect x="984.6" y="1253" width="0.7" height="15.0" fill="rgb(213,0,47)" rx="2" ry="2" />
<text x="987.65" y="1263.5" ></text>
</g>
<g >
<title>[go] (39 samples, 0.09%)</title><rect x="24.7" y="1125" width="1.0" height="15.0" fill="rgb(229,69,41)" rx="2" ry="2" />
<text x="27.65" y="1135.5" ></text>
</g>
<g >
<title>rmqueue (4 samples, 0.01%)</title><rect x="462.7" y="997" width="0.1" height="15.0" fill="rgb(246,109,49)" rx="2" ry="2" />
<text x="465.65" y="1007.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4 samples, 0.01%)</title><rect x="1164.4" y="1157" width="0.1" height="15.0" fill="rgb(213,132,49)" rx="2" ry="2" />
<text x="1167.43" y="1167.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5 samples, 0.01%)</title><rect x="850.1" y="1237" width="0.1" height="15.0" fill="rgb(231,205,8)" rx="2" ry="2" />
<text x="853.12" y="1247.5" ></text>
</g>
<g >
<title>__anon_inode_getfile (3,438 samples, 7.61%)</title><rect x="578.2" y="1173" width="89.8" height="15.0" fill="rgb(205,149,29)" rx="2" ry="2" />
<text x="581.22" y="1183.5" >__anon_ino..</text>
</g>
<g >
<title>file_free_rcu (7 samples, 0.02%)</title><rect x="1173.2" y="1125" width="0.2" height="15.0" fill="rgb(227,227,21)" rx="2" ry="2" />
<text x="1176.23" y="1135.5" ></text>
</g>
<g >
<title>__x64_sys_read (19 samples, 0.04%)</title><rect x="32.1" y="1253" width="0.5" height="15.0" fill="rgb(241,104,52)" rx="2" ry="2" />
<text x="35.12" y="1263.5" ></text>
</g>
<g >
<title>__queue_work (26 samples, 0.06%)</title><rect x="959.7" y="1285" width="0.7" height="15.0" fill="rgb(249,4,54)" rx="2" ry="2" />
<text x="962.68" y="1295.5" ></text>
</g>
<g >
<title>__alloc_pages (27 samples, 0.06%)</title><rect x="598.2" y="997" width="0.7" height="15.0" fill="rgb(250,0,36)" rx="2" ry="2" />
<text x="601.17" y="1007.5" ></text>
</g>
<g >
<title>__do_softirq (5 samples, 0.01%)</title><rect x="934.3" y="1237" width="0.1" height="15.0" fill="rgb(244,177,45)" rx="2" ry="2" />
<text x="937.29" y="1247.5" ></text>
</g>
<g >
<title>sched_clock (10 samples, 0.02%)</title><rect x="1036.5" y="1205" width="0.2" height="15.0" fill="rgb(245,48,43)" rx="2" ry="2" />
<text x="1039.49" y="1215.5" ></text>
</g>
<g >
<title>file_free_rcu (33 samples, 0.07%)</title><rect x="954.3" y="1173" width="0.9" height="15.0" fill="rgb(214,53,20)" rx="2" ry="2" />
<text x="957.35" y="1183.5" ></text>
</g>
<g >
<title>[unknown] (10 samples, 0.02%)</title><rect x="64.3" y="1509" width="0.3" height="15.0" fill="rgb(250,225,2)" rx="2" ry="2" />
<text x="67.35" y="1519.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (101 samples, 0.22%)</title><rect x="890.9" y="1253" width="2.6" height="15.0" fill="rgb(247,80,26)" rx="2" ry="2" />
<text x="893.86" y="1263.5" ></text>
</g>
<g >
<title>do_exit (8 samples, 0.02%)</title><rect x="11.7" y="1381" width="0.2" height="15.0" fill="rgb(238,174,3)" rx="2" ry="2" />
<text x="14.72" y="1391.5" ></text>
</g>
<g >
<title>__folio_alloc (18 samples, 0.04%)</title><rect x="463.1" y="1029" width="0.5" height="15.0" fill="rgb(224,22,30)" rx="2" ry="2" />
<text x="466.12" y="1039.5" ></text>
</g>
<g >
<title>put_prev_entity (6 samples, 0.01%)</title><rect x="1092.5" y="1253" width="0.2" height="15.0" fill="rgb(213,215,14)" rx="2" ry="2" />
<text x="1095.53" y="1263.5" ></text>
</g>
<g >
<title>rcu_core_si (53 samples, 0.12%)</title><rect x="1080.0" y="1173" width="1.4" height="15.0" fill="rgb(230,203,48)" rx="2" ry="2" />
<text x="1083.05" y="1183.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (44 samples, 0.10%)</title><rect x="855.3" y="1349" width="1.1" height="15.0" fill="rgb(247,49,11)" rx="2" ry="2" />
<text x="858.29" y="1359.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (4 samples, 0.01%)</title><rect x="833.8" y="1189" width="0.1" height="15.0" fill="rgb(233,37,19)" rx="2" ry="2" />
<text x="836.77" y="1199.5" ></text>
</g>
<g >
<title>schedule (6 samples, 0.01%)</title><rect x="469.9" y="1125" width="0.1" height="15.0" fill="rgb(228,213,13)" rx="2" ry="2" />
<text x="472.89" y="1135.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (18 samples, 0.04%)</title><rect x="1013.8" y="1141" width="0.5" height="15.0" fill="rgb(220,31,48)" rx="2" ry="2" />
<text x="1016.82" y="1151.5" ></text>
</g>
<g >
<title>pick_next_task (5 samples, 0.01%)</title><rect x="42.7" y="1301" width="0.2" height="15.0" fill="rgb(229,101,39)" rx="2" ry="2" />
<text x="45.72" y="1311.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (11 samples, 0.02%)</title><rect x="612.0" y="981" width="0.3" height="15.0" fill="rgb(251,154,44)" rx="2" ry="2" />
<text x="615.04" y="991.5" ></text>
</g>
<g >
<title>rcu_do_batch (4 samples, 0.01%)</title><rect x="920.7" y="1189" width="0.1" height="15.0" fill="rgb(233,157,31)" rx="2" ry="2" />
<text x="923.74" y="1199.5" ></text>
</g>
<g >
<title>memset_orig (4 samples, 0.01%)</title><rect x="675.9" y="1125" width="0.1" height="15.0" fill="rgb(234,189,7)" rx="2" ry="2" />
<text x="678.89" y="1135.5" ></text>
</g>
<g >
<title>[vet] (21 samples, 0.05%)</title><rect x="1187.7" y="757" width="0.5" height="15.0" fill="rgb(215,68,27)" rx="2" ry="2" />
<text x="1190.68" y="767.5" ></text>
</g>
<g >
<title>scheduler_tick (4 samples, 0.01%)</title><rect x="469.6" y="1093" width="0.1" height="15.0" fill="rgb(223,160,52)" rx="2" ry="2" />
<text x="472.63" y="1103.5" ></text>
</g>
<g >
<title>__free_pages (6 samples, 0.01%)</title><rect x="1171.1" y="1189" width="0.2" height="15.0" fill="rgb(253,109,27)" rx="2" ry="2" />
<text x="1174.14" y="1199.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.01%)</title><rect x="28.3" y="1189" width="0.1" height="15.0" fill="rgb(244,200,6)" rx="2" ry="2" />
<text x="31.28" y="1199.5" ></text>
</g>
<g >
<title>free_unref_page_commit (4 samples, 0.01%)</title><rect x="1123.2" y="965" width="0.2" height="15.0" fill="rgb(249,134,4)" rx="2" ry="2" />
<text x="1126.25" y="975.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (56 samples, 0.12%)</title><rect x="1005.1" y="1189" width="1.5" height="15.0" fill="rgb(233,38,45)" rx="2" ry="2" />
<text x="1008.15" y="1199.5" ></text>
</g>
<g >
<title>__queue_work (2,338 samples, 5.17%)</title><rect x="979.5" y="1269" width="61.1" height="15.0" fill="rgb(221,161,10)" rx="2" ry="2" />
<text x="982.50" y="1279.5" >__queu..</text>
</g>
<g >
<title>get_unused_fd_flags (252 samples, 0.56%)</title><rect x="669.5" y="1173" width="6.6" height="15.0" fill="rgb(249,101,41)" rx="2" ry="2" />
<text x="672.47" y="1183.5" ></text>
</g>
<g >
<title>do_futex (6 samples, 0.01%)</title><rect x="836.4" y="1285" width="0.2" height="15.0" fill="rgb(233,54,8)" rx="2" ry="2" />
<text x="839.41" y="1295.5" ></text>
</g>
<g >
<title>irq_exit_rcu (19 samples, 0.04%)</title><rect x="1127.4" y="1205" width="0.5" height="15.0" fill="rgb(237,158,2)" rx="2" ry="2" />
<text x="1130.40" y="1215.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (14 samples, 0.03%)</title><rect x="953.7" y="1301" width="0.4" height="15.0" fill="rgb(205,16,33)" rx="2" ry="2" />
<text x="956.70" y="1311.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4 samples, 0.01%)</title><rect x="1173.4" y="1125" width="0.1" height="15.0" fill="rgb(218,136,4)" rx="2" ry="2" />
<text x="1176.42" y="1135.5" ></text>
</g>
<g >
<title>psi_task_switch (33 samples, 0.07%)</title><rect x="865.0" y="1301" width="0.9" height="15.0" fill="rgb(207,194,14)" rx="2" ry="2" />
<text x="868.01" y="1311.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (4 samples, 0.01%)</title><rect x="964.7" y="1109" width="0.1" height="15.0" fill="rgb(218,50,37)" rx="2" ry="2" />
<text x="967.72" y="1119.5" ></text>
</g>
<g >
<title>fput (35 samples, 0.08%)</title><rect x="889.7" y="1333" width="1.0" height="15.0" fill="rgb(243,134,46)" rx="2" ry="2" />
<text x="892.74" y="1343.5" ></text>
</g>
<g >
<title>rcu_core_si (7 samples, 0.02%)</title><rect x="1102.4" y="1205" width="0.2" height="15.0" fill="rgb(221,105,38)" rx="2" ry="2" />
<text x="1105.40" y="1215.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (98 samples, 0.22%)</title><rect x="764.9" y="1141" width="2.6" height="15.0" fill="rgb(254,100,37)" rx="2" ry="2" />
<text x="767.90" y="1151.5" ></text>
</g>
<g >
<title>update_load_avg (122 samples, 0.27%)</title><rect x="1086.4" y="1221" width="3.2" height="15.0" fill="rgb(218,101,17)" rx="2" ry="2" />
<text x="1089.42" y="1231.5" ></text>
</g>
<g >
<title>exc_page_fault (69 samples, 0.15%)</title><rect x="464.8" y="1173" width="1.8" height="15.0" fill="rgb(254,215,50)" rx="2" ry="2" />
<text x="467.77" y="1183.5" ></text>
</g>
<g >
<title>rcu_core_si (9 samples, 0.02%)</title><rect x="1164.3" y="1205" width="0.2" height="15.0" fill="rgb(219,128,36)" rx="2" ry="2" />
<text x="1167.30" y="1215.5" ></text>
</g>
<g >
<title>tick_sched_timer (6 samples, 0.01%)</title><rect x="1044.6" y="1189" width="0.1" height="15.0" fill="rgb(226,3,35)" rx="2" ry="2" />
<text x="1047.58" y="1199.5" ></text>
</g>
<g >
<title>exc_page_fault (44 samples, 0.10%)</title><rect x="529.0" y="1253" width="1.2" height="15.0" fill="rgb(205,124,25)" rx="2" ry="2" />
<text x="532.04" y="1263.5" ></text>
</g>
<g >
<title>idr_get_next (7 samples, 0.02%)</title><rect x="515.7" y="1141" width="0.2" height="15.0" fill="rgb(248,212,21)" rx="2" ry="2" />
<text x="518.67" y="1151.5" ></text>
</g>
<g >
<title>file_free_rcu (8 samples, 0.02%)</title><rect x="924.7" y="1173" width="0.2" height="15.0" fill="rgb(233,71,34)" rx="2" ry="2" />
<text x="927.66" y="1183.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (30 samples, 0.07%)</title><rect x="863.0" y="1301" width="0.8" height="15.0" fill="rgb(219,125,11)" rx="2" ry="2" />
<text x="865.99" y="1311.5" ></text>
</g>
<g >
<title>irqentry_exit (4 samples, 0.01%)</title><rect x="530.1" y="1237" width="0.1" height="15.0" fill="rgb(239,63,54)" rx="2" ry="2" />
<text x="533.09" y="1247.5" ></text>
</g>
<g >
<title>[go] (291 samples, 0.64%)</title><rect x="21.4" y="1253" width="7.6" height="15.0" fill="rgb(214,150,54)" rx="2" ry="2" />
<text x="24.41" y="1263.5" ></text>
</g>
<g >
<title>rcu_core_si (14 samples, 0.03%)</title><rect x="1157.2" y="1205" width="0.4" height="15.0" fill="rgb(228,58,23)" rx="2" ry="2" />
<text x="1160.25" y="1215.5" ></text>
</g>
<g >
<title>pick_next_task (9 samples, 0.02%)</title><rect x="847.9" y="1285" width="0.3" height="15.0" fill="rgb(232,154,16)" rx="2" ry="2" />
<text x="850.92" y="1295.5" ></text>
</g>
<g >
<title>__do_softirq (8 samples, 0.02%)</title><rect x="924.7" y="1237" width="0.2" height="15.0" fill="rgb(226,149,31)" rx="2" ry="2" />
<text x="927.66" y="1247.5" ></text>
</g>
<g >
<title>find_task_by_vpid (7 samples, 0.02%)</title><rect x="856.0" y="1301" width="0.2" height="15.0" fill="rgb(219,57,32)" rx="2" ry="2" />
<text x="859.02" y="1311.5" ></text>
</g>
<g >
<title>put_files_struct (481 samples, 1.06%)</title><rect x="878.2" y="1349" width="12.6" height="15.0" fill="rgb(229,124,0)" rx="2" ry="2" />
<text x="881.25" y="1359.5" ></text>
</g>
<g >
<title>do_syscall_64 (333 samples, 0.74%)</title><rect x="858.2" y="1397" width="8.7" height="15.0" fill="rgb(208,48,0)" rx="2" ry="2" />
<text x="861.24" y="1407.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (10 samples, 0.02%)</title><rect x="864.7" y="1269" width="0.3" height="15.0" fill="rgb(250,116,14)" rx="2" ry="2" />
<text x="867.69" y="1279.5" ></text>
</g>
<g >
<title>_raw_spin_lock (30 samples, 0.07%)</title><rect x="672.7" y="1157" width="0.8" height="15.0" fill="rgb(251,127,10)" rx="2" ry="2" />
<text x="675.68" y="1167.5" ></text>
</g>
<g >
<title>irq_exit_rcu (13 samples, 0.03%)</title><rect x="1122.4" y="1189" width="0.3" height="15.0" fill="rgb(241,198,24)" rx="2" ry="2" />
<text x="1125.36" y="1199.5" ></text>
</g>
<g >
<title>__irqentry_text_end (13 samples, 0.03%)</title><rect x="832.9" y="1333" width="0.3" height="15.0" fill="rgb(230,97,33)" rx="2" ry="2" />
<text x="835.86" y="1343.5" ></text>
</g>
<g >
<title>exc_page_fault (54 samples, 0.12%)</title><rect x="467.2" y="1189" width="1.4" height="15.0" fill="rgb(230,183,29)" rx="2" ry="2" />
<text x="470.22" y="1199.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (18 samples, 0.04%)</title><rect x="1052.5" y="1109" width="0.5" height="15.0" fill="rgb(251,20,1)" rx="2" ry="2" />
<text x="1055.50" y="1119.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4 samples, 0.01%)</title><rect x="1120.3" y="1125" width="0.1" height="15.0" fill="rgb(239,81,24)" rx="2" ry="2" />
<text x="1123.27" y="1135.5" ></text>
</g>
<g >
<title>exc_page_fault (4 samples, 0.01%)</title><rect x="35.9" y="1397" width="0.1" height="15.0" fill="rgb(222,50,29)" rx="2" ry="2" />
<text x="38.86" y="1407.5" ></text>
</g>
<g >
<title>__handle_mm_fault (35 samples, 0.08%)</title><rect x="529.1" y="1205" width="0.9" height="15.0" fill="rgb(242,15,28)" rx="2" ry="2" />
<text x="532.09" y="1215.5" ></text>
</g>
<g >
<title>native_flush_tlb_one_user (5 samples, 0.01%)</title><rect x="851.3" y="1301" width="0.1" height="15.0" fill="rgb(231,208,3)" rx="2" ry="2" />
<text x="854.27" y="1311.5" ></text>
</g>
<g >
<title>__handle_mm_fault (30 samples, 0.07%)</title><rect x="836.8" y="1285" width="0.8" height="15.0" fill="rgb(231,220,20)" rx="2" ry="2" />
<text x="839.77" y="1295.5" ></text>
</g>
<g >
<title>__d_instantiate (47 samples, 0.10%)</title><rect x="661.4" y="1125" width="1.3" height="15.0" fill="rgb(250,27,12)" rx="2" ry="2" />
<text x="664.43" y="1135.5" ></text>
</g>
<g >
<title>sysvec_call_function_single (11 samples, 0.02%)</title><rect x="851.3" y="1381" width="0.3" height="15.0" fill="rgb(244,35,11)" rx="2" ry="2" />
<text x="854.27" y="1391.5" ></text>
</g>
<g >
<title>delete_node (6 samples, 0.01%)</title><rect x="976.6" y="1253" width="0.2" height="15.0" fill="rgb(207,188,31)" rx="2" ry="2" />
<text x="979.60" y="1263.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (12 samples, 0.03%)</title><rect x="1170.7" y="1253" width="0.3" height="15.0" fill="rgb(214,131,30)" rx="2" ry="2" />
<text x="1173.73" y="1263.5" ></text>
</g>
<g >
<title>rcu_do_batch (14 samples, 0.03%)</title><rect x="921.5" y="1189" width="0.4" height="15.0" fill="rgb(228,206,1)" rx="2" ry="2" />
<text x="924.55" y="1199.5" ></text>
</g>
<g >
<title>__handle_mm_fault (59 samples, 0.13%)</title><rect x="464.8" y="1125" width="1.6" height="15.0" fill="rgb(214,39,2)" rx="2" ry="2" />
<text x="467.82" y="1135.5" ></text>
</g>
<g >
<title>[vet] (38 samples, 0.08%)</title><rect x="1187.3" y="1013" width="1.0" height="15.0" fill="rgb(238,6,11)" rx="2" ry="2" />
<text x="1190.31" y="1023.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (10 samples, 0.02%)</title><rect x="930.6" y="1301" width="0.3" height="15.0" fill="rgb(254,27,20)" rx="2" ry="2" />
<text x="933.64" y="1311.5" ></text>
</g>
<g >
<title>wp_page_copy (10 samples, 0.02%)</title><rect x="460.9" y="1045" width="0.3" height="15.0" fill="rgb(218,203,27)" rx="2" ry="2" />
<text x="463.93" y="1055.5" ></text>
</g>
<g >
<title>__do_softirq (7 samples, 0.02%)</title><rect x="1176.1" y="1253" width="0.2" height="15.0" fill="rgb(237,177,19)" rx="2" ry="2" />
<text x="1179.11" y="1263.5" ></text>
</g>
<g >
<title>unmap_page_range (17 samples, 0.04%)</title><rect x="64.7" y="1333" width="0.4" height="15.0" fill="rgb(251,145,5)" rx="2" ry="2" />
<text x="67.66" y="1343.5" ></text>
</g>
<g >
<title>file_free_rcu (10 samples, 0.02%)</title><rect x="1127.4" y="1109" width="0.3" height="15.0" fill="rgb(230,229,20)" rx="2" ry="2" />
<text x="1130.42" y="1119.5" ></text>
</g>
<g >
<title>mod_node_page_state (7 samples, 0.02%)</title><rect x="697.4" y="1061" width="0.1" height="15.0" fill="rgb(239,111,35)" rx="2" ry="2" />
<text x="700.36" y="1071.5" ></text>
</g>
<g >
<title>kmem_cache_free (6 samples, 0.01%)</title><rect x="1106.7" y="1109" width="0.1" height="15.0" fill="rgb(241,85,19)" rx="2" ry="2" />
<text x="1109.69" y="1119.5" ></text>
</g>
<g >
<title>[mapgauge.test] (21,315 samples, 47.18%)</title><rect x="274.2" y="1285" width="556.7" height="15.0" fill="rgb(209,222,18)" rx="2" ry="2" />
<text x="277.20" y="1295.5" >[mapgauge.test]</text>
</g>
<g >
<title>[go] (4 samples, 0.01%)</title><rect x="852.4" y="1493" width="0.1" height="15.0" fill="rgb(221,221,16)" rx="2" ry="2" />
<text x="855.44" y="1503.5" ></text>
</g>
<g >
<title>pick_next_entity (7 samples, 0.02%)</title><rect x="1082.6" y="1237" width="0.2" height="15.0" fill="rgb(244,108,40)" rx="2" ry="2" />
<text x="1085.61" y="1247.5" ></text>
</g>
<g >
<title>[mapgauge.test] (4 samples, 0.01%)</title><rect x="852.4" y="1413" width="0.1" height="15.0" fill="rgb(247,7,3)" rx="2" ry="2" />
<text x="855.44" y="1423.5" ></text>
</g>
<g >
<title>handle_pte_fault (5 samples, 0.01%)</title><rect x="469.3" y="1141" width="0.1" height="15.0" fill="rgb(250,208,22)" rx="2" ry="2" />
<text x="472.26" y="1151.5" ></text>
</g>
<g >
<title>handle_pte_fault (38 samples, 0.08%)</title><rect x="467.4" y="1125" width="1.0" height="15.0" fill="rgb(216,170,33)" rx="2" ry="2" />
<text x="470.38" y="1135.5" ></text>
</g>
<g >
<title>x86_pmu_enable (13 samples, 0.03%)</title><rect x="43.3" y="1381" width="0.4" height="15.0" fill="rgb(213,106,3)" rx="2" ry="2" />
<text x="46.32" y="1391.5" ></text>
</g>
<g >
<title>vma_alloc_folio (107 samples, 0.24%)</title><rect x="843.5" y="1269" width="2.8" height="15.0" fill="rgb(245,222,27)" rx="2" ry="2" />
<text x="846.46" y="1279.5" ></text>
</g>
<g >
<title>error_entry (11 samples, 0.02%)</title><rect x="468.8" y="1205" width="0.3" height="15.0" fill="rgb(247,183,38)" rx="2" ry="2" />
<text x="471.79" y="1215.5" ></text>
</g>
<g >
<title>[vet] (7 samples, 0.02%)</title><rect x="1188.0" y="165" width="0.2" height="15.0" fill="rgb(209,192,24)" rx="2" ry="2" />
<text x="1191.02" y="175.5" ></text>
</g>
<g >
<title>release_pages (57 samples, 0.13%)</title><rect x="892.0" y="1173" width="1.5" height="15.0" fill="rgb(219,121,9)" rx="2" ry="2" />
<text x="894.98" y="1183.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.01%)</title><rect x="10.6" y="1477" width="0.2" height="15.0" fill="rgb(205,62,20)" rx="2" ry="2" />
<text x="13.63" y="1487.5" ></text>
</g>
<g >
<title>check_preempt_wakeup (5 samples, 0.01%)</title><rect x="1006.8" y="1205" width="0.1" height="15.0" fill="rgb(252,5,46)" rx="2" ry="2" />
<text x="1009.79" y="1215.5" ></text>
</g>
<g >
<title>rcu_core (9 samples, 0.02%)</title><rect x="1136.4" y="1157" width="0.2" height="15.0" fill="rgb(242,177,1)" rx="2" ry="2" />
<text x="1139.36" y="1167.5" ></text>
</g>
<g >
<title>irqentry_exit (8 samples, 0.02%)</title><rect x="469.8" y="1189" width="0.2" height="15.0" fill="rgb(252,116,0)" rx="2" ry="2" />
<text x="472.83" y="1199.5" ></text>
</g>
<g >
<title>wp_page_copy (42 samples, 0.09%)</title><rect x="465.3" y="1077" width="1.1" height="15.0" fill="rgb(214,73,8)" rx="2" ry="2" />
<text x="468.26" y="1087.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5 samples, 0.01%)</title><rect x="934.3" y="1269" width="0.1" height="15.0" fill="rgb(224,60,50)" rx="2" ry="2" />
<text x="937.29" y="1279.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (5 samples, 0.01%)</title><rect x="63.3" y="1365" width="0.2" height="15.0" fill="rgb(219,22,4)" rx="2" ry="2" />
<text x="66.33" y="1375.5" ></text>
</g>
<g >
<title>file_free_rcu (4 samples, 0.01%)</title><rect x="1176.6" y="1189" width="0.1" height="15.0" fill="rgb(210,154,54)" rx="2" ry="2" />
<text x="1179.60" y="1199.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (242 samples, 0.54%)</title><rect x="1075.2" y="1269" width="6.3" height="15.0" fill="rgb(207,179,29)" rx="2" ry="2" />
<text x="1078.22" y="1279.5" ></text>
</g>
<g >
<title>handle_mm_fault (10 samples, 0.02%)</title><rect x="60.1" y="1301" width="0.3" height="15.0" fill="rgb(238,190,46)" rx="2" ry="2" />
<text x="63.09" y="1311.5" ></text>
</g>
<g >
<title>get_page_from_freelist (9 samples, 0.02%)</title><rect x="675.3" y="1045" width="0.2" height="15.0" fill="rgb(247,120,6)" rx="2" ry="2" />
<text x="678.27" y="1055.5" ></text>
</g>
<g >
<title>page_remove_rmap (6 samples, 0.01%)</title><rect x="64.8" y="1285" width="0.2" height="15.0" fill="rgb(210,111,28)" rx="2" ry="2" />
<text x="67.84" y="1295.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (7 samples, 0.02%)</title><rect x="893.2" y="1125" width="0.2" height="15.0" fill="rgb(247,107,25)" rx="2" ry="2" />
<text x="896.21" y="1135.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (20 samples, 0.04%)</title><rect x="965.2" y="1285" width="0.5" height="15.0" fill="rgb(254,8,54)" rx="2" ry="2" />
<text x="968.21" y="1295.5" ></text>
</g>
<g >
<title>mntput_no_expire (98 samples, 0.22%)</title><rect x="1155.1" y="1301" width="2.5" height="15.0" fill="rgb(231,165,22)" rx="2" ry="2" />
<text x="1158.06" y="1311.5" ></text>
</g>
<g >
<title>security_bpf (4 samples, 0.01%)</title><rect x="751.0" y="1221" width="0.1" height="15.0" fill="rgb(237,33,2)" rx="2" ry="2" />
<text x="753.98" y="1231.5" ></text>
</g>
<g >
<title>rcu_do_batch (6 samples, 0.01%)</title><rect x="1176.1" y="1205" width="0.2" height="15.0" fill="rgb(244,198,45)" rx="2" ry="2" />
<text x="1179.13" y="1215.5" ></text>
</g>
<g >
<title>__smp_call_single_queue (545 samples, 1.21%)</title><rect x="1016.5" y="1205" width="14.2" height="15.0" fill="rgb(234,207,9)" rx="2" ry="2" />
<text x="1019.48" y="1215.5" ></text>
</g>
<g >
<title>allocate_slab (10 samples, 0.02%)</title><rect x="744.1" y="1077" width="0.2" height="15.0" fill="rgb(229,217,48)" rx="2" ry="2" />
<text x="747.06" y="1087.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (28 samples, 0.06%)</title><rect x="867.1" y="1413" width="0.7" height="15.0" fill="rgb(238,92,36)" rx="2" ry="2" />
<text x="870.07" y="1423.5" ></text>
</g>
<g >
<title>do_wp_page (43 samples, 0.10%)</title><rect x="465.2" y="1093" width="1.2" height="15.0" fill="rgb(223,125,28)" rx="2" ry="2" />
<text x="468.24" y="1103.5" ></text>
</g>
<g >
<title>bpf_iter_run_prog (384 samples, 0.85%)</title><rect x="517.2" y="1141" width="10.0" height="15.0" fill="rgb(222,197,44)" rx="2" ry="2" />
<text x="520.16" y="1151.5" ></text>
</g>
<g >
<title>[compile] (23 samples, 0.05%)</title><rect x="10.9" y="1429" width="0.6" height="15.0" fill="rgb(231,109,48)" rx="2" ry="2" />
<text x="13.86" y="1439.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.01%)</title><rect x="1189.3" y="1365" width="0.2" height="15.0" fill="rgb(221,164,31)" rx="2" ry="2" />
<text x="1192.35" y="1375.5" ></text>
</g>
<g >
<title>__get_random_u32_below (7 samples, 0.02%)</title><rect x="698.2" y="1045" width="0.2" height="15.0" fill="rgb(221,130,42)" rx="2" ry="2" />
<text x="701.22" y="1055.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (7 samples, 0.02%)</title><rect x="1176.1" y="1269" width="0.2" height="15.0" fill="rgb(251,32,33)" rx="2" ry="2" />
<text x="1179.11" y="1279.5" ></text>
</g>
<g >
<title>[vet] (22 samples, 0.05%)</title><rect x="1187.6" y="853" width="0.6" height="15.0" fill="rgb(242,198,26)" rx="2" ry="2" />
<text x="1190.65" y="863.5" ></text>
</g>
<g >
<title>futex_wait_queue (14 samples, 0.03%)</title><rect x="35.3" y="1269" width="0.3" height="15.0" fill="rgb(240,155,28)" rx="2" ry="2" />
<text x="38.28" y="1279.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (6 samples, 0.01%)</title><rect x="1106.8" y="1125" width="0.2" height="15.0" fill="rgb(216,186,36)" rx="2" ry="2" />
<text x="1109.84" y="1135.5" ></text>
</g>
<g >
<title>__folio_alloc (6 samples, 0.01%)</title><rect x="59.7" y="1189" width="0.2" height="15.0" fill="rgb(235,88,8)" rx="2" ry="2" />
<text x="62.70" y="1199.5" ></text>
</g>
<g >
<title>[mapgauge.test] (27 samples, 0.06%)</title><rect x="868.6" y="1397" width="0.7" height="15.0" fill="rgb(243,186,19)" rx="2" ry="2" />
<text x="871.58" y="1407.5" ></text>
</g>
<g >
<title>mas_walk (6 samples, 0.01%)</title><rect x="835.6" y="1269" width="0.2" height="15.0" fill="rgb(240,33,12)" rx="2" ry="2" />
<text x="838.62" y="1279.5" ></text>
</g>
<g >
<title>irq_exit_rcu (8 samples, 0.02%)</title><rect x="924.7" y="1269" width="0.2" height="15.0" fill="rgb(235,137,43)" rx="2" ry="2" />
<text x="927.66" y="1279.5" ></text>
</g>
<g >
<title>slab_pre_alloc_hook.constprop.0 (4 samples, 0.01%)</title><rect x="660.3" y="1109" width="0.1" height="15.0" fill="rgb(247,69,54)" rx="2" ry="2" />
<text x="663.28" y="1119.5" ></text>
</g>
<g >
<title>do_syscall_64 (9,410 samples, 20.83%)</title><rect x="557.5" y="1253" width="245.8" height="15.0" fill="rgb(206,30,23)" rx="2" ry="2" />
<text x="560.53" y="1263.5" >do_syscall_64</text>
</g>
<g >
<title>sched_clock_noinstr (107 samples, 0.24%)</title><rect x="1033.5" y="1173" width="2.8" height="15.0" fill="rgb(254,43,46)" rx="2" ry="2" />
<text x="1036.46" y="1183.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (4 samples, 0.01%)</title><rect x="986.6" y="1237" width="0.1" height="15.0" fill="rgb(214,129,3)" rx="2" ry="2" />
<text x="989.60" y="1247.5" ></text>
</g>
<g >
<title>memset_orig (9 samples, 0.02%)</title><rect x="600.4" y="1077" width="0.2" height="15.0" fill="rgb(231,205,2)" rx="2" ry="2" />
<text x="603.39" y="1087.5" ></text>
</g>
<g >
<title>__do_softirq (5 samples, 0.01%)</title><rect x="877.4" y="1285" width="0.1" height="15.0" fill="rgb(215,185,36)" rx="2" ry="2" />
<text x="880.36" y="1295.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (6 samples, 0.01%)</title><rect x="617.5" y="1077" width="0.2" height="15.0" fill="rgb(216,6,51)" rx="2" ry="2" />
<text x="620.52" y="1087.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (12 samples, 0.03%)</title><rect x="1148.0" y="1237" width="0.3" height="15.0" fill="rgb(240,93,29)" rx="2" ry="2" />
<text x="1151.03" y="1247.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4 samples, 0.01%)</title><rect x="837.8" y="1301" width="0.1" height="15.0" fill="rgb(213,147,40)" rx="2" ry="2" />
<text x="840.82" y="1311.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (4 samples, 0.01%)</title><rect x="1130.1" y="1221" width="0.1" height="15.0" fill="rgb(224,93,43)" rx="2" ry="2" />
<text x="1133.11" y="1231.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (6 samples, 0.01%)</title><rect x="837.8" y="1365" width="0.1" height="15.0" fill="rgb(220,177,16)" rx="2" ry="2" />
<text x="840.79" y="1375.5" ></text>
</g>
<g >
<title>[mapgauge.test] (9,372 samples, 20.74%)</title><rect x="283.9" y="1269" width="244.8" height="15.0" fill="rgb(212,20,40)" rx="2" ry="2" />
<text x="286.94" y="1279.5" >[mapgauge.test]</text>
</g>
<g >
<title>rep_movs_alternative (8 samples, 0.02%)</title><rect x="32.2" y="1125" width="0.2" height="15.0" fill="rgb(249,155,54)" rx="2" ry="2" />
<text x="35.23" y="1135.5" ></text>
</g>
<g >
<title>handle_pte_fault (110 samples, 0.24%)</title><rect x="470.8" y="1157" width="2.9" height="15.0" fill="rgb(232,134,34)" rx="2" ry="2" />
<text x="473.80" y="1167.5" ></text>
</g>
<g >
<title>rmqueue_bulk (16 samples, 0.04%)</title><rect x="695.5" y="981" width="0.4" height="15.0" fill="rgb(226,57,14)" rx="2" ry="2" />
<text x="698.51" y="991.5" ></text>
</g>
<g >
<title>d_alloc_pseudo (1,315 samples, 2.91%)</title><rect x="626.9" y="1141" width="34.3" height="15.0" fill="rgb(249,132,49)" rx="2" ry="2" />
<text x="629.90" y="1151.5" >d_..</text>
</g>
<g >
<title>clear_page_erms (15 samples, 0.03%)</title><rect x="463.1" y="981" width="0.4" height="15.0" fill="rgb(245,61,23)" rx="2" ry="2" />
<text x="466.12" y="991.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (19 samples, 0.04%)</title><rect x="64.6" y="1509" width="0.5" height="15.0" fill="rgb(242,191,22)" rx="2" ry="2" />
<text x="67.61" y="1519.5" ></text>
</g>
<g >
<title>[vet] (107 samples, 0.24%)</title><rect x="1185.9" y="1189" width="2.8" height="15.0" fill="rgb(229,141,23)" rx="2" ry="2" />
<text x="1188.93" y="1199.5" ></text>
</g>
<g >
<title>[link] (9 samples, 0.02%)</title><rect x="57.8" y="1237" width="0.3" height="15.0" fill="rgb(218,126,0)" rx="2" ry="2" />
<text x="60.82" y="1247.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (17 samples, 0.04%)</title><rect x="892.5" y="1125" width="0.4" height="15.0" fill="rgb(246,106,41)" rx="2" ry="2" />
<text x="895.48" y="1135.5" ></text>
</g>
<g >
<title>strlen (22 samples, 0.05%)</title><rect x="667.4" y="1157" width="0.6" height="15.0" fill="rgb(252,161,0)" rx="2" ry="2" />
<text x="670.43" y="1167.5" ></text>
</g>
<g >
<title>__slab_free (4 samples, 0.01%)</title><rect x="1130.3" y="1061" width="0.1" height="15.0" fill="rgb(232,90,41)" rx="2" ry="2" />
<text x="1133.27" y="1071.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (17 samples, 0.04%)</title><rect x="64.7" y="1317" width="0.4" height="15.0" fill="rgb(245,165,31)" rx="2" ry="2" />
<text x="67.66" y="1327.5" ></text>
</g>
<g >
<title>vma_alloc_folio (13 samples, 0.03%)</title><rect x="837.1" y="1237" width="0.4" height="15.0" fill="rgb(216,56,15)" rx="2" ry="2" />
<text x="840.14" y="1247.5" ></text>
</g>
<g >
<title>vma_alloc_folio (5 samples, 0.01%)</title><rect x="850.1" y="1285" width="0.1" height="15.0" fill="rgb(252,97,51)" rx="2" ry="2" />
<text x="853.12" y="1295.5" ></text>
</g>
<g >
<title>percpu_counter_add_batch (7 samples, 0.02%)</title><rect x="626.7" y="1125" width="0.2" height="15.0" fill="rgb(238,192,1)" rx="2" ry="2" />
<text x="629.72" y="1135.5" ></text>
</g>
<g >
<title>__cond_resched (14 samples, 0.03%)</title><rect x="920.3" y="1317" width="0.4" height="15.0" fill="rgb(250,18,45)" rx="2" ry="2" />
<text x="923.29" y="1327.5" ></text>
</g>
<g >
<title>rmqueue_bulk (9 samples, 0.02%)</title><rect x="473.2" y="1029" width="0.3" height="15.0" fill="rgb(246,29,48)" rx="2" ry="2" />
<text x="476.23" y="1039.5" ></text>
</g>
<g >
<title>[[vdso]] (18 samples, 0.04%)</title><rect x="194.8" y="1365" width="0.4" height="15.0" fill="rgb(222,196,0)" rx="2" ry="2" />
<text x="197.77" y="1375.5" ></text>
</g>
<g >
<title>___slab_alloc (610 samples, 1.35%)</title><rect x="682.6" y="1109" width="15.9" height="15.0" fill="rgb(238,137,22)" rx="2" ry="2" />
<text x="685.58" y="1119.5" ></text>
</g>
<g >
<title>do_anonymous_page (9 samples, 0.02%)</title><rect x="460.6" y="1061" width="0.3" height="15.0" fill="rgb(234,153,49)" rx="2" ry="2" />
<text x="463.64" y="1071.5" ></text>
</g>
<g >
<title>enqueue_hrtimer (12 samples, 0.03%)</title><rect x="859.3" y="1301" width="0.3" height="15.0" fill="rgb(206,97,41)" rx="2" ry="2" />
<text x="862.26" y="1311.5" ></text>
</g>
<g >
<title>security_capable (4 samples, 0.01%)</title><rect x="722.4" y="1173" width="0.1" height="15.0" fill="rgb(241,40,4)" rx="2" ry="2" />
<text x="725.36" y="1183.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (668 samples, 1.48%)</title><rect x="753.3" y="1173" width="17.5" height="15.0" fill="rgb(209,16,33)" rx="2" ry="2" />
<text x="756.30" y="1183.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (11 samples, 0.02%)</title><rect x="44.1" y="1445" width="0.3" height="15.0" fill="rgb(243,152,25)" rx="2" ry="2" />
<text x="47.13" y="1455.5" ></text>
</g>
<g >
<title>apparmor_task_kill (4 samples, 0.01%)</title><rect x="855.4" y="1269" width="0.1" height="15.0" fill="rgb(218,127,36)" rx="2" ry="2" />
<text x="858.37" y="1279.5" ></text>
</g>
<g >
<title>perf_event_context_sched_out (148 samples, 0.33%)</title><rect x="1093.8" y="1237" width="3.9" height="15.0" fill="rgb(248,121,50)" rx="2" ry="2" />
<text x="1096.84" y="1247.5" ></text>
</g>
<g >
<title>lapic_next_deadline (5 samples, 0.01%)</title><rect x="860.0" y="1269" width="0.2" height="15.0" fill="rgb(246,40,33)" rx="2" ry="2" />
<text x="863.04" y="1279.5" ></text>
</g>
<g >
<title>sched_clock (124 samples, 0.27%)</title><rect x="1033.0" y="1189" width="3.3" height="15.0" fill="rgb(216,18,48)" rx="2" ry="2" />
<text x="1036.01" y="1199.5" ></text>
</g>
<g >
<title>[vet] (258 samples, 0.57%)</title><rect x="1183.1" y="1477" width="6.7" height="15.0" fill="rgb(209,96,52)" rx="2" ry="2" />
<text x="1186.08" y="1487.5" ></text>
</g>
<g >
<title>free_unref_page (4 samples, 0.01%)</title><rect x="1123.2" y="981" width="0.2" height="15.0" fill="rgb(208,72,39)" rx="2" ry="2" />
<text x="1126.25" y="991.5" ></text>
</g>
<g >
<title>do_futex (14 samples, 0.03%)</title><rect x="35.3" y="1301" width="0.3" height="15.0" fill="rgb(213,89,29)" rx="2" ry="2" />
<text x="38.28" y="1311.5" ></text>
</g>
<g >
<title>__handle_mm_fault (42 samples, 0.09%)</title><rect x="467.3" y="1141" width="1.1" height="15.0" fill="rgb(223,220,12)" rx="2" ry="2" />
<text x="470.28" y="1151.5" ></text>
</g>
<g >
<title>prepare_task_switch (4 samples, 0.01%)</title><rect x="1102.7" y="1285" width="0.1" height="15.0" fill="rgb(254,167,28)" rx="2" ry="2" />
<text x="1105.67" y="1295.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (19 samples, 0.04%)</title><rect x="842.8" y="1269" width="0.5" height="15.0" fill="rgb(248,178,50)" rx="2" ry="2" />
<text x="845.78" y="1279.5" ></text>
</g>
<g >
<title>x86_pmu_disable (122 samples, 0.27%)</title><rect x="1094.4" y="1205" width="3.2" height="15.0" fill="rgb(217,18,21)" rx="2" ry="2" />
<text x="1097.39" y="1215.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.01%)</title><rect x="852.4" y="1429" width="0.1" height="15.0" fill="rgb(233,196,39)" rx="2" ry="2" />
<text x="855.44" y="1439.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (8 samples, 0.02%)</title><rect x="469.8" y="1173" width="0.2" height="15.0" fill="rgb(211,60,3)" rx="2" ry="2" />
<text x="472.83" y="1183.5" ></text>
</g>
<g >
<title>rcu_do_batch (18 samples, 0.04%)</title><rect x="1127.4" y="1125" width="0.5" height="15.0" fill="rgb(208,112,4)" rx="2" ry="2" />
<text x="1130.42" y="1135.5" ></text>
</g>
<g >
<title>clear_page_erms (9 samples, 0.02%)</title><rect x="675.3" y="1029" width="0.2" height="15.0" fill="rgb(218,9,46)" rx="2" ry="2" />
<text x="678.27" y="1039.5" ></text>
</g>
<g >
<title>[[vdso]] (4 samples, 0.01%)</title><rect x="173.5" y="1381" width="0.1" height="15.0" fill="rgb(249,39,8)" rx="2" ry="2" />
<text x="176.54" y="1391.5" ></text>
</g>
<g >
<title>error_entry (4 samples, 0.01%)</title><rect x="868.1" y="1477" width="0.1" height="15.0" fill="rgb(237,198,42)" rx="2" ry="2" />
<text x="871.09" y="1487.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="1176.6" y="1317" width="0.1" height="15.0" fill="rgb(251,152,36)" rx="2" ry="2" />
<text x="1179.60" y="1327.5" ></text>
</g>
<g >
<title>kmem_cache_free (9 samples, 0.02%)</title><rect x="1146.3" y="1285" width="0.2" height="15.0" fill="rgb(222,194,5)" rx="2" ry="2" />
<text x="1149.25" y="1295.5" ></text>
</g>
<g >
<title>__rcu_read_lock (14 samples, 0.03%)</title><rect x="614.6" y="1093" width="0.4" height="15.0" fill="rgb(251,73,38)" rx="2" ry="2" />
<text x="617.60" y="1103.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (13 samples, 0.03%)</title><rect x="965.8" y="1269" width="0.4" height="15.0" fill="rgb(228,18,43)" rx="2" ry="2" />
<text x="968.84" y="1279.5" ></text>
</g>
<g >
<title>__free_slab (8 samples, 0.02%)</title><rect x="1171.1" y="1205" width="0.2" height="15.0" fill="rgb(247,195,38)" rx="2" ry="2" />
<text x="1174.12" y="1215.5" ></text>
</g>
<g >
<title>__slab_free (6 samples, 0.01%)</title><rect x="921.7" y="1141" width="0.1" height="15.0" fill="rgb(217,196,40)" rx="2" ry="2" />
<text x="924.65" y="1151.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (4 samples, 0.01%)</title><rect x="465.3" y="1061" width="0.1" height="15.0" fill="rgb(230,225,51)" rx="2" ry="2" />
<text x="468.34" y="1071.5" ></text>
</g>
<g >
<title>path_lookupat (4 samples, 0.01%)</title><rect x="25.7" y="1013" width="0.1" height="15.0" fill="rgb(241,179,3)" rx="2" ry="2" />
<text x="28.72" y="1023.5" ></text>
</g>
<g >
<title>refill_obj_stock (7 samples, 0.02%)</title><rect x="712.0" y="1093" width="0.2" height="15.0" fill="rgb(246,85,29)" rx="2" ry="2" />
<text x="715.04" y="1103.5" ></text>
</g>
<g >
<title>try_charge_memcg (8 samples, 0.02%)</title><rect x="622.6" y="1077" width="0.2" height="15.0" fill="rgb(223,27,23)" rx="2" ry="2" />
<text x="625.59" y="1087.5" ></text>
</g>
<g >
<title>rcu_do_batch (9 samples, 0.02%)</title><rect x="1136.4" y="1141" width="0.2" height="15.0" fill="rgb(243,214,36)" rx="2" ry="2" />
<text x="1139.36" y="1151.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (23 samples, 0.05%)</title><rect x="612.5" y="1045" width="0.6" height="15.0" fill="rgb(245,40,40)" rx="2" ry="2" />
<text x="615.48" y="1055.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (15 samples, 0.03%)</title><rect x="465.7" y="1045" width="0.3" height="15.0" fill="rgb(205,76,37)" rx="2" ry="2" />
<text x="468.66" y="1055.5" ></text>
</g>
<g >
<title>radix_tree_node_rcu_free (29 samples, 0.06%)</title><rect x="1053.2" y="1141" width="0.8" height="15.0" fill="rgb(245,177,28)" rx="2" ry="2" />
<text x="1056.23" y="1151.5" ></text>
</g>
<g >
<title>rb_insert_color (4 samples, 0.01%)</title><rect x="1010.9" y="1173" width="0.1" height="15.0" fill="rgb(218,221,18)" rx="2" ry="2" />
<text x="1013.87" y="1183.5" ></text>
</g>
<g >
<title>do_wp_page (12 samples, 0.03%)</title><rect x="850.2" y="1301" width="0.4" height="15.0" fill="rgb(220,148,23)" rx="2" ry="2" />
<text x="853.25" y="1311.5" ></text>
</g>
<g >
<title>[vet] (45 samples, 0.10%)</title><rect x="1187.2" y="1077" width="1.2" height="15.0" fill="rgb(235,52,4)" rx="2" ry="2" />
<text x="1190.23" y="1087.5" ></text>
</g>
<g >
<title>exc_page_fault (12 samples, 0.03%)</title><rect x="62.4" y="1381" width="0.3" height="15.0" fill="rgb(205,19,44)" rx="2" ry="2" />
<text x="65.39" y="1391.5" ></text>
</g>
<g >
<title>rcu_do_batch (6 samples, 0.01%)</title><rect x="1145.8" y="1141" width="0.2" height="15.0" fill="rgb(213,75,39)" rx="2" ry="2" />
<text x="1148.81" y="1151.5" ></text>
</g>
<g >
<title>__x64_sys_openat (23 samples, 0.05%)</title><rect x="31.5" y="1253" width="0.6" height="15.0" fill="rgb(246,29,23)" rx="2" ry="2" />
<text x="34.52" y="1263.5" ></text>
</g>
<g >
<title>[vet] (22 samples, 0.05%)</title><rect x="1187.6" y="805" width="0.6" height="15.0" fill="rgb(248,130,28)" rx="2" ry="2" />
<text x="1190.65" y="815.5" ></text>
</g>
<g >
<title>[go] (50 samples, 0.11%)</title><rect x="24.5" y="1141" width="1.4" height="15.0" fill="rgb(232,46,8)" rx="2" ry="2" />
<text x="27.55" y="1151.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (9 samples, 0.02%)</title><rect x="459.9" y="1061" width="0.2" height="15.0" fill="rgb(246,64,45)" rx="2" ry="2" />
<text x="462.91" y="1071.5" ></text>
</g>
<g >
<title>alloc_empty_file (1,603 samples, 3.55%)</title><rect x="583.6" y="1125" width="41.9" height="15.0" fill="rgb(254,199,52)" rx="2" ry="2" />
<text x="586.60" y="1135.5" >all..</text>
</g>
<g >
<title>rep_movs_alternative (4 samples, 0.01%)</title><rect x="858.6" y="1349" width="0.1" height="15.0" fill="rgb(243,75,54)" rx="2" ry="2" />
<text x="861.61" y="1359.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (9 samples, 0.02%)</title><rect x="1164.3" y="1237" width="0.2" height="15.0" fill="rgb(233,55,36)" rx="2" ry="2" />
<text x="1167.30" y="1247.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (31 samples, 0.07%)</title><rect x="60.6" y="1365" width="0.8" height="15.0" fill="rgb(250,131,19)" rx="2" ry="2" />
<text x="63.59" y="1375.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6 samples, 0.01%)</title><rect x="465.1" y="1029" width="0.1" height="15.0" fill="rgb(220,136,1)" rx="2" ry="2" />
<text x="468.08" y="1039.5" ></text>
</g>
<g >
<title>perf_event_exec (12 samples, 0.03%)</title><rect x="1182.6" y="1333" width="0.3" height="15.0" fill="rgb(250,32,17)" rx="2" ry="2" />
<text x="1185.61" y="1343.5" ></text>
</g>
<g >
<title>handle_pte_fault (34 samples, 0.08%)</title><rect x="529.1" y="1189" width="0.9" height="15.0" fill="rgb(210,31,19)" rx="2" ry="2" />
<text x="532.12" y="1199.5" ></text>
</g>
<g >
<title>rcu_do_batch (30 samples, 0.07%)</title><rect x="1181.7" y="1237" width="0.8" height="15.0" fill="rgb(233,55,16)" rx="2" ry="2" />
<text x="1184.72" y="1247.5" ></text>
</g>
<g >
<title>discard_slab (19 samples, 0.04%)</title><rect x="1053.5" y="1061" width="0.5" height="15.0" fill="rgb(207,209,27)" rx="2" ry="2" />
<text x="1056.49" y="1071.5" ></text>
</g>
<g >
<title>__alloc_pages (8 samples, 0.02%)</title><rect x="744.1" y="1045" width="0.2" height="15.0" fill="rgb(239,151,37)" rx="2" ry="2" />
<text x="747.06" y="1055.5" ></text>
</g>
<g >
<title>[vet] (8 samples, 0.02%)</title><rect x="1188.0" y="213" width="0.2" height="15.0" fill="rgb(228,221,4)" rx="2" ry="2" />
<text x="1190.99" y="223.5" ></text>
</g>
<g >
<title>rcu_core_si (8 samples, 0.02%)</title><rect x="1145.8" y="1173" width="0.2" height="15.0" fill="rgb(234,47,28)" rx="2" ry="2" />
<text x="1148.76" y="1183.5" ></text>
</g>
<g >
<title>_get_random_bytes (7 samples, 0.02%)</title><rect x="614.1" y="997" width="0.2" height="15.0" fill="rgb(237,7,6)" rx="2" ry="2" />
<text x="617.08" y="1007.5" ></text>
</g>
<g >
<title>do_syscall_64 (46 samples, 0.10%)</title><rect x="26.5" y="1157" width="1.2" height="15.0" fill="rgb(220,219,51)" rx="2" ry="2" />
<text x="29.53" y="1167.5" ></text>
</g>
<g >
<title>vet (270 samples, 0.60%)</title><rect x="1182.9" y="1525" width="7.1" height="15.0" fill="rgb(232,190,1)" rx="2" ry="2" />
<text x="1185.95" y="1535.5" ></text>
</g>
<g >
<title>__alloc_pages (4 samples, 0.01%)</title><rect x="606.4" y="1045" width="0.1" height="15.0" fill="rgb(237,47,5)" rx="2" ry="2" />
<text x="609.40" y="1055.5" ></text>
</g>
<g >
<title>mod_memcg_state (9 samples, 0.02%)</title><rect x="622.3" y="1061" width="0.2" height="15.0" fill="rgb(254,163,48)" rx="2" ry="2" />
<text x="625.28" y="1071.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (937 samples, 2.07%)</title><rect x="806.4" y="1269" width="24.5" height="15.0" fill="rgb(228,223,20)" rx="2" ry="2" />
<text x="809.40" y="1279.5" >s..</text>
</g>
<g >
<title>[vet] (44 samples, 0.10%)</title><rect x="1187.3" y="1061" width="1.1" height="15.0" fill="rgb(246,8,31)" rx="2" ry="2" />
<text x="1190.26" y="1071.5" ></text>
</g>
<g >
<title>map_id_up (5 samples, 0.01%)</title><rect x="856.3" y="1301" width="0.1" height="15.0" fill="rgb(229,3,46)" rx="2" ry="2" />
<text x="859.28" y="1311.5" ></text>
</g>
<g >
<title>d_flags_for_inode (4 samples, 0.01%)</title><rect x="664.2" y="1125" width="0.2" height="15.0" fill="rgb(210,162,54)" rx="2" ry="2" />
<text x="667.25" y="1135.5" ></text>
</g>
<g >
<title>file_free_rcu (4 samples, 0.01%)</title><rect x="1164.3" y="1157" width="0.1" height="15.0" fill="rgb(226,156,34)" rx="2" ry="2" />
<text x="1167.33" y="1167.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="837.9" y="1365" width="0.2" height="15.0" fill="rgb(225,201,39)" rx="2" ry="2" />
<text x="840.95" y="1375.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (4 samples, 0.01%)</title><rect x="861.9" y="1237" width="0.1" height="15.0" fill="rgb(206,101,31)" rx="2" ry="2" />
<text x="864.90" y="1247.5" ></text>
</g>
<g >
<title>__fdget (6 samples, 0.01%)</title><rect x="856.8" y="1317" width="0.1" height="15.0" fill="rgb(252,136,47)" rx="2" ry="2" />
<text x="859.78" y="1327.5" ></text>
</g>
<g >
<title>[compile] (13 samples, 0.03%)</title><rect x="11.0" y="1397" width="0.3" height="15.0" fill="rgb(222,160,34)" rx="2" ry="2" />
<text x="13.97" y="1407.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (11 samples, 0.02%)</title><rect x="850.8" y="1381" width="0.3" height="15.0" fill="rgb(252,223,30)" rx="2" ry="2" />
<text x="853.80" y="1391.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (8 samples, 0.02%)</title><rect x="716.9" y="1141" width="0.2" height="15.0" fill="rgb(236,143,35)" rx="2" ry="2" />
<text x="719.87" y="1151.5" ></text>
</g>
<g >
<title>do_user_addr_fault (27 samples, 0.06%)</title><rect x="60.6" y="1333" width="0.7" height="15.0" fill="rgb(215,33,33)" rx="2" ry="2" />
<text x="63.61" y="1343.5" ></text>
</g>
<g >
<title>exc_page_fault (22 samples, 0.05%)</title><rect x="61.7" y="1365" width="0.6" height="15.0" fill="rgb(218,73,47)" rx="2" ry="2" />
<text x="64.68" y="1375.5" ></text>
</g>
<g >
<title>restore_sigcontext (7 samples, 0.02%)</title><rect x="847.7" y="1333" width="0.1" height="15.0" fill="rgb(248,0,13)" rx="2" ry="2" />
<text x="850.66" y="1343.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (17 samples, 0.04%)</title><rect x="746.6" y="1189" width="0.4" height="15.0" fill="rgb(240,216,15)" rx="2" ry="2" />
<text x="749.59" y="1199.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (6 samples, 0.01%)</title><rect x="1036.1" y="1157" width="0.2" height="15.0" fill="rgb(206,137,15)" rx="2" ry="2" />
<text x="1039.09" y="1167.5" ></text>
</g>
<g >
<title>free_pcppages_bulk (4 samples, 0.01%)</title><rect x="1123.2" y="949" width="0.2" height="15.0" fill="rgb(218,167,15)" rx="2" ry="2" />
<text x="1126.25" y="959.5" ></text>
</g>
<g >
<title>security_bpf_map_alloc (6 samples, 0.01%)</title><rect x="750.2" y="1205" width="0.2" height="15.0" fill="rgb(250,117,37)" rx="2" ry="2" />
<text x="753.25" y="1215.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (5 samples, 0.01%)</title><rect x="1150.6" y="1269" width="0.1" height="15.0" fill="rgb(210,200,25)" rx="2" ry="2" />
<text x="1153.59" y="1279.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (8 samples, 0.02%)</title><rect x="11.7" y="1509" width="0.2" height="15.0" fill="rgb(215,131,41)" rx="2" ry="2" />
<text x="14.72" y="1519.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (7 samples, 0.02%)</title><rect x="1176.1" y="1317" width="0.2" height="15.0" fill="rgb(246,207,32)" rx="2" ry="2" />
<text x="1179.11" y="1327.5" ></text>
</g>
<g >
<title>ptep_clear_flush (16 samples, 0.04%)</title><rect x="465.6" y="1061" width="0.4" height="15.0" fill="rgb(244,147,23)" rx="2" ry="2" />
<text x="468.63" y="1071.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (36 samples, 0.08%)</title><rect x="593.0" y="1061" width="0.9" height="15.0" fill="rgb(240,172,27)" rx="2" ry="2" />
<text x="596.00" y="1071.5" ></text>
</g>
<g >
<title>migrate_disable (6 samples, 0.01%)</title><rect x="777.1" y="1157" width="0.2" height="15.0" fill="rgb(209,126,17)" rx="2" ry="2" />
<text x="780.10" y="1167.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (30 samples, 0.07%)</title><rect x="763.7" y="1157" width="0.8" height="15.0" fill="rgb(223,143,8)" rx="2" ry="2" />
<text x="766.67" y="1167.5" ></text>
</g>
<g >
<title>rcu_core (9 samples, 0.02%)</title><rect x="930.7" y="1205" width="0.2" height="15.0" fill="rgb(229,205,41)" rx="2" ry="2" />
<text x="933.66" y="1215.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (14 samples, 0.03%)</title><rect x="465.7" y="1013" width="0.3" height="15.0" fill="rgb(212,109,7)" rx="2" ry="2" />
<text x="468.68" y="1023.5" ></text>
</g>
<g >
<title>__do_softirq (5 samples, 0.01%)</title><rect x="1150.6" y="1221" width="0.1" height="15.0" fill="rgb(213,151,47)" rx="2" ry="2" />
<text x="1153.59" y="1231.5" ></text>
</g>
<g >
<title>arch_get_unmapped_area_topdown (4 samples, 0.01%)</title><rect x="460.0" y="1013" width="0.1" height="15.0" fill="rgb(252,125,52)" rx="2" ry="2" />
<text x="462.96" y="1023.5" ></text>
</g>
<g >
<title>do_unlinkat (4 samples, 0.01%)</title><rect x="35.0" y="1285" width="0.1" height="15.0" fill="rgb(214,107,27)" rx="2" ry="2" />
<text x="37.97" y="1295.5" ></text>
</g>
<g >
<title>[go] (763 samples, 1.69%)</title><rect x="15.9" y="1381" width="19.9" height="15.0" fill="rgb(223,58,27)" rx="2" ry="2" />
<text x="18.85" y="1391.5" ></text>
</g>
<g >
<title>pick_next_task (18 samples, 0.04%)</title><rect x="871.5" y="1285" width="0.5" height="15.0" fill="rgb(234,107,23)" rx="2" ry="2" />
<text x="874.51" y="1295.5" ></text>
</g>
<g >
<title>rcu_core_si (9 samples, 0.02%)</title><rect x="1136.4" y="1173" width="0.2" height="15.0" fill="rgb(222,95,26)" rx="2" ry="2" />
<text x="1139.36" y="1183.5" ></text>
</g>
<g >
<title>rcu_core (22 samples, 0.05%)</title><rect x="1065.5" y="1189" width="0.6" height="15.0" fill="rgb(223,185,47)" rx="2" ry="2" />
<text x="1068.53" y="1199.5" ></text>
</g>
<g >
<title>ima_file_free (6 samples, 0.01%)</title><rect x="1177.2" y="1333" width="0.1" height="15.0" fill="rgb(231,172,22)" rx="2" ry="2" />
<text x="1180.15" y="1343.5" ></text>
</g>
<g >
<title>__alloc_pages (6 samples, 0.01%)</title><rect x="59.7" y="1173" width="0.2" height="15.0" fill="rgb(243,164,24)" rx="2" ry="2" />
<text x="62.70" y="1183.5" ></text>
</g>
<g >
<title>iterate_dir (8 samples, 0.02%)</title><rect x="26.0" y="1109" width="0.2" height="15.0" fill="rgb(223,206,23)" rx="2" ry="2" />
<text x="28.96" y="1119.5" ></text>
</g>
<g >
<title>do_anonymous_page (30 samples, 0.07%)</title><rect x="462.0" y="1077" width="0.8" height="15.0" fill="rgb(238,142,36)" rx="2" ry="2" />
<text x="464.97" y="1087.5" ></text>
</g>
<g >
<title>load_elf_binary (13 samples, 0.03%)</title><rect x="1182.6" y="1365" width="0.3" height="15.0" fill="rgb(244,156,20)" rx="2" ry="2" />
<text x="1185.61" y="1375.5" ></text>
</g>
<g >
<title>do_syscall_64 (12 samples, 0.03%)</title><rect x="26.0" y="1141" width="0.3" height="15.0" fill="rgb(242,109,16)" rx="2" ry="2" />
<text x="28.96" y="1151.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (37 samples, 0.08%)</title><rect x="1144.8" y="1221" width="1.0" height="15.0" fill="rgb(254,192,25)" rx="2" ry="2" />
<text x="1147.79" y="1231.5" ></text>
</g>
<g >
<title>shuffle_freelist (45 samples, 0.10%)</title><rect x="613.3" y="1045" width="1.2" height="15.0" fill="rgb(238,182,12)" rx="2" ry="2" />
<text x="616.35" y="1055.5" ></text>
</g>
<g >
<title>[compile] (6 samples, 0.01%)</title><rect x="11.0" y="1333" width="0.2" height="15.0" fill="rgb(213,57,23)" rx="2" ry="2" />
<text x="14.02" y="1343.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (10 samples, 0.02%)</title><rect x="600.0" y="1061" width="0.2" height="15.0" fill="rgb(231,77,46)" rx="2" ry="2" />
<text x="602.97" y="1071.5" ></text>
</g>
<g >
<title>sched_clock_cpu (5 samples, 0.01%)</title><rect x="1014.3" y="1189" width="0.1" height="15.0" fill="rgb(215,15,39)" rx="2" ry="2" />
<text x="1017.31" y="1199.5" ></text>
</g>
<g >
<title>alloc_file (16 samples, 0.04%)</title><rect x="579.2" y="1157" width="0.4" height="15.0" fill="rgb(245,6,44)" rx="2" ry="2" />
<text x="582.19" y="1167.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (8 samples, 0.02%)</title><rect x="850.8" y="1349" width="0.2" height="15.0" fill="rgb(222,146,10)" rx="2" ry="2" />
<text x="853.80" y="1359.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (5 samples, 0.01%)</title><rect x="839.3" y="1365" width="0.1" height="15.0" fill="rgb(243,179,10)" rx="2" ry="2" />
<text x="842.25" y="1375.5" ></text>
</g>
<g >
<title>__alloc_pages (17 samples, 0.04%)</title><rect x="463.1" y="1013" width="0.5" height="15.0" fill="rgb(243,49,30)" rx="2" ry="2" />
<text x="466.12" y="1023.5" ></text>
</g>
<g >
<title>handle_mm_fault (88 samples, 0.19%)</title><rect x="833.3" y="1285" width="2.3" height="15.0" fill="rgb(250,196,1)" rx="2" ry="2" />
<text x="836.33" y="1295.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (30 samples, 0.07%)</title><rect x="1181.7" y="1349" width="0.8" height="15.0" fill="rgb(217,176,44)" rx="2" ry="2" />
<text x="1184.72" y="1359.5" ></text>
</g>
<g >
<title>_raw_spin_lock (6 samples, 0.01%)</title><rect x="998.6" y="1221" width="0.1" height="15.0" fill="rgb(218,91,3)" rx="2" ry="2" />
<text x="1001.59" y="1231.5" ></text>
</g>
<g >
<title>[vet] (205 samples, 0.45%)</title><rect x="1184.1" y="1397" width="5.4" height="15.0" fill="rgb(237,17,6)" rx="2" ry="2" />
<text x="1187.12" y="1407.5" ></text>
</g>
<g >
<title>folio_batch_move_lru (16 samples, 0.04%)</title><rect x="842.9" y="1237" width="0.4" height="15.0" fill="rgb(213,133,54)" rx="2" ry="2" />
<text x="845.86" y="1247.5" ></text>
</g>
<g >
<title>wp_page_copy (30 samples, 0.07%)</title><rect x="462.8" y="1061" width="0.8" height="15.0" fill="rgb(213,138,45)" rx="2" ry="2" />
<text x="465.81" y="1071.5" ></text>
</g>
<g >
<title>irqentry_exit (11 samples, 0.02%)</title><rect x="835.8" y="1301" width="0.3" height="15.0" fill="rgb(253,29,27)" rx="2" ry="2" />
<text x="838.81" y="1311.5" ></text>
</g>
<g >
<title>__rcu_read_lock (6 samples, 0.01%)</title><rect x="1154.8" y="1301" width="0.2" height="15.0" fill="rgb(228,35,40)" rx="2" ry="2" />
<text x="1157.82" y="1311.5" ></text>
</g>
<g >
<title>__free_pages (18 samples, 0.04%)</title><rect x="1053.5" y="1013" width="0.5" height="15.0" fill="rgb(250,154,0)" rx="2" ry="2" />
<text x="1056.51" y="1023.5" ></text>
</g>
<g >
<title>ktime_get (7 samples, 0.02%)</title><rect x="859.6" y="1301" width="0.2" height="15.0" fill="rgb(254,168,35)" rx="2" ry="2" />
<text x="862.57" y="1311.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (44 samples, 0.10%)</title><rect x="1037.2" y="1141" width="1.1" height="15.0" fill="rgb(210,121,53)" rx="2" ry="2" />
<text x="1040.17" y="1151.5" ></text>
</g>
<g >
<title>kmem_cache_free (944 samples, 2.09%)</title><rect x="1107.4" y="1269" width="24.7" height="15.0" fill="rgb(246,169,9)" rx="2" ry="2" />
<text x="1110.45" y="1279.5" >k..</text>
</g>
<g >
<title>sysvec_reschedule_ipi (5 samples, 0.01%)</title><rect x="832.1" y="1285" width="0.1" height="15.0" fill="rgb(213,34,9)" rx="2" ry="2" />
<text x="835.10" y="1295.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (7 samples, 0.02%)</title><rect x="530.2" y="1237" width="0.2" height="15.0" fill="rgb(206,55,25)" rx="2" ry="2" />
<text x="533.19" y="1247.5" ></text>
</g>
<g >
<title>rcu_core (23 samples, 0.05%)</title><rect x="1173.5" y="1189" width="0.6" height="15.0" fill="rgb(238,162,42)" rx="2" ry="2" />
<text x="1176.55" y="1199.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (49 samples, 0.11%)</title><rect x="528.9" y="1269" width="1.3" height="15.0" fill="rgb(250,35,42)" rx="2" ry="2" />
<text x="531.91" y="1279.5" ></text>
</g>
<g >
<title>bpf_iter_get_info (5 samples, 0.01%)</title><rect x="752.3" y="1173" width="0.2" height="15.0" fill="rgb(237,95,49)" rx="2" ry="2" />
<text x="755.34" y="1183.5" ></text>
</g>
<g >
<title>x86_pmu_disable (5 samples, 0.01%)</title><rect x="864.8" y="1253" width="0.2" height="15.0" fill="rgb(250,29,49)" rx="2" ry="2" />
<text x="867.82" y="1263.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (22 samples, 0.05%)</title><rect x="61.7" y="1381" width="0.6" height="15.0" fill="rgb(242,49,1)" rx="2" ry="2" />
<text x="64.68" y="1391.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="778.2" y="1205" width="0.1" height="15.0" fill="rgb(247,169,54)" rx="2" ry="2" />
<text x="781.19" y="1215.5" ></text>
</g>
<g >
<title>[vet] (14 samples, 0.03%)</title><rect x="1187.8" y="485" width="0.4" height="15.0" fill="rgb(229,143,33)" rx="2" ry="2" />
<text x="1190.83" y="495.5" ></text>
</g>
<g >
<title>handle_mm_fault (4 samples, 0.01%)</title><rect x="33.8" y="1269" width="0.1" height="15.0" fill="rgb(211,52,8)" rx="2" ry="2" />
<text x="36.77" y="1279.5" ></text>
</g>
<g >
<title>__slab_free (28 samples, 0.06%)</title><rect x="1053.3" y="1109" width="0.7" height="15.0" fill="rgb(235,96,0)" rx="2" ry="2" />
<text x="1056.25" y="1119.5" ></text>
</g>
<g >
<title>do_syscall_64 (11 samples, 0.02%)</title><rect x="856.7" y="1381" width="0.3" height="15.0" fill="rgb(235,79,50)" rx="2" ry="2" />
<text x="859.73" y="1391.5" ></text>
</g>
<g >
<title>__x64_sys_futex (8 samples, 0.02%)</title><rect x="832.5" y="1285" width="0.3" height="15.0" fill="rgb(247,101,30)" rx="2" ry="2" />
<text x="835.54" y="1295.5" ></text>
</g>
<g >
<title>ext4_dx_readdir (8 samples, 0.02%)</title><rect x="26.0" y="1077" width="0.2" height="15.0" fill="rgb(252,199,5)" rx="2" ry="2" />
<text x="28.96" y="1087.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (9 samples, 0.02%)</title><rect x="1136.4" y="1205" width="0.2" height="15.0" fill="rgb(221,5,13)" rx="2" ry="2" />
<text x="1139.36" y="1215.5" ></text>
</g>
<g >
<title>[compile] (37 samples, 0.08%)</title><rect x="10.8" y="1509" width="0.9" height="15.0" fill="rgb(220,128,23)" rx="2" ry="2" />
<text x="13.76" y="1519.5" ></text>
</g>
<g >
<title>file_free_rcu (5 samples, 0.01%)</title><rect x="930.7" y="1173" width="0.1" height="15.0" fill="rgb(244,219,3)" rx="2" ry="2" />
<text x="933.66" y="1183.5" ></text>
</g>
<g >
<title>clear_page_erms (8 samples, 0.02%)</title><rect x="744.1" y="1013" width="0.2" height="15.0" fill="rgb(230,56,32)" rx="2" ry="2" />
<text x="747.06" y="1023.5" ></text>
</g>
<g >
<title>__fput (13 samples, 0.03%)</title><rect x="1181.4" y="1349" width="0.3" height="15.0" fill="rgb(214,81,10)" rx="2" ry="2" />
<text x="1184.38" y="1359.5" ></text>
</g>
<g >
<title>rcu_core (4 samples, 0.01%)</title><rect x="920.7" y="1205" width="0.1" height="15.0" fill="rgb(228,97,34)" rx="2" ry="2" />
<text x="923.74" y="1215.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5 samples, 0.01%)</title><rect x="837.8" y="1333" width="0.1" height="15.0" fill="rgb(242,127,20)" rx="2" ry="2" />
<text x="840.82" y="1343.5" ></text>
</g>
<g >
<title>do_page_mkwrite (6 samples, 0.01%)</title><rect x="63.8" y="1317" width="0.2" height="15.0" fill="rgb(219,76,39)" rx="2" ry="2" />
<text x="66.83" y="1327.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (266 samples, 0.59%)</title><rect x="840.3" y="1381" width="7.0" height="15.0" fill="rgb(218,172,22)" rx="2" ry="2" />
<text x="843.32" y="1391.5" ></text>
</g>
<g >
<title>__folio_alloc (7 samples, 0.02%)</title><rect x="60.2" y="1221" width="0.2" height="15.0" fill="rgb(214,157,42)" rx="2" ry="2" />
<text x="63.17" y="1231.5" ></text>
</g>
<g >
<title>_compound_head (4 samples, 0.01%)</title><rect x="44.3" y="1237" width="0.1" height="15.0" fill="rgb(218,15,32)" rx="2" ry="2" />
<text x="47.26" y="1247.5" ></text>
</g>
<g >
<title>schedule_tail (14 samples, 0.03%)</title><rect x="43.3" y="1445" width="0.4" height="15.0" fill="rgb(240,96,11)" rx="2" ry="2" />
<text x="46.30" y="1455.5" ></text>
</g>
<g >
<title>[link] (750 samples, 1.66%)</title><rect x="44.6" y="1445" width="19.6" height="15.0" fill="rgb(205,59,19)" rx="2" ry="2" />
<text x="47.60" y="1455.5" ></text>
</g>
<g >
<title>__do_softirq (37 samples, 0.08%)</title><rect x="1144.8" y="1173" width="1.0" height="15.0" fill="rgb(254,185,34)" rx="2" ry="2" />
<text x="1147.79" y="1183.5" ></text>
</g>
<g >
<title>[link] (761 samples, 1.68%)</title><rect x="44.4" y="1493" width="19.9" height="15.0" fill="rgb(247,87,11)" rx="2" ry="2" />
<text x="47.45" y="1503.5" ></text>
</g>
<g >
<title>do_user_addr_fault (65 samples, 0.14%)</title><rect x="464.8" y="1157" width="1.7" height="15.0" fill="rgb(252,215,16)" rx="2" ry="2" />
<text x="467.77" y="1167.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (77 samples, 0.17%)</title><rect x="1162.5" y="1301" width="2.0" height="15.0" fill="rgb(206,172,39)" rx="2" ry="2" />
<text x="1165.53" y="1311.5" ></text>
</g>
<g >
<title>irqentry_exit (17 samples, 0.04%)</title><rect x="463.8" y="1141" width="0.4" height="15.0" fill="rgb(214,72,46)" rx="2" ry="2" />
<text x="466.78" y="1151.5" ></text>
</g>
<g >
<title>irq_exit_rcu (56 samples, 0.12%)</title><rect x="1080.0" y="1221" width="1.5" height="15.0" fill="rgb(233,34,50)" rx="2" ry="2" />
<text x="1083.02" y="1231.5" ></text>
</g>
<g >
<title>__free_one_page (4 samples, 0.01%)</title><rect x="1123.2" y="933" width="0.2" height="15.0" fill="rgb(254,161,19)" rx="2" ry="2" />
<text x="1126.25" y="943.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (15 samples, 0.03%)</title><rect x="743.9" y="1125" width="0.4" height="15.0" fill="rgb(232,2,4)" rx="2" ry="2" />
<text x="746.93" y="1135.5" ></text>
</g>
<g >
<title>rcu_core (35 samples, 0.08%)</title><rect x="1122.7" y="1157" width="0.9" height="15.0" fill="rgb(216,214,32)" rx="2" ry="2" />
<text x="1125.70" y="1167.5" ></text>
</g>
<g >
<title>[vet] (13 samples, 0.03%)</title><rect x="1187.9" y="405" width="0.3" height="15.0" fill="rgb(235,134,16)" rx="2" ry="2" />
<text x="1190.86" y="415.5" ></text>
</g>
<g >
<title>[link] (5 samples, 0.01%)</title><rect x="64.4" y="1493" width="0.1" height="15.0" fill="rgb(237,157,9)" rx="2" ry="2" />
<text x="67.37" y="1503.5" ></text>
</g>
<g >
<title>__mmput (11 samples, 0.02%)</title><rect x="44.1" y="1333" width="0.3" height="15.0" fill="rgb(248,73,49)" rx="2" ry="2" />
<text x="47.13" y="1343.5" ></text>
</g>
<g >
<title>__do_softirq (13 samples, 0.03%)</title><rect x="1122.4" y="1157" width="0.3" height="15.0" fill="rgb(240,120,40)" rx="2" ry="2" />
<text x="1125.36" y="1167.5" ></text>
</g>
<g >
<title>___slab_alloc (348 samples, 0.77%)</title><rect x="605.5" y="1093" width="9.0" height="15.0" fill="rgb(236,30,14)" rx="2" ry="2" />
<text x="608.46" y="1103.5" ></text>
</g>
<g >
<title>handle_pte_fault (4 samples, 0.01%)</title><rect x="35.9" y="1333" width="0.1" height="15.0" fill="rgb(232,183,29)" rx="2" ry="2" />
<text x="38.86" y="1343.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4 samples, 0.01%)</title><rect x="1176.6" y="1285" width="0.1" height="15.0" fill="rgb(217,57,6)" rx="2" ry="2" />
<text x="1179.60" y="1295.5" ></text>
</g>
<g >
<title>[go] (903 samples, 2.00%)</title><rect x="12.4" y="1429" width="23.6" height="15.0" fill="rgb(217,100,0)" rx="2" ry="2" />
<text x="15.40" y="1439.5" >[..</text>
</g>
<g >
<title>bpf_map_get_curr_or_next (226 samples, 0.50%)</title><rect x="764.7" y="1157" width="5.9" height="15.0" fill="rgb(249,40,49)" rx="2" ry="2" />
<text x="767.67" y="1167.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (13 samples, 0.03%)</title><rect x="469.4" y="1157" width="0.4" height="15.0" fill="rgb(217,102,41)" rx="2" ry="2" />
<text x="472.42" y="1167.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (124 samples, 0.27%)</title><rect x="617.7" y="1093" width="3.2" height="15.0" fill="rgb(237,101,50)" rx="2" ry="2" />
<text x="620.68" y="1103.5" ></text>
</g>
<g >
<title>schedule (7 samples, 0.02%)</title><rect x="832.6" y="1221" width="0.2" height="15.0" fill="rgb(208,136,24)" rx="2" ry="2" />
<text x="835.57" y="1231.5" ></text>
</g>
<g >
<title>alloc_empty_file (4 samples, 0.01%)</title><rect x="582.1" y="1141" width="0.1" height="15.0" fill="rgb(215,169,54)" rx="2" ry="2" />
<text x="585.06" y="1151.5" ></text>
</g>
<g >
<title>[asm] (4 samples, 0.01%)</title><rect x="10.1" y="1253" width="0.1" height="15.0" fill="rgb(218,209,21)" rx="2" ry="2" />
<text x="13.13" y="1263.5" ></text>
</g>
<g >
<title>get_page_from_freelist (18 samples, 0.04%)</title><rect x="529.4" y="1109" width="0.5" height="15.0" fill="rgb(219,146,20)" rx="2" ry="2" />
<text x="532.38" y="1119.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (10 samples, 0.02%)</title><rect x="863.4" y="1237" width="0.2" height="15.0" fill="rgb(217,193,0)" rx="2" ry="2" />
<text x="866.36" y="1247.5" ></text>
</g>
<g >
<title>[mapgauge.test] (30,117 samples, 66.66%)</title><rect x="65.7" y="1445" width="786.6" height="15.0" fill="rgb(208,209,54)" rx="2" ry="2" />
<text x="68.73" y="1455.5" >[mapgauge.test]</text>
</g>
<g >
<title>[asm] (6 samples, 0.01%)</title><rect x="10.1" y="1301" width="0.2" height="15.0" fill="rgb(223,34,31)" rx="2" ry="2" />
<text x="13.13" y="1311.5" ></text>
</g>
<g >
<title>handle_pte_fault (22 samples, 0.05%)</title><rect x="60.7" y="1285" width="0.5" height="15.0" fill="rgb(253,43,8)" rx="2" ry="2" />
<text x="63.67" y="1295.5" ></text>
</g>
<g >
<title>psi_task_switch (163 samples, 0.36%)</title><rect x="1097.9" y="1269" width="4.3" height="15.0" fill="rgb(227,184,4)" rx="2" ry="2" />
<text x="1100.91" y="1279.5" ></text>
</g>
<g >
<title>[link] (4 samples, 0.01%)</title><rect x="64.5" y="1477" width="0.1" height="15.0" fill="rgb(211,93,28)" rx="2" ry="2" />
<text x="67.51" y="1487.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (14 samples, 0.03%)</title><rect x="1130.2" y="1205" width="0.4" height="15.0" fill="rgb(239,9,5)" rx="2" ry="2" />
<text x="1133.22" y="1215.5" ></text>
</g>
<g >
<title>enqueue_entity (108 samples, 0.24%)</title><rect x="1008.0" y="1173" width="2.8" height="15.0" fill="rgb(216,141,33)" rx="2" ry="2" />
<text x="1010.99" y="1183.5" ></text>
</g>
<g >
<title>handle_signal (5 samples, 0.01%)</title><rect x="847.1" y="1269" width="0.1" height="15.0" fill="rgb(239,14,35)" rx="2" ry="2" />
<text x="850.12" y="1279.5" ></text>
</g>
<g >
<title>radix_tree_iter_tag_clear (12 samples, 0.03%)</title><rect x="744.9" y="1157" width="0.4" height="15.0" fill="rgb(205,51,45)" rx="2" ry="2" />
<text x="747.95" y="1167.5" ></text>
</g>
<g >
<title>alloc_fd (5 samples, 0.01%)</title><rect x="668.0" y="1173" width="0.1" height="15.0" fill="rgb(208,60,22)" rx="2" ry="2" />
<text x="671.01" y="1183.5" ></text>
</g>
<g >
<title>[vet] (15 samples, 0.03%)</title><rect x="1187.8" y="533" width="0.4" height="15.0" fill="rgb(251,159,41)" rx="2" ry="2" />
<text x="1190.81" y="543.5" ></text>
</g>
<g >
<title>rcu_core (4 samples, 0.01%)</title><rect x="1164.5" y="1205" width="0.1" height="15.0" fill="rgb(253,188,2)" rx="2" ry="2" />
<text x="1167.54" y="1215.5" ></text>
</g>
<g >
<title>[mapgauge.test] (9 samples, 0.02%)</title><rect x="458.8" y="1045" width="0.2" height="15.0" fill="rgb(232,125,1)" rx="2" ry="2" />
<text x="461.79" y="1055.5" ></text>
</g>
<g >
<title>idr_find (7 samples, 0.02%)</title><rect x="856.0" y="1285" width="0.2" height="15.0" fill="rgb(227,198,36)" rx="2" ry="2" />
<text x="859.02" y="1295.5" ></text>
</g>
<g >
<title>kthread_is_per_cpu (6 samples, 0.01%)</title><rect x="1001.9" y="1221" width="0.2" height="15.0" fill="rgb(236,18,43)" rx="2" ry="2" />
<text x="1004.91" y="1231.5" ></text>
</g>
<g >
<title>rcu_core_si (4 samples, 0.01%)</title><rect x="1176.6" y="1237" width="0.1" height="15.0" fill="rgb(218,1,33)" rx="2" ry="2" />
<text x="1179.60" y="1247.5" ></text>
</g>
<g >
<title>asm_sysvec_reschedule_ipi (5 samples, 0.01%)</title><rect x="832.1" y="1301" width="0.1" height="15.0" fill="rgb(252,88,44)" rx="2" ry="2" />
<text x="835.10" y="1311.5" ></text>
</g>
<g >
<title>rcu_core (5 samples, 0.01%)</title><rect x="877.4" y="1253" width="0.1" height="15.0" fill="rgb(234,187,54)" rx="2" ry="2" />
<text x="880.36" y="1263.5" ></text>
</g>
<g >
<title>[vet] (12 samples, 0.03%)</title><rect x="1187.9" y="357" width="0.3" height="15.0" fill="rgb(223,147,41)" rx="2" ry="2" />
<text x="1190.88" y="367.5" ></text>
</g>
<g >
<title>rcu_core_si (5 samples, 0.01%)</title><rect x="1150.6" y="1205" width="0.1" height="15.0" fill="rgb(207,39,35)" rx="2" ry="2" />
<text x="1153.59" y="1215.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (72 samples, 0.16%)</title><rect x="930.9" y="1269" width="1.9" height="15.0" fill="rgb(213,71,15)" rx="2" ry="2" />
<text x="933.95" y="1279.5" ></text>
</g>
<g >
<title>[go] (5 samples, 0.01%)</title><rect x="43.9" y="1429" width="0.1" height="15.0" fill="rgb(248,200,53)" rx="2" ry="2" />
<text x="46.90" y="1439.5" ></text>
</g>
<g >
<title>ksys_read (1,011 samples, 2.24%)</title><rect x="751.1" y="1221" width="26.4" height="15.0" fill="rgb(214,202,36)" rx="2" ry="2" />
<text x="754.08" y="1231.5" >k..</text>
</g>
<g >
<title>setup_object (8 samples, 0.02%)</title><rect x="614.3" y="1029" width="0.2" height="15.0" fill="rgb(245,224,35)" rx="2" ry="2" />
<text x="617.31" y="1039.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (8 samples, 0.02%)</title><rect x="575.5" y="1189" width="0.2" height="15.0" fill="rgb(248,178,6)" rx="2" ry="2" />
<text x="578.53" y="1199.5" ></text>
</g>
<g >
<title>irq_exit_rcu (23 samples, 0.05%)</title><rect x="1173.5" y="1253" width="0.6" height="15.0" fill="rgb(220,225,35)" rx="2" ry="2" />
<text x="1176.55" y="1263.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (14 samples, 0.03%)</title><rect x="30.4" y="1237" width="0.4" height="15.0" fill="rgb(205,25,29)" rx="2" ry="2" />
<text x="33.40" y="1247.5" ></text>
</g>
<g >
<title>unmap_vmas (4 samples, 0.01%)</title><rect x="10.7" y="1301" width="0.1" height="15.0" fill="rgb(231,46,52)" rx="2" ry="2" />
<text x="13.65" y="1311.5" ></text>
</g>
<g >
<title>do_send_specific (38 samples, 0.08%)</title><rect x="855.3" y="1317" width="1.0" height="15.0" fill="rgb(238,214,38)" rx="2" ry="2" />
<text x="858.29" y="1327.5" ></text>
</g>
<g >
<title>update_cfs_group (4 samples, 0.01%)</title><rect x="862.8" y="1269" width="0.1" height="15.0" fill="rgb(248,89,33)" rx="2" ry="2" />
<text x="865.76" y="1279.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (38 samples, 0.08%)</title><rect x="1040.9" y="1269" width="1.0" height="15.0" fill="rgb(228,177,3)" rx="2" ry="2" />
<text x="1043.93" y="1279.5" ></text>
</g>
<g >
<title>mod_objcg_state (110 samples, 0.24%)</title><rect x="1125.3" y="1253" width="2.9" height="15.0" fill="rgb(221,141,25)" rx="2" ry="2" />
<text x="1128.31" y="1263.5" ></text>
</g>
<g >
<title>irq_exit_rcu (8 samples, 0.02%)</title><rect x="1145.8" y="1221" width="0.2" height="15.0" fill="rgb(222,18,28)" rx="2" ry="2" />
<text x="1148.76" y="1231.5" ></text>
</g>
<g >
<title>module_put (9 samples, 0.02%)</title><rect x="1178.6" y="1333" width="0.3" height="15.0" fill="rgb(205,87,49)" rx="2" ry="2" />
<text x="1181.64" y="1343.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (533 samples, 1.18%)</title><rect x="1044.6" y="1253" width="13.9" height="15.0" fill="rgb(239,204,23)" rx="2" ry="2" />
<text x="1047.56" y="1263.5" ></text>
</g>
<g >
<title>error_entry (27 samples, 0.06%)</title><rect x="848.5" y="1381" width="0.7" height="15.0" fill="rgb(219,32,28)" rx="2" ry="2" />
<text x="851.53" y="1391.5" ></text>
</g>
<g >
<title>[vet] (54 samples, 0.12%)</title><rect x="1187.0" y="1109" width="1.4" height="15.0" fill="rgb(215,217,32)" rx="2" ry="2" />
<text x="1190.02" y="1119.5" ></text>
</g>
<g >
<title>rcu_core_si (11 samples, 0.02%)</title><rect x="1118.4" y="1109" width="0.3" height="15.0" fill="rgb(240,18,22)" rx="2" ry="2" />
<text x="1121.39" y="1119.5" ></text>
</g>
<g >
<title>rcu_core (19 samples, 0.04%)</title><rect x="1127.4" y="1141" width="0.5" height="15.0" fill="rgb(241,67,53)" rx="2" ry="2" />
<text x="1130.40" y="1151.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4 samples, 0.01%)</title><rect x="460.2" y="1077" width="0.1" height="15.0" fill="rgb(217,114,41)" rx="2" ry="2" />
<text x="463.17" y="1087.5" ></text>
</g>
<g >
<title>irq_exit_rcu (9 samples, 0.02%)</title><rect x="1136.4" y="1221" width="0.2" height="15.0" fill="rgb(206,27,37)" rx="2" ry="2" />
<text x="1139.36" y="1231.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (35 samples, 0.08%)</title><rect x="1122.7" y="1253" width="0.9" height="15.0" fill="rgb(213,122,0)" rx="2" ry="2" />
<text x="1125.70" y="1263.5" ></text>
</g>
<g >
<title>get_page_from_freelist (10 samples, 0.02%)</title><rect x="34.6" y="1173" width="0.2" height="15.0" fill="rgb(238,91,22)" rx="2" ry="2" />
<text x="37.58" y="1183.5" ></text>
</g>
<g >
<title>x86_pmu_enable (10 samples, 0.02%)</title><rect x="863.4" y="1253" width="0.2" height="15.0" fill="rgb(224,171,22)" rx="2" ry="2" />
<text x="866.36" y="1263.5" ></text>
</g>
<g >
<title>exit_mm (4 samples, 0.01%)</title><rect x="1189.8" y="1365" width="0.1" height="15.0" fill="rgb(216,59,2)" rx="2" ry="2" />
<text x="1192.84" y="1375.5" ></text>
</g>
<g >
<title>irq_exit_rcu (50 samples, 0.11%)</title><rect x="954.3" y="1269" width="1.3" height="15.0" fill="rgb(215,212,43)" rx="2" ry="2" />
<text x="957.27" y="1279.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (13 samples, 0.03%)</title><rect x="1122.4" y="1173" width="0.3" height="15.0" fill="rgb(228,187,38)" rx="2" ry="2" />
<text x="1125.36" y="1183.5" ></text>
</g>
<g >
<title>apparmor_file_free_security (230 samples, 0.51%)</title><rect x="924.9" y="1317" width="6.0" height="15.0" fill="rgb(251,90,37)" rx="2" ry="2" />
<text x="927.89" y="1327.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (11 samples, 0.02%)</title><rect x="1127.9" y="1237" width="0.3" height="15.0" fill="rgb(242,145,1)" rx="2" ry="2" />
<text x="1130.89" y="1247.5" ></text>
</g>
<g >
<title>__alloc_pages (9 samples, 0.02%)</title><rect x="675.3" y="1061" width="0.2" height="15.0" fill="rgb(206,118,7)" rx="2" ry="2" />
<text x="678.27" y="1071.5" ></text>
</g>
<g >
<title>vma_alloc_folio (74 samples, 0.16%)</title><rect x="471.6" y="1125" width="1.9" height="15.0" fill="rgb(218,163,53)" rx="2" ry="2" />
<text x="474.58" y="1135.5" ></text>
</g>
<g >
<title>pick_next_task_fair (24 samples, 0.05%)</title><rect x="863.8" y="1285" width="0.7" height="15.0" fill="rgb(249,49,11)" rx="2" ry="2" />
<text x="866.83" y="1295.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="28.8" y="1237" width="0.1" height="15.0" fill="rgb(214,18,7)" rx="2" ry="2" />
<text x="31.78" y="1247.5" ></text>
</g>
<g >
<title>__cond_resched (4 samples, 0.01%)</title><rect x="650.1" y="1077" width="0.1" height="15.0" fill="rgb(206,28,26)" rx="2" ry="2" />
<text x="653.09" y="1087.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (468 samples, 1.04%)</title><rect x="515.9" y="1157" width="12.2" height="15.0" fill="rgb(253,222,10)" rx="2" ry="2" />
<text x="518.85" y="1167.5" ></text>
</g>
<g >
<title>do_syscall_64 (58 samples, 0.13%)</title><rect x="31.2" y="1269" width="1.5" height="15.0" fill="rgb(216,126,51)" rx="2" ry="2" />
<text x="34.21" y="1279.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="863.6" y="1269" width="0.2" height="15.0" fill="rgb(205,209,52)" rx="2" ry="2" />
<text x="866.65" y="1279.5" ></text>
</g>
<g >
<title>clear_page_erms (45 samples, 0.10%)</title><rect x="834.1" y="1157" width="1.1" height="15.0" fill="rgb(234,115,5)" rx="2" ry="2" />
<text x="837.06" y="1167.5" ></text>
</g>
<g >
<title>send_signal_locked (6 samples, 0.01%)</title><rect x="868.9" y="1269" width="0.2" height="15.0" fill="rgb(244,149,14)" rx="2" ry="2" />
<text x="871.90" y="1279.5" ></text>
</g>
<g >
<title>ret_from_fork (14 samples, 0.03%)</title><rect x="43.3" y="1461" width="0.4" height="15.0" fill="rgb(239,171,3)" rx="2" ry="2" />
<text x="46.30" y="1471.5" ></text>
</g>
<g >
<title>dput (3,239 samples, 7.17%)</title><rect x="1068.6" y="1317" width="84.6" height="15.0" fill="rgb(238,199,43)" rx="2" ry="2" />
<text x="1071.58" y="1327.5" >dput</text>
</g>
<g >
<title>idr_get_free (6 samples, 0.01%)</title><rect x="745.3" y="1173" width="0.1" height="15.0" fill="rgb(208,32,54)" rx="2" ry="2" />
<text x="748.26" y="1183.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (30 samples, 0.07%)</title><rect x="1181.7" y="1333" width="0.8" height="15.0" fill="rgb(244,185,10)" rx="2" ry="2" />
<text x="1184.72" y="1343.5" ></text>
</g>
<g >
<title>rcu_do_batch (14 samples, 0.03%)</title><rect x="1130.2" y="1109" width="0.4" height="15.0" fill="rgb(223,41,21)" rx="2" ry="2" />
<text x="1133.22" y="1119.5" ></text>
</g>
<g >
<title>[vet] (171 samples, 0.38%)</title><rect x="1184.8" y="1333" width="4.4" height="15.0" fill="rgb(254,109,14)" rx="2" ry="2" />
<text x="1187.78" y="1343.5" ></text>
</g>
<g >
<title>rcu_do_batch (9 samples, 0.02%)</title><rect x="930.7" y="1189" width="0.2" height="15.0" fill="rgb(205,3,45)" rx="2" ry="2" />
<text x="933.66" y="1199.5" ></text>
</g>
<g >
<title>[mapgauge.test] (32 samples, 0.07%)</title><rect x="854.2" y="1381" width="0.9" height="15.0" fill="rgb(247,41,45)" rx="2" ry="2" />
<text x="857.25" y="1391.5" ></text>
</g>
<g >
<title>bpf_map_init_from_attr (6 samples, 0.01%)</title><rect x="723.1" y="1189" width="0.1" height="15.0" fill="rgb(251,90,29)" rx="2" ry="2" />
<text x="726.09" y="1199.5" ></text>
</g>
<g >
<title>get_page_from_freelist (209 samples, 0.46%)</title><rect x="606.9" y="1013" width="5.4" height="15.0" fill="rgb(238,54,52)" rx="2" ry="2" />
<text x="609.87" y="1023.5" ></text>
</g>
<g >
<title>perf_ctx_enable (4 samples, 0.01%)</title><rect x="875.5" y="1349" width="0.1" height="15.0" fill="rgb(243,23,16)" rx="2" ry="2" />
<text x="878.45" y="1359.5" ></text>
</g>
<g >
<title>file_free_rcu (9 samples, 0.02%)</title><rect x="940.5" y="1173" width="0.2" height="15.0" fill="rgb(234,35,46)" rx="2" ry="2" />
<text x="943.46" y="1183.5" ></text>
</g>
<g >
<title>xas_descend (26 samples, 0.06%)</title><rect x="654.9" y="1045" width="0.7" height="15.0" fill="rgb(232,156,40)" rx="2" ry="2" />
<text x="657.90" y="1055.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (22 samples, 0.05%)</title><rect x="940.3" y="1285" width="0.6" height="15.0" fill="rgb(217,57,7)" rx="2" ry="2" />
<text x="943.33" y="1295.5" ></text>
</g>
<g >
<title>tick_sched_timer (8 samples, 0.02%)</title><rect x="469.5" y="1141" width="0.3" height="15.0" fill="rgb(243,159,19)" rx="2" ry="2" />
<text x="472.55" y="1151.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (12 samples, 0.03%)</title><rect x="960.4" y="1285" width="0.3" height="15.0" fill="rgb(237,40,49)" rx="2" ry="2" />
<text x="963.36" y="1295.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (8 samples, 0.02%)</title><rect x="770.4" y="1125" width="0.2" height="15.0" fill="rgb(220,88,5)" rx="2" ry="2" />
<text x="773.36" y="1135.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (23 samples, 0.05%)</title><rect x="1173.5" y="1237" width="0.6" height="15.0" fill="rgb(242,177,43)" rx="2" ry="2" />
<text x="1176.55" y="1247.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4 samples, 0.01%)</title><rect x="461.1" y="1029" width="0.1" height="15.0" fill="rgb(232,187,2)" rx="2" ry="2" />
<text x="464.09" y="1039.5" ></text>
</g>
<g >
<title>[go] (744 samples, 1.65%)</title><rect x="16.3" y="1365" width="19.4" height="15.0" fill="rgb(240,172,22)" rx="2" ry="2" />
<text x="19.27" y="1375.5" ></text>
</g>
<g >
<title>__handle_mm_fault (12 samples, 0.03%)</title><rect x="62.4" y="1333" width="0.3" height="15.0" fill="rgb(205,174,7)" rx="2" ry="2" />
<text x="65.39" y="1343.5" ></text>
</g>
<g >
<title>__schedule (95 samples, 0.21%)</title><rect x="870.1" y="1301" width="2.5" height="15.0" fill="rgb(223,157,47)" rx="2" ry="2" />
<text x="873.07" y="1311.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (10 samples, 0.02%)</title><rect x="767.5" y="1141" width="0.3" height="15.0" fill="rgb(228,5,19)" rx="2" ry="2" />
<text x="770.54" y="1151.5" ></text>
</g>
<g >
<title>get_page_from_freelist (18 samples, 0.04%)</title><rect x="462.3" y="1013" width="0.5" height="15.0" fill="rgb(219,5,40)" rx="2" ry="2" />
<text x="465.29" y="1023.5" ></text>
</g>
<g >
<title>do_syscall_64 (19 samples, 0.04%)</title><rect x="64.6" y="1493" width="0.5" height="15.0" fill="rgb(222,83,6)" rx="2" ry="2" />
<text x="67.61" y="1503.5" ></text>
</g>
<g >
<title>map_create (6 samples, 0.01%)</title><rect x="750.8" y="1221" width="0.2" height="15.0" fill="rgb(254,223,44)" rx="2" ry="2" />
<text x="753.82" y="1231.5" ></text>
</g>
<g >
<title>perf_ctx_disable (141 samples, 0.31%)</title><rect x="1093.9" y="1221" width="3.7" height="15.0" fill="rgb(215,50,53)" rx="2" ry="2" />
<text x="1096.89" y="1231.5" ></text>
</g>
<g >
<title>[mapgauge.test] (599 samples, 1.33%)</title><rect x="852.5" y="1493" width="15.7" height="15.0" fill="rgb(251,70,38)" rx="2" ry="2" />
<text x="855.55" y="1503.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (6 samples, 0.01%)</title><rect x="940.7" y="1173" width="0.2" height="15.0" fill="rgb(241,10,30)" rx="2" ry="2" />
<text x="943.74" y="1183.5" ></text>
</g>
<g >
<title>__update_blocked_fair (7 samples, 0.02%)</title><rect x="864.2" y="1237" width="0.2" height="15.0" fill="rgb(243,55,2)" rx="2" ry="2" />
<text x="867.17" y="1247.5" ></text>
</g>
<g >
<title>__unfreeze_partials (4 samples, 0.01%)</title><rect x="1123.2" y="1061" width="0.2" height="15.0" fill="rgb(212,203,37)" rx="2" ry="2" />
<text x="1126.25" y="1071.5" ></text>
</g>
<g >
<title>schedule (13 samples, 0.03%)</title><rect x="35.3" y="1253" width="0.3" height="15.0" fill="rgb(228,128,5)" rx="2" ry="2" />
<text x="38.31" y="1263.5" ></text>
</g>
<g >
<title>native_write_msr (12 samples, 0.03%)</title><rect x="35.3" y="1141" width="0.3" height="15.0" fill="rgb(237,89,52)" rx="2" ry="2" />
<text x="38.33" y="1151.5" ></text>
</g>
<g >
<title>__kmalloc_large_node (9 samples, 0.02%)</title><rect x="675.3" y="1077" width="0.2" height="15.0" fill="rgb(239,57,38)" rx="2" ry="2" />
<text x="678.27" y="1087.5" ></text>
</g>
<g >
<title>__do_softirq (20 samples, 0.04%)</title><rect x="965.2" y="1221" width="0.5" height="15.0" fill="rgb(232,147,45)" rx="2" ry="2" />
<text x="968.21" y="1231.5" ></text>
</g>
<g >
<title>_copy_from_user (14 samples, 0.03%)</title><rect x="750.4" y="1221" width="0.4" height="15.0" fill="rgb(250,205,30)" rx="2" ry="2" />
<text x="753.41" y="1231.5" ></text>
</g>
<g >
<title>__schedule (4 samples, 0.01%)</title><rect x="1146.7" y="1301" width="0.1" height="15.0" fill="rgb(225,53,26)" rx="2" ry="2" />
<text x="1149.67" y="1311.5" ></text>
</g>
<g >
<title>[link] (115 samples, 0.25%)</title><rect x="57.0" y="1349" width="3.0" height="15.0" fill="rgb(236,62,51)" rx="2" ry="2" />
<text x="60.01" y="1359.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (6 samples, 0.01%)</title><rect x="866.8" y="1365" width="0.1" height="15.0" fill="rgb(207,190,51)" rx="2" ry="2" />
<text x="869.78" y="1375.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (4 samples, 0.01%)</title><rect x="659.8" y="1109" width="0.1" height="15.0" fill="rgb(233,90,34)" rx="2" ry="2" />
<text x="662.75" y="1119.5" ></text>
</g>
<g >
<title>map_create (4 samples, 0.01%)</title><rect x="875.3" y="1445" width="0.1" height="15.0" fill="rgb(238,201,14)" rx="2" ry="2" />
<text x="878.27" y="1455.5" ></text>
</g>
<g >
<title>[vet] (25 samples, 0.06%)</title><rect x="1187.6" y="933" width="0.6" height="15.0" fill="rgb(208,225,27)" rx="2" ry="2" />
<text x="1190.57" y="943.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (12 samples, 0.03%)</title><rect x="873.0" y="1397" width="0.3" height="15.0" fill="rgb(211,216,24)" rx="2" ry="2" />
<text x="875.97" y="1407.5" ></text>
</g>
<g >
<title>entry_SYSRETQ_unsafe_stack (9 samples, 0.02%)</title><rect x="806.1" y="1269" width="0.2" height="15.0" fill="rgb(230,150,12)" rx="2" ry="2" />
<text x="809.06" y="1279.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (13 samples, 0.03%)</title><rect x="60.0" y="1349" width="0.4" height="15.0" fill="rgb(243,59,24)" rx="2" ry="2" />
<text x="63.04" y="1359.5" ></text>
</g>
<g >
<title>do_user_addr_fault (12 samples, 0.03%)</title><rect x="62.4" y="1365" width="0.3" height="15.0" fill="rgb(244,12,46)" rx="2" ry="2" />
<text x="65.39" y="1375.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge_pages (4 samples, 0.01%)</title><rect x="1128.2" y="1237" width="0.1" height="15.0" fill="rgb(243,194,10)" rx="2" ry="2" />
<text x="1131.18" y="1247.5" ></text>
</g>
<g >
<title>[asm] (8 samples, 0.02%)</title><rect x="10.1" y="1365" width="0.2" height="15.0" fill="rgb(208,210,43)" rx="2" ry="2" />
<text x="13.13" y="1375.5" ></text>
</g>
<g >
<title>schedule (214 samples, 0.47%)</title><rect x="860.5" y="1333" width="5.6" height="15.0" fill="rgb(242,189,31)" rx="2" ry="2" />
<text x="863.54" y="1343.5" ></text>
</g>
<g >
<title>htree_dirblock_to_tree (4 samples, 0.01%)</title><rect x="26.0" y="1045" width="0.1" height="15.0" fill="rgb(219,0,37)" rx="2" ry="2" />
<text x="29.01" y="1055.5" ></text>
</g>
<g >
<title>new_slab (17 samples, 0.04%)</title><rect x="696.5" y="997" width="0.5" height="15.0" fill="rgb(253,216,23)" rx="2" ry="2" />
<text x="699.53" y="1007.5" ></text>
</g>
<g >
<title>__handle_mm_fault (115 samples, 0.25%)</title><rect x="470.7" y="1173" width="3.0" height="15.0" fill="rgb(222,92,26)" rx="2" ry="2" />
<text x="473.67" y="1183.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (8 samples, 0.02%)</title><rect x="850.4" y="1253" width="0.2" height="15.0" fill="rgb(251,80,52)" rx="2" ry="2" />
<text x="853.35" y="1263.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (6 samples, 0.01%)</title><rect x="530.2" y="1205" width="0.2" height="15.0" fill="rgb(229,11,24)" rx="2" ry="2" />
<text x="533.22" y="1215.5" ></text>
</g>
<g >
<title>[vet] (14 samples, 0.03%)</title><rect x="1187.8" y="437" width="0.4" height="15.0" fill="rgb(211,215,40)" rx="2" ry="2" />
<text x="1190.83" y="447.5" ></text>
</g>
<g >
<title>check_ptr_to_btf_access (5 samples, 0.01%)</title><rect x="468.7" y="1061" width="0.1" height="15.0" fill="rgb(232,19,24)" rx="2" ry="2" />
<text x="471.66" y="1071.5" ></text>
</g>
<g >
<title>go (1,244 samples, 2.75%)</title><rect x="11.9" y="1525" width="32.5" height="15.0" fill="rgb(244,19,54)" rx="2" ry="2" />
<text x="14.93" y="1535.5" >go</text>
</g>
<g >
<title>[unknown] (13 samples, 0.03%)</title><rect x="1182.6" y="1509" width="0.3" height="15.0" fill="rgb(243,119,46)" rx="2" ry="2" />
<text x="1185.61" y="1519.5" ></text>
</g>
<g >
<title>__handle_mm_fault (67 samples, 0.15%)</title><rect x="461.9" y="1109" width="1.7" height="15.0" fill="rgb(229,118,32)" rx="2" ry="2" />
<text x="464.87" y="1119.5" ></text>
</g>
<g >
<title>exit_mmap (19 samples, 0.04%)</title><rect x="64.6" y="1381" width="0.5" height="15.0" fill="rgb(222,120,12)" rx="2" ry="2" />
<text x="67.61" y="1391.5" ></text>
</g>
<g >
<title>exit_mm (11 samples, 0.02%)</title><rect x="44.1" y="1365" width="0.3" height="15.0" fill="rgb(237,33,13)" rx="2" ry="2" />
<text x="47.13" y="1375.5" ></text>
</g>
<g >
<title>__update_blocked_fair (5 samples, 0.01%)</title><rect x="871.7" y="1221" width="0.1" height="15.0" fill="rgb(237,168,10)" rx="2" ry="2" />
<text x="874.69" y="1231.5" ></text>
</g>
<g >
<title>vma_alloc_folio (5 samples, 0.01%)</title><rect x="468.2" y="1077" width="0.2" height="15.0" fill="rgb(237,226,11)" rx="2" ry="2" />
<text x="471.24" y="1087.5" ></text>
</g>
<g >
<title>ext4_file_read_iter (15 samples, 0.03%)</title><rect x="32.2" y="1205" width="0.4" height="15.0" fill="rgb(213,92,25)" rx="2" ry="2" />
<text x="35.23" y="1215.5" ></text>
</g>
<g >
<title>lock_vma_under_rcu (4 samples, 0.01%)</title><rect x="846.4" y="1333" width="0.1" height="15.0" fill="rgb(222,112,35)" rx="2" ry="2" />
<text x="849.44" y="1343.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (33 samples, 0.07%)</title><rect x="460.5" y="1157" width="0.8" height="15.0" fill="rgb(223,157,51)" rx="2" ry="2" />
<text x="463.46" y="1167.5" ></text>
</g>
<g >
<title>[mapgauge.test] (22,468 samples, 49.73%)</title><rect x="246.0" y="1333" width="586.8" height="15.0" fill="rgb(247,97,4)" rx="2" ry="2" />
<text x="249.02" y="1343.5" >[mapgauge.test]</text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="863.6" y="1285" width="0.2" height="15.0" fill="rgb(253,30,44)" rx="2" ry="2" />
<text x="866.65" y="1295.5" ></text>
</g>
<g >
<title>__schedule (6 samples, 0.01%)</title><rect x="469.9" y="1109" width="0.1" height="15.0" fill="rgb(207,119,46)" rx="2" ry="2" />
<text x="472.89" y="1119.5" ></text>
</g>
<g >
<title>kmem_cache_free (28 samples, 0.06%)</title><rect x="1053.3" y="1125" width="0.7" height="15.0" fill="rgb(212,121,28)" rx="2" ry="2" />
<text x="1056.25" y="1135.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5 samples, 0.01%)</title><rect x="934.3" y="1253" width="0.1" height="15.0" fill="rgb(250,111,27)" rx="2" ry="2" />
<text x="937.29" y="1263.5" ></text>
</g>
<g >
<title>rcu_core_si (10 samples, 0.02%)</title><rect x="1136.6" y="1189" width="0.3" height="15.0" fill="rgb(212,123,7)" rx="2" ry="2" />
<text x="1139.62" y="1199.5" ></text>
</g>
<g >
<title>exc_page_fault (5 samples, 0.01%)</title><rect x="837.8" y="1349" width="0.1" height="15.0" fill="rgb(226,211,44)" rx="2" ry="2" />
<text x="840.82" y="1359.5" ></text>
</g>
<g >
<title>do_exit (11,753 samples, 26.01%)</title><rect x="875.6" y="1381" width="306.9" height="15.0" fill="rgb(212,61,21)" rx="2" ry="2" />
<text x="878.56" y="1391.5" >do_exit</text>
</g>
<g >
<title>d_instantiate (127 samples, 0.28%)</title><rect x="661.2" y="1141" width="3.4" height="15.0" fill="rgb(235,136,54)" rx="2" ry="2" />
<text x="664.24" y="1151.5" ></text>
</g>
<g >
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="991.1" y="1205" width="0.1" height="15.0" fill="rgb(208,160,45)" rx="2" ry="2" />
<text x="994.07" y="1215.5" ></text>
</g>
<g >
<title>memchr_inv (46 samples, 0.10%)</title><rect x="747.1" y="1205" width="1.2" height="15.0" fill="rgb(238,177,1)" rx="2" ry="2" />
<text x="750.11" y="1215.5" ></text>
</g>
<g >
<title>rcu_do_batch (50 samples, 0.11%)</title><rect x="963.9" y="1157" width="1.3" height="15.0" fill="rgb(208,61,26)" rx="2" ry="2" />
<text x="966.91" y="1167.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (11 samples, 0.02%)</title><rect x="842.3" y="1269" width="0.3" height="15.0" fill="rgb(237,73,41)" rx="2" ry="2" />
<text x="845.31" y="1279.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (74 samples, 0.16%)</title><rect x="657.7" y="1077" width="1.9" height="15.0" fill="rgb(209,128,28)" rx="2" ry="2" />
<text x="660.67" y="1087.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="851.9" y="1413" width="0.1" height="15.0" fill="rgb(253,129,30)" rx="2" ry="2" />
<text x="854.89" y="1423.5" ></text>
</g>
<g >
<title>__do_softirq (5 samples, 0.01%)</title><rect x="1061.2" y="1221" width="0.2" height="15.0" fill="rgb(223,191,54)" rx="2" ry="2" />
<text x="1064.25" y="1231.5" ></text>
</g>
<g >
<title>[go] (9 samples, 0.02%)</title><rect x="43.7" y="1477" width="0.2" height="15.0" fill="rgb(214,99,33)" rx="2" ry="2" />
<text x="46.66" y="1487.5" ></text>
</g>
<g >
<title>x86_pmu_enable (11 samples, 0.02%)</title><rect x="1182.6" y="1269" width="0.3" height="15.0" fill="rgb(237,223,48)" rx="2" ry="2" />
<text x="1185.64" y="1279.5" ></text>
</g>
<g >
<title>link_path_walk.part.0.constprop.0 (13 samples, 0.03%)</title><rect x="26.8" y="1045" width="0.4" height="15.0" fill="rgb(229,116,24)" rx="2" ry="2" />
<text x="29.85" y="1055.5" ></text>
</g>
<g >
<title>__kmalloc_node (22 samples, 0.05%)</title><rect x="639.2" y="1029" width="0.5" height="15.0" fill="rgb(237,85,53)" rx="2" ry="2" />
<text x="642.17" y="1039.5" ></text>
</g>
<g >
<title>select_idle_sibling (35 samples, 0.08%)</title><rect x="1003.8" y="1205" width="1.0" height="15.0" fill="rgb(237,44,1)" rx="2" ry="2" />
<text x="1006.84" y="1215.5" ></text>
</g>
<g >
<title>dequeue_task (34 samples, 0.08%)</title><rect x="870.3" y="1285" width="0.8" height="15.0" fill="rgb(210,16,34)" rx="2" ry="2" />
<text x="873.25" y="1295.5" ></text>
</g>
<g >
<title>kvmalloc_node (16 samples, 0.04%)</title><rect x="675.3" y="1109" width="0.4" height="15.0" fill="rgb(237,158,51)" rx="2" ry="2" />
<text x="678.27" y="1119.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="468.6" y="1205" width="0.2" height="15.0" fill="rgb(241,161,4)" rx="2" ry="2" />
<text x="471.63" y="1215.5" ></text>
</g>
<g >
<title>slab_pre_alloc_hook.constprop.0 (494 samples, 1.09%)</title><rect x="646.9" y="1093" width="12.9" height="15.0" fill="rgb(244,10,42)" rx="2" ry="2" />
<text x="649.85" y="1103.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (17 samples, 0.04%)</title><rect x="33.9" y="1317" width="0.4" height="15.0" fill="rgb(250,101,26)" rx="2" ry="2" />
<text x="36.87" y="1327.5" ></text>
</g>
<g >
<title>__do_softirq (50 samples, 0.11%)</title><rect x="954.3" y="1237" width="1.3" height="15.0" fill="rgb(208,72,11)" rx="2" ry="2" />
<text x="957.27" y="1247.5" ></text>
</g>
<g >
<title>[mapgauge.test] (925 samples, 2.05%)</title><rect x="440.3" y="1189" width="24.1" height="15.0" fill="rgb(230,162,23)" rx="2" ry="2" />
<text x="443.27" y="1199.5" >[..</text>
</g>
<g >
<title>__mmput (4 samples, 0.01%)</title><rect x="1189.8" y="1333" width="0.1" height="15.0" fill="rgb(221,120,49)" rx="2" ry="2" />
<text x="1192.84" y="1343.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (5 samples, 0.01%)</title><rect x="664.1" y="1125" width="0.1" height="15.0" fill="rgb(211,221,19)" rx="2" ry="2" />
<text x="667.12" y="1135.5" ></text>
</g>
<g >
<title>set_next_entity (41 samples, 0.09%)</title><rect x="1090.5" y="1237" width="1.0" height="15.0" fill="rgb(206,79,32)" rx="2" ry="2" />
<text x="1093.47" y="1247.5" ></text>
</g>
<g >
<title>[link] (28 samples, 0.06%)</title><rect x="57.7" y="1285" width="0.8" height="15.0" fill="rgb(217,137,16)" rx="2" ry="2" />
<text x="60.74" y="1295.5" ></text>
</g>
<g >
<title>sched_clock (5 samples, 0.01%)</title><rect x="865.7" y="1269" width="0.2" height="15.0" fill="rgb(215,90,26)" rx="2" ry="2" />
<text x="868.74" y="1279.5" ></text>
</g>
<g >
<title>[vet] (10 samples, 0.02%)</title><rect x="1187.9" y="261" width="0.3" height="15.0" fill="rgb(206,116,18)" rx="2" ry="2" />
<text x="1190.94" y="271.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (26 samples, 0.06%)</title><rect x="696.3" y="1029" width="0.7" height="15.0" fill="rgb(243,220,32)" rx="2" ry="2" />
<text x="699.32" y="1039.5" ></text>
</g>
<g >
<title>rcu_do_batch (68 samples, 0.15%)</title><rect x="931.0" y="1205" width="1.8" height="15.0" fill="rgb(214,91,48)" rx="2" ry="2" />
<text x="934.03" y="1215.5" ></text>
</g>
<g >
<title>[[vdso]] (5 samples, 0.01%)</title><rect x="1184.5" y="1365" width="0.1" height="15.0" fill="rgb(229,76,13)" rx="2" ry="2" />
<text x="1187.52" y="1375.5" ></text>
</g>
<g >
<title>[vet] (178 samples, 0.39%)</title><rect x="1184.6" y="1365" width="4.7" height="15.0" fill="rgb(234,65,19)" rx="2" ry="2" />
<text x="1187.65" y="1375.5" ></text>
</g>
<g >
<title>migrate_enable (17 samples, 0.04%)</title><rect x="776.4" y="1141" width="0.5" height="15.0" fill="rgb(234,123,6)" rx="2" ry="2" />
<text x="779.44" y="1151.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8 samples, 0.02%)</title><rect x="924.7" y="1301" width="0.2" height="15.0" fill="rgb(247,126,6)" rx="2" ry="2" />
<text x="927.66" y="1311.5" ></text>
</g>
<g >
<title>resched_curr (10 samples, 0.02%)</title><rect x="1006.3" y="1173" width="0.3" height="15.0" fill="rgb(254,57,52)" rx="2" ry="2" />
<text x="1009.30" y="1183.5" ></text>
</g>
<g >
<title>exc_page_fault (4 samples, 0.01%)</title><rect x="832.3" y="1301" width="0.1" height="15.0" fill="rgb(239,1,16)" rx="2" ry="2" />
<text x="835.33" y="1311.5" ></text>
</g>
<g >
<title>__radix_tree_lookup (7 samples, 0.02%)</title><rect x="856.0" y="1253" width="0.2" height="15.0" fill="rgb(236,148,46)" rx="2" ry="2" />
<text x="859.02" y="1263.5" ></text>
</g>
<g >
<title>migrate_disable (12 samples, 0.03%)</title><rect x="527.6" y="1141" width="0.3" height="15.0" fill="rgb(243,77,0)" rx="2" ry="2" />
<text x="530.60" y="1151.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (22 samples, 0.05%)</title><rect x="873.4" y="1429" width="0.5" height="15.0" fill="rgb(215,69,37)" rx="2" ry="2" />
<text x="876.36" y="1439.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (19 samples, 0.04%)</title><rect x="1050.9" y="1093" width="0.5" height="15.0" fill="rgb(250,66,5)" rx="2" ry="2" />
<text x="1053.90" y="1103.5" ></text>
</g>
<g >
<title>[mapgauge.test] (190 samples, 0.42%)</title><rect x="868.3" y="1413" width="5.0" height="15.0" fill="rgb(251,73,44)" rx="2" ry="2" />
<text x="871.32" y="1423.5" ></text>
</g>
<g >
<title>try_to_wake_up (9 samples, 0.02%)</title><rect x="985.3" y="1253" width="0.2" height="15.0" fill="rgb(249,182,36)" rx="2" ry="2" />
<text x="988.30" y="1263.5" ></text>
</g>
<g >
<title>wp_page_copy (4 samples, 0.01%)</title><rect x="473.5" y="1125" width="0.1" height="15.0" fill="rgb(249,83,29)" rx="2" ry="2" />
<text x="476.52" y="1135.5" ></text>
</g>
<g >
<title>__folio_alloc (101 samples, 0.22%)</title><rect x="843.6" y="1253" width="2.7" height="15.0" fill="rgb(225,214,15)" rx="2" ry="2" />
<text x="846.62" y="1263.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10,124 samples, 22.41%)</title><rect x="539.7" y="1269" width="264.5" height="15.0" fill="rgb(218,67,49)" rx="2" ry="2" />
<text x="542.75" y="1279.5" >entry_SYSCALL_64_after_hwframe</text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (46 samples, 0.10%)</title><rect x="696.2" y="1061" width="1.2" height="15.0" fill="rgb(244,52,47)" rx="2" ry="2" />
<text x="699.16" y="1071.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (12 samples, 0.03%)</title><rect x="864.6" y="1285" width="0.4" height="15.0" fill="rgb(231,123,16)" rx="2" ry="2" />
<text x="867.64" y="1295.5" ></text>
</g>
<g >
<title>do_mmap (8 samples, 0.02%)</title><rect x="459.9" y="1045" width="0.2" height="15.0" fill="rgb(206,120,14)" rx="2" ry="2" />
<text x="462.94" y="1055.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (4 samples, 0.01%)</title><rect x="1157.5" y="1157" width="0.1" height="15.0" fill="rgb(215,101,51)" rx="2" ry="2" />
<text x="1160.51" y="1167.5" ></text>
</g>
<g >
<title>handle_pte_fault (17 samples, 0.04%)</title><rect x="34.4" y="1253" width="0.5" height="15.0" fill="rgb(231,206,0)" rx="2" ry="2" />
<text x="37.42" y="1263.5" ></text>
</g>
<g >
<title>__do_softirq (12 samples, 0.03%)</title><rect x="1148.0" y="1221" width="0.3" height="15.0" fill="rgb(216,104,21)" rx="2" ry="2" />
<text x="1151.03" y="1231.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (5 samples, 0.01%)</title><rect x="600.3" y="1077" width="0.1" height="15.0" fill="rgb(243,182,20)" rx="2" ry="2" />
<text x="603.26" y="1087.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (10 samples, 0.02%)</title><rect x="777.7" y="1237" width="0.3" height="15.0" fill="rgb(210,159,46)" rx="2" ry="2" />
<text x="780.72" y="1247.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (11 samples, 0.02%)</title><rect x="1118.4" y="1173" width="0.3" height="15.0" fill="rgb(235,22,24)" rx="2" ry="2" />
<text x="1121.39" y="1183.5" ></text>
</g>
<g >
<title>call_rcu (276 samples, 0.61%)</title><rect x="1061.4" y="1317" width="7.2" height="15.0" fill="rgb(241,77,29)" rx="2" ry="2" />
<text x="1064.38" y="1327.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (23 samples, 0.05%)</title><rect x="577.1" y="1189" width="0.6" height="15.0" fill="rgb(225,188,31)" rx="2" ry="2" />
<text x="580.07" y="1199.5" ></text>
</g>
<g >
<title>memset_orig (4 samples, 0.01%)</title><rect x="746.2" y="1189" width="0.1" height="15.0" fill="rgb(223,203,47)" rx="2" ry="2" />
<text x="749.17" y="1199.5" ></text>
</g>
<g >
<title>irq_exit_rcu (9 samples, 0.02%)</title><rect x="1105.7" y="1253" width="0.2" height="15.0" fill="rgb(235,19,9)" rx="2" ry="2" />
<text x="1108.70" y="1263.5" ></text>
</g>
<g >
<title>rcu_core_si (23 samples, 0.05%)</title><rect x="1173.5" y="1205" width="0.6" height="15.0" fill="rgb(214,196,10)" rx="2" ry="2" />
<text x="1176.55" y="1215.5" ></text>
</g>
<g >
<title>do_user_addr_fault (19 samples, 0.04%)</title><rect x="61.7" y="1349" width="0.5" height="15.0" fill="rgb(232,116,44)" rx="2" ry="2" />
<text x="64.68" y="1359.5" ></text>
</g>
<g >
<title>__folio_alloc (61 samples, 0.14%)</title><rect x="834.0" y="1205" width="1.5" height="15.0" fill="rgb(220,142,46)" rx="2" ry="2" />
<text x="836.95" y="1215.5" ></text>
</g>
<g >
<title>apparmor_capable (35 samples, 0.08%)</title><rect x="724.6" y="1173" width="0.9" height="15.0" fill="rgb(254,211,26)" rx="2" ry="2" />
<text x="727.60" y="1183.5" ></text>
</g>
<g >
<title>mod_objcg_state (36 samples, 0.08%)</title><rect x="620.0" y="1077" width="0.9" height="15.0" fill="rgb(233,81,17)" rx="2" ry="2" />
<text x="622.98" y="1087.5" ></text>
</g>
<g >
<title>get_signal (5 samples, 0.01%)</title><rect x="10.6" y="1413" width="0.2" height="15.0" fill="rgb(254,183,38)" rx="2" ry="2" />
<text x="13.63" y="1423.5" ></text>
</g>
<g >
<title>rmqueue (8 samples, 0.02%)</title><rect x="529.6" y="1093" width="0.3" height="15.0" fill="rgb(239,196,31)" rx="2" ry="2" />
<text x="532.64" y="1103.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (15 samples, 0.03%)</title><rect x="921.5" y="1253" width="0.4" height="15.0" fill="rgb(229,227,36)" rx="2" ry="2" />
<text x="924.52" y="1263.5" ></text>
</g>
<g >
<title>clear_page_erms (79 samples, 0.17%)</title><rect x="843.9" y="1205" width="2.0" height="15.0" fill="rgb(225,219,21)" rx="2" ry="2" />
<text x="846.88" y="1215.5" ></text>
</g>
<g >
<title>update_load_avg (10 samples, 0.02%)</title><rect x="1011.1" y="1173" width="0.2" height="15.0" fill="rgb(214,105,35)" rx="2" ry="2" />
<text x="1014.08" y="1183.5" ></text>
</g>
<g >
<title>__schedule (207 samples, 0.46%)</title><rect x="860.6" y="1317" width="5.4" height="15.0" fill="rgb(251,211,19)" rx="2" ry="2" />
<text x="863.64" y="1327.5" ></text>
</g>
<g >
<title>__alloc_pages (6 samples, 0.01%)</title><rect x="675.5" y="1045" width="0.2" height="15.0" fill="rgb(250,206,1)" rx="2" ry="2" />
<text x="678.53" y="1055.5" ></text>
</g>
<g >
<title>do_syscall_64 (35 samples, 0.08%)</title><rect x="847.6" y="1365" width="0.9" height="15.0" fill="rgb(252,123,27)" rx="2" ry="2" />
<text x="850.61" y="1375.5" ></text>
</g>
<g >
<title>shuffle_freelist (33 samples, 0.07%)</title><rect x="697.6" y="1061" width="0.9" height="15.0" fill="rgb(235,203,40)" rx="2" ry="2" />
<text x="700.65" y="1071.5" ></text>
</g>
<g >
<title>irq_exit_rcu (9 samples, 0.02%)</title><rect x="1164.3" y="1253" width="0.2" height="15.0" fill="rgb(217,100,6)" rx="2" ry="2" />
<text x="1167.30" y="1263.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (11 samples, 0.02%)</title><rect x="1182.6" y="1253" width="0.3" height="15.0" fill="rgb(231,102,2)" rx="2" ry="2" />
<text x="1185.64" y="1263.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (7 samples, 0.02%)</title><rect x="1076.3" y="1237" width="0.2" height="15.0" fill="rgb(239,104,25)" rx="2" ry="2" />
<text x="1079.34" y="1247.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (5 samples, 0.01%)</title><rect x="1150.6" y="1285" width="0.1" height="15.0" fill="rgb(210,228,38)" rx="2" ry="2" />
<text x="1153.59" y="1295.5" ></text>
</g>
<g >
<title>obj_cgroup_charge (67 samples, 0.15%)</title><rect x="621.0" y="1093" width="1.8" height="15.0" fill="rgb(212,155,31)" rx="2" ry="2" />
<text x="624.05" y="1103.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (1,357 samples, 3.00%)</title><rect x="480.4" y="1157" width="35.5" height="15.0" fill="rgb(213,73,49)" rx="2" ry="2" />
<text x="483.41" y="1167.5" >bpf..</text>
</g>
<g >
<title>__x64_sys_bpf (47 samples, 0.10%)</title><rect x="556.3" y="1253" width="1.2" height="15.0" fill="rgb(237,198,29)" rx="2" ry="2" />
<text x="559.31" y="1263.5" ></text>
</g>
<g >
<title>[link] (4 samples, 0.01%)</title><rect x="64.5" y="1461" width="0.1" height="15.0" fill="rgb(219,150,48)" rx="2" ry="2" />
<text x="67.51" y="1471.5" ></text>
</g>
<g >
<title>filename_lookup (4 samples, 0.01%)</title><rect x="25.7" y="1029" width="0.1" height="15.0" fill="rgb(254,46,6)" rx="2" ry="2" />
<text x="28.72" y="1039.5" ></text>
</g>
<g >
<title>handle_mm_fault (118 samples, 0.26%)</title><rect x="470.6" y="1189" width="3.1" height="15.0" fill="rgb(223,207,36)" rx="2" ry="2" />
<text x="473.59" y="1199.5" ></text>
</g>
<g >
<title>__sys_bpf (6 samples, 0.01%)</title><rect x="468.6" y="1157" width="0.2" height="15.0" fill="rgb(250,54,18)" rx="2" ry="2" />
<text x="471.63" y="1167.5" ></text>
</g>
<g >
<title>kmem_cache_free (8 samples, 0.02%)</title><rect x="940.5" y="1157" width="0.2" height="15.0" fill="rgb(246,140,25)" rx="2" ry="2" />
<text x="943.48" y="1167.5" ></text>
</g>
<g >
<title>try_charge_memcg (4 samples, 0.01%)</title><rect x="622.9" y="1093" width="0.1" height="15.0" fill="rgb(211,117,12)" rx="2" ry="2" />
<text x="625.88" y="1103.5" ></text>
</g>
<g >
<title>exc_page_fault (12 samples, 0.03%)</title><rect x="60.1" y="1333" width="0.3" height="15.0" fill="rgb(219,100,35)" rx="2" ry="2" />
<text x="63.07" y="1343.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (35 samples, 0.08%)</title><rect x="1101.2" y="1189" width="0.9" height="15.0" fill="rgb(225,86,36)" rx="2" ry="2" />
<text x="1104.20" y="1199.5" ></text>
</g>
<g >
<title>refill_obj_stock (18 samples, 0.04%)</title><rect x="1052.5" y="1093" width="0.5" height="15.0" fill="rgb(233,203,35)" rx="2" ry="2" />
<text x="1055.50" y="1103.5" ></text>
</g>
<g >
<title>x86_pmu_enable (40 samples, 0.09%)</title><rect x="41.6" y="1253" width="1.0" height="15.0" fill="rgb(215,162,23)" rx="2" ry="2" />
<text x="44.60" y="1263.5" ></text>
</g>
<g >
<title>do_user_addr_fault (186 samples, 0.41%)</title><rect x="841.7" y="1349" width="4.9" height="15.0" fill="rgb(244,30,26)" rx="2" ry="2" />
<text x="844.71" y="1359.5" ></text>
</g>
<g >
<title>[asm] (6 samples, 0.01%)</title><rect x="10.1" y="1317" width="0.2" height="15.0" fill="rgb(253,176,21)" rx="2" ry="2" />
<text x="13.13" y="1327.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (14 samples, 0.03%)</title><rect x="1157.2" y="1237" width="0.4" height="15.0" fill="rgb(224,189,34)" rx="2" ry="2" />
<text x="1160.25" y="1247.5" ></text>
</g>
<g >
<title>file_free_rcu (19 samples, 0.04%)</title><rect x="1044.7" y="1157" width="0.5" height="15.0" fill="rgb(209,0,8)" rx="2" ry="2" />
<text x="1047.74" y="1167.5" ></text>
</g>
<g >
<title>_raw_spin_trylock (56 samples, 0.12%)</title><rect x="923.4" y="1317" width="1.5" height="15.0" fill="rgb(250,212,38)" rx="2" ry="2" />
<text x="926.40" y="1327.5" ></text>
</g>
<g >
<title>do_tkill (17 samples, 0.04%)</title><rect x="838.5" y="1317" width="0.5" height="15.0" fill="rgb(211,188,51)" rx="2" ry="2" />
<text x="841.55" y="1327.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (8 samples, 0.02%)</title><rect x="1038.4" y="1237" width="0.2" height="15.0" fill="rgb(211,189,9)" rx="2" ry="2" />
<text x="1041.39" y="1247.5" ></text>
</g>
<g >
<title>[vet] (24 samples, 0.05%)</title><rect x="1187.6" y="901" width="0.6" height="15.0" fill="rgb(222,189,7)" rx="2" ry="2" />
<text x="1190.60" y="911.5" ></text>
</g>
<g >
<title>page_cache_ra_order (5 samples, 0.01%)</title><rect x="63.7" y="1253" width="0.1" height="15.0" fill="rgb(213,115,14)" rx="2" ry="2" />
<text x="66.70" y="1263.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (8 samples, 0.02%)</title><rect x="11.7" y="1477" width="0.2" height="15.0" fill="rgb(211,72,0)" rx="2" ry="2" />
<text x="14.72" y="1487.5" ></text>
</g>
<g >
<title>syscall_enter_from_user_mode (12 samples, 0.03%)</title><rect x="778.0" y="1237" width="0.3" height="15.0" fill="rgb(211,218,47)" rx="2" ry="2" />
<text x="780.98" y="1247.5" ></text>
</g>
<g >
<title>cache_from_obj (9 samples, 0.02%)</title><rect x="1107.2" y="1269" width="0.2" height="15.0" fill="rgb(245,35,33)" rx="2" ry="2" />
<text x="1110.21" y="1279.5" ></text>
</g>
<g >
<title>kmem_cache_free (4 samples, 0.01%)</title><rect x="1136.7" y="1125" width="0.1" height="15.0" fill="rgb(239,153,28)" rx="2" ry="2" />
<text x="1139.67" y="1135.5" ></text>
</g>
<g >
<title>do_syscall_64 (32 samples, 0.07%)</title><rect x="29.9" y="1253" width="0.9" height="15.0" fill="rgb(209,118,11)" rx="2" ry="2" />
<text x="32.93" y="1263.5" ></text>
</g>
<g >
<title>ret_from_fork_asm (14 samples, 0.03%)</title><rect x="43.3" y="1477" width="0.4" height="15.0" fill="rgb(248,183,49)" rx="2" ry="2" />
<text x="46.30" y="1487.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (50 samples, 0.11%)</title><rect x="1037.0" y="1157" width="1.3" height="15.0" fill="rgb(224,105,3)" rx="2" ry="2" />
<text x="1040.01" y="1167.5" ></text>
</g>
<g >
<title>___slab_alloc (17 samples, 0.04%)</title><rect x="696.5" y="1013" width="0.5" height="15.0" fill="rgb(208,195,5)" rx="2" ry="2" />
<text x="699.53" y="1023.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (37 samples, 0.08%)</title><rect x="713.8" y="1125" width="1.0" height="15.0" fill="rgb(209,183,27)" rx="2" ry="2" />
<text x="716.82" y="1135.5" ></text>
</g>
<g >
<title>__ext4_new_inode (4 samples, 0.01%)</title><rect x="33.9" y="1221" width="0.1" height="15.0" fill="rgb(212,220,44)" rx="2" ry="2" />
<text x="36.90" y="1231.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_bh (7 samples, 0.02%)</title><rect x="504.6" y="1141" width="0.2" height="15.0" fill="rgb(228,181,39)" rx="2" ry="2" />
<text x="507.62" y="1151.5" ></text>
</g>
<g >
<title>[vet] (190 samples, 0.42%)</title><rect x="1184.4" y="1381" width="4.9" height="15.0" fill="rgb(231,107,34)" rx="2" ry="2" />
<text x="1187.36" y="1391.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="837.9" y="1333" width="0.2" height="15.0" fill="rgb(242,7,39)" rx="2" ry="2" />
<text x="840.95" y="1343.5" ></text>
</g>
<g >
<title>__do_softirq (14 samples, 0.03%)</title><rect x="1106.6" y="1189" width="0.4" height="15.0" fill="rgb(228,150,40)" rx="2" ry="2" />
<text x="1109.64" y="1199.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (159 samples, 0.35%)</title><rect x="772.2" y="1141" width="4.2" height="15.0" fill="rgb(211,17,2)" rx="2" ry="2" />
<text x="775.21" y="1151.5" ></text>
</g>
<g >
<title>[vet] (11 samples, 0.02%)</title><rect x="1187.9" y="341" width="0.3" height="15.0" fill="rgb(220,103,53)" rx="2" ry="2" />
<text x="1190.91" y="351.5" ></text>
</g>
<g >
<title>vfs_read (15 samples, 0.03%)</title><rect x="32.2" y="1221" width="0.4" height="15.0" fill="rgb(209,197,25)" rx="2" ry="2" />
<text x="35.23" y="1231.5" ></text>
</g>
<g >
<title>security_file_alloc (420 samples, 0.93%)</title><rect x="589.7" y="1093" width="11.0" height="15.0" fill="rgb(235,211,19)" rx="2" ry="2" />
<text x="592.68" y="1103.5" ></text>
</g>
<g >
<title>iput (11 samples, 0.02%)</title><rect x="1146.0" y="1285" width="0.3" height="15.0" fill="rgb(224,92,52)" rx="2" ry="2" />
<text x="1148.97" y="1295.5" ></text>
</g>
<g >
<title>native_smp_send_reschedule (6 samples, 0.01%)</title><rect x="838.8" y="1205" width="0.1" height="15.0" fill="rgb(209,16,28)" rx="2" ry="2" />
<text x="841.76" y="1215.5" ></text>
</g>
<g >
<title>get_page_from_freelist (163 samples, 0.36%)</title><rect x="634.8" y="1013" width="4.3" height="15.0" fill="rgb(212,4,42)" rx="2" ry="2" />
<text x="637.81" y="1023.5" ></text>
</g>
<g >
<title>dequeue_task_fair (69 samples, 0.15%)</title><rect x="861.1" y="1285" width="1.8" height="15.0" fill="rgb(232,85,46)" rx="2" ry="2" />
<text x="864.11" y="1295.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (24 samples, 0.05%)</title><rect x="469.4" y="1205" width="0.6" height="15.0" fill="rgb(211,10,43)" rx="2" ry="2" />
<text x="472.42" y="1215.5" ></text>
</g>
<g >
<title>put_cpu_partial (88 samples, 0.19%)</title><rect x="1118.2" y="1237" width="2.3" height="15.0" fill="rgb(244,182,0)" rx="2" ry="2" />
<text x="1121.15" y="1247.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (13 samples, 0.03%)</title><rect x="1182.6" y="1493" width="0.3" height="15.0" fill="rgb(227,178,18)" rx="2" ry="2" />
<text x="1185.61" y="1503.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="1120.3" y="1141" width="0.1" height="15.0" fill="rgb(250,163,10)" rx="2" ry="2" />
<text x="1123.27" y="1151.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (4 samples, 0.01%)</title><rect x="838.2" y="1365" width="0.1" height="15.0" fill="rgb(254,35,27)" rx="2" ry="2" />
<text x="841.18" y="1375.5" ></text>
</g>
<g >
<title>__radix_tree_preload (7 samples, 0.02%)</title><rect x="576.1" y="1189" width="0.2" height="15.0" fill="rgb(229,123,20)" rx="2" ry="2" />
<text x="579.13" y="1199.5" ></text>
</g>
<g >
<title>__unfreeze_partials (19 samples, 0.04%)</title><rect x="1053.5" y="1077" width="0.5" height="15.0" fill="rgb(229,22,8)" rx="2" ry="2" />
<text x="1056.49" y="1087.5" ></text>
</g>
<g >
<title>do_anonymous_page (27 samples, 0.06%)</title><rect x="529.1" y="1173" width="0.8" height="15.0" fill="rgb(238,149,36)" rx="2" ry="2" />
<text x="532.15" y="1183.5" ></text>
</g>
<g >
<title>do_fault (6 samples, 0.01%)</title><rect x="62.5" y="1301" width="0.2" height="15.0" fill="rgb(254,157,14)" rx="2" ry="2" />
<text x="65.55" y="1311.5" ></text>
</g>
<g >
<title>x86_pmu_enable (4 samples, 0.01%)</title><rect x="871.2" y="1237" width="0.2" height="15.0" fill="rgb(217,31,11)" rx="2" ry="2" />
<text x="874.25" y="1247.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (10 samples, 0.02%)</title><rect x="846.0" y="1189" width="0.2" height="15.0" fill="rgb(218,209,32)" rx="2" ry="2" />
<text x="848.97" y="1199.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (45 samples, 0.10%)</title><rect x="475.1" y="1173" width="1.2" height="15.0" fill="rgb(232,63,39)" rx="2" ry="2" />
<text x="478.11" y="1183.5" ></text>
</g>
<g >
<title>clear_page_erms (402 samples, 0.89%)</title><rect x="684.6" y="1013" width="10.5" height="15.0" fill="rgb(235,18,46)" rx="2" ry="2" />
<text x="687.62" y="1023.5" ></text>
</g>
<g >
<title>shuffle_freelist (33 samples, 0.07%)</title><rect x="639.9" y="1045" width="0.8" height="15.0" fill="rgb(220,76,41)" rx="2" ry="2" />
<text x="642.85" y="1055.5" ></text>
</g>
<g >
<title>unmap_vmas (7 samples, 0.02%)</title><rect x="11.7" y="1301" width="0.2" height="15.0" fill="rgb(250,185,13)" rx="2" ry="2" />
<text x="14.75" y="1311.5" ></text>
</g>
<g >
<title>__free_slab (18 samples, 0.04%)</title><rect x="1053.5" y="1029" width="0.5" height="15.0" fill="rgb(238,89,8)" rx="2" ry="2" />
<text x="1056.51" y="1039.5" ></text>
</g>
<g >
<title>allocate_slab (6 samples, 0.01%)</title><rect x="639.4" y="965" width="0.1" height="15.0" fill="rgb(235,78,1)" rx="2" ry="2" />
<text x="642.38" y="975.5" ></text>
</g>
<g >
<title>[vet] (8 samples, 0.02%)</title><rect x="1188.0" y="229" width="0.2" height="15.0" fill="rgb(247,180,24)" rx="2" ry="2" />
<text x="1190.99" y="239.5" ></text>
</g>
<g >
<title>do_nanosleep (278 samples, 0.62%)</title><rect x="858.9" y="1349" width="7.2" height="15.0" fill="rgb(222,6,27)" rx="2" ry="2" />
<text x="861.87" y="1359.5" ></text>
</g>
<g >
<title>lru_gen_add_folio (9 samples, 0.02%)</title><rect x="843.0" y="1205" width="0.2" height="15.0" fill="rgb(207,216,36)" rx="2" ry="2" />
<text x="845.99" y="1215.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (11 samples, 0.02%)</title><rect x="1173.2" y="1253" width="0.3" height="15.0" fill="rgb(212,180,54)" rx="2" ry="2" />
<text x="1176.23" y="1263.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (8 samples, 0.02%)</title><rect x="1079.8" y="1221" width="0.2" height="15.0" fill="rgb(233,223,49)" rx="2" ry="2" />
<text x="1082.81" y="1231.5" ></text>
</g>
<g >
<title>exit_mm (103 samples, 0.23%)</title><rect x="890.8" y="1365" width="2.7" height="15.0" fill="rgb(244,129,38)" rx="2" ry="2" />
<text x="893.81" y="1375.5" ></text>
</g>
<g >
<title>handle_mm_fault (4 samples, 0.01%)</title><rect x="460.2" y="1093" width="0.1" height="15.0" fill="rgb(253,144,45)" rx="2" ry="2" />
<text x="463.17" y="1103.5" ></text>
</g>
<g >
<title>migrate_enable (37 samples, 0.08%)</title><rect x="526.2" y="1125" width="1.0" height="15.0" fill="rgb(223,132,34)" rx="2" ry="2" />
<text x="529.22" y="1135.5" ></text>
</g>
<g >
<title>radix_tree_lookup (7 samples, 0.02%)</title><rect x="856.0" y="1269" width="0.2" height="15.0" fill="rgb(214,183,54)" rx="2" ry="2" />
<text x="859.02" y="1279.5" ></text>
</g>
<g >
<title>__alloc_pages (9 samples, 0.02%)</title><rect x="466.1" y="1029" width="0.2" height="15.0" fill="rgb(238,58,47)" rx="2" ry="2" />
<text x="469.10" y="1039.5" ></text>
</g>
<g >
<title>irq_exit_rcu (21 samples, 0.05%)</title><rect x="940.4" y="1269" width="0.5" height="15.0" fill="rgb(217,35,54)" rx="2" ry="2" />
<text x="943.35" y="1279.5" ></text>
</g>
<g >
<title>task_work_add (23 samples, 0.05%)</title><rect x="886.6" y="1301" width="0.6" height="15.0" fill="rgb(243,49,42)" rx="2" ry="2" />
<text x="889.58" y="1311.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4 samples, 0.01%)</title><rect x="1120.3" y="1109" width="0.1" height="15.0" fill="rgb(245,21,45)" rx="2" ry="2" />
<text x="1123.27" y="1119.5" ></text>
</g>
<g >
<title>__kmalloc_node (12 samples, 0.03%)</title><rect x="717.2" y="1157" width="0.3" height="15.0" fill="rgb(225,51,36)" rx="2" ry="2" />
<text x="720.16" y="1167.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (4 samples, 0.01%)</title><rect x="459.4" y="1109" width="0.1" height="15.0" fill="rgb(234,160,37)" rx="2" ry="2" />
<text x="462.39" y="1119.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (148 samples, 0.33%)</title><rect x="642.8" y="1093" width="3.9" height="15.0" fill="rgb(232,26,37)" rx="2" ry="2" />
<text x="645.83" y="1103.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10 samples, 0.02%)</title><rect x="1170.8" y="1221" width="0.2" height="15.0" fill="rgb(206,169,15)" rx="2" ry="2" />
<text x="1173.78" y="1231.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (4 samples, 0.01%)</title><rect x="1001.3" y="1221" width="0.1" height="15.0" fill="rgb(216,101,19)" rx="2" ry="2" />
<text x="1004.26" y="1231.5" ></text>
</g>
<g >
<title>__schedule (6 samples, 0.01%)</title><rect x="875.4" y="1413" width="0.2" height="15.0" fill="rgb(230,104,46)" rx="2" ry="2" />
<text x="878.40" y="1423.5" ></text>
</g>
<g >
<title>get_timespec64 (9 samples, 0.02%)</title><rect x="858.5" y="1365" width="0.2" height="15.0" fill="rgb(249,34,26)" rx="2" ry="2" />
<text x="861.48" y="1375.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (135 samples, 0.30%)</title><rect x="869.4" y="1397" width="3.6" height="15.0" fill="rgb(242,178,50)" rx="2" ry="2" />
<text x="872.44" y="1407.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (6 samples, 0.01%)</title><rect x="869.3" y="1397" width="0.1" height="15.0" fill="rgb(216,36,17)" rx="2" ry="2" />
<text x="872.29" y="1407.5" ></text>
</g>
<g >
<title>put_cpu_partial (16 samples, 0.04%)</title><rect x="1050.5" y="1093" width="0.4" height="15.0" fill="rgb(241,80,29)" rx="2" ry="2" />
<text x="1053.49" y="1103.5" ></text>
</g>
<g >
<title>do_syscall_64 (11,765 samples, 26.04%)</title><rect x="875.3" y="1493" width="307.2" height="15.0" fill="rgb(252,167,8)" rx="2" ry="2" />
<text x="878.27" y="1503.5" >do_syscall_64</text>
</g>
<g >
<title>do_nanosleep (112 samples, 0.25%)</title><rect x="869.7" y="1333" width="2.9" height="15.0" fill="rgb(220,54,14)" rx="2" ry="2" />
<text x="872.65" y="1343.5" ></text>
</g>
<g >
<title>[mapgauge.test] (24 samples, 0.05%)</title><rect x="874.5" y="1445" width="0.6" height="15.0" fill="rgb(241,171,38)" rx="2" ry="2" />
<text x="877.46" y="1455.5" ></text>
</g>
<g >
<title>__do_softirq (4 samples, 0.01%)</title><rect x="1120.3" y="1093" width="0.1" height="15.0" fill="rgb(245,110,37)" rx="2" ry="2" />
<text x="1123.27" y="1103.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (8 samples, 0.02%)</title><rect x="1145.8" y="1253" width="0.2" height="15.0" fill="rgb(250,96,27)" rx="2" ry="2" />
<text x="1148.76" y="1263.5" ></text>
</g>
<g >
<title>alloc_pages (6 samples, 0.01%)</title><rect x="675.5" y="1061" width="0.2" height="15.0" fill="rgb(234,206,30)" rx="2" ry="2" />
<text x="678.53" y="1071.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (93 samples, 0.21%)</title><rect x="998.8" y="1205" width="2.5" height="15.0" fill="rgb(211,196,37)" rx="2" ry="2" />
<text x="1001.83" y="1215.5" ></text>
</g>
<g >
<title>raw_spin_rq_lock_nested (284 samples, 0.63%)</title><rect x="991.2" y="1205" width="7.4" height="15.0" fill="rgb(227,204,19)" rx="2" ry="2" />
<text x="994.17" y="1215.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (4 samples, 0.01%)</title><rect x="569.4" y="1205" width="0.1" height="15.0" fill="rgb(249,187,52)" rx="2" ry="2" />
<text x="572.44" y="1215.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (37 samples, 0.08%)</title><rect x="1144.8" y="1189" width="1.0" height="15.0" fill="rgb(212,10,5)" rx="2" ry="2" />
<text x="1147.79" y="1199.5" ></text>
</g>
<g >
<title>cache_from_obj (7 samples, 0.02%)</title><rect x="1051.4" y="1109" width="0.2" height="15.0" fill="rgb(227,120,34)" rx="2" ry="2" />
<text x="1054.40" y="1119.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (19 samples, 0.04%)</title><rect x="1127.4" y="1189" width="0.5" height="15.0" fill="rgb(248,107,10)" rx="2" ry="2" />
<text x="1130.40" y="1199.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (26 samples, 0.06%)</title><rect x="62.8" y="1413" width="0.7" height="15.0" fill="rgb(239,181,46)" rx="2" ry="2" />
<text x="65.81" y="1423.5" ></text>
</g>
<g >
<title>rcu_do_batch (14 samples, 0.03%)</title><rect x="1157.2" y="1173" width="0.4" height="15.0" fill="rgb(226,193,26)" rx="2" ry="2" />
<text x="1160.25" y="1183.5" ></text>
</g>
<g >
<title>__mem_cgroup_charge (4 samples, 0.01%)</title><rect x="833.6" y="1221" width="0.1" height="15.0" fill="rgb(220,180,31)" rx="2" ry="2" />
<text x="836.56" y="1231.5" ></text>
</g>
<g >
<title>radix_tree_iter_replace (21 samples, 0.05%)</title><rect x="744.4" y="1157" width="0.5" height="15.0" fill="rgb(213,128,10)" rx="2" ry="2" />
<text x="747.40" y="1167.5" ></text>
</g>
<g >
<title>memcg_account_kmem (15 samples, 0.03%)</title><rect x="711.6" y="1093" width="0.4" height="15.0" fill="rgb(211,191,11)" rx="2" ry="2" />
<text x="714.65" y="1103.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="33.0" y="1285" width="0.1" height="15.0" fill="rgb(249,192,21)" rx="2" ry="2" />
<text x="35.96" y="1295.5" ></text>
</g>
<g >
<title>[vet] (258 samples, 0.57%)</title><rect x="1183.1" y="1461" width="6.7" height="15.0" fill="rgb(218,36,25)" rx="2" ry="2" />
<text x="1186.08" y="1471.5" ></text>
</g>
<g >
<title>__x64_sys_newfstatat (5 samples, 0.01%)</title><rect x="30.0" y="1237" width="0.1" height="15.0" fill="rgb(224,196,49)" rx="2" ry="2" />
<text x="33.01" y="1247.5" ></text>
</g>
<g >
<title>ext4_page_mkwrite (6 samples, 0.01%)</title><rect x="63.8" y="1301" width="0.2" height="15.0" fill="rgb(252,172,33)" rx="2" ry="2" />
<text x="66.83" y="1311.5" ></text>
</g>
<g >
<title>handle_mm_fault (24 samples, 0.05%)</title><rect x="460.6" y="1109" width="0.6" height="15.0" fill="rgb(250,112,2)" rx="2" ry="2" />
<text x="463.56" y="1119.5" ></text>
</g>
<g >
<title>exc_page_fault (5 samples, 0.01%)</title><rect x="459.6" y="1109" width="0.1" height="15.0" fill="rgb(218,208,37)" rx="2" ry="2" />
<text x="462.60" y="1119.5" ></text>
</g>
<g >
<title>do_exit (5 samples, 0.01%)</title><rect x="1189.8" y="1381" width="0.2" height="15.0" fill="rgb(218,194,42)" rx="2" ry="2" />
<text x="1192.84" y="1391.5" ></text>
</g>
<g >
<title>ksys_read (2,041 samples, 4.52%)</title><rect x="475.1" y="1205" width="53.3" height="15.0" fill="rgb(232,81,16)" rx="2" ry="2" />
<text x="478.06" y="1215.5" >ksys_..</text>
</g>
<g >
<title>do_exit (11 samples, 0.02%)</title><rect x="44.1" y="1381" width="0.3" height="15.0" fill="rgb(241,169,38)" rx="2" ry="2" />
<text x="47.13" y="1391.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (11,754 samples, 26.01%)</title><rect x="875.6" y="1461" width="306.9" height="15.0" fill="rgb(210,55,21)" rx="2" ry="2" />
<text x="878.56" y="1471.5" >exit_to_user_mode_prepare</text>
</g>
<g >
<title>free_pages_and_swap_cache (57 samples, 0.13%)</title><rect x="892.0" y="1189" width="1.5" height="15.0" fill="rgb(217,110,42)" rx="2" ry="2" />
<text x="894.98" y="1199.5" ></text>
</g>
<g >
<title>mod_memcg_state (15 samples, 0.03%)</title><rect x="711.6" y="1077" width="0.4" height="15.0" fill="rgb(241,81,13)" rx="2" ry="2" />
<text x="714.65" y="1087.5" ></text>
</g>
<g >
<title>__sysvec_apic_timer_interrupt (8 samples, 0.02%)</title><rect x="850.8" y="1365" width="0.2" height="15.0" fill="rgb(219,170,33)" rx="2" ry="2" />
<text x="853.80" y="1375.5" ></text>
</g>
<g >
<title>update_cfs_group (11 samples, 0.02%)</title><rect x="861.4" y="1253" width="0.3" height="15.0" fill="rgb(232,51,38)" rx="2" ry="2" />
<text x="864.43" y="1263.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (5 samples, 0.01%)</title><rect x="27.7" y="1173" width="0.2" height="15.0" fill="rgb(210,197,18)" rx="2" ry="2" />
<text x="30.73" y="1183.5" ></text>
</g>
<g >
<title>wq_select_unbound_cpu (73 samples, 0.16%)</title><rect x="1038.7" y="1253" width="1.9" height="15.0" fill="rgb(219,181,53)" rx="2" ry="2" />
<text x="1041.65" y="1263.5" ></text>
</g>
<g >
<title>exit_mmap (4 samples, 0.01%)</title><rect x="1189.8" y="1317" width="0.1" height="15.0" fill="rgb(249,199,8)" rx="2" ry="2" />
<text x="1192.84" y="1327.5" ></text>
</g>
<g >
<title>refill_obj_stock (5 samples, 0.01%)</title><rect x="712.6" y="1109" width="0.1" height="15.0" fill="rgb(219,80,17)" rx="2" ry="2" />
<text x="715.59" y="1119.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_in (19 samples, 0.04%)</title><rect x="863.1" y="1285" width="0.5" height="15.0" fill="rgb(232,54,5)" rx="2" ry="2" />
<text x="866.12" y="1295.5" ></text>
</g>
<g >
<title>clear_page_erms (10 samples, 0.02%)</title><rect x="696.5" y="933" width="0.3" height="15.0" fill="rgb(238,99,29)" rx="2" ry="2" />
<text x="699.53" y="943.5" ></text>
</g>
<g >
<title>[vet] (28 samples, 0.06%)</title><rect x="1187.5" y="965" width="0.8" height="15.0" fill="rgb(228,7,40)" rx="2" ry="2" />
<text x="1190.52" y="975.5" ></text>
</g>
<g >
<title>[mapgauge.test] (43 samples, 0.10%)</title><rect x="873.3" y="1461" width="1.2" height="15.0" fill="rgb(219,200,42)" rx="2" ry="2" />
<text x="876.34" y="1471.5" ></text>
</g>
<g >
<title>[vet] (48 samples, 0.11%)</title><rect x="1187.2" y="1093" width="1.2" height="15.0" fill="rgb(239,118,43)" rx="2" ry="2" />
<text x="1190.15" y="1103.5" ></text>
</g>
<g >
<title>__kmem_cache_alloc_node (1,264 samples, 2.80%)</title><rect x="679.7" y="1125" width="33.0" height="15.0" fill="rgb(245,87,19)" rx="2" ry="2" />
<text x="682.71" y="1135.5" >__..</text>
</g>
<g >
<title>vma_alloc_folio (9 samples, 0.02%)</title><rect x="61.8" y="1269" width="0.2" height="15.0" fill="rgb(248,104,50)" rx="2" ry="2" />
<text x="64.79" y="1279.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (7 samples, 0.02%)</title><rect x="849.5" y="1381" width="0.2" height="15.0" fill="rgb(212,9,10)" rx="2" ry="2" />
<text x="852.49" y="1391.5" ></text>
</g>
<g >
<title>irq_exit_rcu (11 samples, 0.02%)</title><rect x="1118.4" y="1157" width="0.3" height="15.0" fill="rgb(221,221,51)" rx="2" ry="2" />
<text x="1121.39" y="1167.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (416 samples, 0.92%)</title><rect x="504.8" y="1141" width="10.9" height="15.0" fill="rgb(205,90,16)" rx="2" ry="2" />
<text x="507.81" y="1151.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (31 samples, 0.07%)</title><rect x="677.3" y="1173" width="0.8" height="15.0" fill="rgb(246,74,44)" rx="2" ry="2" />
<text x="680.33" y="1183.5" ></text>
</g>
<g >
<title>clear_page_erms (54 samples, 0.12%)</title><rect x="471.7" y="1061" width="1.4" height="15.0" fill="rgb(249,207,49)" rx="2" ry="2" />
<text x="474.69" y="1071.5" ></text>
</g>
<g >
<title>d_alloc_pseudo (5 samples, 0.01%)</title><rect x="666.1" y="1157" width="0.2" height="15.0" fill="rgb(210,194,44)" rx="2" ry="2" />
<text x="669.13" y="1167.5" ></text>
</g>
<g >
<title>[mapgauge.test] (26,456 samples, 58.55%)</title><rect x="158.7" y="1397" width="691.0" height="15.0" fill="rgb(251,65,14)" rx="2" ry="2" />
<text x="161.73" y="1407.5" >[mapgauge.test]</text>
</g>
<g >
<title>[vet] (95 samples, 0.21%)</title><rect x="1186.2" y="1173" width="2.5" height="15.0" fill="rgb(210,50,44)" rx="2" ry="2" />
<text x="1189.24" y="1183.5" ></text>
</g>
<g >
<title>ext4_mkdir (11 samples, 0.02%)</title><rect x="33.9" y="1237" width="0.3" height="15.0" fill="rgb(225,190,2)" rx="2" ry="2" />
<text x="36.90" y="1247.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (11 samples, 0.02%)</title><rect x="836.3" y="1333" width="0.3" height="15.0" fill="rgb(247,20,19)" rx="2" ry="2" />
<text x="839.33" y="1343.5" ></text>
</g>
<g >
<title>rcu_core (5 samples, 0.01%)</title><rect x="1178.5" y="1221" width="0.1" height="15.0" fill="rgb(231,227,14)" rx="2" ry="2" />
<text x="1181.51" y="1231.5" ></text>
</g>
<g >
<title>exc_page_fault (4 samples, 0.01%)</title><rect x="33.8" y="1301" width="0.1" height="15.0" fill="rgb(244,5,26)" rx="2" ry="2" />
<text x="36.77" y="1311.5" ></text>
</g>
<g >
<title>sched_clock (18 samples, 0.04%)</title><rect x="1013.8" y="1157" width="0.5" height="15.0" fill="rgb(230,45,1)" rx="2" ry="2" />
<text x="1016.82" y="1167.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (11 samples, 0.02%)</title><rect x="868.8" y="1333" width="0.3" height="15.0" fill="rgb(235,147,4)" rx="2" ry="2" />
<text x="871.79" y="1343.5" ></text>
</g>
<g >
<title>kmem_cache_free (6 samples, 0.01%)</title><rect x="1127.5" y="1093" width="0.2" height="15.0" fill="rgb(221,14,26)" rx="2" ry="2" />
<text x="1130.53" y="1103.5" ></text>
</g>
<g >
<title>bprm_execve.part.0 (13 samples, 0.03%)</title><rect x="1182.6" y="1413" width="0.3" height="15.0" fill="rgb(219,129,22)" rx="2" ry="2" />
<text x="1185.61" y="1423.5" ></text>
</g>
<g >
<title>__rcu_read_lock (9 samples, 0.02%)</title><rect x="983.7" y="1253" width="0.2" height="15.0" fill="rgb(241,177,25)" rx="2" ry="2" />
<text x="986.65" y="1263.5" ></text>
</g>
<g >
<title>mod_objcg_state (4 samples, 0.01%)</title><rect x="955.0" y="1141" width="0.1" height="15.0" fill="rgb(207,138,32)" rx="2" ry="2" />
<text x="958.00" y="1151.5" ></text>
</g>
<g >
<title>__folio_alloc (5 samples, 0.01%)</title><rect x="850.1" y="1269" width="0.1" height="15.0" fill="rgb(216,15,31)" rx="2" ry="2" />
<text x="853.12" y="1279.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (9 samples, 0.02%)</title><rect x="530.2" y="1269" width="0.2" height="15.0" fill="rgb(240,211,29)" rx="2" ry="2" />
<text x="533.19" y="1279.5" ></text>
</g>
<g >
<title>kmem_cache_free (203 samples, 0.45%)</title><rect x="1047.8" y="1125" width="5.3" height="15.0" fill="rgb(237,26,36)" rx="2" ry="2" />
<text x="1050.77" y="1135.5" ></text>
</g>
<g >
<title>file_free_rcu (7 samples, 0.02%)</title><rect x="1130.2" y="1093" width="0.2" height="15.0" fill="rgb(241,84,50)" rx="2" ry="2" />
<text x="1133.22" y="1103.5" ></text>
</g>
<g >
<title>do_anonymous_page (156 samples, 0.35%)</title><rect x="842.2" y="1285" width="4.1" height="15.0" fill="rgb(253,9,26)" rx="2" ry="2" />
<text x="845.18" y="1295.5" ></text>
</g>
<g >
<title>__slab_free (299 samples, 0.66%)</title><rect x="1114.9" y="1253" width="7.8" height="15.0" fill="rgb(245,10,34)" rx="2" ry="2" />
<text x="1117.89" y="1263.5" ></text>
</g>
<g >
<title>do_user_addr_fault (40 samples, 0.09%)</title><rect x="529.0" y="1237" width="1.1" height="15.0" fill="rgb(248,225,43)" rx="2" ry="2" />
<text x="532.04" y="1247.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (12 samples, 0.03%)</title><rect x="650.6" y="1077" width="0.4" height="15.0" fill="rgb(246,168,25)" rx="2" ry="2" />
<text x="653.64" y="1087.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (13 samples, 0.03%)</title><rect x="62.4" y="1397" width="0.3" height="15.0" fill="rgb(215,154,4)" rx="2" ry="2" />
<text x="65.36" y="1407.5" ></text>
</g>
<g >
<title>__do_softirq (4 samples, 0.01%)</title><rect x="1164.5" y="1237" width="0.1" height="15.0" fill="rgb(227,197,51)" rx="2" ry="2" />
<text x="1167.54" y="1247.5" ></text>
</g>
<g >
<title>vma_alloc_folio (20 samples, 0.04%)</title><rect x="529.3" y="1157" width="0.6" height="15.0" fill="rgb(221,64,37)" rx="2" ry="2" />
<text x="532.33" y="1167.5" ></text>
</g>
<g >
<title>[vet] (23 samples, 0.05%)</title><rect x="1187.6" y="869" width="0.6" height="15.0" fill="rgb(243,71,32)" rx="2" ry="2" />
<text x="1190.62" y="879.5" ></text>
</g>
<g >
<title>irq_exit_rcu (10 samples, 0.02%)</title><rect x="1136.6" y="1237" width="0.3" height="15.0" fill="rgb(221,106,7)" rx="2" ry="2" />
<text x="1139.62" y="1247.5" ></text>
</g>
<g >
<title>rcu_core (11 samples, 0.02%)</title><rect x="1173.2" y="1157" width="0.3" height="15.0" fill="rgb(206,3,36)" rx="2" ry="2" />
<text x="1176.23" y="1167.5" ></text>
</g>
<g >
<title>[vet] (253 samples, 0.56%)</title><rect x="1183.1" y="1445" width="6.6" height="15.0" fill="rgb(247,92,8)" rx="2" ry="2" />
<text x="1186.11" y="1455.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (17 samples, 0.04%)</title><rect x="652.2" y="1061" width="0.5" height="15.0" fill="rgb(222,27,39)" rx="2" ry="2" />
<text x="655.23" y="1071.5" ></text>
</g>
<g >
<title>perf_ctx_enable (12 samples, 0.03%)</title><rect x="35.3" y="1189" width="0.3" height="15.0" fill="rgb(209,64,40)" rx="2" ry="2" />
<text x="38.33" y="1199.5" ></text>
</g>
<g >
<title>futex_wake (13 samples, 0.03%)</title><rect x="854.3" y="1285" width="0.4" height="15.0" fill="rgb(207,77,4)" rx="2" ry="2" />
<text x="857.32" y="1295.5" ></text>
</g>
<g >
<title>sched_clock (37 samples, 0.08%)</title><rect x="1101.2" y="1237" width="0.9" height="15.0" fill="rgb(212,115,22)" rx="2" ry="2" />
<text x="1104.18" y="1247.5" ></text>
</g>
<g >
<title>kfree (9 samples, 0.02%)</title><rect x="1050.7" y="1013" width="0.2" height="15.0" fill="rgb(208,213,46)" rx="2" ry="2" />
<text x="1053.67" y="1023.5" ></text>
</g>
<g >
<title>__slab_free (5 samples, 0.01%)</title><rect x="1050.7" y="981" width="0.2" height="15.0" fill="rgb(211,98,10)" rx="2" ry="2" />
<text x="1053.72" y="991.5" ></text>
</g>
<g >
<title>[go] (61 samples, 0.14%)</title><rect x="41.4" y="1429" width="1.6" height="15.0" fill="rgb(230,9,27)" rx="2" ry="2" />
<text x="44.42" y="1439.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (8 samples, 0.02%)</title><rect x="1127.7" y="1109" width="0.2" height="15.0" fill="rgb(223,139,24)" rx="2" ry="2" />
<text x="1130.69" y="1119.5" ></text>
</g>
<g >
<title>new_slab (6 samples, 0.01%)</title><rect x="639.4" y="981" width="0.1" height="15.0" fill="rgb(221,37,23)" rx="2" ry="2" />
<text x="642.38" y="991.5" ></text>
</g>
<g >
<title>file_free_rcu (8 samples, 0.02%)</title><rect x="1157.2" y="1157" width="0.3" height="15.0" fill="rgb(241,54,31)" rx="2" ry="2" />
<text x="1160.25" y="1167.5" ></text>
</g>
<g >
<title>handle_mm_fault (26 samples, 0.06%)</title><rect x="60.6" y="1317" width="0.7" height="15.0" fill="rgb(222,79,44)" rx="2" ry="2" />
<text x="63.61" y="1327.5" ></text>
</g>
<g >
<title>wake_up_q (11 samples, 0.02%)</title><rect x="854.4" y="1269" width="0.3" height="15.0" fill="rgb(213,216,10)" rx="2" ry="2" />
<text x="857.38" y="1279.5" ></text>
</g>
<g >
<title>get_page_from_freelist (7 samples, 0.02%)</title><rect x="60.2" y="1189" width="0.2" height="15.0" fill="rgb(223,118,19)" rx="2" ry="2" />
<text x="63.17" y="1199.5" ></text>
</g>
<g >
<title>rcu_core_si (8 samples, 0.02%)</title><rect x="924.7" y="1221" width="0.2" height="15.0" fill="rgb(232,215,24)" rx="2" ry="2" />
<text x="927.66" y="1231.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (7 samples, 0.02%)</title><rect x="1102.4" y="1285" width="0.2" height="15.0" fill="rgb(215,173,19)" rx="2" ry="2" />
<text x="1105.40" y="1295.5" ></text>
</g>
<g >
<title>__rcu_read_lock (14 samples, 0.03%)</title><rect x="1040.6" y="1269" width="0.3" height="15.0" fill="rgb(230,170,34)" rx="2" ry="2" />
<text x="1043.56" y="1279.5" ></text>
</g>
<g >
<title>update_curr (5 samples, 0.01%)</title><rect x="848.0" y="1253" width="0.2" height="15.0" fill="rgb(243,197,40)" rx="2" ry="2" />
<text x="851.03" y="1263.5" ></text>
</g>
<g >
<title>__alloc_pages (4 samples, 0.01%)</title><rect x="61.1" y="1205" width="0.1" height="15.0" fill="rgb(213,218,37)" rx="2" ry="2" />
<text x="64.14" y="1215.5" ></text>
</g>
<g >
<title>kmem_cache_free (16 samples, 0.04%)</title><rect x="1144.9" y="1093" width="0.5" height="15.0" fill="rgb(237,12,34)" rx="2" ry="2" />
<text x="1147.95" y="1103.5" ></text>
</g>
<g >
<title>__vmalloc_node_range (7 samples, 0.02%)</title><rect x="675.5" y="1093" width="0.2" height="15.0" fill="rgb(234,179,13)" rx="2" ry="2" />
<text x="678.50" y="1103.5" ></text>
</g>
<g >
<title>radix_tree_next_chunk (130 samples, 0.29%)</title><rect x="511.7" y="1093" width="3.4" height="15.0" fill="rgb(242,118,36)" rx="2" ry="2" />
<text x="514.73" y="1103.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (73 samples, 0.16%)</title><rect x="615.8" y="1093" width="1.9" height="15.0" fill="rgb(246,126,21)" rx="2" ry="2" />
<text x="618.77" y="1103.5" ></text>
</g>
<g >
<title>mod_objcg_state (46 samples, 0.10%)</title><rect x="709.2" y="1093" width="1.2" height="15.0" fill="rgb(224,54,36)" rx="2" ry="2" />
<text x="712.25" y="1103.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (357 samples, 0.79%)</title><rect x="857.7" y="1413" width="9.3" height="15.0" fill="rgb(248,102,37)" rx="2" ry="2" />
<text x="860.69" y="1423.5" ></text>
</g>
<g >
<title>bpf_map_put (61 samples, 0.14%)</title><rect x="932.8" y="1317" width="1.6" height="15.0" fill="rgb(230,123,52)" rx="2" ry="2" />
<text x="935.83" y="1327.5" ></text>
</g>
<g >
<title>__handle_mm_fault (10 samples, 0.02%)</title><rect x="60.1" y="1285" width="0.3" height="15.0" fill="rgb(226,100,17)" rx="2" ry="2" />
<text x="63.09" y="1295.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (5 samples, 0.01%)</title><rect x="877.4" y="1301" width="0.1" height="15.0" fill="rgb(248,165,33)" rx="2" ry="2" />
<text x="880.36" y="1311.5" ></text>
</g>
<g >
<title>ptep_clear_flush (13 samples, 0.03%)</title><rect x="467.9" y="1077" width="0.3" height="15.0" fill="rgb(213,44,34)" rx="2" ry="2" />
<text x="470.90" y="1087.5" ></text>
</g>
<g >
<title>rcu_do_batch (34 samples, 0.08%)</title><rect x="1122.7" y="1141" width="0.9" height="15.0" fill="rgb(210,35,4)" rx="2" ry="2" />
<text x="1125.72" y="1151.5" ></text>
</g>
<g >
<title>update_rq_clock (4 samples, 0.01%)</title><rect x="865.9" y="1301" width="0.1" height="15.0" fill="rgb(225,47,30)" rx="2" ry="2" />
<text x="868.95" y="1311.5" ></text>
</g>
<g >
<title>mod_objcg_state (4 samples, 0.01%)</title><rect x="932.1" y="1157" width="0.1" height="15.0" fill="rgb(234,165,53)" rx="2" ry="2" />
<text x="935.10" y="1167.5" ></text>
</g>
<g >
<title>[go] (286 samples, 0.63%)</title><rect x="36.2" y="1493" width="7.5" height="15.0" fill="rgb(244,141,47)" rx="2" ry="2" />
<text x="39.19" y="1503.5" ></text>
</g>
<g >
<title>path_openat (5 samples, 0.01%)</title><rect x="30.1" y="1189" width="0.2" height="15.0" fill="rgb(224,144,25)" rx="2" ry="2" />
<text x="33.14" y="1199.5" ></text>
</g>
<g >
<title>rcu_core_si (7 samples, 0.02%)</title><rect x="1176.1" y="1237" width="0.2" height="15.0" fill="rgb(237,85,6)" rx="2" ry="2" />
<text x="1179.11" y="1247.5" ></text>
</g>
<g >
<title>do_group_exit (5 samples, 0.01%)</title><rect x="10.6" y="1397" width="0.2" height="15.0" fill="rgb(230,42,8)" rx="2" ry="2" />
<text x="13.63" y="1407.5" ></text>
</g>
<g >
<title>__rcu_read_lock (34 samples, 0.08%)</title><rect x="640.8" y="1093" width="0.9" height="15.0" fill="rgb(218,219,27)" rx="2" ry="2" />
<text x="643.79" y="1103.5" ></text>
</g>
<g >
<title>[mapgauge.test] (195 samples, 0.43%)</title><rect x="868.2" y="1445" width="5.1" height="15.0" fill="rgb(241,101,36)" rx="2" ry="2" />
<text x="871.19" y="1455.5" ></text>
</g>
<g >
<title>clear_page_erms (4 samples, 0.01%)</title><rect x="639.4" y="917" width="0.1" height="15.0" fill="rgb(210,10,41)" rx="2" ry="2" />
<text x="642.38" y="927.5" ></text>
</g>
<g >
<title>sync_regs (8 samples, 0.02%)</title><rect x="474.5" y="1237" width="0.2" height="15.0" fill="rgb(224,130,46)" rx="2" ry="2" />
<text x="477.46" y="1247.5" ></text>
</g>
<g >
<title>cap_capable (21 samples, 0.05%)</title><rect x="718.9" y="1157" width="0.5" height="15.0" fill="rgb(218,201,22)" rx="2" ry="2" />
<text x="721.86" y="1167.5" ></text>
</g>
<g >
<title>handle_mm_fault (4 samples, 0.01%)</title><rect x="837.8" y="1317" width="0.1" height="15.0" fill="rgb(207,10,4)" rx="2" ry="2" />
<text x="840.82" y="1327.5" ></text>
</g>
<g >
<title>file_free_rcu (5 samples, 0.01%)</title><rect x="1145.8" y="1125" width="0.1" height="15.0" fill="rgb(205,178,16)" rx="2" ry="2" />
<text x="1148.81" y="1135.5" ></text>
</g>
<g >
<title>irq_exit_rcu (4 samples, 0.01%)</title><rect x="1164.5" y="1269" width="0.1" height="15.0" fill="rgb(240,183,14)" rx="2" ry="2" />
<text x="1167.54" y="1279.5" ></text>
</g>
<g >
<title>kmem_cache_free (34 samples, 0.08%)</title><rect x="931.4" y="1173" width="0.9" height="15.0" fill="rgb(219,7,18)" rx="2" ry="2" />
<text x="934.39" y="1183.5" ></text>
</g>
<g >
<title>mod_objcg_state (4 samples, 0.01%)</title><rect x="940.6" y="1141" width="0.1" height="15.0" fill="rgb(218,32,16)" rx="2" ry="2" />
<text x="943.56" y="1151.5" ></text>
</g>
<g >
<title>[mapgauge.test] (36 samples, 0.08%)</title><rect x="873.3" y="1445" width="1.0" height="15.0" fill="rgb(252,229,28)" rx="2" ry="2" />
<text x="876.34" y="1455.5" ></text>
</g>
<g >
<title>do_nanosleep (55 samples, 0.12%)</title><rect x="41.5" y="1349" width="1.4" height="15.0" fill="rgb(214,194,2)" rx="2" ry="2" />
<text x="44.50" y="1359.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5 samples, 0.01%)</title><rect x="735.8" y="1173" width="0.1" height="15.0" fill="rgb(249,30,48)" rx="2" ry="2" />
<text x="738.81" y="1183.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (11,754 samples, 26.01%)</title><rect x="875.6" y="1429" width="306.9" height="15.0" fill="rgb(209,122,45)" rx="2" ry="2" />
<text x="878.56" y="1439.5" >arch_do_signal_or_restart</text>
</g>
<g >
<title>update_load_avg (21 samples, 0.05%)</title><rect x="862.2" y="1253" width="0.5" height="15.0" fill="rgb(225,193,8)" rx="2" ry="2" />
<text x="865.18" y="1263.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (8 samples, 0.02%)</title><rect x="11.7" y="1461" width="0.2" height="15.0" fill="rgb(215,35,26)" rx="2" ry="2" />
<text x="14.72" y="1471.5" ></text>
</g>
<g >
<title>__x64_sys_nanosleep (6 samples, 0.01%)</title><rect x="875.4" y="1477" width="0.2" height="15.0" fill="rgb(254,113,5)" rx="2" ry="2" />
<text x="878.40" y="1487.5" ></text>
</g>
<g >
<title>vma_alloc_folio (4 samples, 0.01%)</title><rect x="460.8" y="1045" width="0.1" height="15.0" fill="rgb(209,210,2)" rx="2" ry="2" />
<text x="463.77" y="1055.5" ></text>
</g>
<g >
<title>sched_clock_cpu (21 samples, 0.05%)</title><rect x="1013.8" y="1173" width="0.5" height="15.0" fill="rgb(244,21,12)" rx="2" ry="2" />
<text x="1016.77" y="1183.5" ></text>
</g>
<g >
<title>do_send_sig_info (20 samples, 0.04%)</title><rect x="855.5" y="1301" width="0.5" height="15.0" fill="rgb(207,151,6)" rx="2" ry="2" />
<text x="858.50" y="1311.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.04%)</title><rect x="459.7" y="1125" width="0.4" height="15.0" fill="rgb(238,6,46)" rx="2" ry="2" />
<text x="462.73" y="1135.5" ></text>
</g>
<g >
<title>clear_page_erms (182 samples, 0.40%)</title><rect x="607.2" y="997" width="4.7" height="15.0" fill="rgb(232,225,1)" rx="2" ry="2" />
<text x="610.16" y="1007.5" ></text>
</g>
<g >
<title>wp_page_copy (11 samples, 0.02%)</title><rect x="61.0" y="1253" width="0.2" height="15.0" fill="rgb(242,100,45)" rx="2" ry="2" />
<text x="63.95" y="1263.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (11,754 samples, 26.01%)</title><rect x="875.6" y="1477" width="306.9" height="15.0" fill="rgb(206,101,21)" rx="2" ry="2" />
<text x="878.56" y="1487.5" >syscall_exit_to_user_mode</text>
</g>
<g >
<title>seq_write (9 samples, 0.02%)</title><rect x="525.8" y="1109" width="0.3" height="15.0" fill="rgb(223,103,9)" rx="2" ry="2" />
<text x="528.83" y="1119.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (30 samples, 0.07%)</title><rect x="1181.7" y="1301" width="0.8" height="15.0" fill="rgb(247,111,22)" rx="2" ry="2" />
<text x="1184.72" y="1311.5" ></text>
</g>
<g >
<title>[mapgauge.test] (115 samples, 0.25%)</title><rect x="457.2" y="1141" width="3.0" height="15.0" fill="rgb(243,92,3)" rx="2" ry="2" />
<text x="460.17" y="1151.5" ></text>
</g>
<g >
<title>on_each_cpu_cond_mask (13 samples, 0.03%)</title><rect x="467.9" y="1029" width="0.3" height="15.0" fill="rgb(206,120,42)" rx="2" ry="2" />
<text x="470.90" y="1039.5" ></text>
</g>
<g >
<title>__handle_mm_fault (17 samples, 0.04%)</title><rect x="34.4" y="1269" width="0.5" height="15.0" fill="rgb(249,5,31)" rx="2" ry="2" />
<text x="37.42" y="1279.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (5 samples, 0.01%)</title><rect x="462.1" y="1045" width="0.2" height="15.0" fill="rgb(246,183,49)" rx="2" ry="2" />
<text x="465.13" y="1055.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (32 samples, 0.07%)</title><rect x="1088.0" y="1205" width="0.9" height="15.0" fill="rgb(226,27,2)" rx="2" ry="2" />
<text x="1091.01" y="1215.5" ></text>
</g>
<g >
<title>[unknown] (264 samples, 0.58%)</title><rect x="868.2" y="1493" width="6.9" height="15.0" fill="rgb(218,45,51)" rx="2" ry="2" />
<text x="871.19" y="1503.5" ></text>
</g>
<g >
<title>select_task_rq_fair (91 samples, 0.20%)</title><rect x="1002.4" y="1221" width="2.4" height="15.0" fill="rgb(205,61,14)" rx="2" ry="2" />
<text x="1005.38" y="1231.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (4 samples, 0.01%)</title><rect x="831.8" y="1109" width="0.1" height="15.0" fill="rgb(216,109,49)" rx="2" ry="2" />
<text x="834.78" y="1119.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (35 samples, 0.08%)</title><rect x="1122.7" y="1237" width="0.9" height="15.0" fill="rgb(224,114,39)" rx="2" ry="2" />
<text x="1125.70" y="1247.5" ></text>
</g>
<g >
<title>[mapgauge.test] (564 samples, 1.25%)</title><rect x="853.1" y="1429" width="14.7" height="15.0" fill="rgb(236,109,13)" rx="2" ry="2" />
<text x="856.07" y="1439.5" ></text>
</g>
<g >
<title>idr_get_next (7 samples, 0.02%)</title><rect x="770.6" y="1157" width="0.2" height="15.0" fill="rgb(236,195,21)" rx="2" ry="2" />
<text x="773.57" y="1167.5" ></text>
</g>
<g >
<title>[unknown] (15 samples, 0.03%)</title><rect x="43.7" y="1493" width="0.4" height="15.0" fill="rgb(207,19,54)" rx="2" ry="2" />
<text x="46.66" y="1503.5" ></text>
</g>
<g >
<title>[vet] (4 samples, 0.01%)</title><rect x="1188.1" y="37" width="0.1" height="15.0" fill="rgb(216,94,21)" rx="2" ry="2" />
<text x="1191.09" y="47.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (65 samples, 0.14%)</title><rect x="1079.8" y="1237" width="1.7" height="15.0" fill="rgb(250,106,10)" rx="2" ry="2" />
<text x="1082.81" y="1247.5" ></text>
</g>
<g >
<title>tick_sched_handle (4 samples, 0.01%)</title><rect x="1079.9" y="1157" width="0.1" height="15.0" fill="rgb(216,6,38)" rx="2" ry="2" />
<text x="1082.89" y="1167.5" ></text>
</g>
<g >
<title>get_sigframe (5 samples, 0.01%)</title><rect x="847.1" y="1237" width="0.1" height="15.0" fill="rgb(232,135,31)" rx="2" ry="2" />
<text x="850.12" y="1247.5" ></text>
</g>
<g >
<title>do_user_addr_fault (29 samples, 0.06%)</title><rect x="831.2" y="1269" width="0.7" height="15.0" fill="rgb(208,90,15)" rx="2" ry="2" />
<text x="834.18" y="1279.5" ></text>
</g>
<g >
<title>node_tag_clear (12 samples, 0.03%)</title><rect x="744.9" y="1141" width="0.4" height="15.0" fill="rgb(239,109,28)" rx="2" ry="2" />
<text x="747.95" y="1151.5" ></text>
</g>
<g >
<title>ext4_readdir (8 samples, 0.02%)</title><rect x="26.0" y="1093" width="0.2" height="15.0" fill="rgb(243,42,32)" rx="2" ry="2" />
<text x="28.96" y="1103.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (148 samples, 0.33%)</title><rect x="470.5" y="1237" width="3.9" height="15.0" fill="rgb(212,174,26)" rx="2" ry="2" />
<text x="473.49" y="1247.5" ></text>
</g>
<g >
<title>dentry_free (24 samples, 0.05%)</title><rect x="1148.7" y="1301" width="0.6" height="15.0" fill="rgb(221,77,37)" rx="2" ry="2" />
<text x="1151.71" y="1311.5" ></text>
</g>
<g >
<title>switch_fpu_return (4 samples, 0.01%)</title><rect x="866.8" y="1349" width="0.1" height="15.0" fill="rgb(206,17,5)" rx="2" ry="2" />
<text x="869.83" y="1359.5" ></text>
</g>
<g >
<title>security_d_instantiate (8 samples, 0.02%)</title><rect x="664.4" y="1125" width="0.2" height="15.0" fill="rgb(222,45,46)" rx="2" ry="2" />
<text x="667.35" y="1135.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (4 samples, 0.01%)</title><rect x="623.0" y="1109" width="0.1" height="15.0" fill="rgb(227,114,14)" rx="2" ry="2" />
<text x="625.98" y="1119.5" ></text>
</g>
<g >
<title>kmem_cache_free (5 samples, 0.01%)</title><rect x="1170.9" y="1125" width="0.1" height="15.0" fill="rgb(251,172,2)" rx="2" ry="2" />
<text x="1173.91" y="1135.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.01%)</title><rect x="34.9" y="1333" width="0.2" height="15.0" fill="rgb(205,198,32)" rx="2" ry="2" />
<text x="37.92" y="1343.5" ></text>
</g>
<g >
<title>enqueue_task_fair (18 samples, 0.04%)</title><rect x="1014.4" y="1205" width="0.5" height="15.0" fill="rgb(223,8,23)" rx="2" ry="2" />
<text x="1017.44" y="1215.5" ></text>
</g>
<g >
<title>kmem_cache_free (8 samples, 0.02%)</title><rect x="921.6" y="1157" width="0.2" height="15.0" fill="rgb(250,132,18)" rx="2" ry="2" />
<text x="924.63" y="1167.5" ></text>
</g>
<g >
<title>array_map_alloc_check (17 samples, 0.04%)</title><rect x="722.5" y="1189" width="0.4" height="15.0" fill="rgb(222,39,3)" rx="2" ry="2" />
<text x="725.46" y="1199.5" ></text>
</g>
<g >
<title>update_cfs_group (5 samples, 0.01%)</title><rect x="870.4" y="1237" width="0.1" height="15.0" fill="rgb(219,126,30)" rx="2" ry="2" />
<text x="873.36" y="1247.5" ></text>
</g>
<g >
<title>do_sys_openat2 (5 samples, 0.01%)</title><rect x="33.2" y="1253" width="0.1" height="15.0" fill="rgb(254,160,0)" rx="2" ry="2" />
<text x="36.19" y="1263.5" ></text>
</g>
<g >
<title>__rcu_read_lock (7 samples, 0.02%)</title><rect x="1146.5" y="1301" width="0.2" height="15.0" fill="rgb(235,38,10)" rx="2" ry="2" />
<text x="1149.49" y="1311.5" ></text>
</g>
<g >
<title>__cond_resched (5 samples, 0.01%)</title><rect x="901.3" y="1333" width="0.1" height="15.0" fill="rgb(220,16,14)" rx="2" ry="2" />
<text x="904.28" y="1343.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (26 samples, 0.06%)</title><rect x="1105.0" y="1285" width="0.7" height="15.0" fill="rgb(222,226,36)" rx="2" ry="2" />
<text x="1107.99" y="1295.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (5 samples, 0.01%)</title><rect x="1091.3" y="1205" width="0.2" height="15.0" fill="rgb(252,211,2)" rx="2" ry="2" />
<text x="1094.33" y="1215.5" ></text>
</g>
<g >
<title>rcu_core (9 samples, 0.02%)</title><rect x="1105.7" y="1189" width="0.2" height="15.0" fill="rgb(229,129,32)" rx="2" ry="2" />
<text x="1108.70" y="1199.5" ></text>
</g>
<g >
<title>ext4_append (5 samples, 0.01%)</title><rect x="34.1" y="1205" width="0.1" height="15.0" fill="rgb(237,80,21)" rx="2" ry="2" />
<text x="37.05" y="1215.5" ></text>
</g>
<g >
<title>[unknown] (24 samples, 0.05%)</title><rect x="874.5" y="1461" width="0.6" height="15.0" fill="rgb(212,149,36)" rx="2" ry="2" />
<text x="877.46" y="1471.5" ></text>
</g>
<g >
<title>__block_write_begin_int (4 samples, 0.01%)</title><rect x="63.8" y="1269" width="0.1" height="15.0" fill="rgb(253,198,22)" rx="2" ry="2" />
<text x="66.83" y="1279.5" ></text>
</g>
<g >
<title>prepare_task_switch (6 samples, 0.01%)</title><rect x="872.0" y="1285" width="0.2" height="15.0" fill="rgb(237,86,27)" rx="2" ry="2" />
<text x="875.00" y="1295.5" ></text>
</g>
<g >
<title>handle_pte_fault (4 samples, 0.01%)</title><rect x="459.6" y="1045" width="0.1" height="15.0" fill="rgb(227,113,1)" rx="2" ry="2" />
<text x="462.62" y="1055.5" ></text>
</g>
<g >
<title>[vet] (4 samples, 0.01%)</title><rect x="1188.1" y="133" width="0.1" height="15.0" fill="rgb(225,28,38)" rx="2" ry="2" />
<text x="1191.09" y="143.5" ></text>
</g>
<g >
<title>do_user_addr_fault (4 samples, 0.01%)</title><rect x="35.9" y="1381" width="0.1" height="15.0" fill="rgb(215,169,5)" rx="2" ry="2" />
<text x="38.86" y="1391.5" ></text>
</g>
<g >
<title>consume_obj_stock (6 samples, 0.01%)</title><rect x="699.5" y="1109" width="0.1" height="15.0" fill="rgb(248,101,28)" rx="2" ry="2" />
<text x="702.48" y="1119.5" ></text>
</g>
<g >
<title>rcu_core_si (5 samples, 0.01%)</title><rect x="1178.5" y="1237" width="0.1" height="15.0" fill="rgb(237,123,53)" rx="2" ry="2" />
<text x="1181.51" y="1247.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="1164.5" y="1285" width="0.1" height="15.0" fill="rgb(249,219,14)" rx="2" ry="2" />
<text x="1167.54" y="1295.5" ></text>
</g>
<g >
<title>__mod_memcg_lruvec_state (4 samples, 0.01%)</title><rect x="646.6" y="1045" width="0.1" height="15.0" fill="rgb(205,134,10)" rx="2" ry="2" />
<text x="649.57" y="1055.5" ></text>
</g>
<g >
<title>btf_put (19 samples, 0.04%)</title><rect x="1060.0" y="1301" width="0.5" height="15.0" fill="rgb(221,84,42)" rx="2" ry="2" />
<text x="1063.02" y="1311.5" ></text>
</g>
<g >
<title>__schedule (13 samples, 0.03%)</title><rect x="35.3" y="1237" width="0.3" height="15.0" fill="rgb(221,147,50)" rx="2" ry="2" />
<text x="38.31" y="1247.5" ></text>
</g>
<g >
<title>get_random_u32 (11 samples, 0.02%)</title><rect x="614.0" y="1013" width="0.3" height="15.0" fill="rgb(233,211,52)" rx="2" ry="2" />
<text x="617.02" y="1023.5" ></text>
</g>
<g >
<title>evict (8 samples, 0.02%)</title><rect x="33.4" y="1205" width="0.2" height="15.0" fill="rgb(220,120,45)" rx="2" ry="2" />
<text x="36.43" y="1215.5" ></text>
</g>
<g >
<title>__check_object_size (17 samples, 0.04%)</title><rect x="563.5" y="1205" width="0.4" height="15.0" fill="rgb(250,62,21)" rx="2" ry="2" />
<text x="566.49" y="1215.5" ></text>
</g>
<g >
<title>finish_task_switch.isra.0 (13 samples, 0.03%)</title><rect x="43.3" y="1429" width="0.4" height="15.0" fill="rgb(210,178,48)" rx="2" ry="2" />
<text x="46.32" y="1439.5" ></text>
</g>
<g >
<title>__sys_bpf (18 samples, 0.04%)</title><rect x="559.0" y="1237" width="0.5" height="15.0" fill="rgb(237,44,27)" rx="2" ry="2" />
<text x="562.00" y="1247.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (9 samples, 0.02%)</title><rect x="930.7" y="1253" width="0.2" height="15.0" fill="rgb(213,135,50)" rx="2" ry="2" />
<text x="933.66" y="1263.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (35 samples, 0.08%)</title><rect x="1101.2" y="1205" width="0.9" height="15.0" fill="rgb(238,33,22)" rx="2" ry="2" />
<text x="1104.20" y="1215.5" ></text>
</g>
<g >
<title>error_entry (14 samples, 0.03%)</title><rect x="874.7" y="1429" width="0.4" height="15.0" fill="rgb(248,175,30)" rx="2" ry="2" />
<text x="877.69" y="1439.5" ></text>
</g>
<g >
<title>__raw_spin_lock_irqsave (93 samples, 0.21%)</title><rect x="960.7" y="1269" width="2.4" height="15.0" fill="rgb(215,20,47)" rx="2" ry="2" />
<text x="963.70" y="1279.5" ></text>
</g>
<g >
<title>file_free_rcu (4 samples, 0.01%)</title><rect x="1150.6" y="1157" width="0.1" height="15.0" fill="rgb(227,108,15)" rx="2" ry="2" />
<text x="1153.59" y="1167.5" ></text>
</g>
<g >
<title>[vet] (14 samples, 0.03%)</title><rect x="1187.8" y="469" width="0.4" height="15.0" fill="rgb(205,198,34)" rx="2" ry="2" />
<text x="1190.83" y="479.5" ></text>
</g>
<g >
<title>__do_softirq (21 samples, 0.05%)</title><rect x="940.4" y="1237" width="0.5" height="15.0" fill="rgb(252,113,19)" rx="2" ry="2" />
<text x="943.35" y="1247.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (6 samples, 0.01%)</title><rect x="58.6" y="1221" width="0.1" height="15.0" fill="rgb(251,220,53)" rx="2" ry="2" />
<text x="61.58" y="1231.5" ></text>
</g>
<g >
<title>irqentry_exit (4 samples, 0.01%)</title><rect x="461.2" y="1125" width="0.1" height="15.0" fill="rgb(219,8,35)" rx="2" ry="2" />
<text x="464.22" y="1135.5" ></text>
</g>
<g >
<title>rb_insert_color (4 samples, 0.01%)</title><rect x="1090.2" y="1237" width="0.1" height="15.0" fill="rgb(252,30,15)" rx="2" ry="2" />
<text x="1093.18" y="1247.5" ></text>
</g>
<g >
<title>free_slab (14 samples, 0.03%)</title><rect x="1050.5" y="1045" width="0.4" height="15.0" fill="rgb(242,44,44)" rx="2" ry="2" />
<text x="1053.54" y="1055.5" ></text>
</g>
<g >
<title>[go] (689 samples, 1.52%)</title><rect x="17.1" y="1349" width="18.0" height="15.0" fill="rgb(245,11,44)" rx="2" ry="2" />
<text x="20.10" y="1359.5" ></text>
</g>
<g >
<title>__bpf_map_area_alloc (1,493 samples, 3.30%)</title><rect x="678.2" y="1157" width="39.0" height="15.0" fill="rgb(238,34,4)" rx="2" ry="2" />
<text x="681.17" y="1167.5" >__b..</text>
</g>
<g >
<title>_raw_spin_unlock (12 samples, 0.03%)</title><rect x="1044.2" y="1269" width="0.4" height="15.0" fill="rgb(212,81,37)" rx="2" ry="2" />
<text x="1047.24" y="1279.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (7 samples, 0.02%)</title><rect x="1079.8" y="1189" width="0.2" height="15.0" fill="rgb(254,37,43)" rx="2" ry="2" />
<text x="1082.81" y="1199.5" ></text>
</g>
<g >
<title>clear_page_erms (13 samples, 0.03%)</title><rect x="462.3" y="997" width="0.4" height="15.0" fill="rgb(243,130,25)" rx="2" ry="2" />
<text x="465.31" y="1007.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (4 samples, 0.01%)</title><rect x="65.0" y="1285" width="0.1" height="15.0" fill="rgb(230,175,26)" rx="2" ry="2" />
<text x="68.00" y="1295.5" ></text>
</g>
<g >
<title>__mmput (103 samples, 0.23%)</title><rect x="890.8" y="1333" width="2.7" height="15.0" fill="rgb(234,139,45)" rx="2" ry="2" />
<text x="893.81" y="1343.5" ></text>
</g>
<g >
<title>__alloc_pages (18 samples, 0.04%)</title><rect x="529.4" y="1125" width="0.5" height="15.0" fill="rgb(233,210,5)" rx="2" ry="2" />
<text x="532.38" y="1135.5" ></text>
</g>
<g >
<title>[compile] (9 samples, 0.02%)</title><rect x="11.0" y="1381" width="0.3" height="15.0" fill="rgb(251,90,48)" rx="2" ry="2" />
<text x="14.02" y="1391.5" ></text>
</g>
<g >
<title>file_free_rcu (10 samples, 0.02%)</title><rect x="921.6" y="1173" width="0.2" height="15.0" fill="rgb(228,175,2)" rx="2" ry="2" />
<text x="924.57" y="1183.5" ></text>
</g>
<g >
<title>__sigqueue_alloc (6 samples, 0.01%)</title><rect x="855.6" y="1253" width="0.2" height="15.0" fill="rgb(232,188,22)" rx="2" ry="2" />
<text x="858.60" y="1263.5" ></text>
</g>
<g >
<title>get_unmapped_area (4 samples, 0.01%)</title><rect x="460.0" y="1029" width="0.1" height="15.0" fill="rgb(241,27,43)" rx="2" ry="2" />
<text x="462.96" y="1039.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="778.2" y="1221" width="0.1" height="15.0" fill="rgb(230,87,0)" rx="2" ry="2" />
<text x="781.19" y="1231.5" ></text>
</g>
<g >
<title>__send_signal_locked (6 samples, 0.01%)</title><rect x="868.9" y="1253" width="0.2" height="15.0" fill="rgb(216,41,37)" rx="2" ry="2" />
<text x="871.90" y="1263.5" ></text>
</g>
<g >
<title>__do_softirq (5 samples, 0.01%)</title><rect x="1149.2" y="1221" width="0.1" height="15.0" fill="rgb(224,209,8)" rx="2" ry="2" />
<text x="1152.21" y="1231.5" ></text>
</g>
<g >
<title>irq_exit_rcu (7 samples, 0.02%)</title><rect x="1176.1" y="1285" width="0.2" height="15.0" fill="rgb(208,167,43)" rx="2" ry="2" />
<text x="1179.11" y="1295.5" ></text>
</g>
<g >
<title>handle_mm_fault (11 samples, 0.02%)</title><rect x="63.0" y="1365" width="0.3" height="15.0" fill="rgb(225,119,39)" rx="2" ry="2" />
<text x="65.99" y="1375.5" ></text>
</g>
<g >
<title>refill_stock (7 samples, 0.02%)</title><rect x="1131.2" y="1205" width="0.2" height="15.0" fill="rgb(253,28,11)" rx="2" ry="2" />
<text x="1134.24" y="1215.5" ></text>
</g>
<g >
<title>file_free_rcu (9 samples, 0.02%)</title><rect x="1170.8" y="1141" width="0.2" height="15.0" fill="rgb(225,183,39)" rx="2" ry="2" />
<text x="1173.80" y="1151.5" ></text>
</g>
<g >
<title>allocate_slab (69 samples, 0.15%)</title><rect x="598.1" y="1029" width="1.8" height="15.0" fill="rgb(222,227,46)" rx="2" ry="2" />
<text x="601.15" y="1039.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_safe_stack (73 samples, 0.16%)</title><rect x="804.2" y="1269" width="1.9" height="15.0" fill="rgb(238,158,17)" rx="2" ry="2" />
<text x="807.15" y="1279.5" ></text>
</g>
<g >
<title>clockevents_program_event (4 samples, 0.01%)</title><rect x="869.9" y="1269" width="0.1" height="15.0" fill="rgb(236,72,35)" rx="2" ry="2" />
<text x="872.92" y="1279.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4 samples, 0.01%)</title><rect x="1105.6" y="1221" width="0.1" height="15.0" fill="rgb(247,43,28)" rx="2" ry="2" />
<text x="1108.57" y="1231.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (116 samples, 0.26%)</title><rect x="869.6" y="1349" width="3.0" height="15.0" fill="rgb(250,39,51)" rx="2" ry="2" />
<text x="872.60" y="1359.5" ></text>
</g>
<g >
<title>__call_rcu_common.constprop.0 (4 samples, 0.01%)</title><rect x="969.5" y="1205" width="0.1" height="15.0" fill="rgb(224,209,16)" rx="2" ry="2" />
<text x="972.47" y="1215.5" ></text>
</g>
<g >
<title>available_idle_cpu (11 samples, 0.02%)</title><rect x="1004.5" y="1189" width="0.3" height="15.0" fill="rgb(249,63,7)" rx="2" ry="2" />
<text x="1007.47" y="1199.5" ></text>
</g>
<g >
<title>update_curr (16 samples, 0.04%)</title><rect x="1009.5" y="1157" width="0.4" height="15.0" fill="rgb(253,78,5)" rx="2" ry="2" />
<text x="1012.46" y="1167.5" ></text>
</g>
<g >
<title>__irqentry_text_end (15 samples, 0.03%)</title><rect x="470.1" y="1237" width="0.4" height="15.0" fill="rgb(213,209,1)" rx="2" ry="2" />
<text x="473.10" y="1247.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (59 samples, 0.13%)</title><rect x="31.2" y="1285" width="1.5" height="15.0" fill="rgb(254,144,8)" rx="2" ry="2" />
<text x="34.18" y="1295.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (34 samples, 0.08%)</title><rect x="838.3" y="1365" width="0.9" height="15.0" fill="rgb(247,160,50)" rx="2" ry="2" />
<text x="841.29" y="1375.5" ></text>
</g>
<g >
<title>task_work_run (11,066 samples, 24.49%)</title><rect x="893.5" y="1365" width="289.0" height="15.0" fill="rgb(242,27,35)" rx="2" ry="2" />
<text x="896.50" y="1375.5" >task_work_run</text>
</g>
<g >
<title>__x64_sys_nanosleep (55 samples, 0.12%)</title><rect x="41.5" y="1381" width="1.4" height="15.0" fill="rgb(247,17,18)" rx="2" ry="2" />
<text x="44.50" y="1391.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="920.7" y="1285" width="0.1" height="15.0" fill="rgb(253,119,35)" rx="2" ry="2" />
<text x="923.74" y="1295.5" ></text>
</g>
<g >
<title>__hrtimer_start_range_ns (24 samples, 0.05%)</title><rect x="859.2" y="1317" width="0.6" height="15.0" fill="rgb(243,48,5)" rx="2" ry="2" />
<text x="862.21" y="1327.5" ></text>
</g>
<g >
<title>ttwu_queue_wakelist (818 samples, 1.81%)</title><rect x="1015.0" y="1221" width="21.4" height="15.0" fill="rgb(253,81,1)" rx="2" ry="2" />
<text x="1018.02" y="1231.5" >t..</text>
</g>
<g >
<title>irqentry_exit (4 samples, 0.01%)</title><rect x="466.5" y="1157" width="0.1" height="15.0" fill="rgb(243,110,36)" rx="2" ry="2" />
<text x="469.47" y="1167.5" ></text>
</g>
<g >
<title>[go] (61 samples, 0.14%)</title><rect x="41.4" y="1461" width="1.6" height="15.0" fill="rgb(210,199,54)" rx="2" ry="2" />
<text x="44.42" y="1471.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (10 samples, 0.02%)</title><rect x="1181.1" y="1317" width="0.3" height="15.0" fill="rgb(209,164,6)" rx="2" ry="2" />
<text x="1184.12" y="1327.5" ></text>
</g>
<g >
<title>security_bpf (11 samples, 0.02%)</title><rect x="749.9" y="1205" width="0.3" height="15.0" fill="rgb(213,47,34)" rx="2" ry="2" />
<text x="752.88" y="1215.5" ></text>
</g>
<g >
<title>memcg_list_lru_alloc (8 samples, 0.02%)</title><rect x="642.6" y="1093" width="0.2" height="15.0" fill="rgb(216,30,47)" rx="2" ry="2" />
<text x="645.62" y="1103.5" ></text>
</g>
<g >
<title>[go] (614 samples, 1.36%)</title><rect x="18.3" y="1333" width="16.0" height="15.0" fill="rgb(251,120,54)" rx="2" ry="2" />
<text x="21.28" y="1343.5" ></text>
</g>
<g >
<title>[link] (60 samples, 0.13%)</title><rect x="57.6" y="1317" width="1.6" height="15.0" fill="rgb(209,132,40)" rx="2" ry="2" />
<text x="60.58" y="1327.5" ></text>
</g>
<g >
<title>futex_wait (14 samples, 0.03%)</title><rect x="35.3" y="1285" width="0.3" height="15.0" fill="rgb(208,207,32)" rx="2" ry="2" />
<text x="38.28" y="1295.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="1120.3" y="1157" width="0.1" height="15.0" fill="rgb(231,33,16)" rx="2" ry="2" />
<text x="1123.27" y="1167.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (24 samples, 0.05%)</title><rect x="616.8" y="1077" width="0.6" height="15.0" fill="rgb(240,15,11)" rx="2" ry="2" />
<text x="619.77" y="1087.5" ></text>
</g>
<g >
<title>__x64_sys_openat (6 samples, 0.01%)</title><rect x="30.1" y="1237" width="0.2" height="15.0" fill="rgb(215,143,46)" rx="2" ry="2" />
<text x="33.14" y="1247.5" ></text>
</g>
<g >
<title>do_read_fault (5 samples, 0.01%)</title><rect x="62.6" y="1285" width="0.1" height="15.0" fill="rgb(242,12,15)" rx="2" ry="2" />
<text x="65.57" y="1295.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (13 samples, 0.03%)</title><rect x="467.9" y="1061" width="0.3" height="15.0" fill="rgb(247,139,17)" rx="2" ry="2" />
<text x="470.90" y="1071.5" ></text>
</g>
<g >
<title>irq_exit_rcu (22 samples, 0.05%)</title><rect x="1065.5" y="1253" width="0.6" height="15.0" fill="rgb(239,122,42)" rx="2" ry="2" />
<text x="1068.53" y="1263.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (4 samples, 0.01%)</title><rect x="589.6" y="1093" width="0.1" height="15.0" fill="rgb(239,95,40)" rx="2" ry="2" />
<text x="592.58" y="1103.5" ></text>
</g>
<g >
<title>rcu_do_batch (4 samples, 0.01%)</title><rect x="1105.6" y="1157" width="0.1" height="15.0" fill="rgb(240,128,38)" rx="2" ry="2" />
<text x="1108.57" y="1167.5" ></text>
</g>
<g >
<title>rcu_do_batch (51 samples, 0.11%)</title><rect x="1080.1" y="1141" width="1.3" height="15.0" fill="rgb(238,101,49)" rx="2" ry="2" />
<text x="1083.10" y="1151.5" ></text>
</g>
<g >
<title>rcu_do_batch (6 samples, 0.01%)</title><rect x="1102.4" y="1173" width="0.2" height="15.0" fill="rgb(210,216,6)" rx="2" ry="2" />
<text x="1105.43" y="1183.5" ></text>
</g>
<g >
<title>lru_gen_del_folio.constprop.0 (17 samples, 0.04%)</title><rect x="893.0" y="1157" width="0.4" height="15.0" fill="rgb(213,200,54)" rx="2" ry="2" />
<text x="896.00" y="1167.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4 samples, 0.01%)</title><rect x="1176.6" y="1269" width="0.1" height="15.0" fill="rgb(232,39,8)" rx="2" ry="2" />
<text x="1179.60" y="1279.5" ></text>
</g>
<g >
<title>__rcu_read_lock (5 samples, 0.01%)</title><rect x="709.1" y="1093" width="0.1" height="15.0" fill="rgb(229,164,21)" rx="2" ry="2" />
<text x="712.12" y="1103.5" ></text>
</g>
<g >
<title>try_charge_memcg (6 samples, 0.01%)</title><rect x="659.4" y="1061" width="0.2" height="15.0" fill="rgb(229,158,54)" rx="2" ry="2" />
<text x="662.44" y="1071.5" ></text>
</g>
<g >
<title>exc_page_fault (20 samples, 0.04%)</title><rect x="62.9" y="1397" width="0.6" height="15.0" fill="rgb(211,171,5)" rx="2" ry="2" />
<text x="65.94" y="1407.5" ></text>
</g>
<g >
<title>rcu_core (37 samples, 0.08%)</title><rect x="1144.8" y="1141" width="1.0" height="15.0" fill="rgb(231,198,31)" rx="2" ry="2" />
<text x="1147.79" y="1151.5" ></text>
</g>
<g >
<title>filemap_get_read_batch (6 samples, 0.01%)</title><rect x="32.4" y="1141" width="0.2" height="15.0" fill="rgb(217,15,54)" rx="2" ry="2" />
<text x="35.43" y="1151.5" ></text>
</g>
<g >
<title>zap_pmd_range.isra.0 (6 samples, 0.01%)</title><rect x="11.8" y="1253" width="0.1" height="15.0" fill="rgb(250,164,39)" rx="2" ry="2" />
<text x="14.78" y="1263.5" ></text>
</g>
<g >
<title>collapse_huge_page (6 samples, 0.01%)</title><rect x="459.8" y="997" width="0.1" height="15.0" fill="rgb(225,70,13)" rx="2" ry="2" />
<text x="462.75" y="1007.5" ></text>
</g>
<g >
<title>_copy_from_user (71 samples, 0.16%)</title><rect x="564.2" y="1205" width="1.9" height="15.0" fill="rgb(223,39,25)" rx="2" ry="2" />
<text x="567.25" y="1215.5" ></text>
</g>
<g >
<title>__x64_sys_rt_sigreturn (9 samples, 0.02%)</title><rect x="847.6" y="1349" width="0.2" height="15.0" fill="rgb(250,200,19)" rx="2" ry="2" />
<text x="850.61" y="1359.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (8 samples, 0.02%)</title><rect x="1079.8" y="1205" width="0.2" height="15.0" fill="rgb(235,150,11)" rx="2" ry="2" />
<text x="1082.81" y="1215.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6 samples, 0.01%)</title><rect x="60.7" y="1205" width="0.1" height="15.0" fill="rgb(205,78,24)" rx="2" ry="2" />
<text x="63.69" y="1215.5" ></text>
</g>
<g >
<title>native_send_call_func_single_ipi (441 samples, 0.98%)</title><rect x="1018.3" y="1189" width="11.5" height="15.0" fill="rgb(216,146,2)" rx="2" ry="2" />
<text x="1021.26" y="1199.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (8 samples, 0.02%)</title><rect x="854.8" y="1285" width="0.2" height="15.0" fill="rgb(239,137,2)" rx="2" ry="2" />
<text x="857.77" y="1295.5" ></text>
</g>
<g >
<title>obj_cgroup_uncharge (5 samples, 0.01%)</title><rect x="1080.8" y="1093" width="0.1" height="15.0" fill="rgb(208,80,15)" rx="2" ry="2" />
<text x="1083.81" y="1103.5" ></text>
</g>
<g >
<title>[vet] (4 samples, 0.01%)</title><rect x="1188.1" y="85" width="0.1" height="15.0" fill="rgb(205,173,38)" rx="2" ry="2" />
<text x="1191.09" y="95.5" ></text>
</g>
<g >
<title>kmem_cache_free (7 samples, 0.02%)</title><rect x="1153.4" y="1317" width="0.2" height="15.0" fill="rgb(249,68,4)" rx="2" ry="2" />
<text x="1156.41" y="1327.5" ></text>
</g>
<g >
<title>do_user_addr_fault (75 samples, 0.17%)</title><rect x="461.8" y="1141" width="2.0" height="15.0" fill="rgb(224,82,43)" rx="2" ry="2" />
<text x="464.82" y="1151.5" ></text>
</g>
<g >
<title>[vet] (21 samples, 0.05%)</title><rect x="1187.7" y="773" width="0.5" height="15.0" fill="rgb(229,118,45)" rx="2" ry="2" />
<text x="1190.68" y="783.5" ></text>
</g>
<g >
<title>kfree (4 samples, 0.01%)</title><rect x="1120.3" y="1173" width="0.1" height="15.0" fill="rgb(218,113,52)" rx="2" ry="2" />
<text x="1123.27" y="1183.5" ></text>
</g>
<g >
<title>exc_page_fault (4 samples, 0.01%)</title><rect x="460.2" y="1125" width="0.1" height="15.0" fill="rgb(224,18,40)" rx="2" ry="2" />
<text x="463.17" y="1135.5" ></text>
</g>
<g >
<title>bpf_seq_write (39 samples, 0.09%)</title><rect x="524.8" y="1109" width="1.0" height="15.0" fill="rgb(251,8,13)" rx="2" ry="2" />
<text x="527.81" y="1119.5" ></text>
</g>
<g >
<title>next_uptodate_page (5 samples, 0.01%)</title><rect x="62.6" y="1253" width="0.1" height="15.0" fill="rgb(248,115,21)" rx="2" ry="2" />
<text x="65.57" y="1263.5" ></text>
</g>
<g >
<title>[vet] (20 samples, 0.04%)</title><rect x="1187.7" y="741" width="0.5" height="15.0" fill="rgb(230,210,24)" rx="2" ry="2" />
<text x="1190.70" y="751.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (4 samples, 0.01%)</title><rect x="465.3" y="1045" width="0.1" height="15.0" fill="rgb(234,202,32)" rx="2" ry="2" />
<text x="468.34" y="1055.5" ></text>
</g>
<g >
<title>file_free_rcu (13 samples, 0.03%)</title><rect x="1173.6" y="1157" width="0.3" height="15.0" fill="rgb(254,139,5)" rx="2" ry="2" />
<text x="1176.57" y="1167.5" ></text>
</g>
<g >
<title>__x64_sys_read (1,011 samples, 2.24%)</title><rect x="751.1" y="1237" width="26.4" height="15.0" fill="rgb(240,205,31)" rx="2" ry="2" />
<text x="754.08" y="1247.5" >_..</text>
</g>
<g >
<title>_raw_spin_lock (4 samples, 0.01%)</title><rect x="842.6" y="1269" width="0.2" height="15.0" fill="rgb(234,50,3)" rx="2" ry="2" />
<text x="845.65" y="1279.5" ></text>
</g>
<g >
<title>handle_mm_fault (5 samples, 0.01%)</title><rect x="459.6" y="1077" width="0.1" height="15.0" fill="rgb(244,90,41)" rx="2" ry="2" />
<text x="462.60" y="1087.5" ></text>
</g>
<g >
<title>[vet] (14 samples, 0.03%)</title><rect x="1187.8" y="453" width="0.4" height="15.0" fill="rgb(228,32,3)" rx="2" ry="2" />
<text x="1190.83" y="463.5" ></text>
</g>
<g >
<title>get_page_from_freelist (4 samples, 0.01%)</title><rect x="460.2" y="981" width="0.1" height="15.0" fill="rgb(233,111,45)" rx="2" ry="2" />
<text x="463.17" y="991.5" ></text>
</g>
<g >
<title>do_execveat_common.isra.0 (13 samples, 0.03%)</title><rect x="1182.6" y="1445" width="0.3" height="15.0" fill="rgb(234,159,24)" rx="2" ry="2" />
<text x="1185.61" y="1455.5" ></text>
</g>
<g >
<title>rcu_do_batch (4 samples, 0.01%)</title><rect x="1176.6" y="1205" width="0.1" height="15.0" fill="rgb(249,106,2)" rx="2" ry="2" />
<text x="1179.60" y="1215.5" ></text>
</g>
<g >
<title>hrtimer_active (4 samples, 0.01%)</title><rect x="859.1" y="1333" width="0.1" height="15.0" fill="rgb(227,113,9)" rx="2" ry="2" />
<text x="862.10" y="1343.5" ></text>
</g>
<g >
<title>handle_mm_fault (22 samples, 0.05%)</title><rect x="59.3" y="1285" width="0.6" height="15.0" fill="rgb(250,61,44)" rx="2" ry="2" />
<text x="62.33" y="1295.5" ></text>
</g>
<g >
<title>[mapgauge.test] (585 samples, 1.29%)</title><rect x="852.5" y="1445" width="15.3" height="15.0" fill="rgb(225,115,1)" rx="2" ry="2" />
<text x="855.55" y="1455.5" ></text>
</g>
<g >
<title>[mapgauge.test] (195 samples, 0.43%)</title><rect x="868.2" y="1429" width="5.1" height="15.0" fill="rgb(227,3,12)" rx="2" ry="2" />
<text x="871.19" y="1439.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (30 samples, 0.07%)</title><rect x="641.7" y="1093" width="0.8" height="15.0" fill="rgb(218,217,30)" rx="2" ry="2" />
<text x="644.68" y="1103.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (4 samples, 0.01%)</title><rect x="863.2" y="1269" width="0.1" height="15.0" fill="rgb(213,154,49)" rx="2" ry="2" />
<text x="866.20" y="1279.5" ></text>
</g>
<g >
<title>security_capable (226 samples, 0.50%)</title><rect x="727.1" y="1173" width="5.9" height="15.0" fill="rgb(210,30,31)" rx="2" ry="2" />
<text x="730.06" y="1183.5" ></text>
</g>
<g >
<title>[vet] (24 samples, 0.05%)</title><rect x="1187.6" y="917" width="0.6" height="15.0" fill="rgb(243,66,6)" rx="2" ry="2" />
<text x="1190.60" y="927.5" ></text>
</g>
<g >
<title>[vet] (18 samples, 0.04%)</title><rect x="1187.7" y="677" width="0.5" height="15.0" fill="rgb(248,167,10)" rx="2" ry="2" />
<text x="1190.73" y="687.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,049 samples, 4.53%)</title><rect x="475.0" y="1253" width="53.5" height="15.0" fill="rgb(253,103,18)" rx="2" ry="2" />
<text x="477.95" y="1263.5" >entry..</text>
</g>
<g >
<title>__x64_sys_openat (5 samples, 0.01%)</title><rect x="33.2" y="1269" width="0.1" height="15.0" fill="rgb(232,23,6)" rx="2" ry="2" />
<text x="36.19" y="1279.5" ></text>
</g>
<g >
<title>vfs_statx (8 samples, 0.02%)</title><rect x="31.3" y="1205" width="0.2" height="15.0" fill="rgb(243,156,51)" rx="2" ry="2" />
<text x="34.31" y="1215.5" ></text>
</g>
<g >
<title>__do_softirq (4 samples, 0.01%)</title><rect x="1176.6" y="1253" width="0.1" height="15.0" fill="rgb(240,92,51)" rx="2" ry="2" />
<text x="1179.60" y="1263.5" ></text>
</g>
<g >
<title>clear_page_erms (6 samples, 0.01%)</title><rect x="60.2" y="1173" width="0.1" height="15.0" fill="rgb(230,5,36)" rx="2" ry="2" />
<text x="63.17" y="1183.5" ></text>
</g>
<g >
<title>ext4_htree_fill_tree (4 samples, 0.01%)</title><rect x="26.0" y="1061" width="0.1" height="15.0" fill="rgb(235,150,44)" rx="2" ry="2" />
<text x="29.01" y="1071.5" ></text>
</g>
<g >
<title>__do_softirq (9 samples, 0.02%)</title><rect x="1105.7" y="1221" width="0.2" height="15.0" fill="rgb(216,33,44)" rx="2" ry="2" />
<text x="1108.70" y="1231.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (11 samples, 0.02%)</title><rect x="848.2" y="1349" width="0.3" height="15.0" fill="rgb(238,119,36)" rx="2" ry="2" />
<text x="851.24" y="1359.5" ></text>
</g>
<g >
<title>__send_signal_locked (14 samples, 0.03%)</title><rect x="855.6" y="1269" width="0.4" height="15.0" fill="rgb(221,124,48)" rx="2" ry="2" />
<text x="858.60" y="1279.5" ></text>
</g>
<g >
<title>[go] (24 samples, 0.05%)</title><rect x="24.9" y="1077" width="0.6" height="15.0" fill="rgb(209,25,34)" rx="2" ry="2" />
<text x="27.86" y="1087.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (17 samples, 0.04%)</title><rect x="1081.0" y="1125" width="0.4" height="15.0" fill="rgb(228,213,49)" rx="2" ry="2" />
<text x="1083.99" y="1135.5" ></text>
</g>
<g >
<title>do_syscall_64 (24 samples, 0.05%)</title><rect x="33.1" y="1285" width="0.6" height="15.0" fill="rgb(234,118,49)" rx="2" ry="2" />
<text x="36.09" y="1295.5" ></text>
</g>
<g >
<title>[go] (153 samples, 0.34%)</title><rect x="23.9" y="1189" width="4.0" height="15.0" fill="rgb(211,227,11)" rx="2" ry="2" />
<text x="26.87" y="1199.5" ></text>
</g>
<g >
<title>__alloc_pages (5 samples, 0.01%)</title><rect x="850.1" y="1253" width="0.1" height="15.0" fill="rgb(237,192,10)" rx="2" ry="2" />
<text x="853.12" y="1263.5" ></text>
</g>
<g >
<title>memcpy_orig (7 samples, 0.02%)</title><rect x="675.7" y="1125" width="0.2" height="15.0" fill="rgb(209,130,32)" rx="2" ry="2" />
<text x="678.71" y="1135.5" ></text>
</g>
<g >
<title>__flush_smp_call_function_queue (5 samples, 0.01%)</title><rect x="851.3" y="1333" width="0.1" height="15.0" fill="rgb(212,50,14)" rx="2" ry="2" />
<text x="854.27" y="1343.5" ></text>
</g>
<g >
<title>new_slab (316 samples, 0.70%)</title><rect x="606.3" y="1077" width="8.2" height="15.0" fill="rgb(230,85,30)" rx="2" ry="2" />
<text x="609.29" y="1087.5" ></text>
</g>
<g >
<title>cache_from_obj (5 samples, 0.01%)</title><rect x="1164.6" y="1301" width="0.2" height="15.0" fill="rgb(241,195,41)" rx="2" ry="2" />
<text x="1167.64" y="1311.5" ></text>
</g>
<g >
<title>irq_exit_rcu (12 samples, 0.03%)</title><rect x="1148.0" y="1253" width="0.3" height="15.0" fill="rgb(251,12,35)" rx="2" ry="2" />
<text x="1151.03" y="1263.5" ></text>
</g>
<g >
<title>kmem_cache_free (21 samples, 0.05%)</title><rect x="954.7" y="1157" width="0.5" height="15.0" fill="rgb(241,220,31)" rx="2" ry="2" />
<text x="957.66" y="1167.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="1105.6" y="1253" width="0.1" height="15.0" fill="rgb(232,19,48)" rx="2" ry="2" />
<text x="1108.57" y="1263.5" ></text>
</g>
<g >
<title>[mapgauge.test] (197 samples, 0.44%)</title><rect x="868.2" y="1461" width="5.1" height="15.0" fill="rgb(207,205,31)" rx="2" ry="2" />
<text x="871.19" y="1471.5" ></text>
</g>
<g >
<title>begin_current_label_crit_section (13 samples, 0.03%)</title><rect x="594.0" y="1077" width="0.3" height="15.0" fill="rgb(239,39,2)" rx="2" ry="2" />
<text x="596.99" y="1087.5" ></text>
</g>
<g >
<title>task_work_add (30 samples, 0.07%)</title><rect x="889.0" y="1317" width="0.7" height="15.0" fill="rgb(236,209,17)" rx="2" ry="2" />
<text x="891.95" y="1327.5" ></text>
</g>
<g >
<title>arch_do_signal_or_restart (8 samples, 0.02%)</title><rect x="11.7" y="1429" width="0.2" height="15.0" fill="rgb(229,113,12)" rx="2" ry="2" />
<text x="14.72" y="1439.5" ></text>
</g>
<g >
<title>[vet] (127 samples, 0.28%)</title><rect x="1185.5" y="1237" width="3.3" height="15.0" fill="rgb(207,143,21)" rx="2" ry="2" />
<text x="1188.48" y="1247.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (16 samples, 0.04%)</title><rect x="1013.8" y="1109" width="0.5" height="15.0" fill="rgb(242,14,6)" rx="2" ry="2" />
<text x="1016.84" y="1119.5" ></text>
</g>
<g >
<title>__slab_free (5 samples, 0.01%)</title><rect x="954.9" y="1141" width="0.1" height="15.0" fill="rgb(208,65,31)" rx="2" ry="2" />
<text x="957.87" y="1151.5" ></text>
</g>
<g >
<title>__unfreeze_partials (10 samples, 0.02%)</title><rect x="1171.1" y="1253" width="0.2" height="15.0" fill="rgb(232,194,34)" rx="2" ry="2" />
<text x="1174.07" y="1263.5" ></text>
</g>
<g >
<title>call_function_single_prep_ipi (18 samples, 0.04%)</title><rect x="1017.8" y="1189" width="0.5" height="15.0" fill="rgb(230,223,18)" rx="2" ry="2" />
<text x="1020.79" y="1199.5" ></text>
</g>
<g >
<title>__rcu_read_lock (6 samples, 0.01%)</title><rect x="1157.1" y="1285" width="0.1" height="15.0" fill="rgb(219,186,28)" rx="2" ry="2" />
<text x="1160.09" y="1295.5" ></text>
</g>
<g >
<title>clear_page_erms (7 samples, 0.02%)</title><rect x="466.2" y="997" width="0.1" height="15.0" fill="rgb(237,22,49)" rx="2" ry="2" />
<text x="469.15" y="1007.5" ></text>
</g>
<g >
<title>__mod_lruvec_state (4 samples, 0.01%)</title><rect x="891.8" y="1189" width="0.1" height="15.0" fill="rgb(241,17,17)" rx="2" ry="2" />
<text x="894.83" y="1199.5" ></text>
</g>
<g >
<title>unmap_vmas (101 samples, 0.22%)</title><rect x="890.9" y="1301" width="2.6" height="15.0" fill="rgb(244,209,51)" rx="2" ry="2" />
<text x="893.86" y="1311.5" ></text>
</g>
<g >
<title>free_slab (18 samples, 0.04%)</title><rect x="1053.5" y="1045" width="0.5" height="15.0" fill="rgb(243,174,38)" rx="2" ry="2" />
<text x="1056.51" y="1055.5" ></text>
</g>
<g >
<title>pvclock_clocksource_read_nowd (94 samples, 0.21%)</title><rect x="1033.6" y="1141" width="2.5" height="15.0" fill="rgb(229,132,35)" rx="2" ry="2" />
<text x="1036.64" y="1151.5" ></text>
</g>
<g >
<title>crng_fast_key_erasure (4 samples, 0.01%)</title><rect x="614.2" y="965" width="0.1" height="15.0" fill="rgb(226,73,49)" rx="2" ry="2" />
<text x="617.16" y="975.5" ></text>
</g>
<g >
<title>irqentry_exit_to_user_mode (16 samples, 0.04%)</title><rect x="463.8" y="1125" width="0.4" height="15.0" fill="rgb(207,195,12)" rx="2" ry="2" />
<text x="466.80" y="1135.5" ></text>
</g>
<g >
<title>get_page_from_freelist (6 samples, 0.01%)</title><rect x="59.7" y="1157" width="0.2" height="15.0" fill="rgb(250,68,47)" rx="2" ry="2" />
<text x="62.70" y="1167.5" ></text>
</g>
<g >
<title>do_send_specific (17 samples, 0.04%)</title><rect x="838.5" y="1301" width="0.5" height="15.0" fill="rgb(214,27,22)" rx="2" ry="2" />
<text x="841.55" y="1311.5" ></text>
</g>
<g >
<title>__do_softirq (9 samples, 0.02%)</title><rect x="1164.3" y="1221" width="0.2" height="15.0" fill="rgb(227,209,33)" rx="2" ry="2" />
<text x="1167.30" y="1231.5" ></text>
</g>
<g >
<title>memcg_alloc_slab_cgroups (22 samples, 0.05%)</title><rect x="639.2" y="1045" width="0.5" height="15.0" fill="rgb(227,183,43)" rx="2" ry="2" />
<text x="642.17" y="1055.5" ></text>
</g>
<g >
<title>do_open (7 samples, 0.02%)</title><rect x="31.6" y="1189" width="0.2" height="15.0" fill="rgb(217,207,51)" rx="2" ry="2" />
<text x="34.60" y="1199.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (5 samples, 0.01%)</title><rect x="10.6" y="1445" width="0.2" height="15.0" fill="rgb(234,97,42)" rx="2" ry="2" />
<text x="13.63" y="1455.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="1150.3" y="1269" width="0.1" height="15.0" fill="rgb(211,118,5)" rx="2" ry="2" />
<text x="1153.33" y="1279.5" ></text>
</g>
<g >
<title>__alloc_pages (4 samples, 0.01%)</title><rect x="468.2" y="1045" width="0.1" height="15.0" fill="rgb(227,209,13)" rx="2" ry="2" />
<text x="471.24" y="1055.5" ></text>
</g>
<g >
<title>__mmput (8 samples, 0.02%)</title><rect x="11.7" y="1333" width="0.2" height="15.0" fill="rgb(228,149,19)" rx="2" ry="2" />
<text x="14.72" y="1343.5" ></text>
</g>
<g >
<title>__x64_sys_mmap (9 samples, 0.02%)</title><rect x="459.9" y="1093" width="0.2" height="15.0" fill="rgb(218,184,4)" rx="2" ry="2" />
<text x="462.91" y="1103.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5 samples, 0.01%)</title><rect x="1189.6" y="1381" width="0.1" height="15.0" fill="rgb(225,152,47)" rx="2" ry="2" />
<text x="1192.58" y="1391.5" ></text>
</g>
<g >
<title>idr_get_next_ul (6 samples, 0.01%)</title><rect x="515.5" y="1125" width="0.2" height="15.0" fill="rgb(215,227,2)" rx="2" ry="2" />
<text x="518.51" y="1135.5" ></text>
</g>
<g >
<title>__mod_lruvec_page_state (4 samples, 0.01%)</title><rect x="467.7" y="1061" width="0.1" height="15.0" fill="rgb(213,17,7)" rx="2" ry="2" />
<text x="470.72" y="1071.5" ></text>
</g>
<g >
<title>[vet] (21 samples, 0.05%)</title><rect x="1187.7" y="789" width="0.5" height="15.0" fill="rgb(210,160,21)" rx="2" ry="2" />
<text x="1190.68" y="799.5" ></text>
</g>
<g >
<title>[unknown] (304 samples, 0.67%)</title><rect x="36.2" y="1509" width="7.9" height="15.0" fill="rgb(237,97,21)" rx="2" ry="2" />
<text x="39.19" y="1519.5" ></text>
</g>
<g >
<title>ext4_evict_inode (5 samples, 0.01%)</title><rect x="33.5" y="1189" width="0.1" height="15.0" fill="rgb(230,42,36)" rx="2" ry="2" />
<text x="36.50" y="1199.5" ></text>
</g>
<g >
<title>rcu_do_batch (4 samples, 0.01%)</title><rect x="877.4" y="1237" width="0.1" height="15.0" fill="rgb(230,204,16)" rx="2" ry="2" />
<text x="880.38" y="1247.5" ></text>
</g>
<g >
<title>rcu_core_si (20 samples, 0.04%)</title><rect x="965.2" y="1205" width="0.5" height="15.0" fill="rgb(211,89,3)" rx="2" ry="2" />
<text x="968.21" y="1215.5" ></text>
</g>
<g >
<title>ksys_read (18 samples, 0.04%)</title><rect x="32.1" y="1237" width="0.5" height="15.0" fill="rgb(212,229,4)" rx="2" ry="2" />
<text x="35.15" y="1247.5" ></text>
</g>
<g >
<title>file_free_rcu (48 samples, 0.11%)</title><rect x="931.0" y="1189" width="1.3" height="15.0" fill="rgb(209,82,38)" rx="2" ry="2" />
<text x="934.03" y="1199.5" ></text>
</g>
<g >
<title>cgroup_rstat_updated (5 samples, 0.01%)</title><rect x="1128.0" y="1205" width="0.2" height="15.0" fill="rgb(234,191,14)" rx="2" ry="2" />
<text x="1131.03" y="1215.5" ></text>
</g>
<g >
<title>do_syscall_64 (17 samples, 0.04%)</title><rect x="35.3" y="1333" width="0.4" height="15.0" fill="rgb(217,153,51)" rx="2" ry="2" />
<text x="38.25" y="1343.5" ></text>
</g>
<g >
<title>[asm] (5 samples, 0.01%)</title><rect x="10.1" y="1269" width="0.2" height="15.0" fill="rgb(237,3,33)" rx="2" ry="2" />
<text x="13.13" y="1279.5" ></text>
</g>
<g >
<title>kmem_cache_free (6 samples, 0.01%)</title><rect x="1130.2" y="1077" width="0.2" height="15.0" fill="rgb(208,1,51)" rx="2" ry="2" />
<text x="1133.25" y="1087.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4 samples, 0.01%)</title><rect x="35.9" y="1349" width="0.1" height="15.0" fill="rgb(234,214,23)" rx="2" ry="2" />
<text x="38.86" y="1359.5" ></text>
</g>
<g >
<title>__irqentry_text_end (5 samples, 0.01%)</title><rect x="461.5" y="1173" width="0.1" height="15.0" fill="rgb(212,160,15)" rx="2" ry="2" />
<text x="464.48" y="1183.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (4 samples, 0.01%)</title><rect x="698.5" y="1109" width="0.1" height="15.0" fill="rgb(221,223,29)" rx="2" ry="2" />
<text x="701.54" y="1119.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="851.9" y="1397" width="0.1" height="15.0" fill="rgb(246,27,9)" rx="2" ry="2" />
<text x="854.89" y="1407.5" ></text>
</g>
<g >
<title>page_cache_ra_unbounded (5 samples, 0.01%)</title><rect x="63.7" y="1237" width="0.1" height="15.0" fill="rgb(221,164,20)" rx="2" ry="2" />
<text x="66.70" y="1247.5" ></text>
</g>
<g >
<title>do_send_sig_info (6 samples, 0.01%)</title><rect x="868.9" y="1285" width="0.2" height="15.0" fill="rgb(208,110,26)" rx="2" ry="2" />
<text x="871.90" y="1295.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (9 samples, 0.02%)</title><rect x="835.3" y="1141" width="0.2" height="15.0" fill="rgb(227,135,18)" rx="2" ry="2" />
<text x="838.28" y="1151.5" ></text>
</g>
<g >
<title>rcu_do_batch (4 samples, 0.01%)</title><rect x="33.0" y="1189" width="0.1" height="15.0" fill="rgb(220,56,41)" rx="2" ry="2" />
<text x="35.96" y="1199.5" ></text>
</g>
<g >
<title>bpf_map_seq_next (23 samples, 0.05%)</title><rect x="751.1" y="1189" width="0.6" height="15.0" fill="rgb(245,71,38)" rx="2" ry="2" />
<text x="754.11" y="1199.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (74 samples, 0.16%)</title><rect x="930.9" y="1301" width="1.9" height="15.0" fill="rgb(217,157,32)" rx="2" ry="2" />
<text x="933.90" y="1311.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (4 samples, 0.01%)</title><rect x="58.8" y="1253" width="0.1" height="15.0" fill="rgb(222,18,35)" rx="2" ry="2" />
<text x="61.76" y="1263.5" ></text>
</g>
<g >
<title>irq_exit_rcu (20 samples, 0.04%)</title><rect x="965.2" y="1253" width="0.5" height="15.0" fill="rgb(223,123,10)" rx="2" ry="2" />
<text x="968.21" y="1263.5" ></text>
</g>
<g >
<title>rcu_do_batch (4 samples, 0.01%)</title><rect x="1150.3" y="1173" width="0.1" height="15.0" fill="rgb(231,193,0)" rx="2" ry="2" />
<text x="1153.33" y="1183.5" ></text>
</g>
<g >
<title>asm_exc_page_fault (35 samples, 0.08%)</title><rect x="849.9" y="1397" width="0.9" height="15.0" fill="rgb(253,0,0)" rx="2" ry="2" />
<text x="852.88" y="1407.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,045 samples, 4.53%)</title><rect x="475.1" y="1237" width="53.4" height="15.0" fill="rgb(229,89,33)" rx="2" ry="2" />
<text x="478.06" y="1247.5" >do_sy..</text>
</g>
<g >
<title>[go] (173 samples, 0.38%)</title><rect x="23.6" y="1205" width="4.5" height="15.0" fill="rgb(221,25,53)" rx="2" ry="2" />
<text x="26.58" y="1215.5" ></text>
</g>
<g >
<title>cap_capable (9 samples, 0.02%)</title><rect x="722.1" y="1141" width="0.3" height="15.0" fill="rgb(210,49,18)" rx="2" ry="2" />
<text x="725.12" y="1151.5" ></text>
</g>
<g >
<title>syscall_return_via_sysret (12 samples, 0.03%)</title><rect x="30.8" y="1269" width="0.3" height="15.0" fill="rgb(229,145,44)" rx="2" ry="2" />
<text x="33.76" y="1279.5" ></text>
</g>
<g >
<title>memset_orig (10 samples, 0.02%)</title><rect x="697.0" y="1029" width="0.3" height="15.0" fill="rgb(229,197,39)" rx="2" ry="2" />
<text x="700.02" y="1039.5" ></text>
</g>
<g >
<title>rcu_core_si (5 samples, 0.01%)</title><rect x="1061.2" y="1205" width="0.2" height="15.0" fill="rgb(234,182,26)" rx="2" ry="2" />
<text x="1064.25" y="1215.5" ></text>
</g>
<g >
<title>asm_sysvec_call_function_single (18 samples, 0.04%)</title><rect x="851.1" y="1397" width="0.5" height="15.0" fill="rgb(226,185,46)" rx="2" ry="2" />
<text x="854.08" y="1407.5" ></text>
</g>
<g >
<title>bpf_map_put (22 samples, 0.05%)</title><rect x="752.7" y="1173" width="0.6" height="15.0" fill="rgb(250,129,26)" rx="2" ry="2" />
<text x="755.73" y="1183.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (288 samples, 0.64%)</title><rect x="858.7" y="1365" width="7.5" height="15.0" fill="rgb(253,198,0)" rx="2" ry="2" />
<text x="861.71" y="1375.5" ></text>
</g>
<g >
<title>intel_pmu_enable_all (5 samples, 0.01%)</title><rect x="1077.0" y="1221" width="0.1" height="15.0" fill="rgb(216,111,10)" rx="2" ry="2" />
<text x="1079.99" y="1231.5" ></text>
</g>
<g >
<title>unmap_page_range (4 samples, 0.01%)</title><rect x="10.7" y="1269" width="0.1" height="15.0" fill="rgb(246,168,39)" rx="2" ry="2" />
<text x="13.65" y="1279.5" ></text>
</g>
<g >
<title>exit_to_user_mode_loop (6 samples, 0.01%)</title><rect x="469.9" y="1141" width="0.1" height="15.0" fill="rgb(208,78,39)" rx="2" ry="2" />
<text x="472.89" y="1151.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (11 samples, 0.02%)</title><rect x="44.1" y="1477" width="0.3" height="15.0" fill="rgb(206,177,52)" rx="2" ry="2" />
<text x="47.13" y="1487.5" ></text>
</g>
<g >
<title>[go] (6 samples, 0.01%)</title><rect x="25.2" y="997" width="0.2" height="15.0" fill="rgb(248,225,28)" rx="2" ry="2" />
<text x="28.20" y="1007.5" ></text>
</g>
<g >
<title>[go] (28 samples, 0.06%)</title><rect x="24.8" y="1093" width="0.7" height="15.0" fill="rgb(239,29,29)" rx="2" ry="2" />
<text x="27.78" y="1103.5" ></text>
</g>
<g >
<title>rcu_core (8 samples, 0.02%)</title><rect x="924.7" y="1205" width="0.2" height="15.0" fill="rgb(211,202,21)" rx="2" ry="2" />
<text x="927.66" y="1215.5" ></text>
</g>
<g >
<title>bpf_prog_load (6 samples, 0.01%)</title><rect x="468.6" y="1141" width="0.2" height="15.0" fill="rgb(251,97,47)" rx="2" ry="2" />
<text x="471.63" y="1151.5" ></text>
</g>
<g >
<title>do_user_addr_fault (15 samples, 0.03%)</title><rect x="63.6" y="1397" width="0.4" height="15.0" fill="rgb(217,61,13)" rx="2" ry="2" />
<text x="66.64" y="1407.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (26 samples, 0.06%)</title><rect x="854.3" y="1349" width="0.7" height="15.0" fill="rgb(254,221,52)" rx="2" ry="2" />
<text x="857.32" y="1359.5" ></text>
</g>
<g >
<title>__hrtimer_run_queues (7 samples, 0.02%)</title><rect x="1044.6" y="1205" width="0.1" height="15.0" fill="rgb(221,133,36)" rx="2" ry="2" />
<text x="1047.56" y="1215.5" ></text>
</g>
<g >
<title>syscall_exit_to_user_mode (5 samples, 0.01%)</title><rect x="839.0" y="1333" width="0.2" height="15.0" fill="rgb(215,22,30)" rx="2" ry="2" />
<text x="842.05" y="1343.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="459.0" y="1045" width="0.1" height="15.0" fill="rgb(230,10,37)" rx="2" ry="2" />
<text x="462.02" y="1055.5" ></text>
</g>
<g >
<title>__do_sys_newfstatat (35 samples, 0.08%)</title><rect x="26.5" y="1125" width="0.9" height="15.0" fill="rgb(216,140,8)" rx="2" ry="2" />
<text x="29.53" y="1135.5" ></text>
</g>
<g >
<title>__mmput (19 samples, 0.04%)</title><rect x="64.6" y="1397" width="0.5" height="15.0" fill="rgb(254,10,20)" rx="2" ry="2" />
<text x="67.61" y="1407.5" ></text>
</g>
<g >
<title>__task_rq_lock (296 samples, 0.66%)</title><rect x="990.9" y="1221" width="7.7" height="15.0" fill="rgb(225,118,25)" rx="2" ry="2" />
<text x="993.86" y="1231.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (11 samples, 0.02%)</title><rect x="44.1" y="1461" width="0.3" height="15.0" fill="rgb(251,110,28)" rx="2" ry="2" />
<text x="47.13" y="1471.5" ></text>
</g>
<g >
<title>__local_bh_enable_ip (9 samples, 0.02%)</title><rect x="510.4" y="1109" width="0.2" height="15.0" fill="rgb(249,114,12)" rx="2" ry="2" />
<text x="513.39" y="1119.5" ></text>
</g>
<g >
<title>handle_mm_fault (4 samples, 0.01%)</title><rect x="35.9" y="1365" width="0.1" height="15.0" fill="rgb(252,35,52)" rx="2" ry="2" />
<text x="38.86" y="1375.5" ></text>
</g>
<g >
<title>handle_pte_fault (22 samples, 0.05%)</title><rect x="850.0" y="1317" width="0.6" height="15.0" fill="rgb(234,34,12)" rx="2" ry="2" />
<text x="852.99" y="1327.5" ></text>
</g>
<g >
<title>hook_file_alloc_security (5 samples, 0.01%)</title><rect x="594.3" y="1077" width="0.2" height="15.0" fill="rgb(238,141,48)" rx="2" ry="2" />
<text x="597.33" y="1087.5" ></text>
</g>
<g >
<title>hrtimer_interrupt (4 samples, 0.01%)</title><rect x="763.6" y="1093" width="0.1" height="15.0" fill="rgb(236,155,44)" rx="2" ry="2" />
<text x="766.57" y="1103.5" ></text>
</g>
<g >
<title>wp_page_copy (6 samples, 0.01%)</title><rect x="529.9" y="1157" width="0.1" height="15.0" fill="rgb(241,31,7)" rx="2" ry="2" />
<text x="532.85" y="1167.5" ></text>
</g>
<g >
<title>vfs_fstatat (33 samples, 0.07%)</title><rect x="26.6" y="1109" width="0.8" height="15.0" fill="rgb(244,5,4)" rx="2" ry="2" />
<text x="29.58" y="1119.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (7 samples, 0.02%)</title><rect x="1102.4" y="1237" width="0.2" height="15.0" fill="rgb(218,206,35)" rx="2" ry="2" />
<text x="1105.40" y="1247.5" ></text>
</g>
<g >
<title>handle_mm_fault (15 samples, 0.03%)</title><rect x="63.6" y="1381" width="0.4" height="15.0" fill="rgb(241,132,27)" rx="2" ry="2" />
<text x="66.64" y="1391.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.01%)</title><rect x="852.4" y="1461" width="0.1" height="15.0" fill="rgb(220,211,51)" rx="2" ry="2" />
<text x="855.44" y="1471.5" ></text>
</g>
<g >
<title>rcu_cblist_dequeue (18 samples, 0.04%)</title><rect x="932.3" y="1189" width="0.5" height="15.0" fill="rgb(243,199,5)" rx="2" ry="2" />
<text x="935.33" y="1199.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (14 samples, 0.03%)</title><rect x="1106.6" y="1237" width="0.4" height="15.0" fill="rgb(227,171,9)" rx="2" ry="2" />
<text x="1109.64" y="1247.5" ></text>
</g>
<g >
<title>__schedule (8 samples, 0.02%)</title><rect x="854.8" y="1253" width="0.2" height="15.0" fill="rgb(225,16,25)" rx="2" ry="2" />
<text x="857.77" y="1263.5" ></text>
</g>
<g >
<title>memcg_slab_post_alloc_hook (225 samples, 0.50%)</title><rect x="704.6" y="1109" width="5.8" height="15.0" fill="rgb(226,95,11)" rx="2" ry="2" />
<text x="707.57" y="1119.5" ></text>
</g>
<g >
<title>array_map_free_timers (8 samples, 0.02%)</title><rect x="954.1" y="1301" width="0.2" height="15.0" fill="rgb(214,185,3)" rx="2" ry="2" />
<text x="957.06" y="1311.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (13 samples, 0.03%)</title><rect x="1148.0" y="1269" width="0.3" height="15.0" fill="rgb(233,160,16)" rx="2" ry="2" />
<text x="1151.00" y="1279.5" ></text>
</g>
<g >
<title>__x64_sys_read (2,041 samples, 4.52%)</title><rect x="475.1" y="1221" width="53.3" height="15.0" fill="rgb(246,50,29)" rx="2" ry="2" />
<text x="478.06" y="1231.5" >__x64..</text>
</g>
<g >
<title>percpu_counter_add_batch (47 samples, 0.10%)</title><rect x="623.7" y="1109" width="1.2" height="15.0" fill="rgb(208,213,22)" rx="2" ry="2" />
<text x="626.71" y="1119.5" ></text>
</g>
<g >
<title>wake_up_process (4 samples, 0.01%)</title><rect x="530.2" y="1173" width="0.1" height="15.0" fill="rgb(242,7,39)" rx="2" ry="2" />
<text x="533.22" y="1183.5" ></text>
</g>
<g >
<title>mod_objcg_state (6 samples, 0.01%)</title><rect x="1173.8" y="1125" width="0.1" height="15.0" fill="rgb(250,47,14)" rx="2" ry="2" />
<text x="1176.76" y="1135.5" ></text>
</g>
<g >
<title>get_obj_cgroup_from_current (9 samples, 0.02%)</title><rect x="585.5" y="1109" width="0.2" height="15.0" fill="rgb(232,41,3)" rx="2" ry="2" />
<text x="588.51" y="1119.5" ></text>
</g>
<g >
<title>psi_group_change (45 samples, 0.10%)</title><rect x="1012.6" y="1173" width="1.1" height="15.0" fill="rgb(243,206,32)" rx="2" ry="2" />
<text x="1015.56" y="1183.5" ></text>
</g>
<g >
<title>__fpu_restore_sig (5 samples, 0.01%)</title><rect x="847.7" y="1301" width="0.1" height="15.0" fill="rgb(249,181,18)" rx="2" ry="2" />
<text x="850.72" y="1311.5" ></text>
</g>
<g >
<title>[compile] (35 samples, 0.08%)</title><rect x="10.8" y="1493" width="0.9" height="15.0" fill="rgb(211,26,39)" rx="2" ry="2" />
<text x="13.76" y="1503.5" ></text>
</g>
<g >
<title>rcu_core_si (4 samples, 0.01%)</title><rect x="1105.6" y="1189" width="0.1" height="15.0" fill="rgb(213,174,0)" rx="2" ry="2" />
<text x="1108.57" y="1199.5" ></text>
</g>
<g >
<title>do_wp_page (4 samples, 0.01%)</title><rect x="473.5" y="1141" width="0.1" height="15.0" fill="rgb(211,202,54)" rx="2" ry="2" />
<text x="476.52" y="1151.5" ></text>
</g>
<g >
<title>file_free_rcu (8 samples, 0.02%)</title><rect x="1181.1" y="1189" width="0.2" height="15.0" fill="rgb(214,194,8)" rx="2" ry="2" />
<text x="1184.12" y="1199.5" ></text>
</g>
<g >
<title>load_balance (5 samples, 0.01%)</title><rect x="871.6" y="1237" width="0.1" height="15.0" fill="rgb(237,111,30)" rx="2" ry="2" />
<text x="874.56" y="1247.5" ></text>
</g>
<g >
<title>__slab_free (79 samples, 0.17%)</title><rect x="1049.3" y="1109" width="2.1" height="15.0" fill="rgb(236,176,47)" rx="2" ry="2" />
<text x="1052.34" y="1119.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (10 samples, 0.02%)</title><rect x="1181.1" y="1269" width="0.3" height="15.0" fill="rgb(238,67,4)" rx="2" ry="2" />
<text x="1184.12" y="1279.5" ></text>
</g>
<g >
<title>sysvec_apic_timer_interrupt (50 samples, 0.11%)</title><rect x="954.3" y="1285" width="1.3" height="15.0" fill="rgb(230,187,12)" rx="2" ry="2" />
<text x="957.27" y="1295.5" ></text>
</g>
<g >
<title>__rcu_read_lock (41 samples, 0.09%)</title><rect x="920.8" y="1317" width="1.1" height="15.0" fill="rgb(250,22,2)" rx="2" ry="2" />
<text x="923.84" y="1327.5" ></text>
</g>
<g >
<title>rcu_core_si (50 samples, 0.11%)</title><rect x="954.3" y="1221" width="1.3" height="15.0" fill="rgb(225,65,35)" rx="2" ry="2" />
<text x="957.27" y="1231.5" ></text>
</g>
<g >
<title>generic_file_read_iter (15 samples, 0.03%)</title><rect x="32.2" y="1189" width="0.4" height="15.0" fill="rgb(218,193,45)" rx="2" ry="2" />
<text x="35.23" y="1199.5" ></text>
</g>
<g >
<title>__free_pages (19 samples, 0.04%)</title><rect x="1119.2" y="1157" width="0.5" height="15.0" fill="rgb(249,105,34)" rx="2" ry="2" />
<text x="1122.17" y="1167.5" ></text>
</g>
<g >
<title>refill_obj_stock (122 samples, 0.27%)</title><rect x="1128.3" y="1237" width="3.2" height="15.0" fill="rgb(205,166,34)" rx="2" ry="2" />
<text x="1131.29" y="1247.5" ></text>
</g>
<g >
<title>file_free_rcu (7 samples, 0.02%)</title><rect x="1105.7" y="1157" width="0.2" height="15.0" fill="rgb(217,215,53)" rx="2" ry="2" />
<text x="1108.70" y="1167.5" ></text>
</g>
<g >
<title>do_rmdir (9 samples, 0.02%)</title><rect x="33.4" y="1253" width="0.2" height="15.0" fill="rgb(246,9,39)" rx="2" ry="2" />
<text x="36.40" y="1263.5" ></text>
</g>
<g >
<title>__do_softirq (30 samples, 0.07%)</title><rect x="1181.7" y="1285" width="0.8" height="15.0" fill="rgb(228,122,3)" rx="2" ry="2" />
<text x="1184.72" y="1295.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (5 samples, 0.01%)</title><rect x="1189.8" y="1461" width="0.2" height="15.0" fill="rgb(249,11,10)" rx="2" ry="2" />
<text x="1192.84" y="1471.5" ></text>
</g>
<g >
<title>rcu_do_batch (501 samples, 1.11%)</title><rect x="1045.3" y="1157" width="13.1" height="15.0" fill="rgb(238,189,5)" rx="2" ry="2" />
<text x="1048.31" y="1167.5" ></text>
</g>
<g >
<title>do_anonymous_page (16 samples, 0.04%)</title><rect x="34.4" y="1237" width="0.4" height="15.0" fill="rgb(211,33,21)" rx="2" ry="2" />
<text x="37.42" y="1247.5" ></text>
</g>
<g >
<title>[vet] (5 samples, 0.01%)</title><rect x="1188.1" y="149" width="0.1" height="15.0" fill="rgb(224,46,1)" rx="2" ry="2" />
<text x="1191.07" y="159.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5 samples, 0.01%)</title><rect x="1061.2" y="1253" width="0.2" height="15.0" fill="rgb(223,169,47)" rx="2" ry="2" />
<text x="1064.25" y="1263.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="28.5" y="1221" width="0.2" height="15.0" fill="rgb(219,216,8)" rx="2" ry="2" />
<text x="31.49" y="1231.5" ></text>
</g>
<g >
<title>rcu_core (10 samples, 0.02%)</title><rect x="1136.6" y="1173" width="0.3" height="15.0" fill="rgb(208,88,35)" rx="2" ry="2" />
<text x="1139.62" y="1183.5" ></text>
</g>
<g >
<title>__x64_sys_sched_yield (15 samples, 0.03%)</title><rect x="847.8" y="1349" width="0.4" height="15.0" fill="rgb(206,37,3)" rx="2" ry="2" />
<text x="850.85" y="1359.5" ></text>
</g>
<g >
<title>do_sched_yield (15 samples, 0.03%)</title><rect x="847.8" y="1333" width="0.4" height="15.0" fill="rgb(252,38,53)" rx="2" ry="2" />
<text x="850.85" y="1343.5" ></text>
</g>
<g >
<title>mod_objcg_state (35 samples, 0.08%)</title><rect x="1051.6" y="1109" width="0.9" height="15.0" fill="rgb(238,102,17)" rx="2" ry="2" />
<text x="1054.58" y="1119.5" ></text>
</g>
<g >
<title>native_flush_tlb_multi (13 samples, 0.03%)</title><rect x="467.9" y="1045" width="0.3" height="15.0" fill="rgb(249,12,8)" rx="2" ry="2" />
<text x="470.90" y="1055.5" ></text>
</g>
<g >
<title>__rcu_read_lock (6 samples, 0.01%)</title><rect x="619.7" y="1077" width="0.2" height="15.0" fill="rgb(250,198,24)" rx="2" ry="2" />
<text x="622.74" y="1087.5" ></text>
</g>
<g >
<title>rmqueue (10 samples, 0.02%)</title><rect x="638.8" y="997" width="0.3" height="15.0" fill="rgb(245,183,14)" rx="2" ry="2" />
<text x="641.81" y="1007.5" ></text>
</g>
<g >
<title>getname_flags (5 samples, 0.01%)</title><rect x="26.6" y="1093" width="0.1" height="15.0" fill="rgb(216,123,28)" rx="2" ry="2" />
<text x="29.58" y="1103.5" ></text>
</g>
<g >
<title>filemap_fault (6 samples, 0.01%)</title><rect x="63.7" y="1301" width="0.1" height="15.0" fill="rgb(247,33,33)" rx="2" ry="2" />
<text x="66.67" y="1311.5" ></text>
</g>
<g >
<title>mod_memcg_state (4 samples, 0.01%)</title><rect x="659.3" y="1045" width="0.1" height="15.0" fill="rgb(249,177,4)" rx="2" ry="2" />
<text x="662.26" y="1055.5" ></text>
</g>
<g >
<title>setup_object (4 samples, 0.01%)</title><rect x="613.2" y="1045" width="0.1" height="15.0" fill="rgb(244,65,19)" rx="2" ry="2" />
<text x="616.24" y="1055.5" ></text>
</g>
<g >
<title>__do_softirq (11 samples, 0.02%)</title><rect x="1173.2" y="1189" width="0.3" height="15.0" fill="rgb(218,194,9)" rx="2" ry="2" />
<text x="1176.23" y="1199.5" ></text>
</g>
<g >
<title>mas_wr_modify (4 samples, 0.01%)</title><rect x="58.6" y="1141" width="0.1" height="15.0" fill="rgb(227,160,36)" rx="2" ry="2" />
<text x="61.60" y="1151.5" ></text>
</g>
<g >
<title>__do_softirq (10 samples, 0.02%)</title><rect x="1136.6" y="1205" width="0.3" height="15.0" fill="rgb(246,30,44)" rx="2" ry="2" />
<text x="1139.62" y="1215.5" ></text>
</g>
<g >
<title>refill_obj_stock (16 samples, 0.04%)</title><rect x="1131.5" y="1253" width="0.4" height="15.0" fill="rgb(218,57,8)" rx="2" ry="2" />
<text x="1134.47" y="1263.5" ></text>
</g>
<g >
<title>__get_random_u32_below (7 samples, 0.02%)</title><rect x="640.4" y="1029" width="0.2" height="15.0" fill="rgb(251,148,0)" rx="2" ry="2" />
<text x="643.38" y="1039.5" ></text>
</g>
<g >
<title>memset_orig (22 samples, 0.05%)</title><rect x="623.1" y="1109" width="0.6" height="15.0" fill="rgb(221,206,8)" rx="2" ry="2" />
<text x="626.09" y="1119.5" ></text>
</g>
<g >
<title>vfs_fstatat (5 samples, 0.01%)</title><rect x="25.7" y="1061" width="0.1" height="15.0" fill="rgb(221,191,49)" rx="2" ry="2" />
<text x="28.70" y="1071.5" ></text>
</g>
<g >
<title>handle_mm_fault (30 samples, 0.07%)</title><rect x="836.8" y="1301" width="0.8" height="15.0" fill="rgb(227,32,54)" rx="2" ry="2" />
<text x="839.77" y="1311.5" ></text>
</g>
<g >
<title>do_syscall_64 (14 samples, 0.03%)</title><rect x="29.1" y="1237" width="0.4" height="15.0" fill="rgb(220,140,27)" rx="2" ry="2" />
<text x="32.12" y="1247.5" ></text>
</g>
<g >
<title>__d_instantiate (5 samples, 0.01%)</title><rect x="580.8" y="1141" width="0.1" height="15.0" fill="rgb(228,92,14)" rx="2" ry="2" />
<text x="583.80" y="1151.5" ></text>
</g>
<g >
<title>rb_erase (10 samples, 0.02%)</title><rect x="1089.9" y="1237" width="0.3" height="15.0" fill="rgb(228,152,38)" rx="2" ry="2" />
<text x="1092.92" y="1247.5" ></text>
</g>
<g >
<title>folio_add_new_anon_rmap (6 samples, 0.01%)</title><rect x="471.4" y="1125" width="0.1" height="15.0" fill="rgb(225,198,4)" rx="2" ry="2" />
<text x="474.38" y="1135.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (4 samples, 0.01%)</title><rect x="462.7" y="981" width="0.1" height="15.0" fill="rgb(246,106,8)" rx="2" ry="2" />
<text x="465.65" y="991.5" ></text>
</g>
<g >
<title>generic_smp_call_function_single_interrupt (5 samples, 0.01%)</title><rect x="851.3" y="1349" width="0.1" height="15.0" fill="rgb(243,208,6)" rx="2" ry="2" />
<text x="854.27" y="1359.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (16 samples, 0.04%)</title><rect x="527.2" y="1141" width="0.4" height="15.0" fill="rgb(247,105,3)" rx="2" ry="2" />
<text x="530.19" y="1151.5" ></text>
</g>
<g >
<title>irqentry_exit (6 samples, 0.01%)</title><rect x="831.9" y="1269" width="0.2" height="15.0" fill="rgb(252,183,54)" rx="2" ry="2" />
<text x="834.94" y="1279.5" ></text>
</g>
<g >
<title>__handle_mm_fault (5 samples, 0.01%)</title><rect x="469.3" y="1157" width="0.1" height="15.0" fill="rgb(223,206,17)" rx="2" ry="2" />
<text x="472.26" y="1167.5" ></text>
</g>
<g >
<title>unmap_single_vma (4 samples, 0.01%)</title><rect x="10.7" y="1285" width="0.1" height="15.0" fill="rgb(232,82,18)" rx="2" ry="2" />
<text x="13.65" y="1295.5" ></text>
</g>
<g >
<title>__do_softirq (23 samples, 0.05%)</title><rect x="1173.5" y="1221" width="0.6" height="15.0" fill="rgb(224,162,6)" rx="2" ry="2" />
<text x="1176.55" y="1231.5" ></text>
</g>
<g >
<title>consume_obj_stock (33 samples, 0.07%)</title><rect x="658.4" y="1061" width="0.9" height="15.0" fill="rgb(210,199,35)" rx="2" ry="2" />
<text x="661.40" y="1071.5" ></text>
</g>
<g >
<title>[asm] (15 samples, 0.03%)</title><rect x="10.1" y="1445" width="0.3" height="15.0" fill="rgb(217,34,25)" rx="2" ry="2" />
<text x="13.05" y="1455.5" ></text>
</g>
<g >
<title>allocate_slab (314 samples, 0.69%)</title><rect x="606.3" y="1061" width="8.2" height="15.0" fill="rgb(254,71,34)" rx="2" ry="2" />
<text x="609.32" y="1071.5" ></text>
</g>
<g >
<title>__slab_free (256 samples, 0.57%)</title><rect x="1166.8" y="1285" width="6.7" height="15.0" fill="rgb(226,96,36)" rx="2" ry="2" />
<text x="1169.83" y="1295.5" ></text>
</g>
<g >
<title>____fput (74 samples, 0.16%)</title><rect x="875.6" y="1365" width="1.9" height="15.0" fill="rgb(207,68,23)" rx="2" ry="2" />
<text x="878.56" y="1375.5" ></text>
</g>
<g >
<title>hrtimer_nanosleep (6 samples, 0.01%)</title><rect x="875.4" y="1461" width="0.2" height="15.0" fill="rgb(216,21,52)" rx="2" ry="2" />
<text x="878.40" y="1471.5" ></text>
</g>
<g >
<title>free_unref_page_commit (19 samples, 0.04%)</title><rect x="892.4" y="1141" width="0.5" height="15.0" fill="rgb(211,42,50)" rx="2" ry="2" />
<text x="895.43" y="1151.5" ></text>
</g>
<g >
<title>_copy_to_iter (8 samples, 0.02%)</title><rect x="32.2" y="1141" width="0.2" height="15.0" fill="rgb(233,32,40)" rx="2" ry="2" />
<text x="35.23" y="1151.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (378 samples, 0.84%)</title><rect x="753.8" y="1157" width="9.9" height="15.0" fill="rgb(227,165,43)" rx="2" ry="2" />
<text x="756.80" y="1167.5" ></text>
</g>
<g >
<title>get_random_u32 (7 samples, 0.02%)</title><rect x="640.4" y="1013" width="0.2" height="15.0" fill="rgb(247,229,45)" rx="2" ry="2" />
<text x="643.38" y="1023.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="459.0" y="1029" width="0.1" height="15.0" fill="rgb(238,101,28)" rx="2" ry="2" />
<text x="462.02" y="1039.5" ></text>
</g>
<g >
<title>bpf_obj_name_cpy (34 samples, 0.08%)</title><rect x="723.2" y="1189" width="0.9" height="15.0" fill="rgb(210,96,18)" rx="2" ry="2" />
<text x="726.24" y="1199.5" ></text>
</g>
<g >
<title>rmqueue_bulk (5 samples, 0.01%)</title><rect x="529.7" y="1061" width="0.1" height="15.0" fill="rgb(205,228,25)" rx="2" ry="2" />
<text x="532.69" y="1071.5" ></text>
</g>
<g >
<title>put_pid (5 samples, 0.01%)</title><rect x="1179.4" y="1333" width="0.2" height="15.0" fill="rgb(210,166,18)" rx="2" ry="2" />
<text x="1182.45" y="1343.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (7 samples, 0.02%)</title><rect x="751.7" y="1189" width="0.2" height="15.0" fill="rgb(247,145,32)" rx="2" ry="2" />
<text x="754.71" y="1199.5" ></text>
</g>
<g >
<title>__handle_mm_fault (23 samples, 0.05%)</title><rect x="460.6" y="1093" width="0.6" height="15.0" fill="rgb(206,26,10)" rx="2" ry="2" />
<text x="463.59" y="1103.5" ></text>
</g>
<g >
<title>__perf_event_task_sched_out (5 samples, 0.01%)</title><rect x="875.4" y="1381" width="0.2" height="15.0" fill="rgb(251,34,33)" rx="2" ry="2" />
<text x="878.43" y="1391.5" ></text>
</g>
<g >
<title>delete_node (8 samples, 0.02%)</title><rect x="744.7" y="1125" width="0.2" height="15.0" fill="rgb(230,39,21)" rx="2" ry="2" />
<text x="747.66" y="1135.5" ></text>
</g>
<g >
<title>[mapgauge.test] (589 samples, 1.30%)</title><rect x="852.5" y="1461" width="15.4" height="15.0" fill="rgb(206,83,26)" rx="2" ry="2" />
<text x="855.55" y="1471.5" ></text>
</g>
<g >
<title>rcu_core_si (9 samples, 0.02%)</title><rect x="930.7" y="1221" width="0.2" height="15.0" fill="rgb(230,107,43)" rx="2" ry="2" />
<text x="933.66" y="1231.5" ></text>
</g>
<g >
<title>slab_update_freelist.isra.0 (5 samples, 0.01%)</title><rect x="1080.7" y="1077" width="0.1" height="15.0" fill="rgb(236,163,25)" rx="2" ry="2" />
<text x="1083.68" y="1087.5" ></text>
</g>
<g >
<title>__rmqueue_pcplist (6 samples, 0.01%)</title><rect x="529.7" y="1077" width="0.1" height="15.0" fill="rgb(252,205,29)" rx="2" ry="2" />
<text x="532.67" y="1087.5" ></text>
</g>
<g >
<title>__rcu_read_unlock (26 samples, 0.06%)</title><rect x="576.4" y="1189" width="0.7" height="15.0" fill="rgb(239,71,12)" rx="2" ry="2" />
<text x="579.39" y="1199.5" ></text>
</g>
<g >
<title>psi_flags_change (7 samples, 0.02%)</title><rect x="1098.7" y="1253" width="0.2" height="15.0" fill="rgb(212,205,23)" rx="2" ry="2" />
<text x="1101.70" y="1263.5" ></text>
</g>
<g >
<title>apparmor_file_alloc_security (37 samples, 0.08%)</title><rect x="587.0" y="1093" width="1.0" height="15.0" fill="rgb(209,153,48)" rx="2" ry="2" />
<text x="589.99" y="1103.5" ></text>
</g>
<g >
<title>rcu_core_si (14 samples, 0.03%)</title><rect x="1130.2" y="1141" width="0.4" height="15.0" fill="rgb(217,212,11)" rx="2" ry="2" />
<text x="1133.22" y="1151.5" ></text>
</g>
<g >
<title>ext4_map_blocks (5 samples, 0.01%)</title><rect x="34.1" y="1157" width="0.1" height="15.0" fill="rgb(208,6,21)" rx="2" ry="2" />
<text x="37.05" y="1167.5" ></text>
</g>
<g >
<title>available_idle_cpu (6 samples, 0.01%)</title><rect x="1003.7" y="1205" width="0.1" height="15.0" fill="rgb(226,70,51)" rx="2" ry="2" />
<text x="1006.68" y="1215.5" ></text>
</g>
<g >
<title>[unknown] (5 samples, 0.01%)</title><rect x="1182.9" y="1509" width="0.2" height="15.0" fill="rgb(215,172,43)" rx="2" ry="2" />
<text x="1185.95" y="1519.5" ></text>
</g>
<g >
<title>get_any_partial (15 samples, 0.03%)</title><rect x="683.2" y="1093" width="0.4" height="15.0" fill="rgb(245,123,48)" rx="2" ry="2" />
<text x="686.18" y="1103.5" ></text>
</g>
<g >
<title>[go] (4 samples, 0.01%)</title><rect x="43.7" y="1445" width="0.1" height="15.0" fill="rgb(216,187,49)" rx="2" ry="2" />
<text x="46.66" y="1455.5" ></text>
</g>
<g >
<title>__x64_sys_bpf (7,337 samples, 16.24%)</title><rect x="559.5" y="1237" width="191.6" height="15.0" fill="rgb(230,155,48)" rx="2" ry="2" />
<text x="562.47" y="1247.5" >__x64_sys_bpf</text>
</g>
<g >
<title>charge_memcg (4 samples, 0.01%)</title><rect x="842.5" y="1253" width="0.1" height="15.0" fill="rgb(253,125,25)" rx="2" ry="2" />
<text x="845.47" y="1263.5" ></text>
</g>
<g >
<title>do_user_addr_fault (5 samples, 0.01%)</title><rect x="469.3" y="1189" width="0.1" height="15.0" fill="rgb(238,144,14)" rx="2" ry="2" />
<text x="472.26" y="1199.5" ></text>
</g>
<g >
<title>security_file_alloc (15 samples, 0.03%)</title><rect x="624.9" y="1109" width="0.4" height="15.0" fill="rgb(227,116,4)" rx="2" ry="2" />
<text x="627.94" y="1119.5" ></text>
</g>
<g >
<title>clockevents_program_event (19 samples, 0.04%)</title><rect x="860.0" y="1285" width="0.5" height="15.0" fill="rgb(248,183,1)" rx="2" ry="2" />
<text x="862.96" y="1295.5" ></text>
</g>
<g >
<title>[vet] (16 samples, 0.04%)</title><rect x="1187.8" y="549" width="0.4" height="15.0" fill="rgb(211,197,3)" rx="2" ry="2" />
<text x="1190.78" y="559.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.01%)</title><rect x="1189.8" y="1493" width="0.2" height="15.0" fill="rgb(217,172,11)" rx="2" ry="2" />
<text x="1192.84" y="1503.5" ></text>
</g>
<g >
<title>__bpf_map_inc_not_zero (811 samples, 1.79%)</title><rect x="481.2" y="1141" width="21.2" height="15.0" fill="rgb(254,85,52)" rx="2" ry="2" />
<text x="484.20" y="1151.5" ></text>
</g>
<g >
<title>mtree_range_walk (5 samples, 0.01%)</title><rect x="835.7" y="1253" width="0.1" height="15.0" fill="rgb(217,58,16)" rx="2" ry="2" />
<text x="838.65" y="1263.5" ></text>
</g>
<g >
<title>bpf_map_get_curr_or_next (5 samples, 0.01%)</title><rect x="752.6" y="1173" width="0.1" height="15.0" fill="rgb(210,99,19)" rx="2" ry="2" />
<text x="755.60" y="1183.5" ></text>
</g>
<g >
<title>[vet] (258 samples, 0.57%)</title><rect x="1183.1" y="1493" width="6.7" height="15.0" fill="rgb(241,13,45)" rx="2" ry="2" />
<text x="1186.08" y="1503.5" ></text>
</g>
<g >
<title>__irq_exit_rcu (4 samples, 0.01%)</title><rect x="33.0" y="1253" width="0.1" height="15.0" fill="rgb(207,30,36)" rx="2" ry="2" />
<text x="35.96" y="1263.5" ></text>
</g>
<g >
<title>sched_clock_noinstr (5 samples, 0.01%)</title><rect x="1036.3" y="1189" width="0.1" height="15.0" fill="rgb(214,18,13)" rx="2" ry="2" />
<text x="1039.25" y="1199.5" ></text>
</g>
<g >
<title>rcu_core_si (5 samples, 0.01%)</title><rect x="934.3" y="1221" width="0.1" height="15.0" fill="rgb(245,129,11)" rx="2" ry="2" />
<text x="937.29" y="1231.5" ></text>
</g>
<g >
<title>[vet] (18 samples, 0.04%)</title><rect x="1187.7" y="661" width="0.5" height="15.0" fill="rgb(211,202,39)" rx="2" ry="2" />
<text x="1190.73" y="671.5" ></text>
</g>
<g >
<title>[go] (14 samples, 0.03%)</title><rect x="25.1" y="1045" width="0.3" height="15.0" fill="rgb(221,101,1)" rx="2" ry="2" />
<text x="28.07" y="1055.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="1150.3" y="1285" width="0.1" height="15.0" fill="rgb(224,23,2)" rx="2" ry="2" />
<text x="1153.33" y="1295.5" ></text>
</g>
<g >
<title>cap_capable (58 samples, 0.13%)</title><rect x="725.5" y="1173" width="1.6" height="15.0" fill="rgb(247,0,51)" rx="2" ry="2" />
<text x="728.54" y="1183.5" ></text>
</g>
<g >
<title>clear_page_erms (4 samples, 0.01%)</title><rect x="459.8" y="933" width="0.1" height="15.0" fill="rgb(235,201,20)" rx="2" ry="2" />
<text x="462.81" y="943.5" ></text>
</g>
<g >
<title>mod_memcg_lruvec_state (5 samples, 0.01%)</title><rect x="646.6" y="1061" width="0.1" height="15.0" fill="rgb(221,64,38)" rx="2" ry="2" />
<text x="649.57" y="1071.5" ></text>
</g>
<g >
<title>hook_file_alloc_security (61 samples, 0.14%)</title><rect x="588.0" y="1093" width="1.6" height="15.0" fill="rgb(218,212,14)" rx="2" ry="2" />
<text x="590.99" y="1103.5" ></text>
</g>
<g >
<title>native_queued_spin_lock_slowpath (282 samples, 0.62%)</title><rect x="991.2" y="1173" width="7.4" height="15.0" fill="rgb(210,203,2)" rx="2" ry="2" />
<text x="994.23" y="1183.5" ></text>
</g>
<g >
<title>bpf_prog_d6373bea7819ebe7_dump_bpf_map_num_entries (8 samples, 0.02%)</title><rect x="776.9" y="1157" width="0.2" height="15.0" fill="rgb(245,18,42)" rx="2" ry="2" />
<text x="779.89" y="1167.5" ></text>
</g>
<g >
<title>rcu_do_batch (9 samples, 0.02%)</title><rect x="1170.8" y="1157" width="0.2" height="15.0" fill="rgb(249,83,34)" rx="2" ry="2" />
<text x="1173.80" y="1167.5" ></text>
</g>
<g >
<title>__x64_sys_tgkill (17 samples, 0.04%)</title><rect x="838.5" y="1333" width="0.5" height="15.0" fill="rgb(233,92,43)" rx="2" ry="2" />
<text x="841.55" y="1343.5" ></text>
</g>
<g >
<title>__alloc_pages (8 samples, 0.02%)</title><rect x="61.8" y="1237" width="0.2" height="15.0" fill="rgb(242,123,39)" rx="2" ry="2" />
<text x="64.82" y="1247.5" ></text>
</g>
<g >
<title>__alloc_pages (222 samples, 0.49%)</title><rect x="606.6" y="1029" width="5.8" height="15.0" fill="rgb(211,123,11)" rx="2" ry="2" />
<text x="609.56" y="1039.5" ></text>
</g>
<g >
<title>folio_add_lru_vma (7 samples, 0.02%)</title><rect x="833.7" y="1221" width="0.2" height="15.0" fill="rgb(215,192,7)" rx="2" ry="2" />
<text x="836.72" y="1231.5" ></text>
</g>
<g >
<title>irq_exit_rcu (35 samples, 0.08%)</title><rect x="1122.7" y="1221" width="0.9" height="15.0" fill="rgb(212,52,38)" rx="2" ry="2" />
<text x="1125.70" y="1231.5" ></text>
</g>
<g >
<title>alloc_pages (8 samples, 0.02%)</title><rect x="744.1" y="1061" width="0.2" height="15.0" fill="rgb(230,31,20)" rx="2" ry="2" />
<text x="747.06" y="1071.5" ></text>
</g>
<g >
<title>scheduler_tick (4 samples, 0.01%)</title><rect x="1044.6" y="1141" width="0.1" height="15.0" fill="rgb(209,158,22)" rx="2" ry="2" />
<text x="1047.64" y="1151.5" ></text>
</g>
<g >
<title>_raw_spin_lock_bh (56 samples, 0.12%)</title><rect x="566.1" y="1205" width="1.5" height="15.0" fill="rgb(243,125,28)" rx="2" ry="2" />
<text x="569.10" y="1215.5" ></text>
</g>
<g >
<title>rcu_core (50 samples, 0.11%)</title><rect x="954.3" y="1205" width="1.3" height="15.0" fill="rgb(235,210,5)" rx="2" ry="2" />
<text x="957.27" y="1215.5" ></text>
</g>
<g >
<title>kvm_sched_clock_read (9 samples, 0.02%)</title><rect x="1036.8" y="1173" width="0.2" height="15.0" fill="rgb(237,55,12)" rx="2" ry="2" />
<text x="1039.77" y="1183.5" ></text>
</g>
<g >
<title>irq_exit_rcu (5 samples, 0.01%)</title><rect x="1150.6" y="1253" width="0.1" height="15.0" fill="rgb(217,157,18)" rx="2" ry="2" />
<text x="1153.59" y="1263.5" ></text>
</g>
<g >
<title>tlb_flush_mmu (58 samples, 0.13%)</title><rect x="892.0" y="1221" width="1.5" height="15.0" fill="rgb(237,80,0)" rx="2" ry="2" />
<text x="894.98" y="1231.5" ></text>
</g>
<g >
<title>rcu_core_si (15 samples, 0.03%)</title><rect x="921.5" y="1221" width="0.4" height="15.0" fill="rgb(234,229,24)" rx="2" ry="2" />
<text x="924.52" y="1231.5" ></text>
</g>
<g >
<title>__cgroup_account_cputime (7 samples, 0.02%)</title><rect x="1085.7" y="1205" width="0.2" height="15.0" fill="rgb(240,109,37)" rx="2" ry="2" />
<text x="1088.69" y="1215.5" ></text>
</g>
<g >
<title>psi_flags_change (5 samples, 0.01%)</title><rect x="1012.4" y="1173" width="0.2" height="15.0" fill="rgb(207,7,6)" rx="2" ry="2" />
<text x="1015.43" y="1183.5" ></text>
</g>
<g >
<title>enqueue_entity (5 samples, 0.01%)</title><rect x="1007.3" y="1189" width="0.1" height="15.0" fill="rgb(206,25,5)" rx="2" ry="2" />
<text x="1010.31" y="1199.5" ></text>
</g>
<g >
<title>mas_wr_store_entry.isra.0 (4 samples, 0.01%)</title><rect x="58.6" y="1157" width="0.1" height="15.0" fill="rgb(247,23,43)" rx="2" ry="2" />
<text x="61.60" y="1167.5" ></text>
</g>
<g >
<title>__send_signal_locked (9 samples, 0.02%)</title><rect x="838.7" y="1253" width="0.2" height="15.0" fill="rgb(207,184,48)" rx="2" ry="2" />
<text x="841.68" y="1263.5" ></text>
</g>
<g >
<title>do_tkill (44 samples, 0.10%)</title><rect x="855.3" y="1333" width="1.1" height="15.0" fill="rgb(214,78,16)" rx="2" ry="2" />
<text x="858.29" y="1343.5" ></text>
</g>
<g >
<title>irqentry_exit (5 samples, 0.01%)</title><rect x="63.3" y="1381" width="0.2" height="15.0" fill="rgb(220,219,47)" rx="2" ry="2" />
<text x="66.33" y="1391.5" ></text>
</g>
<g >
<title>alloc_pages (229 samples, 0.51%)</title><rect x="606.5" y="1045" width="6.0" height="15.0" fill="rgb(247,70,26)" rx="2" ry="2" />
<text x="609.50" y="1055.5" ></text>
</g>
<g >
<title>do_syscall_64 (11 samples, 0.02%)</title><rect x="58.6" y="1269" width="0.3" height="15.0" fill="rgb(221,30,50)" rx="2" ry="2" />
<text x="61.58" y="1279.5" ></text>
</g>
<g >
<title>schedule (6 samples, 0.01%)</title><rect x="875.4" y="1429" width="0.2" height="15.0" fill="rgb(219,227,45)" rx="2" ry="2" />
<text x="878.40" y="1439.5" ></text>
</g>
<g >
<title>migrate_enable (5 samples, 0.01%)</title><rect x="777.3" y="1157" width="0.1" height="15.0" fill="rgb(206,80,34)" rx="2" ry="2" />
<text x="780.25" y="1167.5" ></text>
</g>
<g >
<title>rcu_core (7 samples, 0.02%)</title><rect x="1102.4" y="1189" width="0.2" height="15.0" fill="rgb(254,21,3)" rx="2" ry="2" />
<text x="1105.40" y="1199.5" ></text>
</g>
<g >
<title>__next_zones_zonelist (4 samples, 0.01%)</title><rect x="634.7" y="1013" width="0.1" height="15.0" fill="rgb(221,20,24)" rx="2" ry="2" />
<text x="637.71" y="1023.5" ></text>
</g>
<g >
<title>delete_node (20 samples, 0.04%)</title><rect x="969.1" y="1237" width="0.5" height="15.0" fill="rgb(216,101,26)" rx="2" ry="2" />
<text x="972.08" y="1247.5" ></text>
</g>
<g >
<title>__update_load_avg_cfs_rq (5 samples, 0.01%)</title><rect x="1010.3" y="1141" width="0.1" height="15.0" fill="rgb(209,31,4)" rx="2" ry="2" />
<text x="1013.32" y="1151.5" ></text>
</g>
<g >
<title>do_user_addr_fault (132 samples, 0.29%)</title><rect x="470.6" y="1205" width="3.4" height="15.0" fill="rgb(230,195,44)" rx="2" ry="2" />
<text x="473.57" y="1215.5" ></text>
</g>
<g >
<title>fpu__restore_sig (5 samples, 0.01%)</title><rect x="847.7" y="1317" width="0.1" height="15.0" fill="rgb(244,143,33)" rx="2" ry="2" />
<text x="850.72" y="1327.5" ></text>
</g>
<g >
<title>__handle_mm_fault (25 samples, 0.06%)</title><rect x="849.9" y="1333" width="0.7" height="15.0" fill="rgb(245,54,10)" rx="2" ry="2" />
<text x="852.91" y="1343.5" ></text>
</g>
<g >
<title>handle_pte_fault (4 samples, 0.01%)</title><rect x="460.2" y="1061" width="0.1" height="15.0" fill="rgb(215,161,6)" rx="2" ry="2" />
<text x="463.17" y="1071.5" ></text>
</g>
<g >
<title>__unfreeze_partials (15 samples, 0.03%)</title><rect x="1050.5" y="1077" width="0.4" height="15.0" fill="rgb(209,65,16)" rx="2" ry="2" />
<text x="1053.51" y="1087.5" ></text>
</g>
<g >
<title>[link] (537 samples, 1.19%)</title><rect x="48.7" y="1413" width="14.0" height="15.0" fill="rgb(213,41,46)" rx="2" ry="2" />
<text x="51.70" y="1423.5" ></text>
</g>
<g >
<title>__do_sys_newfstatat (5 samples, 0.01%)</title><rect x="25.7" y="1077" width="0.1" height="15.0" fill="rgb(213,136,24)" rx="2" ry="2" />
<text x="28.70" y="1087.5" ></text>
</g>
<g >
<title>__intel_pmu_enable_all.isra.0 (30 samples, 0.07%)</title><rect x="1077.6" y="1189" width="0.8" height="15.0" fill="rgb(236,106,25)" rx="2" ry="2" />
<text x="1080.57" y="1199.5" ></text>
</g>
<g >
<title>file_free_rcu (4 samples, 0.01%)</title><rect x="934.3" y="1173" width="0.1" height="15.0" fill="rgb(249,113,53)" rx="2" ry="2" />
<text x="937.32" y="1183.5" ></text>
</g>
<g >
<title>kmem_cache_free (5 samples, 0.01%)</title><rect x="1178.5" y="1173" width="0.1" height="15.0" fill="rgb(219,190,36)" rx="2" ry="2" />
<text x="1181.51" y="1183.5" ></text>
</g>
<g >
<title>[link] (323 samples, 0.71%)</title><rect x="53.2" y="1381" width="8.5" height="15.0" fill="rgb(212,203,37)" rx="2" ry="2" />
<text x="56.25" y="1391.5" ></text>
</g>
<g >
<title>schedule (97 samples, 0.21%)</title><rect x="870.0" y="1317" width="2.6" height="15.0" fill="rgb(240,67,4)" rx="2" ry="2" />
<text x="873.05" y="1327.5" ></text>
</g>
<g >
<title>[go] (61 samples, 0.14%)</title><rect x="24.4" y="1157" width="1.6" height="15.0" fill="rgb(209,38,2)" rx="2" ry="2" />
<text x="27.36" y="1167.5" ></text>
</g>
<g >
<title>__x64_sys_exit_group (19 samples, 0.04%)</title><rect x="64.6" y="1477" width="0.5" height="15.0" fill="rgb(210,128,48)" rx="2" ry="2" />
<text x="67.61" y="1487.5" ></text>
</g>
<g >
<title>__get_obj_cgroup_from_memcg (15 samples, 0.03%)</title><rect x="735.4" y="1173" width="0.4" height="15.0" fill="rgb(247,65,43)" rx="2" ry="2" />
<text x="738.41" y="1183.5" ></text>
</g>
<g >
<title>idr_preload (24 samples, 0.05%)</title><rect x="745.5" y="1189" width="0.7" height="15.0" fill="rgb(222,56,30)" rx="2" ry="2" />
<text x="748.55" y="1199.5" ></text>
</g>
<g >
<title>__folio_alloc (12 samples, 0.03%)</title><rect x="837.1" y="1221" width="0.4" height="15.0" fill="rgb(208,17,31)" rx="2" ry="2" />
<text x="840.14" y="1231.5" ></text>
</g>
<g >
<title>[unknown] (4 samples, 0.01%)</title><rect x="852.4" y="1445" width="0.1" height="15.0" fill="rgb(219,177,18)" rx="2" ry="2" />
<text x="855.44" y="1455.5" ></text>
</g>
<g >
<title>rcu_do_batch (4 samples, 0.01%)</title><rect x="1120.3" y="1045" width="0.1" height="15.0" fill="rgb(235,8,3)" rx="2" ry="2" />
<text x="1123.27" y="1055.5" ></text>
</g>
<g >
<title>send_signal_locked (10 samples, 0.02%)</title><rect x="838.7" y="1269" width="0.2" height="15.0" fill="rgb(208,93,15)" rx="2" ry="2" />
<text x="841.65" y="1279.5" ></text>
</g>
<g >
<title>exit_to_user_mode_prepare (6 samples, 0.01%)</title><rect x="469.9" y="1157" width="0.1" height="15.0" fill="rgb(248,204,11)" rx="2" ry="2" />
<text x="472.89" y="1167.5" ></text>
</g>
<g >
<title>asm_sysvec_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="33.0" y="1301" width="0.1" height="15.0" fill="rgb(244,24,11)" rx="2" ry="2" />
<text x="35.96" y="1311.5" ></text>
</g>
<g >
<title>handle_pte_fault (63 samples, 0.14%)</title><rect x="462.0" y="1093" width="1.6" height="15.0" fill="rgb(205,120,2)" rx="2" ry="2" />
<text x="464.97" y="1103.5" ></text>
</g>
<g >
<title>update_min_vruntime (12 samples, 0.03%)</title><rect x="1089.6" y="1221" width="0.3" height="15.0" fill="rgb(207,23,9)" rx="2" ry="2" />
<text x="1092.61" y="1231.5" ></text>
</g>
<g >
<title>__fget_light (6 samples, 0.01%)</title><rect x="856.8" y="1301" width="0.1" height="15.0" fill="rgb(217,49,28)" rx="2" ry="2" />
<text x="859.78" y="1311.5" ></text>
</g>
<g >
<title>check_preempt_curr (70 samples, 0.15%)</title><rect x="1005.0" y="1205" width="1.8" height="15.0" fill="rgb(234,208,9)" rx="2" ry="2" />
<text x="1007.96" y="1215.5" ></text>
</g>
<g >
<title>security_bpf_map (12 samples, 0.03%)</title><rect x="746.3" y="1189" width="0.3" height="15.0" fill="rgb(240,183,36)" rx="2" ry="2" />
<text x="749.28" y="1199.5" ></text>
</g>
<g >
<title>_raw_spin_unlock_irqrestore (17 samples, 0.04%)</title><rect x="1001.4" y="1221" width="0.4" height="15.0" fill="rgb(245,123,17)" rx="2" ry="2" />
<text x="1004.36" y="1231.5" ></text>
</g>
<g >
<title>do_read_fault (5 samples, 0.01%)</title><rect x="63.1" y="1301" width="0.1" height="15.0" fill="rgb(206,118,12)" rx="2" ry="2" />
<text x="66.07" y="1311.5" ></text>
</g>
<g >
<title>sched_clock_cpu (61 samples, 0.14%)</title><rect x="1036.7" y="1205" width="1.6" height="15.0" fill="rgb(205,149,43)" rx="2" ry="2" />
<text x="1039.75" y="1215.5" ></text>
</g>
<g >
<title>filemap_map_pages (5 samples, 0.01%)</title><rect x="63.1" y="1285" width="0.1" height="15.0" fill="rgb(208,34,44)" rx="2" ry="2" />
<text x="66.07" y="1295.5" ></text>
</g>
<g >
<title>__schedule (4 samples, 0.01%)</title><rect x="650.1" y="1061" width="0.1" height="15.0" fill="rgb(247,55,18)" rx="2" ry="2" />
<text x="653.09" y="1071.5" ></text>
</g>
<g >
<title>exc_page_fault (4 samples, 0.01%)</title><rect x="1189.0" y="1285" width="0.1" height="15.0" fill="rgb(205,66,18)" rx="2" ry="2" />
<text x="1192.03" y="1295.5" ></text>
</g>
<g >
<title>[compile] (19 samples, 0.04%)</title><rect x="10.9" y="1413" width="0.5" height="15.0" fill="rgb(222,14,24)" rx="2" ry="2" />
<text x="13.91" y="1423.5" ></text>
</g>
<g >
<title>capable (8 samples, 0.02%)</title><rect x="569.2" y="1205" width="0.2" height="15.0" fill="rgb(225,53,48)" rx="2" ry="2" />
<text x="572.23" y="1215.5" ></text>
</g>
<g >
<title>dequeue_task_fair (32 samples, 0.07%)</title><rect x="870.3" y="1269" width="0.8" height="15.0" fill="rgb(222,200,50)" rx="2" ry="2" />
<text x="873.25" y="1279.5" ></text>
</g>
<g >
<title>consume_obj_stock (18 samples, 0.04%)</title><rect x="711.2" y="1093" width="0.4" height="15.0" fill="rgb(250,163,7)" rx="2" ry="2" />
<text x="714.15" y="1103.5" ></text>
</g>
<g >
<title>do_user_addr_fault (49 samples, 0.11%)</title><rect x="467.2" y="1173" width="1.3" height="15.0" fill="rgb(223,0,0)" rx="2" ry="2" />
<text x="470.22" y="1183.5" ></text>
</g>
<g >
<title>mmput (4 samples, 0.01%)</title><rect x="1189.8" y="1349" width="0.1" height="15.0" fill="rgb(222,42,17)" rx="2" ry="2" />
<text x="1192.84" y="1359.5" ></text>
</g>
<g >
<title>exit_mm (8 samples, 0.02%)</title><rect x="11.7" y="1365" width="0.2" height="15.0" fill="rgb(218,41,4)" rx="2" ry="2" />
<text x="14.72" y="1375.5" ></text>
</g>
<g >
<title>seq_write (14 samples, 0.03%)</title><rect x="525.5" y="1093" width="0.3" height="15.0" fill="rgb(208,27,43)" rx="2" ry="2" />
<text x="528.46" y="1103.5" ></text>
</g>
<g >
<title>_raw_spin_unlock (11 samples, 0.02%)</title><rect x="673.5" y="1157" width="0.3" height="15.0" fill="rgb(226,157,29)" rx="2" ry="2" />
<text x="676.47" y="1167.5" ></text>
</g>
<g >
<title>[link] (759 samples, 1.68%)</title><rect x="44.4" y="1461" width="19.9" height="15.0" fill="rgb(235,6,47)" rx="2" ry="2" />
<text x="47.45" y="1471.5" ></text>
</g>
<g >
<title>__cond_resched (4 samples, 0.01%)</title><rect x="591.8" y="1077" width="0.1" height="15.0" fill="rgb(245,86,47)" rx="2" ry="2" />
<text x="594.83" y="1087.5" ></text>
</g>
<g >
<title>exit_mmap (5 samples, 0.01%)</title><rect x="10.6" y="1317" width="0.2" height="15.0" fill="rgb(252,110,42)" rx="2" ry="2" />
<text x="13.63" y="1327.5" ></text>
</g>
<g >
<title>__check_object_size.part.0 (8 samples, 0.02%)</title><rect x="563.3" y="1205" width="0.2" height="15.0" fill="rgb(249,228,45)" rx="2" ry="2" />
<text x="566.28" y="1215.5" ></text>
</g>
<g >
<title>put_cpu_partial (11 samples, 0.02%)</title><rect x="1171.0" y="1269" width="0.3" height="15.0" fill="rgb(208,229,17)" rx="2" ry="2" />
<text x="1174.04" y="1279.5" ></text>
</g>
<g >
<title>bpf_map_seq_show (10 samples, 0.02%)</title><rect x="476.3" y="1173" width="0.2" height="15.0" fill="rgb(247,81,53)" rx="2" ry="2" />
<text x="479.29" y="1183.5" ></text>
</g>
</g>
</svg>
This file has been truncated, but you can view the full file.
asm;[asm];[asm];[asm] 1
asm;[asm];[asm];[asm];[asm] 1
asm;[asm];[asm];[asm];[asm];[asm] 1
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm] 1
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm] 1
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm] 1
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 1
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;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;memcg_slab_post_alloc_hook 1
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;get_unmapped_area;arch_get_unmapped_area_topdown;vm_unmapped_area;mas_next;mas_next_slot 1
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 1
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_write;ksys_write;vfs_write;pipe_write;alloc_pages;__alloc_pages;get_page_from_freelist;clear_page_erms 1
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;pte_offset_map_nolock 1
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];[asm];asm_exc_page_fault;exc_page_fault;up_read 1
asm;[asm];[asm];[asm];[asm];[asm];[asm];[asm];entry_SYSCALL_64 1
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_anonymous_page;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 1
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;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn;lru_gen_add_folio 1
asm;[asm];[asm];[asm];[asm];[asm];sync_regs 1
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;do_set_pte;page_add_file_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_node_page_state 1
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 1
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;__folio_throttle_swaprate;blk_cgroup_congested 1
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;pte_alloc_one;mod_lruvec_page_state.constprop.0;__mod_lruvec_page_state;__mod_lruvec_state;__mod_node_page_state 1
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;mas_next_slot 1
asm;[unknown];[unknown];[unknown];[go];[asm];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;count_memcg_events.constprop.0;__count_memcg_events 1
asm;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_exit_group;do_group_exit;do_exit;exit_mm;mm_update_next_owner 1
asm;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;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;lru_gen_del_folio.constprop.0 1
asm;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;__cond_resched 1
asm;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 1
asm;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 1
asm;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;page_remove_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_node_page_state 1
compile;[compile];[compile];[compile] 2
compile;[compile];[compile];[compile];[compile];[compile] 2
compile;[compile];[compile];[compile];[compile];[compile];[compile] 2
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile] 2
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile] 2
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile] 1
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;mas_store_prealloc 1
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_store_gfp;mas_wr_store_entry.isra.0;mas_wr_walk 1
compile;[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 1
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;perf_event_alloc;perf_init_event;perf_try_init_event;x86_pmu_event_init;allocate_fake_cpuc;kmalloc_trace;memset_orig 1
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;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 1
compile;[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;x86_pmu_disable 1
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];error_entry 1
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_wp_page;wp_page_copy;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk 1
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];entry_SYSCALL_64_after_hwframe 1
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];[compile];syscall_return_via_sysret 1
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 1
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;do_set_pte;page_add_file_rmap;__mod_lruvec_page_state;__mod_lruvec_state 1
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;get_page_from_freelist;clear_page_erms 1
compile;[compile];[compile];[compile];[compile];[compile];[compile];[compile];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 1
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 1
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;get_page_from_freelist;clear_page_erms 1
compile;[compile];[compile];[compile];[compile];[compile];__irqentry_text_end 1
compile;[compile];[compile];[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;__pmd_alloc;alloc_pages;__alloc_pages;get_page_from_freelist 1
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 1
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 1
compile;[compile];[compile];[compile];[compile];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_vma_under_rcu 1
compile;[compile];[compile];[compile];[compile];error_entry 1
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 1
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;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru 1
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;xas_find;xas_load 1
compile;[compile];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;do_cow_fault;unlock_page;folio_unlock;folio_wake_bit;__wake_up_locked_key_bookmark;__wake_up_common;wake_page_function;wake_up_state;try_to_wake_up;ttwu_queue_wakelist;sched_clock_cpu 1
compile;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;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list;free_unref_page_commit 1
compile;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;pmd_val 1
compile;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 3
compile;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;page_remove_rmap 1
compile;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;page_remove_rmap;__mod_lruvec_page_state 1
compile;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;page_remove_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_memcg_lruvec_state 1
go;[go];[go] 2
go;[go];[go];[go] 1
go;[go];[go];[go];[go] 5
go;[go];[go];[go];[go];[go] 10
go;[go];[go];[go];[go];[go];[go] 53
go;[go];[go];[go];[go];[go];[go];[go] 57
go;[go];[go];[go];[go];[go];[go];[go];[[vdso]] 1
go;[go];[go];[go];[go];[go];[go];[go];[go] 21
go;[go];[go];[go];[go];[go];[go];[go];[go];[go] 16
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 32
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 44
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[[vdso]] 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 29
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 25
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 22
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 21
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 23
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 10
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 42
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 31
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 11
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 5
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 14
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 7
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 4
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 3
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 2
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 3
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 7
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 3
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go] 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[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 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[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;llist_add_batch 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[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 1
go;[go];[go];[go];[go];[go];[go];[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 1
go;[go];[go];[go];[go];[go];[go];[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_tgkill;do_tkill;do_send_specific;do_send_sig_info;send_signal_locked;__send_signal_locked;__sigqueue_alloc;kmem_cache_alloc;memcg_slab_post_alloc_hook 1
go;[go];[go];[go];[go];[go];[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;access_error 1
go;[go];[go];[go];[go];[go];[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;mmap_region;do_vmi_munmap;mas_find;mas_walk;mtree_range_walk 1
go;[go];[go];[go];[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;getname_flags;getname_flags.part.0;strncpy_from_user 1
go;[go];[go];[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;futex_wait_queue;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;x86_pmu_disable 1
go;[go];[go];[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;arch_get_unmapped_area_topdown;mas_prev 1
go;[go];[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_sysvec_call_function_single;sysvec_call_function_single;kvm_guest_apic_eoi_write 1
go;[go];[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 1
go;[go];[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;locks_remove_posix 1
go;[go];[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 1
go;[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;up_read 1
go;[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;getname_flags;strncpy_from_user 1
go;[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 1
go;[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;lookup_fast;__d_lookup_rcu 1
go;[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;path_init;set_root 1
go;[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;walk_component;lookup_fast;__d_lookup_rcu 1
go;[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 1
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;do_epoll_ctl;__fdget;__fget_light 1
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 1
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 1
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 1
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;memchr 1
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;verify_dirent_name 1
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_check_dir_entry 1
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 1
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;str2hashbuf_signed 1
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 1
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;free_rb_tree_fname;__kmem_cache_free 1
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;rb_next_postorder 1
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;mas_store_prealloc;mas_wr_store_entry.isra.0 1
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;putname;cache_from_obj 1
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 2
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];sync_regs 1
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 1
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 1
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_throttle_swaprate;blk_cgroup_congested 1
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;clear_page_erms 1
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 4
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_newfstatat 1
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;handle_mm_fault;__handle_mm_fault;handle_pte_fault;do_anonymous_page;__folio_throttle_swaprate;kthread_blkcg 1
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;handle_mm_fault;count_memcg_events.constprop.0;__count_memcg_events 1
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 3
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 1
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;__check_heap_object 1
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 1
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 1
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 2
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;complete_walk;try_to_unlazy 1
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 4
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 2
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 2
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;lookup_fast 1
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;handle_dots;step_into;__lookup_mnt 1
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 1
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;__lookup_mnt 1
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;pick_link 1
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 3
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 1
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 3
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 2
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 1
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 1
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 1
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;memset_orig 1
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;do_sys_openat2 1
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 6
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 1
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 5
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 1
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;flush_tlb_func;native_flush_tlb_one_user 1
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;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;exit_to_user_mode_loop;__schedule 1
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 1
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_flock;__do_sys_flock;locks_lock_inode_wait;flock_lock_inode;kmem_cache_free;cache_from_obj 1
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;hrtimer_cancel;hrtimer_try_to_cancel.part.0;__remove_hrtimer;hrtimer_update_next_event 1
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 1
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 2
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 1
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_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_node_page_state 1
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;clear_page_erms 1
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;rcu_core_si;rcu_core;rcu_do_batch;file_free_rcu 1
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;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;set_next_entity;update_load_avg;__update_load_avg_se 1
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 2
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;mas_rev_awalk 1
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;___slab_alloc 1
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;file_path;d_path;prepend_path;prepend_copy 1
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;_copy_to_user 1
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 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];error_entry 1
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;native_set_pte 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64 1
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 1
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 1
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_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_interval_tree_insert 1
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;find_busiest_group;update_sd_lb_stats.constprop.0 1
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;mmap_region 1
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;close_fd 1
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 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];error_entry 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];__irqentry_text_end 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault 1
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 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 1
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 1
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;sched_cgroup_fork;task_fork_fair;_raw_spin_lock 1
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 1
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 2
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 3
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 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64 2
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 1
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;__do_sys_newfstatat 1
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;do_epoll_ctl;ep_insert;ep_item_poll.isra.0;pipe_poll;ep_ptable_queue_proc;kmem_cache_alloc;memcg_slab_post_alloc_hook 1
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;security_file_permission;aa_file_perm 1
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;security_bprm_creds_for_exec;apparmor_bprm_creds_for_exec;profile_transition;find_attach 1
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;__fdget_raw;__fget_light 1
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_mark_inode_dirty;ext4_reserve_inode_write;ext4_get_inode_loc;__ext4_get_inode_loc 1
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;mod_objcg_state;mod_memcg_lruvec_state;__mod_memcg_lruvec_state 1
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 1
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 1
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 2
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;rcu_segcblist_enqueue 1
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;rb_next_postorder 1
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;fpregs_assert_state_consistent 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;syscall_enter_from_user_mode 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 1
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;lru_add_fn;lru_gen_add_folio 1
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 1
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;file_free_rcu;kmem_cache_free;__slab_free 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 10
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;__x64_sys_read 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__fdget_raw 1
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;security_bprm_creds_for_exec;apparmor_bprm_creds_for_exec;profile_transition;find_attach 1
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 1
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;_copy_to_user 1
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 1
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 1
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 1
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 1
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;___slab_alloc 1
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 1
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 1
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;path_init;nd_jump_root;set_root 1
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 1
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 1
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;__fdget_pos;__fget_light 1
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;rw_verify_area;security_file_permission;apparmor_file_permission;aa_file_perm 1
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 1
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 9
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 1
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 1
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;mntput;mntput_no_expire 1
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;percpu_counter_add_batch 1
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;dput 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 12
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];__irqentry_text_end 1
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 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;lock_mm_and_find_vma 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 1
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;copy_signal;memset_orig 1
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;kmalloc_trace;__kmem_cache_alloc_node 1
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;wake_up_new_task;__task_rq_lock 1
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;is_vmalloc_addr 1
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 1
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;complete_walk;try_to_unlazy;__legitimize_path;lockref_get_not_dead 1
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 1
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 3
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 1
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 1
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;build_open_flags 1
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 1
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;security_file_alloc;begin_current_label_crit_section 1
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 1
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;ima_file_check;security_current_getsecid_subj;apparmor_current_getsecid_subj 1
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 1
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;fsnotify_perm.part.0;__fsnotify_parent 1
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 2
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;ext4_file_open 1
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;ima_file_check 1
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 2
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 2
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 1
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 1
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 1
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 1
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 1
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 1
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;memcg_slab_post_alloc_hook 1
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 1
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;fput 1
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 1
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;ext4_file_read_iter 1
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;mutex_unlock 1
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 6
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;folio_add_lru_vma;folio_add_lru 1
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 1
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 5
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;xas_load;xas_start 1
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 1
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 3
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 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSRETQ_unsafe_stack 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];error_entry 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];sync_regs 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];syscall_return_via_sysret 2
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];__irqentry_text_end 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault 1
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 1
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;rmqueue;__rmqueue_pcplist 1
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;file_free_rcu 1
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;file_free_rcu;kmem_cache_free 1
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;file_free_rcu;kmem_cache_free;__slab_free 1
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;radix_tree_node_rcu_free;kmem_cache_free;__slab_free;put_cpu_partial;__unfreeze_partials;discard_slab;free_slab;__free_slab;__free_pages;free_unref_page;free_unref_page_commit;free_pcppages_bulk 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_sysvec_call_function_single;sysvec_call_function_single;irqentry_exit;irqentry_exit_to_user_mode 1
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;__kmalloc;kmalloc_slab 1
go;[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;inode_init_always;security_inode_alloc;kmem_cache_alloc 1
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;map_id_up 1
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 1
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 1
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;mod_objcg_state 1
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;ima_file_check;process_measurement 1
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;__lookup_mnt 1
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;percpu_counter_add_batch 1
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 1
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 1
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 1
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_delete_entry;ext4_handle_dirty_dirblock;crypto_shash_update;crc32c_pcl_intel_update;kernel_fpu_begin_mask;save_fpregs_to_fpstate;os_xsave 1
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;destroy_inode;__destroy_inode;__fsnotify_inode_delete;fsnotify_grab_connector 1
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;destroy_inode;__destroy_inode;security_inode_free;call_rcu;__call_rcu_common.constprop.0 1
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;destroy_inode;__destroy_inode;security_inode_free;call_rcu;__call_rcu_common.constprop.0;rcu_segcblist_enqueue 1
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_journal_stop;jbd2_journal_stop;kmem_cache_free 1
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_reserve_inode_write;__ext4_journal_get_write_access 1
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_mark_inode_dirty;ext4_mark_iloc_dirty;ext4_do_update_inode.isra.0 1
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_get_group_no_and_offset 1
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_read_block_bitmap;ext4_read_block_bitmap_nowait;__getblk_gfp;__find_get_block;lookup_bh_lru 1
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;lookup_one_qstr_excl;lookup_dcache;d_lookup;__d_lookup 1
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;getname_flags;getname_flags.part.0;memset_orig 1
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;mnt_want_write 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[unknown];[go];[go];entry_SYSCALL_64 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];__irqentry_text_end 1
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 1
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 1
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 1
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;folio_add_new_anon_rmap 1
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;__filename_parentat;path_parentat;path_init;nd_jump_root;set_root 1
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_journal_get_write_access;jbd2_journal_add_journal_head 1
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_mark_inode_dirty 1
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_ext_tree_init;__ext4_mark_inode_dirty 1
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_ext_tree_init;__ext4_mark_inode_dirty;ext4_get_inode_loc 1
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_find_dest_de;__ext4_check_dir_entry 1
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_find_dest_de;ext4_match;memcmp 1
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_ext_insert_extent;__ext4_ext_dirty;__ext4_mark_inode_dirty;ext4_reserve_inode_write;ext4_get_inode_loc;__ext4_get_inode_loc;ext4_get_group_desc;__rcu_read_lock 1
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_claim_free_clusters;ext4_has_free_clusters 1
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_good_group 1
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_load_buddy_gfp;pagecache_get_page;__filemap_get_folio 1
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;kmem_cache_alloc 1
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;d_alloc_parallel;__d_alloc;kmem_cache_alloc_lru;slab_pre_alloc_hook.constprop.0;get_obj_cgroup_from_current 1
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 1
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 1
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;xas_load;xas_start 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;fput 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[unknown];[go];[go];entry_SYSCALL_64 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];__irqentry_text_end 2
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 1
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;blk_cgroup_congested 1
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;__count_memcg_events 1
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;charge_memcg 1
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 1
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;percpu_counter_add_batch 1
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;__cond_resched;__schedule;pick_next_task;pick_next_task_fair;put_prev_entity 1
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 6
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 2
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 2
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 1
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;count_memcg_events.constprop.0;__count_memcg_events 1
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 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 1
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_wake;wake_up_q;try_to_wake_up;select_task_rq_fair;__rcu_read_lock 1
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;lru_gen_del_folio.constprop.0;__mod_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 1
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;block_invalidate_folio;filemap_release_folio;ext4_release_folio;jbd2_journal_try_to_free_buffers;try_to_free_buffers;free_buffer_head;kmem_cache_free 1
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;block_invalidate_folio;filemap_release_folio;ext4_release_folio;jbd2_journal_try_to_free_buffers;try_to_free_buffers;free_buffer_head;kmem_cache_free;__slab_free;slab_update_freelist.isra.0 1
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;ext4_unlink;__ext4_unlink;ext4_delete_entry;ext4_handle_dirty_dirblock;crypto_shash_update;kernel_fpu_begin_mask 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];error_entry 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];__irqentry_text_end 1
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 1
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 1
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 1
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;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;update_cfs_group 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_close;_raw_spin_lock 1
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;enqueue_hrtimer;timerqueue_add 1
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;__perf_event_task_sched_in 1
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;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_enable;x86_pmu_enable;intel_pmu_enable_all;native_write_msr 12
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 1
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 1
go;[go];[go];[go];[go];[go];[go];[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault 1
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 1
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_load_avg 1
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;file_free_rcu;kmem_cache_free;cache_from_obj 1
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;path_init;nd_jump_root;set_root 1
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;do_set_pte;page_add_file_rmap;__mod_lruvec_page_state 1
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;_raw_spin_unlock 1
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 1
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 1
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 1
go;[go];[go];[go];[go];[go];[go];error_entry 1
go;[go];[go];[go];[go];[go];sync_regs 1
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 1
go;[go];[go];[go];[go];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;__remove_hrtimer;rb_erase 1
go;[go];[go];[go];asm_exc_page_fault 1
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 1
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 1
go;[go];[go];[go];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault;__handle_mm_fault;handle_pte_fault;pte_offset_map_nolock 1
go;[go];[go];[go];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 1
go;[unknown];[go] 200
go;[unknown];[go];[go];[go];[go];[go];[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;put_prev_task_fair;put_prev_entity 1
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 1
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64 1
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule 1
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule 1
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;__schedule;asm_sysvec_call_function_single 1
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 1
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 1
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 39
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_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;hrtimer_active 1
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;native_flush_tlb_one_user 1
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;sched_ttwu_pending;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 1
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 1
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 1
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 1
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 1
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;update_load_avg 1
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 1
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;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 1
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule;pick_next_task 1
go;[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 1
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;switch_fpu_return;restore_fpregs_from_fpstate 1
go;[unknown];[go];[go];[go];[go];[go];syscall_return_via_sysret 1
go;[unknown];[go];[go];entry_SYSCALL_64 1
go;[unknown];[go];[unknown];[go];entry_SYSCALL_64 1
go;[unknown];[go];[unknown];[go];entry_SYSCALL_64_after_hwframe 1
go;[unknown];[go];__irqentry_text_end 1
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;__mem_cgroup_charge;charge_memcg;__count_memcg_events 1
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;obj_cgroup_uncharge;refill_obj_stock 1
go;[unknown];[go];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;run_timer_softirq;__run_timers 1
go;[unknown];[go];entry_SYSCALL_64 2
go;[unknown];[go];entry_SYSCALL_64_after_hwframe 1
go;[unknown];[go];error_entry 1
go;[unknown];[go];ret_from_fork_asm;ret_from_fork;schedule_tail;asm_sysvec_call_function_single 1
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 13
go;[unknown];[unknown];[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;__hrtimer_start_range_ns;enqueue_hrtimer;timerqueue_add 1
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 1
go;[unknown];[unknown];[go];[go];[go];[go];[go];error_entry 1
go;[unknown];[unknown];[go];[go];[go];[go];[unknown];[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;put_prev_task_fair 1
go;[unknown];[unknown];[go];asm_exc_page_fault 1
go;[unknown];[unknown];[go];entry_SYSCALL_64 2
go;[unknown];[unknown];[go];error_entry 1
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];[go];[go];[go] 1
go;[unknown];[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 1
go;[unknown];[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;schedule;__schedule;finish_task_switch.isra.0;__mmdrop;pgd_free;free_pages;__free_pages;free_unref_page;free_unref_page_commit;free_pcppages_bulk 1
go;[unknown];[unknown];[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe 1
go;[unknown];[unknown];[unknown];[go];[go];[go];[go];[go];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;__hrtimer_init 1
go;[unknown];[unknown];[unknown];[go];asm_sysvec_apic_timer_interrupt 1
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 1
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_swap_cache 1
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;get_random_u64 1
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;free_pgtables;unlink_file_vma 1
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;remove_vma;__vm_area_free;kmem_cache_free 1
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 1
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;free_unref_page_commit;free_pcppages_bulk;__free_one_page 2
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 4
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;zap_pte_range 1
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;zap_pte_range;page_remove_rmap 1
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;elf_map;vm_mmap;vm_mmap_pgoff;do_mmap;mmap_region;vm_area_alloc;kmem_cache_alloc 1
link;[link];[link];[link];[link] 6
link;[link];[link];[link];[link];[link] 57
link;[link];[link];[link];[link];[link];[link] 100
link;[link];[link];[link];[link];[link];[link];[link] 122
link;[link];[link];[link];[link];[link];[link];[link];[link] 52
link;[link];[link];[link];[link];[link];[link];[link];[link];[link] 83
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 61
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 17
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 5
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 3
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 3
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link] 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];error_entry 1
link;[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;do_vmi_munmap;do_vmi_align_munmap;unmap_region;free_pgtables;free_pgd_range;free_pud_range 1
link;[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 1
link;[link];[link];[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;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;rmqueue 1
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;do_vmi_munmap;do_vmi_align_munmap;anon_vma_clone 1
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;hugepage_vma_check 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];error_entry 1
link;[link];[link];[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 2
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_openat;do_sys_openat2;do_filp_open;path_openat;do_open;vfs_open;do_dentry_open;ext4_file_open;fscrypt_file_open;dput;lockref_put_return 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];sync_regs 1
link;[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;__pte_offset_map_lock;__pte_offset_map 1
link;[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_wp_page;wp_page_copy;folio_add_new_anon_rmap;__mod_lruvec_page_state;__mod_lruvec_state;__mod_node_page_state 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];__irqentry_text_end 1
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;inc_mm_counter;percpu_counter_add_batch 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe 1
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_close;close_fd;filp_close;locks_remove_posix 1
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_disable;x86_pmu_disable;native_write_msr 1
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 1
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;touch_atime;atime_needs_update;make_vfsuid 1
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 2
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;exit_to_user_mode_prepare;exit_to_user_mode_loop;task_work_run;____fput;__fput;call_rcu;__call_rcu_common.constprop.0 1
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 1
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;lru_add_fn;lru_gen_add_folio;__mod_lruvec_state;__mod_memcg_lruvec_state 1
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_wp_page;wp_page_copy;folio_add_lru_vma;folio_add_lru;folio_batch_move_lru;lru_add_fn 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe 1
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;mas_next 1
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;mas_split.isra.0;mas_push_data;mast_split_data;mab_mas_cp 1
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 1
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_update_gap.part.0 1
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_update_gap.part.0;mas_leaf_max_gap 1
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;perf_event_mmap;perf_event_mmap_event;file_path;__rcu_read_lock 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_enter_from_user_mode 1
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 4
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];syscall_return_via_sysret 4
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault 1
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 1
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;vma_alloc_folio;__folio_alloc;__alloc_pages;get_page_from_freelist;clear_page_erms 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64 1
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 1
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 1
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;touch_atime;atime_needs_update 1
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 1
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_fault;do_read_fault;filemap_map_pages;next_uptodate_page 1
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;count_memcg_events.constprop.0;__count_memcg_events 1
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;dequeue_task;dequeue_task_fair;dequeue_entity 1
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 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];__irqentry_text_end 2
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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq 1
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 1
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;_raw_spin_unlock 1
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;next_uptodate_page 1
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 4
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;__pte_offset_map_lock;__pte_offset_map 1
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;folio_batch_move_lru;lru_gen_add_folio 1
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 1
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 2
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 1
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 4
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 1
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 1
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;count_memcg_events.constprop.0 1
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;count_memcg_events.constprop.0;__count_memcg_events 1
link;[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 1
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 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];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 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];sync_regs 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];__irqentry_text_end 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault 1
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 1
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 1
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 1
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;__pte_offset_map 1
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 6
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;rmqueue;__rmqueue_pcplist 1
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 1
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 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;do_futex 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];error_entry 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];[link];sync_regs 2
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];__irqentry_text_end 3
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault 1
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 1
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 1
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 3
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 1
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;rmqueue_bulk;__mod_zone_page_state 2
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_lruvec_state;__mod_memcg_lruvec_state 1
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 1
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 1
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_add_lru_vma 1
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;charge_memcg;try_charge_memcg 1
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;try_charge_memcg 1
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_memcg_lruvec_state;cgroup_rstat_updated 1
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;percpu_counter_add_batch 1
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 1
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 2
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 3
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 1
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 2
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;up_read 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 2
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 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__vm_munmap 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_fallocate;vfs_fallocate;ext4_fallocate;file_modified;file_modified_flags;generic_update_time;__mark_inode_dirty;ext4_dirty_inode;ext4_journal_check_start 1
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;__perf_event_task_sched_out 1
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;_compound_head 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];error_entry 3
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];error_return 1
link;[link];[link];[link];[link];[link];[link];[link];[link];[link];sync_regs 3
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;memcg_check_events;__mem_cgroup_threshold 1
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;try_charge_memcg 1
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;lru_add_fn;lru_gen_add_folio;__mod_lruvec_state;__mod_memcg_lruvec_state;cgroup_rstat_updated 1
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;__mod_lruvec_page_state 1
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 1
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 1
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 5
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;rmqueue_bulk 1
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;rmqueue_bulk;_raw_spin_unlock_irqrestore 1
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;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist;rmqueue_bulk 1
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_page_mkwrite;ext4_page_mkwrite;block_page_mkwrite;__block_write_begin_int;ext4_da_get_block_prep 1
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_page_mkwrite;ext4_page_mkwrite;block_page_mkwrite;__block_write_begin_int;mark_buffer_dirty;__folio_mark_dirty;xas_set_mark 1
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;percpu_counter_add_batch 1
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;native_send_call_func_single_ipi;native_write_msr 1
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 1
link;[link];[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 3
link;[link];[link];[link];[link];[link];[link];[link];[link];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;perf_event_context_sched_out 1
link;[link];[link];[link];[link];[link];[link];[link];[link];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_group_change 1
link;[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;syscall_exit_to_user_mode 1
link;[link];[link];[link];[link];[link];[link];[link];[link];sync_regs 1
link;[link];[link];[link];[link];[link];[link];[link];asm_exc_page_fault 1
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 2
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;folio_mapping 1
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 2
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 1
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;__alloc_pages;get_page_from_freelist;rmqueue;__rmqueue_pcplist 1
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 5
link;[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_safe_stack 1
link;[link];[link];[link];[link];[link];[link];__irqentry_text_end 3
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault 5
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event;native_write_msr 2
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 1
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 1
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;__next_zones_zonelist 1
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;__rcu_read_lock 1
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;native_set_pte 1
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 3
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 1
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 1
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 1
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;lock_mm_and_find_vma;find_vma;mt_find 1
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;up_read 1
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 3
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;schedule;__schedule;finish_task_switch.isra.0;__perf_event_task_sched_in;perf_ctx_disable 1
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;schedule;__schedule;pick_next_task;pick_next_task_fair;pick_next_entity 1
link;[link];[link];[link];[link];[link];[link];asm_exc_page_fault;irqentry_exit 1
link;[link];[link];[link];[link];[link];[link];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq;rcu_core_si;rcu_core;rcu_nocb_unlock_irqrestore.part.0 1
link;[link];[link];[link];[link];[link];[link];asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irqentry_exit;irqentry_exit_to_user_mode;exit_to_user_mode_prepare;arch_do_signal_or_restart 1
link;[link];[link];[link];[link];[link];[link];error_entry 2
link;[link];[link];[link];[link];[link];asm_exc_page_fault 1
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;access_error 1
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;do_user_addr_fault;handle_mm_fault 1
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_add_folio;folio_add_lru;folio_batch_move_lru 1
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;__rcu_read_unlock 1
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 2
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;read_pages;ext4_readahead;ext4_mpage_readpages;memset_orig 2
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;clean_bdev_aliases 1
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;get_partial_node.part.0 1
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;mod_objcg_state 1
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_memcg_unlock 1
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;ext4_dirty_folio;block_dirty_folio 1
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;mark_buffer_dirty 1
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;set_page_dirty;folio_mark_dirty;ext4_dirty_folio;block_dirty_folio 1
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;get_mem_cgroup_from_mm 1
link;[link];[link];[link];[link];[link];asm_exc_page_fault;exc_page_fault;irqentry_exit;irqentry_exit_to_user_mode 1
link;[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe 1
link;[link];[link];[link];[link];[link];error_entry 1
link;[link];[link];[link];[link];[link];error_return 1
link;[link];[link];[link];[link];[link];sync_regs 2
link;[link];[link];[link];[link];asm_exc_page_fault 1
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;lru_add_fn;lru_gen_add_folio 1
link;[link];[link];[link];[link];sync_regs 1
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_state;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 1
link;[link];[link];[link];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;kernfs_fop_open;seq_open;kmem_cache_alloc 1
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;percpu_counter_add_batch 1
link;[unknown];[go];[link];asm_exc_page_fault 1
link;[unknown];[link];[link];[link];[link];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;do_futex 1
link;[unknown];[link];[link];[link];[link];[link];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_nanosleep;hrtimer_nanosleep;do_nanosleep;schedule 1
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_blocked_fair;__update_load_avg_cfs_rq 1
link;[unknown];[link];entry_SYSCALL_64 1
link;[unknown];[link];entry_SYSCALL_64_safe_stack 1
link;[unknown];[unknown];[link];[link];[link];[link];[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;_raw_spin_lock 1
link;[unknown];[unknown];[link];[link];[link];[unknown];[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;__sigqueue_alloc;kmem_cache_alloc;memcg_slab_post_alloc_hook 1
link;[unknown];[unknown];[link];[link];[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;update_curr 1
link;[unknown];[unknown];[link];[link];[unknown];[link];[link];entry_SYSCALL_64 1
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_exit_group;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 1
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_exit_group;do_group_exit;do_exit;exit_mm;mmput;__mmput;exit_mmap;unmap_vmas;unmap_single_vma 1
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_exit_group;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 5
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_exit_group;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 2
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_exit_group;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 1
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_exit_group;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 2
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_exit_group;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;cgroup_rstat_updated 1
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_exit_group;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;__rcu_read_lock 2
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_exit_group;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 1
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_exit_group;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;free_unref_page_list 1
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_exit_group;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;free_unref_page_list;free_unref_page_prepare 1
link;entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_exit_group;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 1
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;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages 1
mapgauge.test;[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;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list;free_unref_page_prepare 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test] 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 19
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 485
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 1149
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 1927
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 567
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[[vdso]] 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 809
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[[vdso]] 18
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 941
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 1003
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 426
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 337
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 316
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 373
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 193
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 199
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 4997
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 307
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 290
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 352
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 160
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 135
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 42
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 12
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test] 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;may_expand_vm 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;unmap_region;lru_add_drain;lru_add_drain_cpu;folio_batch_move_lru 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;ksys_mmap_pgoff 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;fpregs_assert_state_consistent 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_munmap;__vm_munmap;do_vmi_munmap;do_vmi_align_munmap;unmap_region;tlb_finish_mmu;tlb_batch_pages_flush;free_pages_and_swap_cache;release_pages;free_unref_page_list;free_unref_page_prepare 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];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;cgroup_rstat_updated 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;kmalloc_large;__kmalloc_large_node;mod_lruvec_page_state.constprop.0;__mod_lruvec_page_state 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_store_prealloc;mas_wr_store_entry.isra.0;mas_wr_modify;mas_wr_bnode 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;kmem_cache_alloc_bulk 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;can_vma_merge_before 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;mas_empty_area_rev 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;mas_empty_area_rev;mas_rev_awalk 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;mas_next;mas_next_slot 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_complete 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__count_memcg_events 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__folio_throttle_swaprate 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_alloc 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;mem_cgroup_from_task 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;btf_parse;__check_object_size;__check_object_size.part.0;check_heap_object;__virt_addr_valid 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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];[mapgauge.test];[mapgauge.test];asm_exc_page_fault 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 7
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_alloc;pte_alloc_one;alloc_pages;__alloc_pages;get_page_from_freelist;clear_page_erms 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__alloc_pages 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 13
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_lock 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_zone_page_state 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;policy_node 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 15
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;pte_offset_map_nolock 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;cgroup_rstat_updated 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;mem_cgroup_from_task 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 13
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;fpregs_assert_state_consistent 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];exc_page_fault 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 7
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 6
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;_raw_spin_lock 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_memcg_lruvec_state 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_memcg_lruvec_state;cgroup_rstat_updated 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__folio_throttle_swaprate 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;blk_cgroup_congested 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_zone_page_state 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__bitmap_and 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 9
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__next_zones_zonelist 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 7
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;mem_cgroup_from_task 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64;__x64_sys_futex;do_futex;futex_wait;futex_wait_queue;schedule;__schedule;pick_next_task_idle 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;vm_area_alloc;kmem_cache_alloc;obj_cgroup_charge 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 6
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 10
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__mem_cgroup_charge 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;tick_sched_timer;ktime_get 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__mod_lruvec_page_state 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__rcu_read_lock 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__bitmap_and 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 6
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;native_send_call_func_single_ipi;native_write_msr 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;native_send_call_func_single_ipi;x2apic_send_IPI 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;mas_walk 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;fpregs_assert_state_consistent 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 11
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__rcu_read_lock 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;get_mem_cgroup_from_mm 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_next 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;timekeeping_update;update_vsyscall 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;perf_event_task_tick;_raw_spin_unlock 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;hrtimer_active 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;trigger_load_balance;nohz_balancer_kick;_find_next_and_bit 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;trigger_load_balance;nohz_balancer_kick;kick_ilb;smp_call_function_single_async;generic_exec_single;__smp_call_single_queue;call_function_single_prep_ipi 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;update_process_times 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;ktime_get_update_offsets_now;kvm_clock_get_cycles;pvclock_clocksource_read_nowd 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;kvm_clock_get_cycles 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;delayed_work_timer_fn;__queue_work;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change;psi_group_change 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__switch_to 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;put_prev_entity;update_load_avg;__update_load_avg_cfs_rq 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;psi_group_change 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;sched_clock_cpu;sched_clock_noinstr 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;vm_area_dup;kmem_cache_alloc 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 15
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__pte_offset_map 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__count_memcg_events 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;get_mem_cgroup_from_mm;__rcu_read_lock 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;cgroup_rstat_updated 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;lru_add_fn 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_memcg_lruvec_state 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_memcg_lruvec_state;cgroup_rstat_updated 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 54
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 9
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;pte_offset_map_nolock 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;wp_page_copy 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 6
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;mas_walk 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;mem_cgroup_from_task 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;handle_mm_fault 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 9
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;fpregs_assert_state_consistent 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;get_signal;dequeue_signal;collect_signal;obj_cgroup_uncharge 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__perf_event_task_sched_out;perf_event_context_sched_out;perf_ctx_disable;x86_pmu_disable;native_write_msr 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;copy_process;dup_task_struct;alloc_thread_stack_node;__vmalloc_node_range;__vmalloc_area_node;alloc_pages_bulk_array_mempolicy;clear_page_erms 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 8
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;smp_call_function_many_cond 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;psi_task_change;psi_group_change 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 45
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 10
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 48
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__virt_addr_valid 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 14
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;tick_program_event;clockevents_program_event;ktime_get;kvm_clock_get_cycles;pvclock_clocksource_read_nowd 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 73
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 30
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 810
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_curr 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 86
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 7
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 17
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 185
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 8
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 9
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 13
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 29
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 130
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 15
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 6
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 7
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 19
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 15
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 12
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 56
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 234
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 22
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 14
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 9
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 6
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 37
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 16
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 12
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 6
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;mutex_unlock 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;apparmor_file_permission 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;apparmor_file_permission 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];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;do_output_char;tty_put_char;pty_write;tty_insert_flip_string_and_push_buffer;queue_work_on;__queue_work;wake_up_process;try_to_wake_up;_raw_spin_lock 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 9
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 7
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_alloc 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;get_mem_cgroup_from_mm 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 8
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_reschedule_ipi;sysvec_reschedule_ipi;native_apic_msr_eoi_write 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;_raw_spin_unlock 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;cgroup_rstat_updated 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;fpregs_assert_state_consistent 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_cfs_group;reweight_entity 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_cfs_group;reweight_entity;update_curr;__calc_delta 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_fair 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;timekeeping_update;raw_notifier_call_chain;pvclock_gtod_notify 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;perf_event_task_tick;perf_adjust_freq_unthr_context;x86_pmu_disable;native_write_msr 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__perf_event_task_sched_out;perf_event_context_sched_out;x86_pmu_disable 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 16
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64 341
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe 634
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.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 47
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];entry_SYSCALL_64_after_hwframe;do_syscall_64 56
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 18
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 137
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 8
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 6
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 8
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 12
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 71
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 56
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 16
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 36
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;hrtimer_wakeup;wake_up_process;try_to_wake_up;ttwu_do_activate;enqueue_task;psi_task_change 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 8
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 7
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 11
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 209
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 8
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 13
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__memset 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 7
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 26
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 20
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 21
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 37
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 15
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;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;sched_clock_cpu;sched_clock;sched_clock_noinstr;kvm_sched_clock_read;pvclock_clocksource_read_nowd 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 42
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 40
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 55
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 63
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_lock 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 9
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 47
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__mutex_init 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 37
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 59
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 82
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 35
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 35
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__cond_resched;__schedule 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;asm_sysvec_apic_timer_interrupt 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;hrtimer_interrupt;__hrtimer_run_queues;enqueue_hrtimer;timerqueue_add 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 13
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 132
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;cpuset_node_allowed 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;inc_slabs_node 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;alloc_pages 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__zone_watermark_ok 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 25
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;_find_first_bit 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;should_fail_alloc_page 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 26
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 8
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;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;trigger_load_balance 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 10
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;should_failslab 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 9
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 184
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 15
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;cpuset_node_allowed 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 10
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;mempolicy_slab_node 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 10
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 7
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;__zone_watermark_ok 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 182
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;post_alloc_hook 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 7
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;rmqueue 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_nodemask 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 8
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;shuffle_freelist;__get_random_u32_below;get_random_u32 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 6
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 3
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 6
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 26
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;chacha_block_generic 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 8
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 14
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 29
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 38
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 23
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 5
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 6
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 79
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 6
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;__sysvec_apic_timer_interrupt;native_apic_msr_eoi_write 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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_memcg_lruvec_state 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 26
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 6
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 22
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 2
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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;asm_sysvec_apic_timer_interrupt;sysvec_apic_timer_interrupt;irq_exit_rcu;__irq_exit_rcu;__do_softirq 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 21
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 1
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[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 4
mapgauge.test;[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapgauge.test];[mapg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment